[
  {
    "path": ".appveyor.yml",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nversion: 1.0.{build}\nclone_folder: c:\\di\nshallow_clone: true\n\nbranches:\n  except:\n  - benchmarks\n  - gh-pages\n\ncache:\n  - C:\\cmake-3.7.2-win32-x86\n\nenvironment:\n  fast_finish: true\n\n  matrix:\n  - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015\n    VSPATH: C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\n    BS: cmake\n    CMAKE_GENERATOR: Visual Studio 14 2015\n    MEMCHECK: DRMEMORY\n    PLATFORM: amd64\n\n  - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017\n    VSPATH: C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Auxiliary\\Build\n    BS: cmake\n    CMAKE_GENERATOR: Visual Studio 15 2017\n    MEMCHECK: DRMEMORY\n    PLATFORM: amd64\n\nmatrix:\n  fast_finish: true\n\ninstall:\n  - ps: |\n      if (![IO.File]::Exists(\"C:\\cmake-3.7.2-win32-x86\\bin\\cmake.exe\")) {\n        pushd c:\\\n        Start-FileDownload 'https://cmake.org/files/v3.7/cmake-3.7.2-win32-x86.zip'\n        7z x -y cmake-3.7.2-win32-x86.zip\n        popd\n      }\n  - cinst -y drmemory\n  - appveyor DownloadFile http://downloads.sourceforge.net/mingw-w64/x86_64-5.2.0-release-posix-seh-rt_v4-rev1.7z\n  - 7z x x86_64-5.2.0-release-posix-seh-rt_v4-rev1.7z > nul\n  - call \"%VSPATH%\"\\vcvarsall %PLATFORM%\n  - set PATH=C:\\cmake-3.7.2-win32-x86\\bin;mingw64\\bin;%PATH%;\n\nbuild_script:\n  - mingw32-make all\n"
  },
  {
    "path": ".clang-format",
    "content": "---\nLanguage:               Cpp\nStandard:               Cpp11\nBasedOnStyle:           Google\nColumnLimit:            128\n---\n"
  },
  {
    "path": ".clang-tidy",
    "content": "---\nChecks:          'clang-diagnostic-*,clang-analyzer-*,-clang-analyzer-alpha*,*,-llvm-namespace-comment,-llvm-include-order,-readability-named-parameter,-google-readability-namespace-comments,-google-build-using-namespace,-google-readability-namespace-comments'\nHeaderFilterRegex: boost/di\nAnalyzeTemporaryDtors: false\nCheckOptions:\n  - key:             google-readability-braces-around-statements.ShortStatementLines\n    value:           '1'\n  - key:             google-readability-function-size.BranchThreshold\n    value:           '4294967295'\n  - key:             google-readability-function-size.LineThreshold\n    value:           '4294967295'\n  - key:             google-readability-function-size.StatementThreshold\n    value:           '800'\n  - key:             google-readability-namespace-comments.ShortNamespaceLines\n    value:           '10'\n  - key:             google-readability-namespace-comments.SpacesBeforeComments\n    value:           '2'\n  - key:             misc-assert-side-effect.AssertMacros\n    value:           assert\n  - key:             misc-assert-side-effect.CheckFunctionCalls\n    value:           '0'\n  - key:             readability-braces-around-statements.ShortStatementLines\n    value:           '0'\n  - key:             readability-function-size.BranchThreshold\n    value:           '4294967295'\n  - key:             readability-function-size.LineThreshold\n    value:           '4294967295'\n  - key:             readability-function-size.StatementThreshold\n    value:           '800'\n  - key:             readability-simplify-boolean-expr.ChainedConditionalAssignment\n    value:           '0'\n  - key:             readability-simplify-boolean-expr.ChainedConditionalReturn\n    value:           '0'\n...\n\n"
  },
  {
    "path": ".gitattributes",
    "content": "* text=auto\n"
  },
  {
    "path": ".travis.yml",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nenv:\n  global:\n  - secure: \"eWDDsd5M1F8/LMYKdeDDSyfIB9kR1MoRPEg1Cml2PbN3c7T1cHczHH/DKeOrsWD0Ti6tjltczfW4VRYgv+pDSt9TsEsXMQmI5GY2a/lR3QcI/IIuQyQJ05VcmwNRIwZgHtUGukj7uHUzrNlQkATpfmGII7HG5ZXDoG9lfXzxITA=\" # GH_TOKEN\n\ngit:\n  depth: 1\n\nsudo: false\n\nbranches:\n  except:\n    - gh-pages\n    - benchmarks\n\nmatrix:\n  fast_finish: true\n  include:\n\n#\n# Documentation\n#\n  - os: linux\n    env: DOCUMENTATION=ON\n#\n# Style\n#\n  - os: linux\n    dist: precise\n    env: CHECK=ON CLANG_FORMAT=clang-format-4.0 CLANG_TIDY=clang-tidy-4.0\n    addons: { apt: { packages: [\"clang-format-4.0\", \"clang-tidy-4.0\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-trusty-4.0\"] } }\n\n#\n# CMake\n#\n  - os: linux\n    dist: precise\n    env: BS=cmake CXX=clang++-3.6\n    addons: { apt: { packages: [\"clang-3.6\", \"libstdc++-5-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-precise-3.6\"] } }\n    dist: precise\n\n  - os: linux\n    env: BS=cmake CXX=clang++-3.7\n    addons: { apt: { packages: [\"clang-3.7\", \"libstdc++-5-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-precise-3.7\"] } }\n\n  - os: linux\n    dist: precise\n    env: BS=cmake CXX=clang++-3.8\n    addons: { apt: { packages: [\"clang-3.8\", \"libstdc++-6-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-precise-3.8\"] } }\n\n  - os: linux\n    dist: precise\n    env: BS=cmake  CXX=clang++-3.9\n    addons: { apt: { packages: [\"clang-3.9\", \"libstdc++-6-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-precise-3.9\"] } }\n\n  - os: linux\n    dist: precise\n    env: BS=cmake CXX=clang++-4.0\n    addons: { apt: { packages: [\"clang-4.0\", \"libstdc++-6-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-trusty-4.0\"] } }\n\n  - os: linux\n    dist: precise\n    env: BS=cmake CXX=clang++-4.0 LIBCXX=ON\n    addons: { apt: { packages: [\"clang-4.0\", \"libstdc++-6-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-trusty-4.0\"] } }\n\n  - os: linux\n    dist: precise\n    env: BS=cmake CXX=g++-5\n    addons: { apt: { packages: [\"g++-5\", \"libstdc++-5-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\"] } }\n\n  - os: linux\n    dist: precise\n    env: BS=cmake CXX=g++-6\n    addons: { apt: { packages: [\"g++-6\", \"libstdc++-6-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\"] } }\n\n  - os: linux\n    dist: trusty\n    env: BS=cmake CXX=g++-7\n    addons: { apt: { packages: [\"g++-7\", \"libstdc++-7-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\"] } }\n\n  - os: osx\n    osx_image: xcode7.3\n    env: BS=cmake CXX=clang++\n\n  - os: osx\n    osx_image: xcode8.3\n    env: BS=cmake CXX=clang++\n\n  - os: osx\n    osx_image: xcode9.1\n    env: BS=cmake CXX=clang++\n\n#\n# Bjam\n#\n  - os: linux\n    dist: precise\n    env: BS=bjam TOOLSET=clang CXX=clang++-4.0\n    addons: { apt: { packages: [\"clang-4.0\", \"libstdc++-6-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-trusty-4.0\"] } }\n\n  - os: linux\n    dist: trusty\n    env: BS=bjam TOOLSET=gcc CXX=g++-7\n    addons: { apt: { packages: [\"g++-7\", \"libstdc++-7-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\"] } }\n\n  - os: osx\n    osx_image: xcode9.1\n    env: BS=bjam TOOLSET=clang CXX=clang++\n\n#\n# Static analysis\n#\n  - os: linux\n    dist: precise\n    env: BS=cmake VARIANT=analyze CXX=clang++-4.0 LIBCXX=ON\n    addons: { apt: { packages: [\"clang-4.0\", \"libstdc++-6-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-trusty-4.0\"] } }\n\n  - os: linux\n    dist: trusty\n    env: BS=cmake VARIANT=analyze CXX=g++-7\n    addons: { apt: { packages: [\"g++-7\", \"libstdc++-7-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\"] } }\n\n  - os: osx\n    osx_image: xcode9.1\n    env: BS=cmake VARIANT=analyze CXX=clang++\n\n#\n# Dynamic analysis\n#\n  - os: linux\n    dist: precise\n    env: BS=cmake MEMCHECK=valgrind CXX=clang++-4.0 LIBCXX=ON\n    addons: { apt: { packages: [\"clang-4.0\", \"libstdc++-6-dev\", \"valgrind\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-trusty-4.0\"] } }\n\n  - os: linux\n    dist: trusty\n    env: BS=cmake MEMCHECK=valgrind CXX=g++-7\n    addons: { apt: { packages: [\"g++-7\", \"libstdc++-7-dev\", \"valgrind\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\"] } }\n\n  - os: osx\n    osx_image: xcode9.1\n    env: BS=cmake MEMCHECK=valgrind CXX=clang++\n\n#\n# Coverage\n#\n  - os: linux\n    dist: trusty\n    env: BS=bjam TOOLSET=gcc GCOV=gcov-7 VARIANT=coverage CXX=g++-7\n    addons: { apt: { packages: [\"g++-7\", \"libstdc++-7-dev\", \"gdb\"], sources: [\"ubuntu-toolchain-r-test\"] } }\n\n#\n# Benchmarks\n#\n  #- os: linux\n    #dist: precise\n    #env: BS=cmake BENCHMARK=QUICK CXX=clang++-4.0 LIBCXX=ON\n    #addons: { apt: { packages: [\"clang-4.0\", \"libstdc++-6-dev\"], sources: [\"ubuntu-toolchain-r-test\", \"llvm-toolchain-trusty-4.0\"] } }\n\n  #- os: linux\n    #dist: trusty\n    #env: BS=cmake BENCHMARK=QUICK CXX=g++-7\n    #addons: { apt: { packages: [\"g++-7\", \"libstdc++-7-dev\"], sources: [\"ubuntu-toolchain-r-test\"] } }\n\n  #- os: osx\n    #osx_image: xcode9.1\n    #env: BS=cmake BENCHMARK=QUICK CXX=clang++\n\nbefore_install:\n  - git config --global user.name \"Continuous Integration\"\n  - git config --global user.email \"kris@jusiak.net\"\n  - git config --global push.default simple\n\ninstall:\n  - if [ \"${BS}\" == \"bjam\" ]; then (wget https://github.com/boostorg/build/archive/boost-1.65.1.tar.gz\n    && tar zxf boost-1.65.1.tar.gz && cd build-boost-1.65.1 && ./bootstrap.sh)\n    && touch Jamroot && export BOOST_ROOT=\"$PWD/build-boost-1.65.1\" && export PATH=\"$PATH:$BOOST_ROOT\"; fi\n  - if [ \"${LIBCXX}\" != \"\" ]; then (svn --quiet co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx && cmake -Bbuild -H. && cmake --build build)\n    && export CXXFLAGS=\"-stdlib=libc++ -I${TRAVIS_BUILD_DIR}/libcxx/include\"\n    && export LDFLAGS=\"-L${TRAVIS_BUILD_DIR}/libcxx/build/lib -lc++\"\n    && export LD_LIBRARY_PATH=\"${TRAVIS_BUILD_DIR}/libcxx/build/lib:$LD_LIBRARY_PATH\"; fi\n\nscript:\n  - if [ \"${CXX}\" != \"\" ]; then (travis_wait make all); fi\n  - if [ \"${CHECK}\" != \"\" ]; then (travis_wait make check); fi\n  - if [ \"${TRAVIS_BRANCH}\" == \"cpp14\" ] && [ \"${DOCUMENTATION}\" != \"\" ]; then (\n    pip install https://github.com/mkdocs/mkdocs/archive/b30f38fe299738e8ce614e53c3342cc8bef02b5b.zip -U --user\n    && git clone https://github.com/boost-experimental/di && cd di && rm -rf *\n    && git checkout -b gh-pages -t origin/gh-pages && git reset --hard && cd ..\n    && MKDOCS_THEME=boost-experimental MKDOCS_SITE=../di make doc\n    && MKDOCS_THEME=boost-classic MKDOCS_SITE=../di/boost make doc readme\n    && cd di && git add -A . && git commit -am \"doc update\"\n    && git push --force --quiet \"https://${GH_TOKEN}@github.com/boost-experimental/di\"); fi\n\nafter_success:\n  - if [ \"${BENCHMARK}\" != \"\" ]; then (\n      git clone https://github.com/boost-experimental/di benchmarks\n      && cd benchmarks && git checkout -b benchmarks -t origin/benchmarks\n      && find ../build/test ../test -iname \"*.json\" | xargs -I% cp % . && git add -A . && git commit -am \"update\"\n      && git push --force --quiet \"https://${GH_TOKEN}@github.com/boost-experimental/di\"); fi\n  - if [ \"${VARIANT}\" == \"coverage\" ]; then (bash <(curl -s https://codecov.io/bash)); fi\n\nnotifications:\n  webhooks:\n    urls:\n    - https://webhooks.gitter.im/e/743f46341bea58bbe3ca\n  on_success: change\n  on_failure: always\n  on_start: false\n"
  },
  {
    "path": ".user-config.jam",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nimport os ;\n\nusing gcc : : [ os.environ CXX ] ;\nusing clang : : [ os.environ CXX ] ;\nusing darwin : : [ os.environ CXX ] ;\n\n"
  },
  {
    "path": "CMakeLists.txt",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\ncmake_minimum_required(VERSION 2.8)\nproject(Boost.DI CXX)\nset(CXX_STANDARD \"c++14\")\nenable_testing()\ninclude_directories(include)\n\nif(${CMAKE_CXX_COMPILER_ID} STREQUAL GNU)\n    set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -std=c++1y -fno-exceptions -pedantic -pedantic-errors -Wall -Wextra -Werror\")\nelseif (${CMAKE_CXX_COMPILER_ID} STREQUAL Clang)\n    set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -std=c++1y -fno-exceptions -pedantic -pedantic-errors -Wall -Wextra -Werror\")\nelseif (${CMAKE_CXX_COMPILER_ID} STREQUAL MSVC)\n    set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} /W3 /EHsc\")\nelse()\n    message(WARNING \"Unsupported compiler!\")\nendif()\n\nadd_subdirectory(example)\nadd_subdirectory(extension)\nadd_subdirectory(test)\n\n"
  },
  {
    "path": "Makefile",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nVALGRIND:=--memcheck=\"valgrind --leak-check=full --error-exitcode=1\"\nDRMEMORY:=--memcheck=\"drmemory -light -batch -exit_code_if_errors 1\"\nBS?=cmake\nCMAKE?=cmake\nCMAKE_GENERATOR?=Unix Makefiles\nTOOLSET?=clang\nCLANG_FORMAT?=clang-format\nCLANG_TIDY?=clang-tidy\nPYTHON?=python\nMKDOCS?=mkdocs\nMKDOCS_THEME?=boost-experimental\nMKDOCS_SITE?=site\n\n.PHONY: all clean doc\n\nall: all_$(BS)\n\nall_bjam:\n\t@cd test && bjam -j2 -q --toolset=$(TOOLSET) --user-config=../.user-config.jam debug-symbols=off $(VARIANT) $($(MEMCHECK)) cxxflags=\" $(CXXFLAGS)\" linkflags=\" $(LDFLAGS)\"\n\t@cd example && bjam -j2 -q --toolset=$(TOOLSET) --user-config=../.user-config.jam debug-symbols=off $($(MEMCHECK)) cxxflags=\" $(CXXFLAGS)\" linkflags=\" $(LDFLAGS)\"\n\t@cd extension && bjam -j2 -q --toolset=$(TOOLSET) --user-config=../.user-config.jam debug-symbols=off $($(MEMCHECK)) cxxflags=\" $(CXXFLAGS)\" linkflags=\" $(LDFLAGS)\"\n\nall_cmake:\n\t@-mkdir build\n\tcd build && $(CMAKE) -G \"$(CMAKE_GENERATOR)\" -DCMAKE_VERBOSE_MAKEFILE=ON .. && $(CMAKE) --build . && ctest --output-on-failure\n\nclean: clean_$(BS)\n\nclean_bjam:\n\t@bjam --clean\n\nclean_cmake:\n\t@rm -rf build\n\npph:\n\t@tools/pph.sh\n\ncheck: check_pph check_style\n\ncheck_pph: pph\n\t@git diff include/boost/di.hpp\n\t@git diff --quiet include/boost/di.hpp\n\ncheck_style:\n\t@find include example extension test -iname \"*.hpp\" -or -iname \"*.cpp\" | xargs $(CLANG_FORMAT) -i\n\t@git diff include example extension test\n\t@exit `git ls-files -m include example extension test | wc -l`\n\ncheck_static_analysis:\n\t@$(CLANG_TIDY) -header-filter='boost/di' `find example extension test -type f -iname \"*.cpp\"` -- -std=c++1y -I include -I test -include common/test.hpp\n\ndoc: readme doc_$(MKDOCS_THEME)\n\ndoc_%:\n\tcd doc && $(MKDOCS) build --clean --theme-dir themes/$* --site-dir $(MKDOCS_SITE)\n\ndoc_boost-classic:\n\tcd doc && $(PYTHON) themes/boost-classic/scripts/update_markdown.py . https://raw.githubusercontent.com/boost-experimental/di/cpp14\n\tcd doc && $(MKDOCS) build --clean --theme-dir themes/boost-classic --site-dir $(MKDOCS_SITE)\n\nreadme:\n\tcd doc && $(PYTHON) scripts/update_readme_toc.py mkdocs.yml ../README.md http://boost-experimental.github.io/di\n\nrelease: all check\n\n"
  },
  {
    "path": "README.md",
    "content": "<a href=\"http://www.boost.org/LICENSE_1_0.txt\" target=\"_blank\">![Boost Licence](http://img.shields.io/badge/license-boost-blue.svg)</a>\n<a href=\"https://github.com/boost-experimental/di/releases\" target=\"_blank\">![Version](https://badge.fury.io/gh/boost-experimental%2Fdi.svg)</a>\n<a href=\"https://travis-ci.org/boost-experimental/di\" target=\"_blank\">![Build Status](https://img.shields.io/travis/boost-experimental/di/cpp14.svg?label=linux/osx)</a>\n<a href=\"https://ci.appveyor.com/project/krzysztof-jusiak/di\" target=\"_blank\">![Build Status](https://img.shields.io/appveyor/ci/krzysztof-jusiak/di/cpp14.svg?label=windows)</a>\n<a href=\"https://codecov.io/gh/boost-experimental/di\" target=\"_blank\">![Coveralls](https://codecov.io/gh/boost-experimental/di/branch/cpp14/graph/badge.svg)</a>\n<a href=\"http://github.com/boost-experimental/di/issues\" target=\"_blank\">![Github Issues](https://img.shields.io/github/issues/boost-experimental/di.svg)</a>\n\n---------------------------------------\n\n# [Boost].DI\n\nYour C++14 header only Dependency Injection library with no dependencies ([__Try it online!__](http://boost-experimental.github.io/di/try_it/index.html))\n\n### Quick start\n\n#### Download\n[Boost].DI requires only one file. Get the latest header [here!](https://raw.githubusercontent.com/boost-experimental/di/cpp14/include/boost/di.hpp)\n\n#### Include\n```cpp\n#include <boost/di.hpp>\nnamespace di = boost::di;\n```\n\n#### Compile\n\n```sh\ngcc/clang$ $CXX -std=c++14 -O2 -fno-exceptions -fno-rtti -Wall -Werror -pedantic-errors file.cpp\nmsvc$      cl /std:c++14 /Ox /W3 file.cpp\n```\n\n#### Quick guide - Create object graph\n\n```cpp\nclass ctor {\npublic:\n  explicit ctor(int i) : i(i) {}\n  int i;\n};\n\nstruct aggregate {\n  double d;\n};\n\nclass example {\n  example(aggregate a, const ctor& c) {\n    assert(87.0 == a.d);\n    assert(42 == c.i);\n  };\n};\n\nint main() {\n  const auto injector = di::make_injector(\n    di::bind<int>.to(42),\n    di::bind<double>.to(87.0)\n  );\n\n  injector.create<example>();\n}\n```\n\n<p align=\"center\">\n<table>\n  <tr>\n    <th></th>\n    <th>Clang-3.8</th>\n    <th>GCC-6</th>\n    <th>MSVC-2015</th>\n  </tr>\n\n  <tr>\n    <td>Compilation Time</td>\n    <td>0.102s</td>\n    <td>0.118s</td>\n    <td>0.296s</td>\n  </tr>\n\n  <tr>\n    <td>Binary size (stripped)</td>\n    <td>6.2kb</td>\n    <td>6.2kb</td>\n    <td>105kb</td>\n  </tr>\n\n  <tr>\n    <td>ASM x86-64</td>\n    <td colspan=\"3\">\n      <pre><code>\nxor eax, eax\nretq\n      </code></pre>\n    </td>\n  </tr>\n</table>\n</p>\n\n#### Quick guide - Bind interfaces\n\n```cpp\nstruct interface {\n  virtual ~iworld() noexcept = default;\n  virtual int get() const = 0;\n};\n\nclass implementation : public interface {\npublic:\n  int get() const override { return 42; }\n};\n\nstruct example {\n  example(std::shared_ptr<interface> i) {\n    assert(42 == i->get());\n  }\n};\n\nint main() {\n  const auto injector = di::make_injector(\n    di::bind<interface>.to<implementation>()\n  );\n\n  injector.create<std::unique_ptr<example>>();\n}\n```\n\n<p align=\"center\">\n<table>\n  <tr>\n    <th></th>\n    <th>Clang-3.8</th>\n    <th>GCC-6</th>\n    <th>MSVC-2015</th>\n  </tr>\n\n  <tr>\n    <td>Compilation Time</td>\n    <td>0.102s</td>\n    <td>0.118s</td>\n    <td>0.296s</td>\n  </tr>\n\n  <tr>\n    <td>Binary size (stripped)</td>\n    <td>6.2kb</td>\n    <td>6.2kb</td>\n    <td>105kb</td>\n  </tr>\n\n  <tr>\n    <td>ASM x86-64 (same as `make_unique<example>`)</td>\n    <td colspan=\"3\">\n      <pre><code>\npush   %rbx\nmov    %rdi,%rbx\nmov    $0x8,%edi\ncallq  0x4008e0 <_Znwm@plt>\nmovq   $0x400c78,(%rax)\nmov    %rax,(%rbx)\nmov    %rbx,%rax\npop    %rbx\nretq\n      </code></pre>\n    </td>\n  </tr>\n</table>\n</p>\n\n#### Quick guide - Bind templates\n\n```cpp\ntemplate<class TPolicy = class TErrorPolicy>\nclass simple_updater : TPolicy {\n  void update() {\n    TPolicy::on(\"update\");\n  }\n};\n\ntemplate<class T = class TUpdater>\nclass example {\npublic:\n  explicit example(const TUpdater& updater)\n    : updater(updater)\n  { }\n\n  void update() {\n    updater.update();\n  }\n\nprivate:\n  const TUpdater& updater;\n};\n\nint main() {\n  struct throw_policy {\n    void on(std::string_view str) {\n      throw std::runtime_error(str);\n    }\n  };\n  const auto injector = di::make_injector(\n    di::bind<class TErrorPolicy>.to<throw_policy>(),\n    di::bind<class TUpdater>.to<simple_updater>()\n  );\n\n  injector.create<example>().update();\n}\n```\n\n<p align=\"center\">\n<table>\n  <tr>\n    <th></th>\n    <th>Clang-3.8</th>\n    <th>GCC-6</th>\n    <th>MSVC-2015</th>\n  </tr>\n\n  <tr>\n    <td>Compilation Time</td>\n    <td>0.102s</td>\n    <td>0.118s</td>\n    <td>0.296s</td>\n  </tr>\n\n  <tr>\n    <td>Binary size (stripped)</td>\n    <td>6.2kb</td>\n    <td>6.2kb</td>\n    <td>105kb</td>\n  </tr>\n\n  <tr>\n    <td>ASM x86-64</td>\n    <td colspan=\"3\">\n      <pre><code>\nxor eax, eax\nretq\n      </code></pre>\n    </td>\n  </tr>\n</table>\n</p>\n\n#### Quick guide - Bind concepts\n\n```cpp\nstruct Stremable {\n template<class T>\n auto requires(T&& t) -> decltype(\n   int( t.read() ),\n   t.write(int)\n );\n};\n\ntemplate<class Exchange = Streamable(class ExchangeStream)\n         class Engine   = Streamable(class EngineStream)>\nclass example {\n  example(Exchange exchange, Engine engine)\n    : exchange(exchange), engine(engine)\n  { }\n};\n\nint main() {\n  const auto injector = di::make_injector(\n    di::bind<Stremable(class ExchangeStream)>.to<exchange>(),\n    di::bind<Stremable(class EngineStream)>.to<engine>()\n  );\n\n  injector.create<example>();\n}\n```\n\n<p align=\"center\">\n<table>\n  <tr>\n    <th></th>\n    <th>Clang-3.8</th>\n    <th>GCC-6</th>\n    <th>MSVC-2015</th>\n  </tr>\n\n  <tr>\n    <td>Compilation Time</td>\n    <td>0.102s</td>\n    <td>0.118s</td>\n    <td>0.296s</td>\n  </tr>\n\n  <tr>\n    <td>Binary size (stripped)</td>\n    <td>6.2kb</td>\n    <td>6.2kb</td>\n    <td>105kb</td>\n  </tr>\n\n  <tr>\n    <td>ASM x86-64</td>\n    <td colspan=\"3\">\n      <pre><code>\nxor eax, eax\nretq\n      </code></pre>\n    </td>\n  </tr>\n</table>\n</p>\n\n---------------------------------------\n\n### Documentation\n\n[](GENERATE_TOC_BEGIN)\n\n* [Introduction](http://boost-experimental.github.io/di/index.html)\n    * [Do I use a Dependency Injection already?](http://boost-experimental.github.io/di/index.html#do-i-use-a-dependency-injection-already)\n    * [Do I use Dependency Injection correctly?](http://boost-experimental.github.io/di/index.html#do-i-use-dependency-injection-correctly)\n    * [Do I need a Dependency Injection?](http://boost-experimental.github.io/di/index.html#do-i-need-a-dependency-injection)\n    * [STUPID vs SOLID - \"Clean Code\" Uncle Bob](http://boost-experimental.github.io/di/index.html#stupid-vs-solid-clean-code-uncle-bob)\n    * [Do I need a DI Framework/Library?](http://boost-experimental.github.io/di/index.html#do-i-need-a-di-frameworklibrary)\n    * [Manual DI - Wiring Mess (Avoid it by using [Boost].DI)](http://boost-experimental.github.io/di/index.html#manual-di-wiring-mess-avoid-it-by-using-boostdi)\n    * [Real Life examples?](http://boost-experimental.github.io/di/index.html#real-life-examples)\n    * [Why [Boost].DI?](http://boost-experimental.github.io/di/index.html#why-boostdi)\n    * [[Boost].DI design goals](http://boost-experimental.github.io/di/index.html#boostdi-design-goals)\n    * [Articles](http://boost-experimental.github.io/di/index.html#articles)\n    * [Videos](http://boost-experimental.github.io/di/index.html#videos)\n    * [Acknowledgements](http://boost-experimental.github.io/di/index.html#acknowledgements)\n* [Overview](http://boost-experimental.github.io/di/overview/index.html)\n    * [Quick Start](http://boost-experimental.github.io/di/overview/index.html#quick-start)\n    * [Dependencies](http://boost-experimental.github.io/di/overview/index.html#dependencies)\n    * [Supported/Tested compilers](http://boost-experimental.github.io/di/overview/index.html#supportedtested-compilers)\n    * [Configuration](http://boost-experimental.github.io/di/overview/index.html#configuration)\n    * [Exception Safety](http://boost-experimental.github.io/di/overview/index.html#exception-safety)\n    * [Thread Safety](http://boost-experimental.github.io/di/overview/index.html#thread-safety)\n    * [Error Messages](http://boost-experimental.github.io/di/overview/index.html#error-messages)\n    * [Performance](http://boost-experimental.github.io/di/overview/index.html#performance)\n* [Tutorial](http://boost-experimental.github.io/di/tutorial/index.html)\n    * [0. [Pre] Refactor towards DI](http://boost-experimental.github.io/di/tutorial/index.html#0-pre-refactor-towards-di)\n    * [1. [Basic] Create objects tree](http://boost-experimental.github.io/di/tutorial/index.html#1-basic-create-objects-tree)\n    * [2. [Basic] First steps with bindings](http://boost-experimental.github.io/di/tutorial/index.html#2-basic-first-steps-with-bindings)\n    * [3. [Basic] Decide the life times](http://boost-experimental.github.io/di/tutorial/index.html#3-basic-decide-the-life-times)\n    * [4. [Basic] Annotations to the rescue](http://boost-experimental.github.io/di/tutorial/index.html#4-basic-annotations-to-the-rescue)\n    * [5. [Basic] Split your configuration](http://boost-experimental.github.io/di/tutorial/index.html#5-basic-split-your-configuration)\n    * [6. [Advanced] Dump/Limit your types](http://boost-experimental.github.io/di/tutorial/index.html#6-advanced-dumplimit-your-types)\n    * [7. [Advanced] Customize it](http://boost-experimental.github.io/di/tutorial/index.html#7-advanced-customize-it)\n    * [8. [Advanced] Extend it](http://boost-experimental.github.io/di/tutorial/index.html#8-advanced-extend-it)\n* [Try It Online!](http://boost-experimental.github.io/di/try_it/index.html)\n* [Benchmarks](http://boost-experimental.github.io/di/benchmarks/index.html)\n    * [Performance](http://boost-experimental.github.io/di/benchmarks/index.html#performance)\n    * [C++ Libraries](http://boost-experimental.github.io/di/benchmarks/index.html#c-libraries)\n    * [C++ vs Java vs C Libraries](http://boost-experimental.github.io/di/benchmarks/index.html#c-vs-java-vs-c-libraries)\n    * [Usage of C++ vs Java vs C Libraries](http://boost-experimental.github.io/di/benchmarks/index.html#usage-of-c-vs-java-vs-c-libraries)\n* [User Guide](http://boost-experimental.github.io/di/user_guide/index.html)\n    * [Injector](http://boost-experimental.github.io/di/user_guide/index.html#injector)\n    * [Bindings](http://boost-experimental.github.io/di/user_guide/index.html#bindings)\n    * [Injections](http://boost-experimental.github.io/di/user_guide/index.html#injections)\n    * [Annotations](http://boost-experimental.github.io/di/user_guide/index.html#annotations)\n    * [Scopes](http://boost-experimental.github.io/di/user_guide/index.html#scopes)\n    * [Modules](http://boost-experimental.github.io/di/user_guide/index.html#modules)\n    * [Providers](http://boost-experimental.github.io/di/user_guide/index.html#providers)\n    * [Policies](http://boost-experimental.github.io/di/user_guide/index.html#policies)\n    * [Concepts](http://boost-experimental.github.io/di/user_guide/index.html#concepts)\n    * [Configuration](http://boost-experimental.github.io/di/user_guide/index.html#configuration)\n* [Examples](http://boost-experimental.github.io/di/examples/index.html)\n    * [Hello World](http://boost-experimental.github.io/di/examples/index.html#hello-world)\n    * [Bindings](http://boost-experimental.github.io/di/examples/index.html#bindings)\n    * [Dynamic Bindings](http://boost-experimental.github.io/di/examples/index.html#dynamic-bindings)\n    * [Forward Bindings](http://boost-experimental.github.io/di/examples/index.html#forward-bindings)\n    * [Multiple Bindings](http://boost-experimental.github.io/di/examples/index.html#multiple-bindings)\n    * [Binding Non-owning Pointer](http://boost-experimental.github.io/di/examples/index.html#binding-non-owning-pointer)\n    * [Automatic Injection](http://boost-experimental.github.io/di/examples/index.html#automatic-injection)\n    * [Constructor Signature](http://boost-experimental.github.io/di/examples/index.html#constructor-signature)\n    * [Constructor Injection](http://boost-experimental.github.io/di/examples/index.html#constructor-injection)\n    * [Multiple Interface](http://boost-experimental.github.io/di/examples/index.html#multiple-interface)\n    * [Annotations](http://boost-experimental.github.io/di/examples/index.html#annotations)\n    * [Deduce Scope](http://boost-experimental.github.io/di/examples/index.html#deduce-scope)\n    * [Custom Scope](http://boost-experimental.github.io/di/examples/index.html#custom-scope)\n    * [Eager Singletons](http://boost-experimental.github.io/di/examples/index.html#eager-singletons)\n    * [Modules](http://boost-experimental.github.io/di/examples/index.html#modules)\n    * [Modules (hpp/cpp)](http://boost-experimental.github.io/di/examples/index.html#modules-hppcpp)\n    * [Custom Policy](http://boost-experimental.github.io/di/examples/index.html#custom-policy)\n    * [Custom Provider](http://boost-experimental.github.io/di/examples/index.html#custom-provider)\n    * [Pool Provider](http://boost-experimental.github.io/di/examples/index.html#pool-provider)\n    * [Configuration](http://boost-experimental.github.io/di/examples/index.html#configuration)\n* [Extensions](http://boost-experimental.github.io/di/extensions/index.html)\n    * [Constructor Bindings](http://boost-experimental.github.io/di/extensions/index.html#constructor-bindings)\n    * [Contextual Bindings](http://boost-experimental.github.io/di/extensions/index.html#contextual-bindings)\n    * [Assisted Injection](http://boost-experimental.github.io/di/extensions/index.html#assisted-injection)\n    * [Concepts](http://boost-experimental.github.io/di/extensions/index.html#concepts)\n    * [Factory](http://boost-experimental.github.io/di/extensions/index.html#factory)\n    * [Generics / Typed Erasure Interfaces](http://boost-experimental.github.io/di/extensions/index.html#genericstyped-erasure-interfaces)\n    * [Lazy](http://boost-experimental.github.io/di/extensions/index.html#lazy)\n    * [Named Parameters](http://boost-experimental.github.io/di/extensions/index.html#named-parameters)\n    * [XML Injection](http://boost-experimental.github.io/di/extensions/index.html#xml-injection)\n    * [Serialize](http://boost-experimental.github.io/di/extensions/index.html#serialize)\n    * [Types Dumper](http://boost-experimental.github.io/di/extensions/index.html#types-dumper)\n    * [UML Dumper](http://boost-experimental.github.io/di/extensions/index.html#uml-dumper)\n    * [Mocks Provider](http://boost-experimental.github.io/di/extensions/index.html#mocks-provider)\n    * [Scoped Scope](http://boost-experimental.github.io/di/extensions/index.html#scoped-scope)\n    * [Session Scope](http://boost-experimental.github.io/di/extensions/index.html#session-scope)\n    * [Shared Scope](http://boost-experimental.github.io/di/extensions/index.html#shared-scope)\n* [FAQ](http://boost-experimental.github.io/di/FAQ/index.html)\n* [CHANGELOG](http://boost-experimental.github.io/di/CHANGELOG/index.html)\n    * [ [1.1.0] - 2017-05-04](http://boost-experimental.github.io/di/CHANGELOG/index.html#-110-2017-05-04)\n    * [ [1.0.1] - 2016-05-04](http://boost-experimental.github.io/di/CHANGELOG/index.html#-101-2016-05-04)\n    * [ [1.0.0] - 2016-02-22](http://boost-experimental.github.io/di/CHANGELOG/index.html#-100-2016-02-22)\n    * [ [0.5.0] - 2015-01-12](http://boost-experimental.github.io/di/CHANGELOG/index.html#-050-2015-01-12)\n    * [ [0.1.0] - 2014-08-15](http://boost-experimental.github.io/di/CHANGELOG/index.html#-010-2014-08-15)\n\n"
  },
  {
    "path": "benchmark/Makefile",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nFRAMEWORKS:=.frameworks\nPYTHON:=python\nCXX?=clang++\nJAVA?=java\nJAVAC?=javac\nSC?=dmcs\n\nbenchmark:\n\tmake TYPES=64 CTOR_ARGS=4 ITERATIONS=1024 TEST=unique base di fruit guice dagger2 ninject\n\tmake TYPES=128 CTOR_ARGS=4 ITERATIONS=1024 TEST=unique base di fruit guice dagger2 ninject\n\tmake TYPES=256 CTOR_ARGS=4 ITERATIONS=1024 TEST=unique base di fruit guice dagger2 ninject\n\tmake TYPES=512 CTOR_ARGS=4 ITERATIONS=1024 TEST=unique base di fruit guice dagger2 ninject\n\tmake TYPES=1024 CTOR_ARGS=4 ITERATIONS=1024 TEST=unique base di fruit guice dagger2 ninject\n\n$(FRAMEWORKS)/base:\n\n$(FRAMEWORKS)/fruit:\n\t@-mkdir -p $(FRAMEWORKS) 2>/dev/null\n\tgit clone https://github.com/google/fruit.git $(FRAMEWORKS)/fruit\n\tcd $(FRAMEWORKS)/fruit && mkdir .build && cd .build && cmake .. && cmake --build .\n\n$(FRAMEWORKS)/di:\n\t@-mkdir -p $(FRAMEWORKS) 2>/dev/null\n\tgit clone https://github.com/boost-experimental/di.git $(FRAMEWORKS)/di\n\n$(FRAMEWORKS)/hypodermic:\n\t@-mkdir -p $(FRAMEWORKS) 2>/dev/null\n\tgit clone https://github.com/ybainier/Hypodermic.git $(FRAMEWORKS)/hypodermic\n\n$(FRAMEWORKS)/guice:\n\t@-mkdir -p $(FRAMEWORKS)/guice 2>/dev/null\n\tcd $(FRAMEWORKS)/guice && curl -L -O http://central.maven.org/maven2/com/google/guava/guava/19.0/guava-19.0.jar\n\tcd $(FRAMEWORKS)/guice && curl -L -O http://central.maven.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar\n\tcd $(FRAMEWORKS)/guice && curl -L -O https://github.com/google/guice/releases/download/4.0/guice-4.0.jar\n\tcd $(FRAMEWORKS)/guice && curl -L -O http://central.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar\n\n$(FRAMEWORKS)/dagger2:\n\t@-mkdir -p $(FRAMEWORKS)/dagger2 2>/dev/null\n\tcd $(FRAMEWORKS)/dagger2 && curl -L -O https://github.com/krzysztof-jusiak/di_frameworks/raw/master/frameworks/dagger2/dagger-compiler-2.0-20150330.203231-18-jar-with-dependencies.jar\n\tcd $(FRAMEWORKS)/dagger2 && curl -L -O https://github.com/krzysztof-jusiak/di_frameworks/raw/master/frameworks/dagger2/javax.inject-1.jar\n\t#cd $(FRAMEWORKS)/dagger2 && curl -L -O http://central.maven.org/maven2/com/google/dagger/dagger/2.4/dagger-2.4.jar\n\t#cd $(FRAMEWORKS)/dagger2 && curl -L -O http://central.maven.org/maven2/com/google/dagger/dagger-compiler/2.4/dagger-compiler-2.4.jar\n\t#cd $(FRAMEWORKS)/dagger2 && curl -L -O http://central.maven.org/maven2/org/glassfish/javax.annotation/10.0-b28/javax.annotation-10.0-b28.jar\n\n$(FRAMEWORKS)/ninject:\n\t@-mkdir -p $(FRAMEWORKS)/ninject 2>/dev/null\n\tcd $(FRAMEWORKS)/ninject && curl -L -O https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ninject2/Ninject-3.0.1.10-release-mono-4.0.zip\n\tcd $(FRAMEWORKS)/ninject && unzip -j Ninject-3.0.1.10-release-mono-4.0.zip\n\ngen_%:\n\t@make $(FRAMEWORKS)/$*\n\t@echo \"--------------\"\n\t@echo $*\n\t@echo \"--------------\"\n\t@rm -rf .$*\n\t@mkdir .$* && cd .$* && FRAMEWORK=$* $(PYTHON) ../generate_test.py\n\nbase: gen_base\n\tcd .base && time $(CXX) base.cpp -std=c++11 -O2 -I.. -o base.out\n\tcd .base && strip base.out && ls -lh base.out \n\tcd .base && time ./base.out || exit 1\n\ndi: gen_di\n\tcd .di && time $(CXX) di.cpp -std=c++1y -O2 -I.. -I ../$(FRAMEWORKS)/di/include -o di.out\n\tcd .di && strip di.out && ls -lh di.out || exit 1\n\tcd .di && time ./di.out\n\nfruit: gen_fruit\n\tcd .fruit && time $(CXX) -DFRUIT_NO_LOOP_CHECK fruit.cpp -std=c++11 -O2 -I.. -I ../$(FRAMEWORKS)/fruit/include -I ../$(FRAMEWORKS)/fruit/.build/include -L ../$(FRAMEWORKS)/fruit/.build/src -lfruit -o fruit.out\n\tcd .fruit strip fruit.out && ls -lh fruit.out\n\tcd .fruit && time LD_LIBRARY_PATH=../$(FRAMEWORKS)/fruit/.build/src ./fruit.out || exit 1\n\nhypodermic: gen_hypodermic\n\tcd .hypodermic && time $(CXX) hypodermic.cpp -std=c++11 -O2 -I.. -I ../$(FRAMEWORKS)/hypodermic -o hypodermic.out\n\tcd .hypodermic && strip hypodermic.out && ls -lh hypodermic.out\n\tcd .hypodermic && time ./hypodermic.out || exit 1\n\nguice: gen_guice\n\tcd .guice && time $(JAVAC) -cp .:`ls ../$(FRAMEWORKS)/guice/*.jar| xargs | tr ' ' ':'` guice.java\n\tcd .guice && time $(JAVA) -cp .:`ls ../$(FRAMEWORKS)/guice/*.jar| xargs | tr ' ' ':'` guice || exit 1\n\ndagger2: gen_dagger2\n\tcd .dagger2 && time $(JAVAC) -cp .:`ls ../$(FRAMEWORKS)/dagger2/*.jar| xargs | tr ' ' ':'` dagger2.java\n\tcd .dagger2 && time $(JAVA) -cp .:`ls ../$(FRAMEWORKS)/dagger2/*.jar| xargs | tr ' ' ':'` dagger2 || exit 1\n\nninject: gen_ninject\n\tcd .ninject && cp ../$(FRAMEWORKS)/ninject/Ninject.dll .\n\tcd .ninject && time $(SC) -o+ /r:Ninject.dll ninject.cs\n\tcd .ninject && time mono --aot=full ./ninject.exe\n\tcd .ninject && time mono ./ninject.exe || exit 1\n\n"
  },
  {
    "path": "benchmark/bind_error/dagger2.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport dagger.*;\nimport javax.inject.Inject;\n\ninterface I {\n  public void dummy();\n};\n\nclass Impl implements I {\n  @Inject Impl() { }\n  @Override public void dummy() { }\n}\n\n@Module\nclass AppModule {\n  //@Provides I provideI(Impl impl) { return impl; }\n}\n\n@Component(modules = AppModule.class)\ninterface AppComponent {\n  I build();\n}\n\npublic class dagger2 {\n  public static void main(String[] args) {\n    I object = Dagger_AppComponent.create().build();\n    object.dummy();\n   }\n}\n\n/**\n * dagger2.java:13: error: I cannot be provided without an @Provides-annotated method.\n * I build();\n *   ^\n * 1 error\n */\n"
  },
  {
    "path": "benchmark/bind_error/di.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nstruct I {\n  virtual ~I() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct Impl : I {\n  void dummy() override {}\n};\n\nauto module = [] {\n  // clang-format off\n  return di::make_injector(\n    // di::bind<I>.to<Impl>()\n  );\n  // clang-format on\n};\n\nint main() {\n  auto injector = di::make_injector(module());\n  std::unique_ptr<I> object{injector.create<I *>()};\n  object->dummy();\n}\n\n// clang-format off\n/**\n * di.cpp:32:38: warning: 'create<I *, 0>' is deprecated: creatable constraint not satisfied\n *   std::unique_ptr<I> object{injector.create<I *>()};\n *                                      ^\n * boost/di.hpp:2420:3: note: 'create<I *, 0>' has been explicitly marked deprecated here\n *   create\n *   ^\n * boost/di.hpp:871:2: error: 'boost::di::v1_0_0::concepts::abstract_type<I>::is_not_bound::error'\n *  error(_ = \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\");\n *  ^\n */\n// clang-format on\n"
  },
  {
    "path": "benchmark/bind_error/dicpp.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <di/registry.hpp>\n#include <di/injector.hpp>\n#include <di/constructor.hpp>\n\nstruct I {\n  virtual ~I() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct Impl : I {\n  DI_CONSTRUCTOR(Impl, ()) {}\n  void dummy() override {}\n};\n\nvoid module(di::registry& r) {\n  // r.add(r.type<I>().implementation<Impl>());\n}\n\nint main() {\n  di::injector injector;\n  injector.install(module);\n  std::unique_ptr<I> object{injector.construct<I*>()};\n  object->dummy();\n}\n\n/**\n * terminate called after throwing an instance of 'std::runtime_error'\n * what():  Requested type without corresponding provider: di::type_key<I*, void>.\n * Double check if the type is abstract\n */\n"
  },
  {
    "path": "benchmark/bind_error/fruit.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <fruit/fruit.h>\n\nstruct I {\n  virtual ~I() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct Impl : I {\n  INJECT(Impl()) {}\n  void dummy() override {}\n};\n\nfruit::Component<I> module() {\n  return fruit::createComponent();\n  //.bind<I, Impl>();\n}\n\nint main() {\n  fruit::Injector<I> injector{module()};\n  std::unique_ptr<I> object{injector.get<I*>()};\n  object->dummy();\n}\n\n// clang-format off\n/**\n  *  In file included from fruit.cpp:1:\n  *  In file included from .fruit/include/fruit/fruit.h:25:\n  * fruit/include/fruit/impl/injection_errors.h:33:3: error: static_assert failed\n  * \"No explicit binding nor C::Inject definition was found for T.\"\n  *  static_assert(AlwaysFalse<T>::value,\n  * ^             ~~~~~~~~~~~~~~~~~~~~~\n  * fruit/include/fruit/impl/component.defn.h:41:9: note: in instantiation of\n  * 'fruit::impl::NoBindingFoundError<I>' requested here\n  * (void)typename fruit::impl::meta::CheckIfError<typename Op::Result>::type();\n  * ^\n  *  fruit.cpp:6:12: note: in instantiation of function template specialization\n  *  'fruit::Component<I>::Component<\n  *    fruit::impl::meta::ConsComp<\n  *    fruit::impl::meta::Vector<>*,\n  *    fruit::impl::meta::Vector<>,\n  *    fruit::impl::meta::Vector<>, \n  *    fruit::impl::meta::Vector<>,\n  *    fruit::impl::meta::Vector<>\n  *    >*>' requested here\n  *  return fruit::createComponent();\n  */\n// clang-format on\n"
  },
  {
    "path": "benchmark/bind_error/guice.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport com.google.inject.*;\n\ninterface I {\n  public void dummy();\n};\n\nclass Impl implements I {\n  @Inject Impl() { }\n  @Override public void dummy() { }\n}\n\nclass Module extends AbstractModule {\n  @Override\n  protected void configure() {\n    //bind(I.class).to(Impl.class);\n  }\n}\n\npublic class guice {\n  public static void main(String[] args) {\n    Injector injector = Guice.createInjector(new Module());\n    I object = injector.getInstance(I.class);\n    object.dummy();\n  }\n}\n\n/**\n  * Exception in thread \"main\" com.google.inject.ConfigurationException:\n  * Guice configuration errors:\n  *\n  * 1) No implementation for I was bound.\n  * while locating I\n  *\n  * 1 error\n  * at com.google.inject.internal.InjectorImpl.getProvider(InjectorImpl.java:1042)\n  * at com.google.inject.internal.InjectorImpl.getProvider(InjectorImpl.java:1001)\n  * at com.google.inject.internal.InjectorImpl.getInstance(InjectorImpl.java:1051)\n  * at guice.main(guice.java:15)\n  *\n */\n"
  },
  {
    "path": "benchmark/bind_error/ninject.cs",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nusing Ninject;\n\ninterface I {\n  void dummy();\n};\n\nclass Impl : I {\n  public Impl() { }\n  void I.dummy() { }\n}\n\nclass Module : Ninject.Modules.NinjectModule {\n  public override void Load() {\n    //Bind<I>().To<Impl>();\n  }\n}\n\nclass ninject {\n  static void Main(string[] args) {\n    Ninject.IKernel kernel = new StandardKernel(new Module());\n    I object = kernel.Get<I>();\n    object->dummy();\n  }\n}\n\n/**\n */\n"
  },
  {
    "path": "benchmark/bind_interface/dagger2.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport dagger.*;\nimport javax.inject.Inject;\n\ninterface I {\n  public void dummy();\n};\n\nclass Impl implements I {\n  @Inject Impl() { }\n  @Override public void dummy() { }\n}\n\n@Module\nclass AppModule {\n  @Provides I provideI(Impl impl) { return impl; }\n}\n\n@Component(modules = AppModule.class)\ninterface AppComponent {\n  I build();\n}\n\npublic class dagger2 {\n  public static void main(String[] args) {\n    I object = Dagger_AppComponent.create().build();\n   }\n}\n"
  },
  {
    "path": "benchmark/bind_interface/di.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nstruct I {\n  virtual ~I() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct Impl : I {\n  void dummy() override {}\n};\n\nauto module = [] {\n  // clang-format off\n  return di::make_injector(\n    di::bind<I>.to<Impl>()\n  );\n  // clang-format on\n};\n\nauto test() {\n  auto injector = di::make_injector(module());\n  return injector.create<std::unique_ptr<I>>();\n}\n\n//<-\nint main() {}\n/**\n * ASM x86-64 (same as `std::make_unique<implementation>()`)\n *\n * push   %rbx\n * mov    %rdi,%rbx\n * mov    $0x8,%edi\n * callq  0x4009f0 <_Znwm@plt>\n * movq   $0x400e78,(%rax)\n * mov    %rax,(%rbx)\n * mov    %rbx,%rax\n * pop    %rbx\n * ret\n */\n//->\n"
  },
  {
    "path": "benchmark/bind_interface/dicpp.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <memory>\n//->\n#include <di/registry.hpp>\n#include <di/injector.hpp>\n#include <di/constructor.hpp>\n\nstruct I {\n  virtual ~I() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct Impl : I {\n  DI_CONSTRUCTOR(Impl, ()) {}\n  void dummy() override {}\n};\n\nvoid module(di::registry& r) {\n  // clang-format off\n  r.add(r.type<I>().implementation<Impl>());\n  // clang-format on\n}\n\nstd::unique_ptr<I> test() {\n  di::injector injector;\n  injector.install(module);\n  std::unique_ptr<I> object{injector.construct<I*>()};\n  return object;\n}\n\n//<-\nint main() {}\n/**\n * ASM x86-64\n *\n * push   %r14\n * push   %rbx\n * sub    $0xc8,%rsp\n * mov    %rdi,%r14\n * lea    0x20(%rsp),%rbx\n * xor    %esi,%esi\n * mov    %rbx,%rdi\n * callq  0x40c3d0 <_ZN2di8injectorC2ENS0_8localityE>\n * movq   $0x4044c0,(%rsp)\n * movq   $0x40bf80,0x18(%rsp)\n * movq   $0x40bf90,0x10(%rsp)\n * xorps  %xmm0,%xmm0\n * movaps %xmm0,0xb0(%rsp)\n * lea    0xb0(%rsp),%rsi\n * mov    %rbx,%rdi\n * callq  0x4047e0\n * <_ZN2di8registry3addI1IN5boost3mpl6m_itemINS_6detail4tags14implementationE4ImplNS4_3mapIN4mpl_2naESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EEEEEEvRKNS6_20registration_builderIT_T0_EE>\n * mov    0x10(%rsp),%rax\n * test   %rax,%rax\n * je     0x404549 <_Z4testv+105>\n * lea    (%rsp),%rdi\n * mov    $0x3,%edx\n * mov    %rdi,%rsi\n * callq  *%rax\n * lea    0x20(%rsp),%rdi\n * callq  0x40bfc0 <_ZNK2di8registry9constructIP1IEENS_6traits13returned_typeIT_E4typeEv>\n * mov    %rax,(%r14)\n * lea    0x20(%rsp),%rdi\n * callq  0x40c7d0 <_ZN2di8registryD2Ev>\n * mov    %r14,%rax\n * add    $0xc8,%rsp\n * pop    %rbx\n * pop    %r14\n * retq\n * mov    %rax,%rbx\n * mov    0x10(%rsp),%rcx\n * test   %rcx,%rcx\n * je     0x404596 <_Z4testv+182>\n * lea    (%rsp),%rdi\n * mov    $0x3,%edx\n * mov    %rdi,%rsi\n * callq  *%rcx\n * jmp    0x404596 <_Z4testv+182>\n * mov    %rax,%rdi\n * callq  0x405890 <__clang_call_terminate>\n * mov    %rax,%rbx\n * lea    0x20(%rsp),%rdi\n * callq  0x40c7d0 <_ZN2di8registryD2Ev>\n * mov    %rbx,%rdi\n * callq  0x4041f0 <_Unwind_Resume@plt>\n * mov    %rax,%rdi\n * callq  0x405890 <__clang_call_terminate>\n */\n//->\n"
  },
  {
    "path": "benchmark/bind_interface/fruit.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <memory>\n//->\n#include <fruit/fruit.h>\n\nstruct I {\n  virtual ~I() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct Impl : I {\n  INJECT(Impl()) {}\n  void dummy() override {}\n};\n\nfruit::Component<I> module() {\n  // clang-format off\n  return fruit::createComponent()\n    .bind<I, Impl>();\n  // clang-format on\n}\n\nstd::unique_ptr<I> test() {\n  fruit::Injector<I> injector{module()};\n  // get<unique_ptr> is not supported\n  std::unique_ptr<I> object{injector.get<I*>()};\n  return object;\n}\n\n//<-\nint main() {}\n/**\n * ASM x86-64\n *\n *  push   %r14\n *  push   %rbx\n *  sub    $0xc8,%rsp\n *  mov    %rdi,%r14\n *  lea    (%rsp),%rbx\n *  mov    %rbx,%rdi\n *  callq  0x401740 <_Z6modulev>\n *  lea    0xc0(%rsp),%rdi\n *  mov    %rbx,%rsi\n *  callq  0x401d30 <_ZN5fruit8InjectorIJ1IEEC2ENS_9ComponentIJS1_EEE>\n *  mov    0xa8(%rsp),%rdi\n *  test   %rdi,%rdi\n *  je     0x40186b <_Z4testv+59>\n *  callq  0x4013d0 <_ZdlPv@plt>\n *  mov    0x90(%rsp),%rdi\n *  test   %rdi,%rdi\n *  je     0x40187d <_Z4testv+77>\n *  callq  0x4013d0 <_ZdlPv@plt>\n *  mov    0x48(%rsp),%rdi\n *  test   %rdi,%rdi\n *  je     0x40188c <_Z4testv+92>\n *  callq  0x4013d0 <_ZdlPv@plt>\n *  mov    0xc0(%rsp),%rbx\n *  lea    0x28(%rbx),%rdi\n *  mov    $0x40c360,%esi\n *  callq  0x40b990 <_ZNK5fruit4impl13SemistaticMapINS0_6TypeIdENS0_29SemistaticGraphInternalNodeIdEE2atES2_>\n *  mov    (%rax),%rsi\n *  test   $0xf,%sil\n *  jne    0x401934 <_Z4testv+260>\n *  mov    %rsi,%rax\n *  and    $0xfffffffffffffff0,%rax\n *  cmp    %rsi,%rax\n *  jne    0x40194d <_Z4testv+285>\n *  add    0x68(%rbx),%rsi\n *  mov    %rbx,%rdi\n *  callq  0x402b30\n * <_ZN5fruit4impl15InjectorStorage6getPtrI1IEEPT_NS0_15SemistaticGraphINS0_6TypeIdENS0_21NormalizedBindingDataEE13node_iteratorE>\n *  mov    %rax,(%r14)\n *  mov    %rbx,%rdi\n *  callq  0x401df0 <_ZN5fruit4impl15InjectorStorageD2Ev>\n *  mov    %rbx,%rdi\n *  callq  0x4013d0 <_ZdlPv@plt>\n *  mov    %r14,%rax\n *  add    $0xc8,%rsp\n *  pop    %rbx\n *  pop    %r14\n *  retq\n *  mov    %rax,%r14\n *  mov    0xa8(%rsp),%rdi\n *  test   %rdi,%rdi\n *  je     0x401901 <_Z4testv+209>\n *  callq  0x4013d0 <_ZdlPv@plt>\n *  mov    0x90(%rsp),%rdi\n *  test   %rdi,%rdi\n *  je     0x401913 <_Z4testv+227>\n *  callq  0x4013d0 <_ZdlPv@plt>\n *  mov    0x48(%rsp),%rdi\n *  test   %rdi,%rdi\n *  je     0x401985 <_Z4testv+341>\n *  callq  0x4013d0 <_ZdlPv@plt>\n *  mov    %r14,%rdi\n *  callq  0x4015a0 <_Unwind_Resume@plt>\n *  mov    %rax,%r14\n *  test   %rbx,%rbx\n *  je     0x401979 <_Z4testv+329>\n *  jmp    0x401969 <_Z4testv+313>\n *  mov    $0x40bc18,%edi\n *  mov    $0x40bc42,%esi\n *  mov    $0xb1,%edx\n *  mov    $0x40bca0,%ecx\n *  callq  0x4013f0 <__assert_fail@plt>\n *  mov    $0x40bdb3,%edi\n *  mov    $0x40bc42,%esi\n *  mov    $0xb4,%edx\n *  mov    $0x40bca0,%ecx\n *  callq  0x4013f0 <__assert_fail@plt>\n *  mov    %rax,%r14\n *  mov    %rbx,%rdi\n *  callq  0x401df0 <_ZN5fruit4impl15InjectorStorageD2Ev>\n *  mov    %rbx,%rdi\n *  callq  0x4013d0 <_ZdlPv@plt>\n *  movq   $0x0,0xc0(%rsp)\n *  mov    %r14,%rdi\n *  callq  0x4015a0 <_Unwind_Resume@plt>\n */\n//->\n"
  },
  {
    "path": "benchmark/bind_interface/guice.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport com.google.inject.*;\n\ninterface I {\n  public void dummy();\n};\n\nclass Impl implements I {\n  @Inject Impl() { }\n  @Override public void dummy() { }\n}\n\nclass Module extends AbstractModule {\n  @Override\n  protected void configure() {\n    bind(I.class).to(Impl.class);\n  }\n}\n\npublic class guice {\n  public static void main(String[] args) {\n    Injector injector = Guice.createInjector(new Module());\n    I object = injector.getInstance(I.class);\n  }\n}\n"
  },
  {
    "path": "benchmark/bind_interface/ninject.cs",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nusing Ninject;\n\ninterface I {\n  void dummy();\n};\n\nclass Impl : I {\n  public Impl() { }\n  void I.dummy() { }\n}\n\nclass Module : Ninject.Modules.NinjectModule {\n  public override void Load() {\n    Bind<I>().To<Impl>();\n  }\n}\n\nclass ninject {\n  static void Main(string[] args) {\n    Ninject.IKernel kernel = new StandardKernel(new Module());\n    I object = kernel.Get<I>();\n  }\n}\n"
  },
  {
    "path": "benchmark/bind_value/dagger2.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport dagger.*;\n\n@Module\nclass AppModule {\n  @Provides int provideint() { return 42; }\n}\n\n@Component(modules = AppModule.class)\ninterface AppComponent {\n  int build();\n}\n\npublic class dagger2 {\n  public static void main(String[] args) {\n    Dagger_AppComponent.create().build();\n  }\n}\n"
  },
  {
    "path": "benchmark/bind_value/di.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto module = [] {\n  // clang-format off\n  return di::make_injector(\n    di::bind<>.to(42)\n  );\n  // clang-format on\n};\n\nauto test() {\n  auto injector = di::make_injector(module());\n  return injector.create<int>();\n}\n\n//<-\nint main() {}\n/**\n * ASM x86-64 (same as `return 42`)\n *\n * xor 0x2a,%eax\n * retq\n */\n//->\n"
  },
  {
    "path": "benchmark/bind_value/dicpp.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <di/registry.hpp>\n#include <di/injector.hpp>\n\nvoid module(di::registry& r) {\n  // clang-format off\n  r.add(r.type<int>().instance(new int{42}));\n  // clang-format on\n}\n\nauto test() {\n  di::injector injector;\n  injector.install(module);\n  return injector.construct<int>();\n}\n\n//<-\nint main() {}\n/**\n * ASM x86-64\n *\n * push   %rbx\n * sub    $0xb0,%rsp\n * lea    0x20(%rsp),%rbx\n * xor    %esi,%esi\n * mov    %rbx,%rdi\n * callq  0x40af50 <_ZN2di8injectorC2ENS0_8localityE>\n * movq   $0x404b10,(%rsp)\n * movq   $0x40ab00,0x18(%rsp)\n * movq   $0x40ab10,0x10(%rsp)\n * mov    %rbx,%rdi\n * callq  0x404b10 <_Z6moduleRN2di8registryE>\n * mov    0x10(%rsp),%rax\n * test   %rax,%rax\n * je     0x404d61 <_Z4testv+81>\n * lea    (%rsp),%rdi\n * mov    $0x3,%edx\n * mov    %rdi,%rsi\n * callq  *%rax\n * lea    0x20(%rsp),%rdi\n * callq  0x40ab40 <_ZNK2di8registry9constructIiEENS_6traits13returned_typeIT_E4typeEv>\n * mov    %eax,%ebx\n * lea    0x20(%rsp),%rdi\n * callq  0x40b390 <_ZN2di8registryD2Ev>\n * mov    %ebx,%eax\n * add    $0xb0,%rsp\n * pop    %rbx\n * retq\n * mov    %rax,%rbx\n * mov    0x10(%rsp),%rcx\n * test   %rcx,%rcx\n * je     0x404daa <_Z4testv+154>\n * lea    (%rsp),%rdi\n * mov    $0x3,%edx\n * mov    %rdi,%rsi\n * callq  *%rcx\n * jmp    0x404daa <_Z4testv+154>\n * mov    %rax,%rdi\n * callq  0x405f60 <__clang_call_terminate>\n * mov    %rax,%rbx\n * lea    0x20(%rsp),%rdi\n * callq  0x40b390 <_ZN2di8registryD2Ev>\n * mov    %rbx,%rdi\n * callq  0x404840 <_Unwind_Resume@plt>\n * mov    %rax,%rdi\n * callq  0x405f60 <__clang_call_terminate>\n */\n//->\n"
  },
  {
    "path": "benchmark/bind_value/fruit.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <fruit/fruit.h>\n\nauto i = 42;  // bindInstance doesn't support l-value's\n\nfruit::Component<int> module() {\n  // clang-format off\n  return fruit::createComponent().bindInstance(i);\n  // clang-format on\n}\n\nauto test() {\n  fruit::Injector<int> injector{module()};\n  return injector.get<int>();\n}\n\n//<-\nint main() {}\n/**\n * ASM x86-64\n *\n * push   %rbp\n * push   %r14\n * push   %rbx\n * sub    $0xd0,%rsp\n * lea    0x8(%rsp),%rbx\n * mov    %rbx,%rdi\n * callq  0x400cd0 <_Z6modulev>\n * lea    0xc8(%rsp),%rdi\n * mov    %rbx,%rsi\n * callq  0x401170 <_ZN5fruit8InjectorIJiEEC2ENS_9ComponentIJiEEE>\n * mov    0xb0(%rsp),%rdi\n * test   %rdi,%rdi\n * je     0x400efa <_Z4testv+58>\n * callq  0x400b10 <_ZdlPv@plt>\n * mov    0x98(%rsp),%rdi\n * test   %rdi,%rdi\n * je     0x400f0c <_Z4testv+76>\n * callq  0x400b10 <_ZdlPv@plt>\n * mov    0x50(%rsp),%rdi\n * test   %rdi,%rdi\n * je     0x400f1b <_Z4testv+91>\n * callq  0x400b10 <_ZdlPv@plt>\n * mov    0xc8(%rsp),%rbx\n * mov    %rbx,%rdi\n * callq  0x4015e0\n * <_ZN5fruit4impl15InjectorStorage3getIiEENS0_4meta6DoEvalIFNS3_17RemoveAnnotationsENS3_4TypeIT_EEEE4type4typeEv>\n * mov    %eax,%ebp\n * test   %rbx,%rbx\n * je     0x400f42 <_Z4testv+130>\n * mov    %rbx,%rdi\n * callq  0x401230 <_ZN5fruit4impl15InjectorStorageD2Ev>\n * mov    %rbx,%rdi\n * callq  0x400b10 <_ZdlPv@plt>\n * mov    %ebp,%eax\n * add    $0xd0,%rsp\n * pop    %rbx\n * pop    %r14\n * pop    %rbp\n * retq\n * mov    %rax,%r14\n * mov    0xb0(%rsp),%rdi\n * test   %rdi,%rdi\n * je     0x400f65 <_Z4testv+165>\n * callq  0x400b10 <_ZdlPv@plt>\n * mov    0x98(%rsp),%rdi\n * test   %rdi,%rdi\n * je     0x400f77 <_Z4testv+183>\n * callq  0x400b10 <_ZdlPv@plt>\n * mov    0x50(%rsp),%rdi\n * test   %rdi,%rdi\n * je     0x400fb2 <_Z4testv+242>\n * callq  0x400b10 <_ZdlPv@plt>\n * mov    %r14,%rdi\n * callq  0x400bb0 <_Unwind_Resume@plt>\n * mov    %rax,%r14\n * test   %rbx,%rbx\n * je     0x400fa6 <_Z4testv+230>\n * mov    %rbx,%rdi\n * callq  0x401230 <_ZN5fruit4impl15InjectorStorageD2Ev>\n * mov    %rbx,%rdi\n * callq  0x400b10 <_ZdlPv@plt>\n * movq   $0x0,0xc8(%rsp)\n * mov    %r14,%rdi\n * callq  0x400bb0 <_Unwind_Resume@plt>\n */\n//->\n"
  },
  {
    "path": "benchmark/bind_value/guice.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport com.google.inject.*;\n\nclass Module extends AbstractModule {\n  @Override\n  protected void configure() {\n    bind(int.class).toInstance(42);\n  }\n}\n\npublic class guice {\n  public static void main(String[] args) {\n    Injector injector = Guice.createInjector(new Module());\n    injector.getInstance(int.class);\n  }\n}\n"
  },
  {
    "path": "benchmark/bind_value/ninject.cs",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nusing Ninject;\n\nclass Module : Ninject.Modules.NinjectModule {\n  public override void Load() {\n    Bind<int>().To(42);\n  }\n}\n\nclass ninject {\n  static void Main(string[] args) {\n    Ninject.IKernel kernel = new StandardKernel(new Module());\n    kernel.Get<int>();\n  }\n}\n"
  },
  {
    "path": "benchmark/create_complex/dagger2.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport javax.inject.Inject;\nimport dagger.*;\n\nclass X00 { @Inject X00() { } }\nclass X01 { @Inject X01(X00 p1) { } }\nclass X02 { @Inject X02(X00 p1, X01 p2) { } }\nclass X03 { @Inject X03(X00 p1, X01 p2, X02 p3) { } }\nclass X04 { @Inject X04(X00 p1, X01 p2, X02 p3, X03 p4) { } }\nclass X05 { @Inject X05(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5) { } }\nclass X06 { @Inject X06(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6) { } }\nclass X07 { @Inject X07(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7) { } }\nclass X08 { @Inject X08(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8) { } }\nclass X09 { @Inject X09(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9) { } }\nclass X10 { @Inject X10(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9, X09 p10) { } }\nclass X11 { @Inject X11(X01 p1, X02 p2, X03 p3, X04 p4, X05 p5, X06 p6, X07 p7, X08 p8, X09 p9, X10 p10) { } }\nclass X12 { @Inject X12(X02 p1, X03 p2, X04 p3, X05 p4, X06 p5, X07 p6, X08 p7, X09 p8, X10 p9, X11 p10) { } }\nclass X13 { @Inject X13(X03 p1, X04 p2, X05 p3, X06 p4, X07 p5, X08 p6, X09 p7, X10 p8, X11 p9, X12 p10) { } }\nclass X14 { @Inject X14(X04 p1, X05 p2, X06 p3, X07 p4, X08 p5, X09 p6, X10 p7, X11 p8, X12 p9, X13 p10) { } }\nclass X15 { @Inject X15(X05 p1, X06 p2, X07 p3, X08 p4, X09 p5, X10 p6, X11 p7, X12 p8, X13 p9, X14 p10) { } }\nclass X16 { @Inject X16(X06 p1, X07 p2, X08 p3, X09 p4, X10 p5, X11 p6, X12 p7, X13 p8, X14 p9, X15 p10) { } }\nclass X17 { @Inject X17(X07 p1, X08 p2, X09 p3, X10 p4, X11 p5, X12 p6, X13 p7, X14 p8, X15 p9, X16 p10) { } }\nclass X18 { @Inject X18(X08 p1, X09 p2, X10 p3, X11 p4, X12 p5, X13 p6, X14 p7, X15 p8, X16 p9, X17 p10) { } }\nclass X19 { @Inject X19(X09 p1, X10 p2, X11 p3, X12 p4, X13 p5, X14 p6, X15 p7, X16 p8, X17 p9, X18 p10) { } }\nclass X20 { @Inject X20(X10 p1, X11 p2, X12 p3, X13 p4, X14 p5, X15 p6, X16 p7, X17 p8, X18 p9, X19 p10) { } }\nclass X21 { @Inject X21(X11 p1, X12 p2, X13 p3, X14 p4, X15 p5, X16 p6, X17 p7, X18 p8, X19 p9, X20 p10) { } }\nclass X22 { @Inject X22(X12 p1, X13 p2, X14 p3, X15 p4, X16 p5, X17 p6, X18 p7, X19 p8, X20 p9, X21 p10) { } }\nclass X23 { @Inject X23(X13 p1, X14 p2, X15 p3, X16 p4, X17 p5, X18 p6, X19 p7, X20 p8, X21 p9, X22 p10) { } }\nclass X24 { @Inject X24(X14 p1, X15 p2, X16 p3, X17 p4, X18 p5, X19 p6, X20 p7, X21 p8, X22 p9, X23 p10) { } }\nclass X25 { @Inject X25(X15 p1, X16 p2, X17 p3, X18 p4, X19 p5, X20 p6, X21 p7, X22 p8, X23 p9, X24 p10) { } }\nclass X26 { @Inject X26(X16 p1, X17 p2, X18 p3, X19 p4, X20 p5, X21 p6, X22 p7, X23 p8, X24 p9, X25 p10) { } }\nclass X27 { @Inject X27(X17 p1, X18 p2, X19 p3, X20 p4, X21 p5, X22 p6, X23 p7, X24 p8, X25 p9, X26 p10) { } }\nclass X28 { @Inject X28(X18 p1, X19 p2, X20 p3, X21 p4, X22 p5, X23 p6, X24 p7, X25 p8, X26 p9, X27 p10) { } }\nclass X29 { @Inject X29(X19 p1, X20 p2, X21 p3, X22 p4, X23 p5, X24 p6, X25 p7, X26 p8, X27 p9, X28 p10) { } }\nclass X30 { @Inject X30(X20 p1, X21 p2, X22 p3, X23 p4, X24 p5, X25 p6, X26 p7, X27 p8, X28 p9, X29 p10) { } }\nclass X31 { @Inject X31(X21 p1, X22 p2, X23 p3, X24 p4, X25 p5, X26 p6, X27 p7, X28 p8, X29 p9, X30 p10) { } }\nclass X32 { @Inject X32(X22 p1, X23 p2, X24 p3, X25 p4, X26 p5, X27 p6, X28 p7, X29 p8, X30 p9, X31 p10) { } }\nclass X33 { @Inject X33(X23 p1, X24 p2, X25 p3, X26 p4, X27 p5, X28 p6, X29 p7, X30 p8, X31 p9, X32 p10) { } }\nclass X34 { @Inject X34(X24 p1, X25 p2, X26 p3, X27 p4, X28 p5, X29 p6, X30 p7, X31 p8, X32 p9, X33 p10) { } }\nclass X35 { @Inject X35(X25 p1, X26 p2, X27 p3, X28 p4, X29 p5, X30 p6, X31 p7, X32 p8, X33 p9, X34 p10) { } }\nclass X36 { @Inject X36(X26 p1, X27 p2, X28 p3, X29 p4, X30 p5, X31 p6, X32 p7, X33 p8, X34 p9, X35 p10) { } }\nclass X37 { @Inject X37(X27 p1, X28 p2, X29 p3, X30 p4, X31 p5, X32 p6, X33 p7, X34 p8, X35 p9, X36 p10) { } }\nclass X38 { @Inject X38(X28 p1, X29 p2, X30 p3, X31 p4, X32 p5, X33 p6, X34 p7, X35 p8, X36 p9, X37 p10) { } }\nclass X39 { @Inject X39(X29 p1, X30 p2, X31 p3, X32 p4, X33 p5, X34 p6, X35 p7, X36 p8, X37 p9, X38 p10) { } }\nclass X40 { @Inject X40(X30 p1, X31 p2, X32 p3, X33 p4, X34 p5, X35 p6, X36 p7, X37 p8, X38 p9, X39 p10) { } }\nclass X41 { @Inject X41(X31 p1, X32 p2, X33 p3, X34 p4, X35 p5, X36 p6, X37 p7, X38 p8, X39 p9, X40 p10) { } }\nclass X42 { @Inject X42(X32 p1, X33 p2, X34 p3, X35 p4, X36 p5, X37 p6, X38 p7, X39 p8, X40 p9, X41 p10) { } }\nclass X43 { @Inject X43(X33 p1, X34 p2, X35 p3, X36 p4, X37 p5, X38 p6, X39 p7, X40 p8, X41 p9, X42 p10) { } }\nclass X44 { @Inject X44(X34 p1, X35 p2, X36 p3, X37 p4, X38 p5, X39 p6, X40 p7, X41 p8, X42 p9, X43 p10) { } }\nclass X45 { @Inject X45(X35 p1, X36 p2, X37 p3, X38 p4, X39 p5, X40 p6, X41 p7, X42 p8, X43 p9, X44 p10) { } }\nclass X46 { @Inject X46(X36 p1, X37 p2, X38 p3, X39 p4, X40 p5, X41 p6, X42 p7, X43 p8, X44 p9, X45 p10) { } }\nclass X47 { @Inject X47(X37 p1, X38 p2, X39 p3, X40 p4, X41 p5, X42 p6, X43 p7, X44 p8, X45 p9, X46 p10) { } }\nclass X48 { @Inject X48(X38 p1, X39 p2, X40 p3, X41 p4, X42 p5, X43 p6, X44 p7, X45 p8, X46 p9, X47 p10) { } }\nclass X49 { @Inject X49(X39 p1, X40 p2, X41 p3, X42 p4, X43 p5, X44 p6, X45 p7, X46 p8, X47 p9, X48 p10) { } }\nclass X50 { @Inject X50(X40 p1, X41 p2, X42 p3, X43 p4, X44 p5, X45 p6, X46 p7, X47 p8, X48 p9, X49 p10) { } }\nclass X51 { @Inject X51(X41 p1, X42 p2, X43 p3, X44 p4, X45 p5, X46 p6, X47 p7, X48 p8, X49 p9, X50 p10) { } }\nclass X52 { @Inject X52(X42 p1, X43 p2, X44 p3, X45 p4, X46 p5, X47 p6, X48 p7, X49 p8, X50 p9, X51 p10) { } }\nclass X53 { @Inject X53(X43 p1, X44 p2, X45 p3, X46 p4, X47 p5, X48 p6, X49 p7, X50 p8, X51 p9, X52 p10) { } }\nclass X54 { @Inject X54(X44 p1, X45 p2, X46 p3, X47 p4, X48 p5, X49 p6, X50 p7, X51 p8, X52 p9, X53 p10) { } }\nclass X55 { @Inject X55(X45 p1, X46 p2, X47 p3, X48 p4, X49 p5, X50 p6, X51 p7, X52 p8, X53 p9, X54 p10) { } }\nclass X56 { @Inject X56(X46 p1, X47 p2, X48 p3, X49 p4, X50 p5, X51 p6, X52 p7, X53 p8, X54 p9, X55 p10) { } }\nclass X57 { @Inject X57(X47 p1, X48 p2, X49 p3, X50 p4, X51 p5, X52 p6, X53 p7, X54 p8, X55 p9, X56 p10) { } }\nclass X58 { @Inject X58(X48 p1, X49 p2, X50 p3, X51 p4, X52 p5, X53 p6, X54 p7, X55 p8, X56 p9, X57 p10) { } }\nclass X59 { @Inject X59(X49 p1, X50 p2, X51 p3, X52 p4, X53 p5, X54 p6, X55 p7, X56 p8, X57 p9, X58 p10) { } }\nclass X60 { @Inject X60(X50 p1, X51 p2, X52 p3, X53 p4, X54 p5, X55 p6, X56 p7, X57 p8, X58 p9, X59 p10) { } }\nclass X61 { @Inject X61(X51 p1, X52 p2, X53 p3, X54 p4, X55 p5, X56 p6, X57 p7, X58 p8, X59 p9, X60 p10) { } }\nclass X62 { @Inject X62(X52 p1, X53 p2, X54 p3, X55 p4, X56 p5, X57 p6, X58 p7, X59 p8, X60 p9, X61 p10) { } }\nclass X63 { @Inject X63(X53 p1, X54 p2, X55 p3, X56 p4, X57 p5, X58 p6, X59 p7, X60 p8, X61 p9, X62 p10) { } }\nclass X64 { @Inject X64(X54 p1, X55 p2, X56 p3, X57 p4, X58 p5, X59 p6, X60 p7, X61 p8, X62 p9, X63 p10) { } }\nclass X65 { @Inject X65(X55 p1, X56 p2, X57 p3, X58 p4, X59 p5, X60 p6, X61 p7, X62 p8, X63 p9, X64 p10) { } }\nclass X66 { @Inject X66(X56 p1, X57 p2, X58 p3, X59 p4, X60 p5, X61 p6, X62 p7, X63 p8, X64 p9, X65 p10) { } }\nclass X67 { @Inject X67(X57 p1, X58 p2, X59 p3, X60 p4, X61 p5, X62 p6, X63 p7, X64 p8, X65 p9, X66 p10) { } }\nclass X68 { @Inject X68(X58 p1, X59 p2, X60 p3, X61 p4, X62 p5, X63 p6, X64 p7, X65 p8, X66 p9, X67 p10) { } }\nclass X69 { @Inject X69(X59 p1, X60 p2, X61 p3, X62 p4, X63 p5, X64 p6, X65 p7, X66 p8, X67 p9, X68 p10) { } }\nclass X70 { @Inject X70(X60 p1, X61 p2, X62 p3, X63 p4, X64 p5, X65 p6, X66 p7, X67 p8, X68 p9, X69 p10) { } }\nclass X71 { @Inject X71(X61 p1, X62 p2, X63 p3, X64 p4, X65 p5, X66 p6, X67 p7, X68 p8, X69 p9, X70 p10) { } }\nclass X72 { @Inject X72(X62 p1, X63 p2, X64 p3, X65 p4, X66 p5, X67 p6, X68 p7, X69 p8, X70 p9, X71 p10) { } }\nclass X73 { @Inject X73(X63 p1, X64 p2, X65 p3, X66 p4, X67 p5, X68 p6, X69 p7, X70 p8, X71 p9, X72 p10) { } }\nclass X74 { @Inject X74(X64 p1, X65 p2, X66 p3, X67 p4, X68 p5, X69 p6, X70 p7, X71 p8, X72 p9, X73 p10) { } }\nclass X75 { @Inject X75(X65 p1, X66 p2, X67 p3, X68 p4, X69 p5, X70 p6, X71 p7, X72 p8, X73 p9, X74 p10) { } }\nclass X76 { @Inject X76(X66 p1, X67 p2, X68 p3, X69 p4, X70 p5, X71 p6, X72 p7, X73 p8, X74 p9, X75 p10) { } }\nclass X77 { @Inject X77(X67 p1, X68 p2, X69 p3, X70 p4, X71 p5, X72 p6, X73 p7, X74 p8, X75 p9, X76 p10) { } }\nclass X78 { @Inject X78(X68 p1, X69 p2, X70 p3, X71 p4, X72 p5, X73 p6, X74 p7, X75 p8, X76 p9, X77 p10) { } }\nclass X79 { @Inject X79(X69 p1, X70 p2, X71 p3, X72 p4, X73 p5, X74 p6, X75 p7, X76 p8, X77 p9, X78 p10) { } }\nclass X80 { @Inject X80(X70 p1, X71 p2, X72 p3, X73 p4, X74 p5, X75 p6, X76 p7, X77 p8, X78 p9, X79 p10) { } }\nclass X81 { @Inject X81(X71 p1, X72 p2, X73 p3, X74 p4, X75 p5, X76 p6, X77 p7, X78 p8, X79 p9, X80 p10) { } }\nclass X82 { @Inject X82(X72 p1, X73 p2, X74 p3, X75 p4, X76 p5, X77 p6, X78 p7, X79 p8, X80 p9, X81 p10) { } }\nclass X83 { @Inject X83(X73 p1, X74 p2, X75 p3, X76 p4, X77 p5, X78 p6, X79 p7, X80 p8, X81 p9, X82 p10) { } }\nclass X84 { @Inject X84(X74 p1, X75 p2, X76 p3, X77 p4, X78 p5, X79 p6, X80 p7, X81 p8, X82 p9, X83 p10) { } }\nclass X85 { @Inject X85(X75 p1, X76 p2, X77 p3, X78 p4, X79 p5, X80 p6, X81 p7, X82 p8, X83 p9, X84 p10) { } }\nclass X86 { @Inject X86(X76 p1, X77 p2, X78 p3, X79 p4, X80 p5, X81 p6, X82 p7, X83 p8, X84 p9, X85 p10) { } }\nclass X87 { @Inject X87(X77 p1, X78 p2, X79 p3, X80 p4, X81 p5, X82 p6, X83 p7, X84 p8, X85 p9, X86 p10) { } }\nclass X88 { @Inject X88(X78 p1, X79 p2, X80 p3, X81 p4, X82 p5, X83 p6, X84 p7, X85 p8, X86 p9, X87 p10) { } }\nclass X89 { @Inject X89(X79 p1, X80 p2, X81 p3, X82 p4, X83 p5, X84 p6, X85 p7, X86 p8, X87 p9, X88 p10) { } }\nclass X90 { @Inject X90(X80 p1, X81 p2, X82 p3, X83 p4, X84 p5, X85 p6, X86 p7, X87 p8, X88 p9, X89 p10) { } }\nclass X91 { @Inject X91(X81 p1, X82 p2, X83 p3, X84 p4, X85 p5, X86 p6, X87 p7, X88 p8, X89 p9, X90 p10) { } }\nclass X92 { @Inject X92(X82 p1, X83 p2, X84 p3, X85 p4, X86 p5, X87 p6, X88 p7, X89 p8, X90 p9, X91 p10) { } }\nclass X93 { @Inject X93(X83 p1, X84 p2, X85 p3, X86 p4, X87 p5, X88 p6, X89 p7, X90 p8, X91 p9, X92 p10) { } }\nclass X94 { @Inject X94(X84 p1, X85 p2, X86 p3, X87 p4, X88 p5, X89 p6, X90 p7, X91 p8, X92 p9, X93 p10) { } }\nclass X95 { @Inject X95(X85 p1, X86 p2, X87 p3, X88 p4, X89 p5, X90 p6, X91 p7, X92 p8, X93 p9, X94 p10) { } }\nclass X96 { @Inject X96(X86 p1, X87 p2, X88 p3, X89 p4, X90 p5, X91 p6, X92 p7, X93 p8, X94 p9, X95 p10) { } }\nclass X97 { @Inject X97(X87 p1, X88 p2, X89 p3, X90 p4, X91 p5, X92 p6, X93 p7, X94 p8, X95 p9, X96 p10) { } }\nclass X98 { @Inject X98(X88 p1, X89 p2, X90 p3, X91 p4, X92 p5, X93 p6, X94 p7, X95 p8, X96 p9, X97 p10) { } }\nclass X99 { @Inject X99(X89 p1, X90 p2, X91 p3, X92 p4, X93 p5, X94 p6, X95 p7, X96 p8, X97 p9, X98 p10) { } }\ninterface I00 { public void dummy(); }; class Impl00 implements I00 { @Inject Impl00(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9, X09 p10) { } @Override public void dummy() { } }\ninterface I01 { public void dummy(); }; class Impl01 implements I01 { @Inject Impl01(X01 p1, X02 p2, X03 p3, X04 p4, X05 p5, X06 p6, X07 p7, X08 p8, X09 p9, X10 p10) { } @Override public void dummy() { } }\ninterface I02 { public void dummy(); }; class Impl02 implements I02 { @Inject Impl02(X02 p1, X03 p2, X04 p3, X05 p4, X06 p5, X07 p6, X08 p7, X09 p8, X10 p9, X11 p10) { } @Override public void dummy() { } }\ninterface I03 { public void dummy(); }; class Impl03 implements I03 { @Inject Impl03(X03 p1, X04 p2, X05 p3, X06 p4, X07 p5, X08 p6, X09 p7, X10 p8, X11 p9, X12 p10) { } @Override public void dummy() { } }\ninterface I04 { public void dummy(); }; class Impl04 implements I04 { @Inject Impl04(X04 p1, X05 p2, X06 p3, X07 p4, X08 p5, X09 p6, X10 p7, X11 p8, X12 p9, X13 p10) { } @Override public void dummy() { } }\ninterface I05 { public void dummy(); }; class Impl05 implements I05 { @Inject Impl05(X05 p1, X06 p2, X07 p3, X08 p4, X09 p5, X10 p6, X11 p7, X12 p8, X13 p9, X14 p10) { } @Override public void dummy() { } }\ninterface I06 { public void dummy(); }; class Impl06 implements I06 { @Inject Impl06(X06 p1, X07 p2, X08 p3, X09 p4, X10 p5, X11 p6, X12 p7, X13 p8, X14 p9, X15 p10) { } @Override public void dummy() { } }\ninterface I07 { public void dummy(); }; class Impl07 implements I07 { @Inject Impl07(X07 p1, X08 p2, X09 p3, X10 p4, X11 p5, X12 p6, X13 p7, X14 p8, X15 p9, X16 p10) { } @Override public void dummy() { } }\ninterface I08 { public void dummy(); }; class Impl08 implements I08 { @Inject Impl08(X08 p1, X09 p2, X10 p3, X11 p4, X12 p5, X13 p6, X14 p7, X15 p8, X16 p9, X17 p10) { } @Override public void dummy() { } }\ninterface I09 { public void dummy(); }; class Impl09 implements I09 { @Inject Impl09(X09 p1, X10 p2, X11 p3, X12 p4, X13 p5, X14 p6, X15 p7, X16 p8, X17 p9, X18 p10) { } @Override public void dummy() { } }\ninterface I10 { public void dummy(); }; class Impl10 implements I10 { @Inject Impl10(X10 p1, X11 p2, X12 p3, X13 p4, X14 p5, X15 p6, X16 p7, X17 p8, X18 p9, X19 p10) { } @Override public void dummy() { } }\ninterface I11 { public void dummy(); }; class Impl11 implements I11 { @Inject Impl11(X11 p1, X12 p2, X13 p3, X14 p4, X15 p5, X16 p6, X17 p7, X18 p8, X19 p9, X20 p10) { } @Override public void dummy() { } }\ninterface I12 { public void dummy(); }; class Impl12 implements I12 { @Inject Impl12(X12 p1, X13 p2, X14 p3, X15 p4, X16 p5, X17 p6, X18 p7, X19 p8, X20 p9, X21 p10) { } @Override public void dummy() { } }\ninterface I13 { public void dummy(); }; class Impl13 implements I13 { @Inject Impl13(X13 p1, X14 p2, X15 p3, X16 p4, X17 p5, X18 p6, X19 p7, X20 p8, X21 p9, X22 p10) { } @Override public void dummy() { } }\ninterface I14 { public void dummy(); }; class Impl14 implements I14 { @Inject Impl14(X14 p1, X15 p2, X16 p3, X17 p4, X18 p5, X19 p6, X20 p7, X21 p8, X22 p9, X23 p10) { } @Override public void dummy() { } }\ninterface I15 { public void dummy(); }; class Impl15 implements I15 { @Inject Impl15(X15 p1, X16 p2, X17 p3, X18 p4, X19 p5, X20 p6, X21 p7, X22 p8, X23 p9, X24 p10) { } @Override public void dummy() { } }\ninterface I16 { public void dummy(); }; class Impl16 implements I16 { @Inject Impl16(X16 p1, X17 p2, X18 p3, X19 p4, X20 p5, X21 p6, X22 p7, X23 p8, X24 p9, X25 p10) { } @Override public void dummy() { } }\ninterface I17 { public void dummy(); }; class Impl17 implements I17 { @Inject Impl17(X17 p1, X18 p2, X19 p3, X20 p4, X21 p5, X22 p6, X23 p7, X24 p8, X25 p9, X26 p10) { } @Override public void dummy() { } }\ninterface I18 { public void dummy(); }; class Impl18 implements I18 { @Inject Impl18(X18 p1, X19 p2, X20 p3, X21 p4, X22 p5, X23 p6, X24 p7, X25 p8, X26 p9, X27 p10) { } @Override public void dummy() { } }\ninterface I19 { public void dummy(); }; class Impl19 implements I19 { @Inject Impl19(X19 p1, X20 p2, X21 p3, X22 p4, X23 p5, X24 p6, X25 p7, X26 p8, X27 p9, X28 p10) { } @Override public void dummy() { } }\ninterface I20 { public void dummy(); }; class Impl20 implements I20 { @Inject Impl20(X20 p1, X21 p2, X22 p3, X23 p4, X24 p5, X25 p6, X26 p7, X27 p8, X28 p9, X29 p10) { } @Override public void dummy() { } }\ninterface I21 { public void dummy(); }; class Impl21 implements I21 { @Inject Impl21(X21 p1, X22 p2, X23 p3, X24 p4, X25 p5, X26 p6, X27 p7, X28 p8, X29 p9, X30 p10) { } @Override public void dummy() { } }\ninterface I22 { public void dummy(); }; class Impl22 implements I22 { @Inject Impl22(X22 p1, X23 p2, X24 p3, X25 p4, X26 p5, X27 p6, X28 p7, X29 p8, X30 p9, X31 p10) { } @Override public void dummy() { } }\ninterface I23 { public void dummy(); }; class Impl23 implements I23 { @Inject Impl23(X23 p1, X24 p2, X25 p3, X26 p4, X27 p5, X28 p6, X29 p7, X30 p8, X31 p9, X32 p10) { } @Override public void dummy() { } }\ninterface I24 { public void dummy(); }; class Impl24 implements I24 { @Inject Impl24(X24 p1, X25 p2, X26 p3, X27 p4, X28 p5, X29 p6, X30 p7, X31 p8, X32 p9, X33 p10) { } @Override public void dummy() { } }\ninterface I25 { public void dummy(); }; class Impl25 implements I25 { @Inject Impl25(X25 p1, X26 p2, X27 p3, X28 p4, X29 p5, X30 p6, X31 p7, X32 p8, X33 p9, X34 p10) { } @Override public void dummy() { } }\ninterface I26 { public void dummy(); }; class Impl26 implements I26 { @Inject Impl26(X26 p1, X27 p2, X28 p3, X29 p4, X30 p5, X31 p6, X32 p7, X33 p8, X34 p9, X35 p10) { } @Override public void dummy() { } }\ninterface I27 { public void dummy(); }; class Impl27 implements I27 { @Inject Impl27(X27 p1, X28 p2, X29 p3, X30 p4, X31 p5, X32 p6, X33 p7, X34 p8, X35 p9, X36 p10) { } @Override public void dummy() { } }\ninterface I28 { public void dummy(); }; class Impl28 implements I28 { @Inject Impl28(X28 p1, X29 p2, X30 p3, X31 p4, X32 p5, X33 p6, X34 p7, X35 p8, X36 p9, X37 p10) { } @Override public void dummy() { } }\ninterface I29 { public void dummy(); }; class Impl29 implements I29 { @Inject Impl29(X29 p1, X30 p2, X31 p3, X32 p4, X33 p5, X34 p6, X35 p7, X36 p8, X37 p9, X38 p10) { } @Override public void dummy() { } }\ninterface I30 { public void dummy(); }; class Impl30 implements I30 { @Inject Impl30(X30 p1, X31 p2, X32 p3, X33 p4, X34 p5, X35 p6, X36 p7, X37 p8, X38 p9, X39 p10) { } @Override public void dummy() { } }\ninterface I31 { public void dummy(); }; class Impl31 implements I31 { @Inject Impl31(X31 p1, X32 p2, X33 p3, X34 p4, X35 p5, X36 p6, X37 p7, X38 p8, X39 p9, X40 p10) { } @Override public void dummy() { } }\ninterface I32 { public void dummy(); }; class Impl32 implements I32 { @Inject Impl32(X32 p1, X33 p2, X34 p3, X35 p4, X36 p5, X37 p6, X38 p7, X39 p8, X40 p9, X41 p10) { } @Override public void dummy() { } }\ninterface I33 { public void dummy(); }; class Impl33 implements I33 { @Inject Impl33(X33 p1, X34 p2, X35 p3, X36 p4, X37 p5, X38 p6, X39 p7, X40 p8, X41 p9, X42 p10) { } @Override public void dummy() { } }\ninterface I34 { public void dummy(); }; class Impl34 implements I34 { @Inject Impl34(X34 p1, X35 p2, X36 p3, X37 p4, X38 p5, X39 p6, X40 p7, X41 p8, X42 p9, X43 p10) { } @Override public void dummy() { } }\ninterface I35 { public void dummy(); }; class Impl35 implements I35 { @Inject Impl35(X35 p1, X36 p2, X37 p3, X38 p4, X39 p5, X40 p6, X41 p7, X42 p8, X43 p9, X44 p10) { } @Override public void dummy() { } }\ninterface I36 { public void dummy(); }; class Impl36 implements I36 { @Inject Impl36(X36 p1, X37 p2, X38 p3, X39 p4, X40 p5, X41 p6, X42 p7, X43 p8, X44 p9, X45 p10) { } @Override public void dummy() { } }\ninterface I37 { public void dummy(); }; class Impl37 implements I37 { @Inject Impl37(X37 p1, X38 p2, X39 p3, X40 p4, X41 p5, X42 p6, X43 p7, X44 p8, X45 p9, X46 p10) { } @Override public void dummy() { } }\ninterface I38 { public void dummy(); }; class Impl38 implements I38 { @Inject Impl38(X38 p1, X39 p2, X40 p3, X41 p4, X42 p5, X43 p6, X44 p7, X45 p8, X46 p9, X47 p10) { } @Override public void dummy() { } }\ninterface I39 { public void dummy(); }; class Impl39 implements I39 { @Inject Impl39(X39 p1, X40 p2, X41 p3, X42 p4, X43 p5, X44 p6, X45 p7, X46 p8, X47 p9, X48 p10) { } @Override public void dummy() { } }\ninterface I40 { public void dummy(); }; class Impl40 implements I40 { @Inject Impl40(X40 p1, X41 p2, X42 p3, X43 p4, X44 p5, X45 p6, X46 p7, X47 p8, X48 p9, X49 p10) { } @Override public void dummy() { } }\ninterface I41 { public void dummy(); }; class Impl41 implements I41 { @Inject Impl41(X41 p1, X42 p2, X43 p3, X44 p4, X45 p5, X46 p6, X47 p7, X48 p8, X49 p9, X50 p10) { } @Override public void dummy() { } }\ninterface I42 { public void dummy(); }; class Impl42 implements I42 { @Inject Impl42(X42 p1, X43 p2, X44 p3, X45 p4, X46 p5, X47 p6, X48 p7, X49 p8, X50 p9, X51 p10) { } @Override public void dummy() { } }\ninterface I43 { public void dummy(); }; class Impl43 implements I43 { @Inject Impl43(X43 p1, X44 p2, X45 p3, X46 p4, X47 p5, X48 p6, X49 p7, X50 p8, X51 p9, X52 p10) { } @Override public void dummy() { } }\ninterface I44 { public void dummy(); }; class Impl44 implements I44 { @Inject Impl44(X44 p1, X45 p2, X46 p3, X47 p4, X48 p5, X49 p6, X50 p7, X51 p8, X52 p9, X53 p10) { } @Override public void dummy() { } }\ninterface I45 { public void dummy(); }; class Impl45 implements I45 { @Inject Impl45(X45 p1, X46 p2, X47 p3, X48 p4, X49 p5, X50 p6, X51 p7, X52 p8, X53 p9, X54 p10) { } @Override public void dummy() { } }\ninterface I46 { public void dummy(); }; class Impl46 implements I46 { @Inject Impl46(X46 p1, X47 p2, X48 p3, X49 p4, X50 p5, X51 p6, X52 p7, X53 p8, X54 p9, X55 p10) { } @Override public void dummy() { } }\ninterface I47 { public void dummy(); }; class Impl47 implements I47 { @Inject Impl47(X47 p1, X48 p2, X49 p3, X50 p4, X51 p5, X52 p6, X53 p7, X54 p8, X55 p9, X56 p10) { } @Override public void dummy() { } }\ninterface I48 { public void dummy(); }; class Impl48 implements I48 { @Inject Impl48(X48 p1, X49 p2, X50 p3, X51 p4, X52 p5, X53 p6, X54 p7, X55 p8, X56 p9, X57 p10) { } @Override public void dummy() { } }\ninterface I49 { public void dummy(); }; class Impl49 implements I49 { @Inject Impl49(X49 p1, X50 p2, X51 p3, X52 p4, X53 p5, X54 p6, X55 p7, X56 p8, X57 p9, X58 p10) { } @Override public void dummy() { } }\ninterface I50 { public void dummy(); }; class Impl50 implements I50 { @Inject Impl50(X50 p1, X51 p2, X52 p3, X53 p4, X54 p5, X55 p6, X56 p7, X57 p8, X58 p9, X59 p10) { } @Override public void dummy() { } }\ninterface I51 { public void dummy(); }; class Impl51 implements I51 { @Inject Impl51(X51 p1, X52 p2, X53 p3, X54 p4, X55 p5, X56 p6, X57 p7, X58 p8, X59 p9, X60 p10) { } @Override public void dummy() { } }\ninterface I52 { public void dummy(); }; class Impl52 implements I52 { @Inject Impl52(X52 p1, X53 p2, X54 p3, X55 p4, X56 p5, X57 p6, X58 p7, X59 p8, X60 p9, X61 p10) { } @Override public void dummy() { } }\ninterface I53 { public void dummy(); }; class Impl53 implements I53 { @Inject Impl53(X53 p1, X54 p2, X55 p3, X56 p4, X57 p5, X58 p6, X59 p7, X60 p8, X61 p9, X62 p10) { } @Override public void dummy() { } }\ninterface I54 { public void dummy(); }; class Impl54 implements I54 { @Inject Impl54(X54 p1, X55 p2, X56 p3, X57 p4, X58 p5, X59 p6, X60 p7, X61 p8, X62 p9, X63 p10) { } @Override public void dummy() { } }\ninterface I55 { public void dummy(); }; class Impl55 implements I55 { @Inject Impl55(X55 p1, X56 p2, X57 p3, X58 p4, X59 p5, X60 p6, X61 p7, X62 p8, X63 p9, X64 p10) { } @Override public void dummy() { } }\ninterface I56 { public void dummy(); }; class Impl56 implements I56 { @Inject Impl56(X56 p1, X57 p2, X58 p3, X59 p4, X60 p5, X61 p6, X62 p7, X63 p8, X64 p9, X65 p10) { } @Override public void dummy() { } }\ninterface I57 { public void dummy(); }; class Impl57 implements I57 { @Inject Impl57(X57 p1, X58 p2, X59 p3, X60 p4, X61 p5, X62 p6, X63 p7, X64 p8, X65 p9, X66 p10) { } @Override public void dummy() { } }\ninterface I58 { public void dummy(); }; class Impl58 implements I58 { @Inject Impl58(X58 p1, X59 p2, X60 p3, X61 p4, X62 p5, X63 p6, X64 p7, X65 p8, X66 p9, X67 p10) { } @Override public void dummy() { } }\ninterface I59 { public void dummy(); }; class Impl59 implements I59 { @Inject Impl59(X59 p1, X60 p2, X61 p3, X62 p4, X63 p5, X64 p6, X65 p7, X66 p8, X67 p9, X68 p10) { } @Override public void dummy() { } }\ninterface I60 { public void dummy(); }; class Impl60 implements I60 { @Inject Impl60(X60 p1, X61 p2, X62 p3, X63 p4, X64 p5, X65 p6, X66 p7, X67 p8, X68 p9, X69 p10) { } @Override public void dummy() { } }\ninterface I61 { public void dummy(); }; class Impl61 implements I61 { @Inject Impl61(X61 p1, X62 p2, X63 p3, X64 p4, X65 p5, X66 p6, X67 p7, X68 p8, X69 p9, X70 p10) { } @Override public void dummy() { } }\ninterface I62 { public void dummy(); }; class Impl62 implements I62 { @Inject Impl62(X62 p1, X63 p2, X64 p3, X65 p4, X66 p5, X67 p6, X68 p7, X69 p8, X70 p9, X71 p10) { } @Override public void dummy() { } }\ninterface I63 { public void dummy(); }; class Impl63 implements I63 { @Inject Impl63(X63 p1, X64 p2, X65 p3, X66 p4, X67 p5, X68 p6, X69 p7, X70 p8, X71 p9, X72 p10) { } @Override public void dummy() { } }\ninterface I64 { public void dummy(); }; class Impl64 implements I64 { @Inject Impl64(X64 p1, X65 p2, X66 p3, X67 p4, X68 p5, X69 p6, X70 p7, X71 p8, X72 p9, X73 p10) { } @Override public void dummy() { } }\ninterface I65 { public void dummy(); }; class Impl65 implements I65 { @Inject Impl65(X65 p1, X66 p2, X67 p3, X68 p4, X69 p5, X70 p6, X71 p7, X72 p8, X73 p9, X74 p10) { } @Override public void dummy() { } }\ninterface I66 { public void dummy(); }; class Impl66 implements I66 { @Inject Impl66(X66 p1, X67 p2, X68 p3, X69 p4, X70 p5, X71 p6, X72 p7, X73 p8, X74 p9, X75 p10) { } @Override public void dummy() { } }\ninterface I67 { public void dummy(); }; class Impl67 implements I67 { @Inject Impl67(X67 p1, X68 p2, X69 p3, X70 p4, X71 p5, X72 p6, X73 p7, X74 p8, X75 p9, X76 p10) { } @Override public void dummy() { } }\ninterface I68 { public void dummy(); }; class Impl68 implements I68 { @Inject Impl68(X68 p1, X69 p2, X70 p3, X71 p4, X72 p5, X73 p6, X74 p7, X75 p8, X76 p9, X77 p10) { } @Override public void dummy() { } }\ninterface I69 { public void dummy(); }; class Impl69 implements I69 { @Inject Impl69(X69 p1, X70 p2, X71 p3, X72 p4, X73 p5, X74 p6, X75 p7, X76 p8, X77 p9, X78 p10) { } @Override public void dummy() { } }\ninterface I70 { public void dummy(); }; class Impl70 implements I70 { @Inject Impl70(X70 p1, X71 p2, X72 p3, X73 p4, X74 p5, X75 p6, X76 p7, X77 p8, X78 p9, X79 p10) { } @Override public void dummy() { } }\ninterface I71 { public void dummy(); }; class Impl71 implements I71 { @Inject Impl71(X71 p1, X72 p2, X73 p3, X74 p4, X75 p5, X76 p6, X77 p7, X78 p8, X79 p9, X80 p10) { } @Override public void dummy() { } }\ninterface I72 { public void dummy(); }; class Impl72 implements I72 { @Inject Impl72(X72 p1, X73 p2, X74 p3, X75 p4, X76 p5, X77 p6, X78 p7, X79 p8, X80 p9, X81 p10) { } @Override public void dummy() { } }\ninterface I73 { public void dummy(); }; class Impl73 implements I73 { @Inject Impl73(X73 p1, X74 p2, X75 p3, X76 p4, X77 p5, X78 p6, X79 p7, X80 p8, X81 p9, X82 p10) { } @Override public void dummy() { } }\ninterface I74 { public void dummy(); }; class Impl74 implements I74 { @Inject Impl74(X74 p1, X75 p2, X76 p3, X77 p4, X78 p5, X79 p6, X80 p7, X81 p8, X82 p9, X83 p10) { } @Override public void dummy() { } }\ninterface I75 { public void dummy(); }; class Impl75 implements I75 { @Inject Impl75(X75 p1, X76 p2, X77 p3, X78 p4, X79 p5, X80 p6, X81 p7, X82 p8, X83 p9, X84 p10) { } @Override public void dummy() { } }\ninterface I76 { public void dummy(); }; class Impl76 implements I76 { @Inject Impl76(X76 p1, X77 p2, X78 p3, X79 p4, X80 p5, X81 p6, X82 p7, X83 p8, X84 p9, X85 p10) { } @Override public void dummy() { } }\ninterface I77 { public void dummy(); }; class Impl77 implements I77 { @Inject Impl77(X77 p1, X78 p2, X79 p3, X80 p4, X81 p5, X82 p6, X83 p7, X84 p8, X85 p9, X86 p10) { } @Override public void dummy() { } }\ninterface I78 { public void dummy(); }; class Impl78 implements I78 { @Inject Impl78(X78 p1, X79 p2, X80 p3, X81 p4, X82 p5, X83 p6, X84 p7, X85 p8, X86 p9, X87 p10) { } @Override public void dummy() { } }\ninterface I79 { public void dummy(); }; class Impl79 implements I79 { @Inject Impl79(X79 p1, X80 p2, X81 p3, X82 p4, X83 p5, X84 p6, X85 p7, X86 p8, X87 p9, X88 p10) { } @Override public void dummy() { } }\ninterface I80 { public void dummy(); }; class Impl80 implements I80 { @Inject Impl80(X80 p1, X81 p2, X82 p3, X83 p4, X84 p5, X85 p6, X86 p7, X87 p8, X88 p9, X89 p10) { } @Override public void dummy() { } }\ninterface I81 { public void dummy(); }; class Impl81 implements I81 { @Inject Impl81(X81 p1, X82 p2, X83 p3, X84 p4, X85 p5, X86 p6, X87 p7, X88 p8, X89 p9, X90 p10) { } @Override public void dummy() { } }\ninterface I82 { public void dummy(); }; class Impl82 implements I82 { @Inject Impl82(X82 p1, X83 p2, X84 p3, X85 p4, X86 p5, X87 p6, X88 p7, X89 p8, X90 p9, X91 p10) { } @Override public void dummy() { } }\ninterface I83 { public void dummy(); }; class Impl83 implements I83 { @Inject Impl83(X83 p1, X84 p2, X85 p3, X86 p4, X87 p5, X88 p6, X89 p7, X90 p8, X91 p9, X92 p10) { } @Override public void dummy() { } }\ninterface I84 { public void dummy(); }; class Impl84 implements I84 { @Inject Impl84(X84 p1, X85 p2, X86 p3, X87 p4, X88 p5, X89 p6, X90 p7, X91 p8, X92 p9, X93 p10) { } @Override public void dummy() { } }\ninterface I85 { public void dummy(); }; class Impl85 implements I85 { @Inject Impl85(X85 p1, X86 p2, X87 p3, X88 p4, X89 p5, X90 p6, X91 p7, X92 p8, X93 p9, X94 p10) { } @Override public void dummy() { } }\ninterface I86 { public void dummy(); }; class Impl86 implements I86 { @Inject Impl86(X86 p1, X87 p2, X88 p3, X89 p4, X90 p5, X91 p6, X92 p7, X93 p8, X94 p9, X95 p10) { } @Override public void dummy() { } }\ninterface I87 { public void dummy(); }; class Impl87 implements I87 { @Inject Impl87(X87 p1, X88 p2, X89 p3, X90 p4, X91 p5, X92 p6, X93 p7, X94 p8, X95 p9, X96 p10) { } @Override public void dummy() { } }\ninterface I88 { public void dummy(); }; class Impl88 implements I88 { @Inject Impl88(X88 p1, X89 p2, X90 p3, X91 p4, X92 p5, X93 p6, X94 p7, X95 p8, X96 p9, X97 p10) { } @Override public void dummy() { } }\ninterface I89 { public void dummy(); }; class Impl89 implements I89 { @Inject Impl89(X89 p1, X90 p2, X91 p3, X92 p4, X93 p5, X94 p6, X95 p7, X96 p8, X97 p9, X98 p10) { } @Override public void dummy() { } }\ninterface I90 { public void dummy(); }; class Impl90 implements I90 { @Inject Impl90(X90 p1, X91 p2, X92 p3, X93 p4, X94 p5, X95 p6, X96 p7, X97 p8, X98 p9, X99 p10) { } @Override public void dummy() { } }\ninterface I91 { public void dummy(); }; class Impl91 implements I91 { @Inject Impl91(X91 p1, X92 p2, X93 p3, X94 p4, X95 p5, X96 p6, X97 p7, X98 p8, X99 p9, X00 p10) { } @Override public void dummy() { } }\ninterface I92 { public void dummy(); }; class Impl92 implements I92 { @Inject Impl92(X92 p1, X93 p2, X94 p3, X95 p4, X96 p5, X97 p6, X98 p7, X99 p8, X00 p9, X01 p10) { } @Override public void dummy() { } }\ninterface I93 { public void dummy(); }; class Impl93 implements I93 { @Inject Impl93(X93 p1, X94 p2, X95 p3, X96 p4, X97 p5, X98 p6, X99 p7, X00 p8, X01 p9, X02 p10) { } @Override public void dummy() { } }\ninterface I94 { public void dummy(); }; class Impl94 implements I94 { @Inject Impl94(X94 p1, X95 p2, X96 p3, X97 p4, X98 p5, X99 p6, X00 p7, X01 p8, X02 p9, X03 p10) { } @Override public void dummy() { } }\ninterface I95 { public void dummy(); }; class Impl95 implements I95 { @Inject Impl95(X95 p1, X96 p2, X97 p3, X98 p4, X99 p5, X00 p6, X01 p7, X02 p8, X03 p9, X04 p10) { } @Override public void dummy() { } }\ninterface I96 { public void dummy(); }; class Impl96 implements I96 { @Inject Impl96(X96 p1, X97 p2, X98 p3, X99 p4, X00 p5, X01 p6, X02 p7, X03 p8, X04 p9, X05 p10) { } @Override public void dummy() { } }\ninterface I97 { public void dummy(); }; class Impl97 implements I97 { @Inject Impl97(X97 p1, X98 p2, X99 p3, X00 p4, X01 p5, X02 p6, X03 p7, X04 p8, X05 p9, X06 p10) { } @Override public void dummy() { } }\ninterface I98 { public void dummy(); }; class Impl98 implements I98 { @Inject Impl98(X98 p1, X99 p2, X00 p3, X01 p4, X02 p5, X03 p6, X04 p7, X05 p8, X06 p9, X07 p10) { } @Override public void dummy() { } }\ninterface I99 { public void dummy(); }; class Impl99 implements I99 { @Inject Impl99(X99 p1, X00 p2, X01 p3, X02 p4, X03 p5, X04 p6, X05 p7, X06 p8, X07 p9, X08 p10) { } @Override public void dummy() { } }\nclass C0 { @Inject C0(I00 p1, I01 p2, I02 p3, I03 p4, I04 p5, I05 p6, I06 p7, I07 p8, I08 p9, I09 p10) { } }\nclass C1 { @Inject C1(I10 p1, I11 p2, I12 p3, I13 p4, I14 p5, I15 p6, I16 p7, I17 p8, I18 p9, I19 p10) { } }\nclass C2 { @Inject C2(I20 p1, I21 p2, I22 p3, I23 p4, I24 p5, I25 p6, I26 p7, I27 p8, I28 p9, I29 p10) { } }\nclass C3 { @Inject C3(I30 p1, I31 p2, I32 p3, I33 p4, I34 p5, I35 p6, I36 p7, I37 p8, I38 p9, I39 p10) { } }\nclass C4 { @Inject C4(I40 p1, I41 p2, I42 p3, I43 p4, I44 p5, I45 p6, I46 p7, I47 p8, I48 p9, I49 p10) { } }\nclass C5 { @Inject C5(I50 p1, I51 p2, I52 p3, I53 p4, I54 p5, I55 p6, I56 p7, I57 p8, I58 p9, I59 p10) { } }\nclass C6 { @Inject C6(I60 p1, I61 p2, I62 p3, I63 p4, I64 p5, I65 p6, I66 p7, I67 p8, I68 p9, I69 p10) { } }\nclass C7 { @Inject C7(I70 p1, I71 p2, I72 p3, I73 p4, I74 p5, I75 p6, I76 p7, I77 p8, I78 p9, I79 p10) { } }\nclass C8 { @Inject C8(I80 p1, I81 p2, I82 p3, I83 p4, I84 p5, I85 p6, I86 p7, I87 p8, I88 p9, I89 p10) { } }\nclass C9 { @Inject C9(I90 p1, I91 p2, I92 p3, I93 p4, I94 p5, I95 p6, I96 p7, I97 p8, I98 p9, I99 p10) { } }\nclass Complex { @Inject Complex(C0 p1, C1 p2, C2 p3, C3 p4, C4 p5, C5 p6, C6 p7, C7 p8, C8 p9, C9 p10) { } }\n\n@Module\nclass AppModule {\n  @Provides I00 provideI00(Impl00 impl) { return impl; }\n  @Provides I01 provideI01(Impl01 impl) { return impl; }\n  @Provides I02 provideI02(Impl02 impl) { return impl; }\n  @Provides I03 provideI03(Impl03 impl) { return impl; }\n  @Provides I04 provideI04(Impl04 impl) { return impl; }\n  @Provides I05 provideI05(Impl05 impl) { return impl; }\n  @Provides I06 provideI06(Impl06 impl) { return impl; }\n  @Provides I07 provideI07(Impl07 impl) { return impl; }\n  @Provides I08 provideI08(Impl08 impl) { return impl; }\n  @Provides I09 provideI09(Impl09 impl) { return impl; }\n  @Provides I10 provideI10(Impl10 impl) { return impl; }\n  @Provides I11 provideI11(Impl11 impl) { return impl; }\n  @Provides I12 provideI12(Impl12 impl) { return impl; }\n  @Provides I13 provideI13(Impl13 impl) { return impl; }\n  @Provides I14 provideI14(Impl14 impl) { return impl; }\n  @Provides I15 provideI15(Impl15 impl) { return impl; }\n  @Provides I16 provideI16(Impl16 impl) { return impl; }\n  @Provides I17 provideI17(Impl17 impl) { return impl; }\n  @Provides I18 provideI18(Impl18 impl) { return impl; }\n  @Provides I19 provideI19(Impl19 impl) { return impl; }\n  @Provides I20 provideI20(Impl20 impl) { return impl; }\n  @Provides I21 provideI21(Impl21 impl) { return impl; }\n  @Provides I22 provideI22(Impl22 impl) { return impl; }\n  @Provides I23 provideI23(Impl23 impl) { return impl; }\n  @Provides I24 provideI24(Impl24 impl) { return impl; }\n  @Provides I25 provideI25(Impl25 impl) { return impl; }\n  @Provides I26 provideI26(Impl26 impl) { return impl; }\n  @Provides I27 provideI27(Impl27 impl) { return impl; }\n  @Provides I28 provideI28(Impl28 impl) { return impl; }\n  @Provides I29 provideI29(Impl29 impl) { return impl; }\n  @Provides I30 provideI30(Impl30 impl) { return impl; }\n  @Provides I31 provideI31(Impl31 impl) { return impl; }\n  @Provides I32 provideI32(Impl32 impl) { return impl; }\n  @Provides I33 provideI33(Impl33 impl) { return impl; }\n  @Provides I34 provideI34(Impl34 impl) { return impl; }\n  @Provides I35 provideI35(Impl35 impl) { return impl; }\n  @Provides I36 provideI36(Impl36 impl) { return impl; }\n  @Provides I37 provideI37(Impl37 impl) { return impl; }\n  @Provides I38 provideI38(Impl38 impl) { return impl; }\n  @Provides I39 provideI39(Impl39 impl) { return impl; }\n  @Provides I40 provideI40(Impl40 impl) { return impl; }\n  @Provides I41 provideI41(Impl41 impl) { return impl; }\n  @Provides I42 provideI42(Impl42 impl) { return impl; }\n  @Provides I43 provideI43(Impl43 impl) { return impl; }\n  @Provides I44 provideI44(Impl44 impl) { return impl; }\n  @Provides I45 provideI45(Impl45 impl) { return impl; }\n  @Provides I46 provideI46(Impl46 impl) { return impl; }\n  @Provides I47 provideI47(Impl47 impl) { return impl; }\n  @Provides I48 provideI48(Impl48 impl) { return impl; }\n  @Provides I49 provideI49(Impl49 impl) { return impl; }\n  @Provides I50 provideI50(Impl50 impl) { return impl; }\n  @Provides I51 provideI51(Impl51 impl) { return impl; }\n  @Provides I52 provideI52(Impl52 impl) { return impl; }\n  @Provides I53 provideI53(Impl53 impl) { return impl; }\n  @Provides I54 provideI54(Impl54 impl) { return impl; }\n  @Provides I55 provideI55(Impl55 impl) { return impl; }\n  @Provides I56 provideI56(Impl56 impl) { return impl; }\n  @Provides I57 provideI57(Impl57 impl) { return impl; }\n  @Provides I58 provideI58(Impl58 impl) { return impl; }\n  @Provides I59 provideI59(Impl59 impl) { return impl; }\n  @Provides I60 provideI60(Impl60 impl) { return impl; }\n  @Provides I61 provideI61(Impl61 impl) { return impl; }\n  @Provides I62 provideI62(Impl62 impl) { return impl; }\n  @Provides I63 provideI63(Impl63 impl) { return impl; }\n  @Provides I64 provideI64(Impl64 impl) { return impl; }\n  @Provides I65 provideI65(Impl65 impl) { return impl; }\n  @Provides I66 provideI66(Impl66 impl) { return impl; }\n  @Provides I67 provideI67(Impl67 impl) { return impl; }\n  @Provides I68 provideI68(Impl68 impl) { return impl; }\n  @Provides I69 provideI69(Impl69 impl) { return impl; }\n  @Provides I70 provideI70(Impl70 impl) { return impl; }\n  @Provides I71 provideI71(Impl71 impl) { return impl; }\n  @Provides I72 provideI72(Impl72 impl) { return impl; }\n  @Provides I73 provideI73(Impl73 impl) { return impl; }\n  @Provides I74 provideI74(Impl74 impl) { return impl; }\n  @Provides I75 provideI75(Impl75 impl) { return impl; }\n  @Provides I76 provideI76(Impl76 impl) { return impl; }\n  @Provides I77 provideI77(Impl77 impl) { return impl; }\n  @Provides I78 provideI78(Impl78 impl) { return impl; }\n  @Provides I79 provideI79(Impl79 impl) { return impl; }\n  @Provides I80 provideI80(Impl80 impl) { return impl; }\n  @Provides I81 provideI81(Impl81 impl) { return impl; }\n  @Provides I82 provideI82(Impl82 impl) { return impl; }\n  @Provides I83 provideI83(Impl83 impl) { return impl; }\n  @Provides I84 provideI84(Impl84 impl) { return impl; }\n  @Provides I85 provideI85(Impl85 impl) { return impl; }\n  @Provides I86 provideI86(Impl86 impl) { return impl; }\n  @Provides I87 provideI87(Impl87 impl) { return impl; }\n  @Provides I88 provideI88(Impl88 impl) { return impl; }\n  @Provides I89 provideI89(Impl89 impl) { return impl; }\n  @Provides I90 provideI90(Impl90 impl) { return impl; }\n  @Provides I91 provideI91(Impl91 impl) { return impl; }\n  @Provides I92 provideI92(Impl92 impl) { return impl; }\n  @Provides I93 provideI93(Impl93 impl) { return impl; }\n  @Provides I94 provideI94(Impl94 impl) { return impl; }\n  @Provides I95 provideI95(Impl95 impl) { return impl; }\n  @Provides I96 provideI96(Impl96 impl) { return impl; }\n  @Provides I97 provideI97(Impl97 impl) { return impl; }\n  @Provides I98 provideI98(Impl98 impl) { return impl; }\n  @Provides I99 provideI99(Impl99 impl) { return impl; }\n}\n\n@Component(modules = AppModule.class)\ninterface AppComponent {\n  Complex build();\n}\n\npublic class dagger2 {\n  public static void main(String[] args) {\n    Dagger_AppComponent.create().build();\n  }\n}\n"
  },
  {
    "path": "benchmark/create_complex/di.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <memory>\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n// clang-format off\nstruct X00 { BOOST_DI_INJECT(X00) { } };\nstruct X01 { BOOST_DI_INJECT(X01, X00) { } };\nstruct X02 { BOOST_DI_INJECT(X02, X00, X01) { } };\nstruct X03 { BOOST_DI_INJECT(X03, X00, X01, X02) { } };\nstruct X04 { BOOST_DI_INJECT(X04, X00, X01, X02, X03) { } };\nstruct X05 { BOOST_DI_INJECT(X05, X00, X01, X02, X03, X04) { } };\nstruct X06 { BOOST_DI_INJECT(X06, X00, X01, X02, X03, X04, X05) { } };\nstruct X07 { BOOST_DI_INJECT(X07, X00, X01, X02, X03, X04, X05, X06) { } };\nstruct X08 { BOOST_DI_INJECT(X08, X00, X01, X02, X03, X04, X05, X06, X07) { } };\nstruct X09 { BOOST_DI_INJECT(X09, X00, X01, X02, X03, X04, X05, X06, X07, X08) { } };\nstruct X10 { BOOST_DI_INJECT(X10, X00, X01, X02, X03, X04, X05, X06, X07, X08, X09) { } };\nstruct X11 { BOOST_DI_INJECT(X11, X01, X02, X03, X04, X05, X06, X07, X08, X09, X10) { } };\nstruct X12 { BOOST_DI_INJECT(X12, X02, X03, X04, X05, X06, X07, X08, X09, X10, X11) { } };\nstruct X13 { BOOST_DI_INJECT(X13, X03, X04, X05, X06, X07, X08, X09, X10, X11, X12) { } };\nstruct X14 { BOOST_DI_INJECT(X14, X04, X05, X06, X07, X08, X09, X10, X11, X12, X13) { } };\nstruct X15 { BOOST_DI_INJECT(X15, X05, X06, X07, X08, X09, X10, X11, X12, X13, X14) { } };\nstruct X16 { BOOST_DI_INJECT(X16, X06, X07, X08, X09, X10, X11, X12, X13, X14, X15) { } };\nstruct X17 { BOOST_DI_INJECT(X17, X07, X08, X09, X10, X11, X12, X13, X14, X15, X16) { } };\nstruct X18 { BOOST_DI_INJECT(X18, X08, X09, X10, X11, X12, X13, X14, X15, X16, X17) { } };\nstruct X19 { BOOST_DI_INJECT(X19, X09, X10, X11, X12, X13, X14, X15, X16, X17, X18) { } };\nstruct X20 { BOOST_DI_INJECT(X20, X10, X11, X12, X13, X14, X15, X16, X17, X18, X19) { } };\nstruct X21 { BOOST_DI_INJECT(X21, X11, X12, X13, X14, X15, X16, X17, X18, X19, X20) { } };\nstruct X22 { BOOST_DI_INJECT(X22, X12, X13, X14, X15, X16, X17, X18, X19, X20, X21) { } };\nstruct X23 { BOOST_DI_INJECT(X23, X13, X14, X15, X16, X17, X18, X19, X20, X21, X22) { } };\nstruct X24 { BOOST_DI_INJECT(X24, X14, X15, X16, X17, X18, X19, X20, X21, X22, X23) { } };\nstruct X25 { BOOST_DI_INJECT(X25, X15, X16, X17, X18, X19, X20, X21, X22, X23, X24) { } };\nstruct X26 { BOOST_DI_INJECT(X26, X16, X17, X18, X19, X20, X21, X22, X23, X24, X25) { } };\nstruct X27 { BOOST_DI_INJECT(X27, X17, X18, X19, X20, X21, X22, X23, X24, X25, X26) { } };\nstruct X28 { BOOST_DI_INJECT(X28, X18, X19, X20, X21, X22, X23, X24, X25, X26, X27) { } };\nstruct X29 { BOOST_DI_INJECT(X29, X19, X20, X21, X22, X23, X24, X25, X26, X27, X28) { } };\nstruct X30 { BOOST_DI_INJECT(X30, X20, X21, X22, X23, X24, X25, X26, X27, X28, X29) { } };\nstruct X31 { BOOST_DI_INJECT(X31, X21, X22, X23, X24, X25, X26, X27, X28, X29, X30) { } };\nstruct X32 { BOOST_DI_INJECT(X32, X22, X23, X24, X25, X26, X27, X28, X29, X30, X31) { } };\nstruct X33 { BOOST_DI_INJECT(X33, X23, X24, X25, X26, X27, X28, X29, X30, X31, X32) { } };\nstruct X34 { BOOST_DI_INJECT(X34, X24, X25, X26, X27, X28, X29, X30, X31, X32, X33) { } };\nstruct X35 { BOOST_DI_INJECT(X35, X25, X26, X27, X28, X29, X30, X31, X32, X33, X34) { } };\nstruct X36 { BOOST_DI_INJECT(X36, X26, X27, X28, X29, X30, X31, X32, X33, X34, X35) { } };\nstruct X37 { BOOST_DI_INJECT(X37, X27, X28, X29, X30, X31, X32, X33, X34, X35, X36) { } };\nstruct X38 { BOOST_DI_INJECT(X38, X28, X29, X30, X31, X32, X33, X34, X35, X36, X37) { } };\nstruct X39 { BOOST_DI_INJECT(X39, X29, X30, X31, X32, X33, X34, X35, X36, X37, X38) { } };\nstruct X40 { BOOST_DI_INJECT(X40, X30, X31, X32, X33, X34, X35, X36, X37, X38, X39) { } };\nstruct X41 { BOOST_DI_INJECT(X41, X31, X32, X33, X34, X35, X36, X37, X38, X39, X40) { } };\nstruct X42 { BOOST_DI_INJECT(X42, X32, X33, X34, X35, X36, X37, X38, X39, X40, X41) { } };\nstruct X43 { BOOST_DI_INJECT(X43, X33, X34, X35, X36, X37, X38, X39, X40, X41, X42) { } };\nstruct X44 { BOOST_DI_INJECT(X44, X34, X35, X36, X37, X38, X39, X40, X41, X42, X43) { } };\nstruct X45 { BOOST_DI_INJECT(X45, X35, X36, X37, X38, X39, X40, X41, X42, X43, X44) { } };\nstruct X46 { BOOST_DI_INJECT(X46, X36, X37, X38, X39, X40, X41, X42, X43, X44, X45) { } };\nstruct X47 { BOOST_DI_INJECT(X47, X37, X38, X39, X40, X41, X42, X43, X44, X45, X46) { } };\nstruct X48 { BOOST_DI_INJECT(X48, X38, X39, X40, X41, X42, X43, X44, X45, X46, X47) { } };\nstruct X49 { BOOST_DI_INJECT(X49, X39, X40, X41, X42, X43, X44, X45, X46, X47, X48) { } };\nstruct X50 { BOOST_DI_INJECT(X50, X40, X41, X42, X43, X44, X45, X46, X47, X48, X49) { } };\nstruct X51 { BOOST_DI_INJECT(X51, X41, X42, X43, X44, X45, X46, X47, X48, X49, X50) { } };\nstruct X52 { BOOST_DI_INJECT(X52, X42, X43, X44, X45, X46, X47, X48, X49, X50, X51) { } };\nstruct X53 { BOOST_DI_INJECT(X53, X43, X44, X45, X46, X47, X48, X49, X50, X51, X52) { } };\nstruct X54 { BOOST_DI_INJECT(X54, X44, X45, X46, X47, X48, X49, X50, X51, X52, X53) { } };\nstruct X55 { BOOST_DI_INJECT(X55, X45, X46, X47, X48, X49, X50, X51, X52, X53, X54) { } };\nstruct X56 { BOOST_DI_INJECT(X56, X46, X47, X48, X49, X50, X51, X52, X53, X54, X55) { } };\nstruct X57 { BOOST_DI_INJECT(X57, X47, X48, X49, X50, X51, X52, X53, X54, X55, X56) { } };\nstruct X58 { BOOST_DI_INJECT(X58, X48, X49, X50, X51, X52, X53, X54, X55, X56, X57) { } };\nstruct X59 { BOOST_DI_INJECT(X59, X49, X50, X51, X52, X53, X54, X55, X56, X57, X58) { } };\nstruct X60 { BOOST_DI_INJECT(X60, X50, X51, X52, X53, X54, X55, X56, X57, X58, X59) { } };\nstruct X61 { BOOST_DI_INJECT(X61, X51, X52, X53, X54, X55, X56, X57, X58, X59, X60) { } };\nstruct X62 { BOOST_DI_INJECT(X62, X52, X53, X54, X55, X56, X57, X58, X59, X60, X61) { } };\nstruct X63 { BOOST_DI_INJECT(X63, X53, X54, X55, X56, X57, X58, X59, X60, X61, X62) { } };\nstruct X64 { BOOST_DI_INJECT(X64, X54, X55, X56, X57, X58, X59, X60, X61, X62, X63) { } };\nstruct X65 { BOOST_DI_INJECT(X65, X55, X56, X57, X58, X59, X60, X61, X62, X63, X64) { } };\nstruct X66 { BOOST_DI_INJECT(X66, X56, X57, X58, X59, X60, X61, X62, X63, X64, X65) { } };\nstruct X67 { BOOST_DI_INJECT(X67, X57, X58, X59, X60, X61, X62, X63, X64, X65, X66) { } };\nstruct X68 { BOOST_DI_INJECT(X68, X58, X59, X60, X61, X62, X63, X64, X65, X66, X67) { } };\nstruct X69 { BOOST_DI_INJECT(X69, X59, X60, X61, X62, X63, X64, X65, X66, X67, X68) { } };\nstruct X70 { BOOST_DI_INJECT(X70, X60, X61, X62, X63, X64, X65, X66, X67, X68, X69) { } };\nstruct X71 { BOOST_DI_INJECT(X71, X61, X62, X63, X64, X65, X66, X67, X68, X69, X70) { } };\nstruct X72 { BOOST_DI_INJECT(X72, X62, X63, X64, X65, X66, X67, X68, X69, X70, X71) { } };\nstruct X73 { BOOST_DI_INJECT(X73, X63, X64, X65, X66, X67, X68, X69, X70, X71, X72) { } };\nstruct X74 { BOOST_DI_INJECT(X74, X64, X65, X66, X67, X68, X69, X70, X71, X72, X73) { } };\nstruct X75 { BOOST_DI_INJECT(X75, X65, X66, X67, X68, X69, X70, X71, X72, X73, X74) { } };\nstruct X76 { BOOST_DI_INJECT(X76, X66, X67, X68, X69, X70, X71, X72, X73, X74, X75) { } };\nstruct X77 { BOOST_DI_INJECT(X77, X67, X68, X69, X70, X71, X72, X73, X74, X75, X76) { } };\nstruct X78 { BOOST_DI_INJECT(X78, X68, X69, X70, X71, X72, X73, X74, X75, X76, X77) { } };\nstruct X79 { BOOST_DI_INJECT(X79, X69, X70, X71, X72, X73, X74, X75, X76, X77, X78) { } };\nstruct X80 { BOOST_DI_INJECT(X80, X70, X71, X72, X73, X74, X75, X76, X77, X78, X79) { } };\nstruct X81 { BOOST_DI_INJECT(X81, X71, X72, X73, X74, X75, X76, X77, X78, X79, X80) { } };\nstruct X82 { BOOST_DI_INJECT(X82, X72, X73, X74, X75, X76, X77, X78, X79, X80, X81) { } };\nstruct X83 { BOOST_DI_INJECT(X83, X73, X74, X75, X76, X77, X78, X79, X80, X81, X82) { } };\nstruct X84 { BOOST_DI_INJECT(X84, X74, X75, X76, X77, X78, X79, X80, X81, X82, X83) { } };\nstruct X85 { BOOST_DI_INJECT(X85, X75, X76, X77, X78, X79, X80, X81, X82, X83, X84) { } };\nstruct X86 { BOOST_DI_INJECT(X86, X76, X77, X78, X79, X80, X81, X82, X83, X84, X85) { } };\nstruct X87 { BOOST_DI_INJECT(X87, X77, X78, X79, X80, X81, X82, X83, X84, X85, X86) { } };\nstruct X88 { BOOST_DI_INJECT(X88, X78, X79, X80, X81, X82, X83, X84, X85, X86, X87) { } };\nstruct X89 { BOOST_DI_INJECT(X89, X79, X80, X81, X82, X83, X84, X85, X86, X87, X88) { } };\nstruct X90 { BOOST_DI_INJECT(X90, X80, X81, X82, X83, X84, X85, X86, X87, X88, X89) { } };\nstruct X91 { BOOST_DI_INJECT(X91, X81, X82, X83, X84, X85, X86, X87, X88, X89, X90) { } };\nstruct X92 { BOOST_DI_INJECT(X92, X82, X83, X84, X85, X86, X87, X88, X89, X90, X91) { } };\nstruct X93 { BOOST_DI_INJECT(X93, X83, X84, X85, X86, X87, X88, X89, X90, X91, X92) { } };\nstruct X94 { BOOST_DI_INJECT(X94, X84, X85, X86, X87, X88, X89, X90, X91, X92, X93) { } };\nstruct X95 { BOOST_DI_INJECT(X95, X85, X86, X87, X88, X89, X90, X91, X92, X93, X94) { } };\nstruct X96 { BOOST_DI_INJECT(X96, X86, X87, X88, X89, X90, X91, X92, X93, X94, X95) { } };\nstruct X97 { BOOST_DI_INJECT(X97, X87, X88, X89, X90, X91, X92, X93, X94, X95, X96) { } };\nstruct X98 { BOOST_DI_INJECT(X98, X88, X89, X90, X91, X92, X93, X94, X95, X96, X97) { } };\nstruct X99 { BOOST_DI_INJECT(X99, X89, X90, X91, X92, X93, X94, X95, X96, X97, X98) { } };\nstruct I00 { virtual ~I00() noexcept = default; virtual void dummy() = 0; }; struct Impl00 : I00 { BOOST_DI_INJECT(Impl00, X00, X01, X02, X03, X04, X05, X06, X07, X08, X09) { } void dummy() override { } };\nstruct I01 { virtual ~I01() noexcept = default; virtual void dummy() = 0; }; struct Impl01 : I01 { BOOST_DI_INJECT(Impl01, X01, X02, X03, X04, X05, X06, X07, X08, X09, X10) { } void dummy() override { } };\nstruct I02 { virtual ~I02() noexcept = default; virtual void dummy() = 0; }; struct Impl02 : I02 { BOOST_DI_INJECT(Impl02, X02, X03, X04, X05, X06, X07, X08, X09, X10, X11) { } void dummy() override { } };\nstruct I03 { virtual ~I03() noexcept = default; virtual void dummy() = 0; }; struct Impl03 : I03 { BOOST_DI_INJECT(Impl03, X03, X04, X05, X06, X07, X08, X09, X10, X11, X12) { } void dummy() override { } };\nstruct I04 { virtual ~I04() noexcept = default; virtual void dummy() = 0; }; struct Impl04 : I04 { BOOST_DI_INJECT(Impl04, X04, X05, X06, X07, X08, X09, X10, X11, X12, X13) { } void dummy() override { } };\nstruct I05 { virtual ~I05() noexcept = default; virtual void dummy() = 0; }; struct Impl05 : I05 { BOOST_DI_INJECT(Impl05, X05, X06, X07, X08, X09, X10, X11, X12, X13, X14) { } void dummy() override { } };\nstruct I06 { virtual ~I06() noexcept = default; virtual void dummy() = 0; }; struct Impl06 : I06 { BOOST_DI_INJECT(Impl06, X06, X07, X08, X09, X10, X11, X12, X13, X14, X15) { } void dummy() override { } };\nstruct I07 { virtual ~I07() noexcept = default; virtual void dummy() = 0; }; struct Impl07 : I07 { BOOST_DI_INJECT(Impl07, X07, X08, X09, X10, X11, X12, X13, X14, X15, X16) { } void dummy() override { } };\nstruct I08 { virtual ~I08() noexcept = default; virtual void dummy() = 0; }; struct Impl08 : I08 { BOOST_DI_INJECT(Impl08, X08, X09, X10, X11, X12, X13, X14, X15, X16, X17) { } void dummy() override { } };\nstruct I09 { virtual ~I09() noexcept = default; virtual void dummy() = 0; }; struct Impl09 : I09 { BOOST_DI_INJECT(Impl09, X09, X10, X11, X12, X13, X14, X15, X16, X17, X18) { } void dummy() override { } };\nstruct I10 { virtual ~I10() noexcept = default; virtual void dummy() = 0; }; struct Impl10 : I10 { BOOST_DI_INJECT(Impl10, X10, X11, X12, X13, X14, X15, X16, X17, X18, X19) { } void dummy() override { } };\nstruct I11 { virtual ~I11() noexcept = default; virtual void dummy() = 0; }; struct Impl11 : I11 { BOOST_DI_INJECT(Impl11, X11, X12, X13, X14, X15, X16, X17, X18, X19, X20) { } void dummy() override { } };\nstruct I12 { virtual ~I12() noexcept = default; virtual void dummy() = 0; }; struct Impl12 : I12 { BOOST_DI_INJECT(Impl12, X12, X13, X14, X15, X16, X17, X18, X19, X20, X21) { } void dummy() override { } };\nstruct I13 { virtual ~I13() noexcept = default; virtual void dummy() = 0; }; struct Impl13 : I13 { BOOST_DI_INJECT(Impl13, X13, X14, X15, X16, X17, X18, X19, X20, X21, X22) { } void dummy() override { } };\nstruct I14 { virtual ~I14() noexcept = default; virtual void dummy() = 0; }; struct Impl14 : I14 { BOOST_DI_INJECT(Impl14, X14, X15, X16, X17, X18, X19, X20, X21, X22, X23) { } void dummy() override { } };\nstruct I15 { virtual ~I15() noexcept = default; virtual void dummy() = 0; }; struct Impl15 : I15 { BOOST_DI_INJECT(Impl15, X15, X16, X17, X18, X19, X20, X21, X22, X23, X24) { } void dummy() override { } };\nstruct I16 { virtual ~I16() noexcept = default; virtual void dummy() = 0; }; struct Impl16 : I16 { BOOST_DI_INJECT(Impl16, X16, X17, X18, X19, X20, X21, X22, X23, X24, X25) { } void dummy() override { } };\nstruct I17 { virtual ~I17() noexcept = default; virtual void dummy() = 0; }; struct Impl17 : I17 { BOOST_DI_INJECT(Impl17, X17, X18, X19, X20, X21, X22, X23, X24, X25, X26) { } void dummy() override { } };\nstruct I18 { virtual ~I18() noexcept = default; virtual void dummy() = 0; }; struct Impl18 : I18 { BOOST_DI_INJECT(Impl18, X18, X19, X20, X21, X22, X23, X24, X25, X26, X27) { } void dummy() override { } };\nstruct I19 { virtual ~I19() noexcept = default; virtual void dummy() = 0; }; struct Impl19 : I19 { BOOST_DI_INJECT(Impl19, X19, X20, X21, X22, X23, X24, X25, X26, X27, X28) { } void dummy() override { } };\nstruct I20 { virtual ~I20() noexcept = default; virtual void dummy() = 0; }; struct Impl20 : I20 { BOOST_DI_INJECT(Impl20, X20, X21, X22, X23, X24, X25, X26, X27, X28, X29) { } void dummy() override { } };\nstruct I21 { virtual ~I21() noexcept = default; virtual void dummy() = 0; }; struct Impl21 : I21 { BOOST_DI_INJECT(Impl21, X21, X22, X23, X24, X25, X26, X27, X28, X29, X30) { } void dummy() override { } };\nstruct I22 { virtual ~I22() noexcept = default; virtual void dummy() = 0; }; struct Impl22 : I22 { BOOST_DI_INJECT(Impl22, X22, X23, X24, X25, X26, X27, X28, X29, X30, X31) { } void dummy() override { } };\nstruct I23 { virtual ~I23() noexcept = default; virtual void dummy() = 0; }; struct Impl23 : I23 { BOOST_DI_INJECT(Impl23, X23, X24, X25, X26, X27, X28, X29, X30, X31, X32) { } void dummy() override { } };\nstruct I24 { virtual ~I24() noexcept = default; virtual void dummy() = 0; }; struct Impl24 : I24 { BOOST_DI_INJECT(Impl24, X24, X25, X26, X27, X28, X29, X30, X31, X32, X33) { } void dummy() override { } };\nstruct I25 { virtual ~I25() noexcept = default; virtual void dummy() = 0; }; struct Impl25 : I25 { BOOST_DI_INJECT(Impl25, X25, X26, X27, X28, X29, X30, X31, X32, X33, X34) { } void dummy() override { } };\nstruct I26 { virtual ~I26() noexcept = default; virtual void dummy() = 0; }; struct Impl26 : I26 { BOOST_DI_INJECT(Impl26, X26, X27, X28, X29, X30, X31, X32, X33, X34, X35) { } void dummy() override { } };\nstruct I27 { virtual ~I27() noexcept = default; virtual void dummy() = 0; }; struct Impl27 : I27 { BOOST_DI_INJECT(Impl27, X27, X28, X29, X30, X31, X32, X33, X34, X35, X36) { } void dummy() override { } };\nstruct I28 { virtual ~I28() noexcept = default; virtual void dummy() = 0; }; struct Impl28 : I28 { BOOST_DI_INJECT(Impl28, X28, X29, X30, X31, X32, X33, X34, X35, X36, X37) { } void dummy() override { } };\nstruct I29 { virtual ~I29() noexcept = default; virtual void dummy() = 0; }; struct Impl29 : I29 { BOOST_DI_INJECT(Impl29, X29, X30, X31, X32, X33, X34, X35, X36, X37, X38) { } void dummy() override { } };\nstruct I30 { virtual ~I30() noexcept = default; virtual void dummy() = 0; }; struct Impl30 : I30 { BOOST_DI_INJECT(Impl30, X30, X31, X32, X33, X34, X35, X36, X37, X38, X39) { } void dummy() override { } };\nstruct I31 { virtual ~I31() noexcept = default; virtual void dummy() = 0; }; struct Impl31 : I31 { BOOST_DI_INJECT(Impl31, X31, X32, X33, X34, X35, X36, X37, X38, X39, X40) { } void dummy() override { } };\nstruct I32 { virtual ~I32() noexcept = default; virtual void dummy() = 0; }; struct Impl32 : I32 { BOOST_DI_INJECT(Impl32, X32, X33, X34, X35, X36, X37, X38, X39, X40, X41) { } void dummy() override { } };\nstruct I33 { virtual ~I33() noexcept = default; virtual void dummy() = 0; }; struct Impl33 : I33 { BOOST_DI_INJECT(Impl33, X33, X34, X35, X36, X37, X38, X39, X40, X41, X42) { } void dummy() override { } };\nstruct I34 { virtual ~I34() noexcept = default; virtual void dummy() = 0; }; struct Impl34 : I34 { BOOST_DI_INJECT(Impl34, X34, X35, X36, X37, X38, X39, X40, X41, X42, X43) { } void dummy() override { } };\nstruct I35 { virtual ~I35() noexcept = default; virtual void dummy() = 0; }; struct Impl35 : I35 { BOOST_DI_INJECT(Impl35, X35, X36, X37, X38, X39, X40, X41, X42, X43, X44) { } void dummy() override { } };\nstruct I36 { virtual ~I36() noexcept = default; virtual void dummy() = 0; }; struct Impl36 : I36 { BOOST_DI_INJECT(Impl36, X36, X37, X38, X39, X40, X41, X42, X43, X44, X45) { } void dummy() override { } };\nstruct I37 { virtual ~I37() noexcept = default; virtual void dummy() = 0; }; struct Impl37 : I37 { BOOST_DI_INJECT(Impl37, X37, X38, X39, X40, X41, X42, X43, X44, X45, X46) { } void dummy() override { } };\nstruct I38 { virtual ~I38() noexcept = default; virtual void dummy() = 0; }; struct Impl38 : I38 { BOOST_DI_INJECT(Impl38, X38, X39, X40, X41, X42, X43, X44, X45, X46, X47) { } void dummy() override { } };\nstruct I39 { virtual ~I39() noexcept = default; virtual void dummy() = 0; }; struct Impl39 : I39 { BOOST_DI_INJECT(Impl39, X39, X40, X41, X42, X43, X44, X45, X46, X47, X48) { } void dummy() override { } };\nstruct I40 { virtual ~I40() noexcept = default; virtual void dummy() = 0; }; struct Impl40 : I40 { BOOST_DI_INJECT(Impl40, X40, X41, X42, X43, X44, X45, X46, X47, X48, X49) { } void dummy() override { } };\nstruct I41 { virtual ~I41() noexcept = default; virtual void dummy() = 0; }; struct Impl41 : I41 { BOOST_DI_INJECT(Impl41, X41, X42, X43, X44, X45, X46, X47, X48, X49, X50) { } void dummy() override { } };\nstruct I42 { virtual ~I42() noexcept = default; virtual void dummy() = 0; }; struct Impl42 : I42 { BOOST_DI_INJECT(Impl42, X42, X43, X44, X45, X46, X47, X48, X49, X50, X51) { } void dummy() override { } };\nstruct I43 { virtual ~I43() noexcept = default; virtual void dummy() = 0; }; struct Impl43 : I43 { BOOST_DI_INJECT(Impl43, X43, X44, X45, X46, X47, X48, X49, X50, X51, X52) { } void dummy() override { } };\nstruct I44 { virtual ~I44() noexcept = default; virtual void dummy() = 0; }; struct Impl44 : I44 { BOOST_DI_INJECT(Impl44, X44, X45, X46, X47, X48, X49, X50, X51, X52, X53) { } void dummy() override { } };\nstruct I45 { virtual ~I45() noexcept = default; virtual void dummy() = 0; }; struct Impl45 : I45 { BOOST_DI_INJECT(Impl45, X45, X46, X47, X48, X49, X50, X51, X52, X53, X54) { } void dummy() override { } };\nstruct I46 { virtual ~I46() noexcept = default; virtual void dummy() = 0; }; struct Impl46 : I46 { BOOST_DI_INJECT(Impl46, X46, X47, X48, X49, X50, X51, X52, X53, X54, X55) { } void dummy() override { } };\nstruct I47 { virtual ~I47() noexcept = default; virtual void dummy() = 0; }; struct Impl47 : I47 { BOOST_DI_INJECT(Impl47, X47, X48, X49, X50, X51, X52, X53, X54, X55, X56) { } void dummy() override { } };\nstruct I48 { virtual ~I48() noexcept = default; virtual void dummy() = 0; }; struct Impl48 : I48 { BOOST_DI_INJECT(Impl48, X48, X49, X50, X51, X52, X53, X54, X55, X56, X57) { } void dummy() override { } };\nstruct I49 { virtual ~I49() noexcept = default; virtual void dummy() = 0; }; struct Impl49 : I49 { BOOST_DI_INJECT(Impl49, X49, X50, X51, X52, X53, X54, X55, X56, X57, X58) { } void dummy() override { } };\nstruct I50 { virtual ~I50() noexcept = default; virtual void dummy() = 0; }; struct Impl50 : I50 { BOOST_DI_INJECT(Impl50, X50, X51, X52, X53, X54, X55, X56, X57, X58, X59) { } void dummy() override { } };\nstruct I51 { virtual ~I51() noexcept = default; virtual void dummy() = 0; }; struct Impl51 : I51 { BOOST_DI_INJECT(Impl51, X51, X52, X53, X54, X55, X56, X57, X58, X59, X60) { } void dummy() override { } };\nstruct I52 { virtual ~I52() noexcept = default; virtual void dummy() = 0; }; struct Impl52 : I52 { BOOST_DI_INJECT(Impl52, X52, X53, X54, X55, X56, X57, X58, X59, X60, X61) { } void dummy() override { } };\nstruct I53 { virtual ~I53() noexcept = default; virtual void dummy() = 0; }; struct Impl53 : I53 { BOOST_DI_INJECT(Impl53, X53, X54, X55, X56, X57, X58, X59, X60, X61, X62) { } void dummy() override { } };\nstruct I54 { virtual ~I54() noexcept = default; virtual void dummy() = 0; }; struct Impl54 : I54 { BOOST_DI_INJECT(Impl54, X54, X55, X56, X57, X58, X59, X60, X61, X62, X63) { } void dummy() override { } };\nstruct I55 { virtual ~I55() noexcept = default; virtual void dummy() = 0; }; struct Impl55 : I55 { BOOST_DI_INJECT(Impl55, X55, X56, X57, X58, X59, X60, X61, X62, X63, X64) { } void dummy() override { } };\nstruct I56 { virtual ~I56() noexcept = default; virtual void dummy() = 0; }; struct Impl56 : I56 { BOOST_DI_INJECT(Impl56, X56, X57, X58, X59, X60, X61, X62, X63, X64, X65) { } void dummy() override { } };\nstruct I57 { virtual ~I57() noexcept = default; virtual void dummy() = 0; }; struct Impl57 : I57 { BOOST_DI_INJECT(Impl57, X57, X58, X59, X60, X61, X62, X63, X64, X65, X66) { } void dummy() override { } };\nstruct I58 { virtual ~I58() noexcept = default; virtual void dummy() = 0; }; struct Impl58 : I58 { BOOST_DI_INJECT(Impl58, X58, X59, X60, X61, X62, X63, X64, X65, X66, X67) { } void dummy() override { } };\nstruct I59 { virtual ~I59() noexcept = default; virtual void dummy() = 0; }; struct Impl59 : I59 { BOOST_DI_INJECT(Impl59, X59, X60, X61, X62, X63, X64, X65, X66, X67, X68) { } void dummy() override { } };\nstruct I60 { virtual ~I60() noexcept = default; virtual void dummy() = 0; }; struct Impl60 : I60 { BOOST_DI_INJECT(Impl60, X60, X61, X62, X63, X64, X65, X66, X67, X68, X69) { } void dummy() override { } };\nstruct I61 { virtual ~I61() noexcept = default; virtual void dummy() = 0; }; struct Impl61 : I61 { BOOST_DI_INJECT(Impl61, X61, X62, X63, X64, X65, X66, X67, X68, X69, X70) { } void dummy() override { } };\nstruct I62 { virtual ~I62() noexcept = default; virtual void dummy() = 0; }; struct Impl62 : I62 { BOOST_DI_INJECT(Impl62, X62, X63, X64, X65, X66, X67, X68, X69, X70, X71) { } void dummy() override { } };\nstruct I63 { virtual ~I63() noexcept = default; virtual void dummy() = 0; }; struct Impl63 : I63 { BOOST_DI_INJECT(Impl63, X63, X64, X65, X66, X67, X68, X69, X70, X71, X72) { } void dummy() override { } };\nstruct I64 { virtual ~I64() noexcept = default; virtual void dummy() = 0; }; struct Impl64 : I64 { BOOST_DI_INJECT(Impl64, X64, X65, X66, X67, X68, X69, X70, X71, X72, X73) { } void dummy() override { } };\nstruct I65 { virtual ~I65() noexcept = default; virtual void dummy() = 0; }; struct Impl65 : I65 { BOOST_DI_INJECT(Impl65, X65, X66, X67, X68, X69, X70, X71, X72, X73, X74) { } void dummy() override { } };\nstruct I66 { virtual ~I66() noexcept = default; virtual void dummy() = 0; }; struct Impl66 : I66 { BOOST_DI_INJECT(Impl66, X66, X67, X68, X69, X70, X71, X72, X73, X74, X75) { } void dummy() override { } };\nstruct I67 { virtual ~I67() noexcept = default; virtual void dummy() = 0; }; struct Impl67 : I67 { BOOST_DI_INJECT(Impl67, X67, X68, X69, X70, X71, X72, X73, X74, X75, X76) { } void dummy() override { } };\nstruct I68 { virtual ~I68() noexcept = default; virtual void dummy() = 0; }; struct Impl68 : I68 { BOOST_DI_INJECT(Impl68, X68, X69, X70, X71, X72, X73, X74, X75, X76, X77) { } void dummy() override { } };\nstruct I69 { virtual ~I69() noexcept = default; virtual void dummy() = 0; }; struct Impl69 : I69 { BOOST_DI_INJECT(Impl69, X69, X70, X71, X72, X73, X74, X75, X76, X77, X78) { } void dummy() override { } };\nstruct I70 { virtual ~I70() noexcept = default; virtual void dummy() = 0; }; struct Impl70 : I70 { BOOST_DI_INJECT(Impl70, X70, X71, X72, X73, X74, X75, X76, X77, X78, X79) { } void dummy() override { } };\nstruct I71 { virtual ~I71() noexcept = default; virtual void dummy() = 0; }; struct Impl71 : I71 { BOOST_DI_INJECT(Impl71, X71, X72, X73, X74, X75, X76, X77, X78, X79, X80) { } void dummy() override { } };\nstruct I72 { virtual ~I72() noexcept = default; virtual void dummy() = 0; }; struct Impl72 : I72 { BOOST_DI_INJECT(Impl72, X72, X73, X74, X75, X76, X77, X78, X79, X80, X81) { } void dummy() override { } };\nstruct I73 { virtual ~I73() noexcept = default; virtual void dummy() = 0; }; struct Impl73 : I73 { BOOST_DI_INJECT(Impl73, X73, X74, X75, X76, X77, X78, X79, X80, X81, X82) { } void dummy() override { } };\nstruct I74 { virtual ~I74() noexcept = default; virtual void dummy() = 0; }; struct Impl74 : I74 { BOOST_DI_INJECT(Impl74, X74, X75, X76, X77, X78, X79, X80, X81, X82, X83) { } void dummy() override { } };\nstruct I75 { virtual ~I75() noexcept = default; virtual void dummy() = 0; }; struct Impl75 : I75 { BOOST_DI_INJECT(Impl75, X75, X76, X77, X78, X79, X80, X81, X82, X83, X84) { } void dummy() override { } };\nstruct I76 { virtual ~I76() noexcept = default; virtual void dummy() = 0; }; struct Impl76 : I76 { BOOST_DI_INJECT(Impl76, X76, X77, X78, X79, X80, X81, X82, X83, X84, X85) { } void dummy() override { } };\nstruct I77 { virtual ~I77() noexcept = default; virtual void dummy() = 0; }; struct Impl77 : I77 { BOOST_DI_INJECT(Impl77, X77, X78, X79, X80, X81, X82, X83, X84, X85, X86) { } void dummy() override { } };\nstruct I78 { virtual ~I78() noexcept = default; virtual void dummy() = 0; }; struct Impl78 : I78 { BOOST_DI_INJECT(Impl78, X78, X79, X80, X81, X82, X83, X84, X85, X86, X87) { } void dummy() override { } };\nstruct I79 { virtual ~I79() noexcept = default; virtual void dummy() = 0; }; struct Impl79 : I79 { BOOST_DI_INJECT(Impl79, X79, X80, X81, X82, X83, X84, X85, X86, X87, X88) { } void dummy() override { } };\nstruct I80 { virtual ~I80() noexcept = default; virtual void dummy() = 0; }; struct Impl80 : I80 { BOOST_DI_INJECT(Impl80, X80, X81, X82, X83, X84, X85, X86, X87, X88, X89) { } void dummy() override { } };\nstruct I81 { virtual ~I81() noexcept = default; virtual void dummy() = 0; }; struct Impl81 : I81 { BOOST_DI_INJECT(Impl81, X81, X82, X83, X84, X85, X86, X87, X88, X89, X90) { } void dummy() override { } };\nstruct I82 { virtual ~I82() noexcept = default; virtual void dummy() = 0; }; struct Impl82 : I82 { BOOST_DI_INJECT(Impl82, X82, X83, X84, X85, X86, X87, X88, X89, X90, X91) { } void dummy() override { } };\nstruct I83 { virtual ~I83() noexcept = default; virtual void dummy() = 0; }; struct Impl83 : I83 { BOOST_DI_INJECT(Impl83, X83, X84, X85, X86, X87, X88, X89, X90, X91, X92) { } void dummy() override { } };\nstruct I84 { virtual ~I84() noexcept = default; virtual void dummy() = 0; }; struct Impl84 : I84 { BOOST_DI_INJECT(Impl84, X84, X85, X86, X87, X88, X89, X90, X91, X92, X93) { } void dummy() override { } };\nstruct I85 { virtual ~I85() noexcept = default; virtual void dummy() = 0; }; struct Impl85 : I85 { BOOST_DI_INJECT(Impl85, X85, X86, X87, X88, X89, X90, X91, X92, X93, X94) { } void dummy() override { } };\nstruct I86 { virtual ~I86() noexcept = default; virtual void dummy() = 0; }; struct Impl86 : I86 { BOOST_DI_INJECT(Impl86, X86, X87, X88, X89, X90, X91, X92, X93, X94, X95) { } void dummy() override { } };\nstruct I87 { virtual ~I87() noexcept = default; virtual void dummy() = 0; }; struct Impl87 : I87 { BOOST_DI_INJECT(Impl87, X87, X88, X89, X90, X91, X92, X93, X94, X95, X96) { } void dummy() override { } };\nstruct I88 { virtual ~I88() noexcept = default; virtual void dummy() = 0; }; struct Impl88 : I88 { BOOST_DI_INJECT(Impl88, X88, X89, X90, X91, X92, X93, X94, X95, X96, X97) { } void dummy() override { } };\nstruct I89 { virtual ~I89() noexcept = default; virtual void dummy() = 0; }; struct Impl89 : I89 { BOOST_DI_INJECT(Impl89, X89, X90, X91, X92, X93, X94, X95, X96, X97, X98) { } void dummy() override { } };\nstruct I90 { virtual ~I90() noexcept = default; virtual void dummy() = 0; }; struct Impl90 : I90 { BOOST_DI_INJECT(Impl90, X90, X91, X92, X93, X94, X95, X96, X97, X98, X99) { } void dummy() override { } };\nstruct I91 { virtual ~I91() noexcept = default; virtual void dummy() = 0; }; struct Impl91 : I91 { BOOST_DI_INJECT(Impl91, X91, X92, X93, X94, X95, X96, X97, X98, X99, X00) { } void dummy() override { } };\nstruct I92 { virtual ~I92() noexcept = default; virtual void dummy() = 0; }; struct Impl92 : I92 { BOOST_DI_INJECT(Impl92, X92, X93, X94, X95, X96, X97, X98, X99, X00, X01) { } void dummy() override { } };\nstruct I93 { virtual ~I93() noexcept = default; virtual void dummy() = 0; }; struct Impl93 : I93 { BOOST_DI_INJECT(Impl93, X93, X94, X95, X96, X97, X98, X99, X00, X01, X02) { } void dummy() override { } };\nstruct I94 { virtual ~I94() noexcept = default; virtual void dummy() = 0; }; struct Impl94 : I94 { BOOST_DI_INJECT(Impl94, X94, X95, X96, X97, X98, X99, X00, X01, X02, X03) { } void dummy() override { } };\nstruct I95 { virtual ~I95() noexcept = default; virtual void dummy() = 0; }; struct Impl95 : I95 { BOOST_DI_INJECT(Impl95, X95, X96, X97, X98, X99, X00, X01, X02, X03, X04) { } void dummy() override { } };\nstruct I96 { virtual ~I96() noexcept = default; virtual void dummy() = 0; }; struct Impl96 : I96 { BOOST_DI_INJECT(Impl96, X96, X97, X98, X99, X00, X01, X02, X03, X04, X05) { } void dummy() override { } };\nstruct I97 { virtual ~I97() noexcept = default; virtual void dummy() = 0; }; struct Impl97 : I97 { BOOST_DI_INJECT(Impl97, X97, X98, X99, X00, X01, X02, X03, X04, X05, X06) { } void dummy() override { } };\nstruct I98 { virtual ~I98() noexcept = default; virtual void dummy() = 0; }; struct Impl98 : I98 { BOOST_DI_INJECT(Impl98, X98, X99, X00, X01, X02, X03, X04, X05, X06, X07) { } void dummy() override { } };\nstruct I99 { virtual ~I99() noexcept = default; virtual void dummy() = 0; }; struct Impl99 : I99 { BOOST_DI_INJECT(Impl99, X99, X00, X01, X02, X03, X04, X05, X06, X07, X08) { } void dummy() override { } };\nstruct C0 { BOOST_DI_INJECT(C0, std::unique_ptr<I00>, std::unique_ptr<I01>, std::unique_ptr<I02>, std::unique_ptr<I03>, std::unique_ptr<I04>, std::unique_ptr<I05>, std::unique_ptr<I06>, std::unique_ptr<I07>, std::unique_ptr<I08>, std::unique_ptr<I09>) { } };\nstruct C1 { BOOST_DI_INJECT(C1, std::unique_ptr<I10>, std::unique_ptr<I11>, std::unique_ptr<I12>, std::unique_ptr<I13>, std::unique_ptr<I14>, std::unique_ptr<I15>, std::unique_ptr<I16>, std::unique_ptr<I17>, std::unique_ptr<I18>, std::unique_ptr<I19>) { } };\nstruct C2 { BOOST_DI_INJECT(C2, std::unique_ptr<I20>, std::unique_ptr<I21>, std::unique_ptr<I22>, std::unique_ptr<I23>, std::unique_ptr<I24>, std::unique_ptr<I25>, std::unique_ptr<I26>, std::unique_ptr<I27>, std::unique_ptr<I28>, std::unique_ptr<I29>) { } };\nstruct C3 { BOOST_DI_INJECT(C3, std::unique_ptr<I30>, std::unique_ptr<I31>, std::unique_ptr<I32>, std::unique_ptr<I33>, std::unique_ptr<I34>, std::unique_ptr<I35>, std::unique_ptr<I36>, std::unique_ptr<I37>, std::unique_ptr<I38>, std::unique_ptr<I39>) { } };\nstruct C4 { BOOST_DI_INJECT(C4, std::unique_ptr<I40>, std::unique_ptr<I41>, std::unique_ptr<I42>, std::unique_ptr<I43>, std::unique_ptr<I44>, std::unique_ptr<I45>, std::unique_ptr<I46>, std::unique_ptr<I47>, std::unique_ptr<I48>, std::unique_ptr<I49>) { } };\nstruct C5 { BOOST_DI_INJECT(C5, std::unique_ptr<I50>, std::unique_ptr<I51>, std::unique_ptr<I52>, std::unique_ptr<I53>, std::unique_ptr<I54>, std::unique_ptr<I55>, std::unique_ptr<I56>, std::unique_ptr<I57>, std::unique_ptr<I58>, std::unique_ptr<I59>) { } };\nstruct C6 { BOOST_DI_INJECT(C6, std::unique_ptr<I60>, std::unique_ptr<I61>, std::unique_ptr<I62>, std::unique_ptr<I63>, std::unique_ptr<I64>, std::unique_ptr<I65>, std::unique_ptr<I66>, std::unique_ptr<I67>, std::unique_ptr<I68>, std::unique_ptr<I69>) { } };\nstruct C7 { BOOST_DI_INJECT(C7, std::unique_ptr<I70>, std::unique_ptr<I71>, std::unique_ptr<I72>, std::unique_ptr<I73>, std::unique_ptr<I74>, std::unique_ptr<I75>, std::unique_ptr<I76>, std::unique_ptr<I77>, std::unique_ptr<I78>, std::unique_ptr<I79>) { } };\nstruct C8 { BOOST_DI_INJECT(C8, std::unique_ptr<I80>, std::unique_ptr<I81>, std::unique_ptr<I82>, std::unique_ptr<I83>, std::unique_ptr<I84>, std::unique_ptr<I85>, std::unique_ptr<I86>, std::unique_ptr<I87>, std::unique_ptr<I88>, std::unique_ptr<I89>) { } };\nstruct C9 { BOOST_DI_INJECT(C9, std::unique_ptr<I90>, std::unique_ptr<I91>, std::unique_ptr<I92>, std::unique_ptr<I93>, std::unique_ptr<I94>, std::unique_ptr<I95>, std::unique_ptr<I96>, std::unique_ptr<I97>, std::unique_ptr<I98>, std::unique_ptr<I99>) { } };\nstruct Complex { BOOST_DI_INJECT(Complex, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) { } };\n// clang-format on\n\nauto module = [] {\n  // clang-format off\n  auto i = di::make_injector(\n    di::bind<I00>.to<Impl00>()\n  , di::bind<I01>.to<Impl01>()\n  , di::bind<I02>.to<Impl02>()\n  , di::bind<I03>.to<Impl03>()\n  , di::bind<I04>.to<Impl04>()\n  , di::bind<I05>.to<Impl05>()\n  , di::bind<I06>.to<Impl06>()\n  , di::bind<I07>.to<Impl07>()\n  , di::bind<I08>.to<Impl08>()\n  , di::bind<I09>.to<Impl09>()\n  , di::bind<I10>.to<Impl10>()\n  , di::bind<I11>.to<Impl11>()\n  , di::bind<I12>.to<Impl12>()\n  , di::bind<I13>.to<Impl13>()\n  , di::bind<I14>.to<Impl14>()\n  , di::bind<I15>.to<Impl15>()\n  , di::bind<I16>.to<Impl16>()\n  , di::bind<I17>.to<Impl17>()\n  , di::bind<I18>.to<Impl18>()\n  , di::bind<I19>.to<Impl19>()\n  , di::bind<I20>.to<Impl20>()\n  , di::bind<I21>.to<Impl21>()\n  , di::bind<I22>.to<Impl22>()\n  , di::bind<I23>.to<Impl23>()\n  , di::bind<I24>.to<Impl24>()\n  , di::bind<I25>.to<Impl25>()\n  , di::bind<I26>.to<Impl26>()\n  , di::bind<I27>.to<Impl27>()\n  , di::bind<I28>.to<Impl28>()\n  , di::bind<I29>.to<Impl29>()\n  , di::bind<I30>.to<Impl30>()\n  , di::bind<I31>.to<Impl31>()\n  , di::bind<I32>.to<Impl32>()\n  , di::bind<I33>.to<Impl33>()\n  , di::bind<I34>.to<Impl34>()\n  , di::bind<I35>.to<Impl35>()\n  , di::bind<I36>.to<Impl36>()\n  , di::bind<I37>.to<Impl37>()\n  , di::bind<I38>.to<Impl38>()\n  , di::bind<I39>.to<Impl39>()\n  , di::bind<I40>.to<Impl40>()\n  , di::bind<I41>.to<Impl41>()\n  , di::bind<I42>.to<Impl42>()\n  , di::bind<I43>.to<Impl43>()\n  , di::bind<I44>.to<Impl44>()\n  , di::bind<I45>.to<Impl45>()\n  , di::bind<I46>.to<Impl46>()\n  , di::bind<I47>.to<Impl47>()\n  , di::bind<I48>.to<Impl48>()\n  , di::bind<I49>.to<Impl49>()\n  , di::bind<I50>.to<Impl50>()\n  , di::bind<I51>.to<Impl51>()\n  , di::bind<I52>.to<Impl52>()\n  , di::bind<I53>.to<Impl53>()\n  , di::bind<I54>.to<Impl54>()\n  , di::bind<I55>.to<Impl55>()\n  , di::bind<I56>.to<Impl56>()\n  , di::bind<I57>.to<Impl57>()\n  , di::bind<I58>.to<Impl58>()\n  , di::bind<I59>.to<Impl59>()\n  , di::bind<I60>.to<Impl60>()\n  , di::bind<I61>.to<Impl61>()\n  , di::bind<I62>.to<Impl62>()\n  , di::bind<I63>.to<Impl63>()\n  , di::bind<I64>.to<Impl64>()\n  , di::bind<I65>.to<Impl65>()\n  , di::bind<I66>.to<Impl66>()\n  , di::bind<I67>.to<Impl67>()\n  , di::bind<I68>.to<Impl68>()\n  , di::bind<I69>.to<Impl69>()\n  , di::bind<I70>.to<Impl70>()\n  , di::bind<I71>.to<Impl71>()\n  , di::bind<I72>.to<Impl72>()\n  , di::bind<I73>.to<Impl73>()\n  , di::bind<I74>.to<Impl74>()\n  , di::bind<I75>.to<Impl75>()\n  , di::bind<I76>.to<Impl76>()\n  , di::bind<I77>.to<Impl77>()\n  , di::bind<I78>.to<Impl78>()\n  , di::bind<I79>.to<Impl79>()\n  , di::bind<I80>.to<Impl80>()\n  , di::bind<I81>.to<Impl81>()\n  , di::bind<I82>.to<Impl82>()\n  , di::bind<I83>.to<Impl83>()\n  , di::bind<I84>.to<Impl84>()\n  , di::bind<I85>.to<Impl85>()\n  , di::bind<I86>.to<Impl86>()\n  , di::bind<I87>.to<Impl87>()\n  , di::bind<I88>.to<Impl88>()\n  , di::bind<I89>.to<Impl89>()\n  , di::bind<I90>.to<Impl90>()\n  , di::bind<I91>.to<Impl91>()\n  , di::bind<I92>.to<Impl92>()\n  , di::bind<I93>.to<Impl93>()\n  , di::bind<I94>.to<Impl94>()\n  , di::bind<I95>.to<Impl95>()\n  , di::bind<I96>.to<Impl96>()\n  , di::bind<I97>.to<Impl97>()\n  , di::bind<I98>.to<Impl98>()\n  , di::bind<I99>.to<Impl99>()\n  );\n  // clang-format off\n\n  using injector_t = decltype(i);\n  struct m : injector_t {\n    using injector_t::injector_t;\n  } injector{static_cast<injector_t &&>(i)};\n  return injector;\n};\n\nint main() {\n  auto injector = di::make_injector(module());\n  injector.create<Complex>();\n}\n"
  },
  {
    "path": "benchmark/create_complex/dicpp.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <memory>\n#include <di/registry.hpp>\n#include <di/injector.hpp>\n#include <di/constructor.hpp>\n\n// clang-format off\nstruct X00 { DI_CONSTRUCTOR(X00, ()) { } };\nstruct X01 { DI_CONSTRUCTOR(X01, (X00)) { } };\nstruct X02 { DI_CONSTRUCTOR(X02, (X00, X01)) { } };\nstruct X03 { DI_CONSTRUCTOR(X03, (X00, X01, X02)) { } };\nstruct X04 { DI_CONSTRUCTOR(X04, (X00, X01, X02, X03)) { } };\nstruct X05 { DI_CONSTRUCTOR(X05, (X00, X01, X02, X03, X04)) { } };\nstruct X06 { DI_CONSTRUCTOR(X06, (X00, X01, X02, X03, X04, X05)) { } };\nstruct X07 { DI_CONSTRUCTOR(X07, (X00, X01, X02, X03, X04, X05, X06)) { } };\nstruct X08 { DI_CONSTRUCTOR(X08, (X00, X01, X02, X03, X04, X05, X06, X07)) { } };\nstruct X09 { DI_CONSTRUCTOR(X09, (X00, X01, X02, X03, X04, X05, X06, X07, X08)) { } };\nstruct X10 { DI_CONSTRUCTOR(X10, (X00, X01, X02, X03, X04, X05, X06, X07, X08, X09)) { } };\nstruct X11 { DI_CONSTRUCTOR(X11, (X01, X02, X03, X04, X05, X06, X07, X08, X09, X10)) { } };\nstruct X12 { DI_CONSTRUCTOR(X12, (X02, X03, X04, X05, X06, X07, X08, X09, X10, X11)) { } };\nstruct X13 { DI_CONSTRUCTOR(X13, (X03, X04, X05, X06, X07, X08, X09, X10, X11, X12)) { } };\nstruct X14 { DI_CONSTRUCTOR(X14, (X04, X05, X06, X07, X08, X09, X10, X11, X12, X13)) { } };\nstruct X15 { DI_CONSTRUCTOR(X15, (X05, X06, X07, X08, X09, X10, X11, X12, X13, X14)) { } };\nstruct X16 { DI_CONSTRUCTOR(X16, (X06, X07, X08, X09, X10, X11, X12, X13, X14, X15)) { } };\nstruct X17 { DI_CONSTRUCTOR(X17, (X07, X08, X09, X10, X11, X12, X13, X14, X15, X16)) { } };\nstruct X18 { DI_CONSTRUCTOR(X18, (X08, X09, X10, X11, X12, X13, X14, X15, X16, X17)) { } };\nstruct X19 { DI_CONSTRUCTOR(X19, (X09, X10, X11, X12, X13, X14, X15, X16, X17, X18)) { } };\nstruct X20 { DI_CONSTRUCTOR(X20, (X10, X11, X12, X13, X14, X15, X16, X17, X18, X19)) { } };\nstruct X21 { DI_CONSTRUCTOR(X21, (X11, X12, X13, X14, X15, X16, X17, X18, X19, X20)) { } };\nstruct X22 { DI_CONSTRUCTOR(X22, (X12, X13, X14, X15, X16, X17, X18, X19, X20, X21)) { } };\nstruct X23 { DI_CONSTRUCTOR(X23, (X13, X14, X15, X16, X17, X18, X19, X20, X21, X22)) { } };\nstruct X24 { DI_CONSTRUCTOR(X24, (X14, X15, X16, X17, X18, X19, X20, X21, X22, X23)) { } };\nstruct X25 { DI_CONSTRUCTOR(X25, (X15, X16, X17, X18, X19, X20, X21, X22, X23, X24)) { } };\nstruct X26 { DI_CONSTRUCTOR(X26, (X16, X17, X18, X19, X20, X21, X22, X23, X24, X25)) { } };\nstruct X27 { DI_CONSTRUCTOR(X27, (X17, X18, X19, X20, X21, X22, X23, X24, X25, X26)) { } };\nstruct X28 { DI_CONSTRUCTOR(X28, (X18, X19, X20, X21, X22, X23, X24, X25, X26, X27)) { } };\nstruct X29 { DI_CONSTRUCTOR(X29, (X19, X20, X21, X22, X23, X24, X25, X26, X27, X28)) { } };\nstruct X30 { DI_CONSTRUCTOR(X30, (X20, X21, X22, X23, X24, X25, X26, X27, X28, X29)) { } };\nstruct X31 { DI_CONSTRUCTOR(X31, (X21, X22, X23, X24, X25, X26, X27, X28, X29, X30)) { } };\nstruct X32 { DI_CONSTRUCTOR(X32, (X22, X23, X24, X25, X26, X27, X28, X29, X30, X31)) { } };\nstruct X33 { DI_CONSTRUCTOR(X33, (X23, X24, X25, X26, X27, X28, X29, X30, X31, X32)) { } };\nstruct X34 { DI_CONSTRUCTOR(X34, (X24, X25, X26, X27, X28, X29, X30, X31, X32, X33)) { } };\nstruct X35 { DI_CONSTRUCTOR(X35, (X25, X26, X27, X28, X29, X30, X31, X32, X33, X34)) { } };\nstruct X36 { DI_CONSTRUCTOR(X36, (X26, X27, X28, X29, X30, X31, X32, X33, X34, X35)) { } };\nstruct X37 { DI_CONSTRUCTOR(X37, (X27, X28, X29, X30, X31, X32, X33, X34, X35, X36)) { } };\nstruct X38 { DI_CONSTRUCTOR(X38, (X28, X29, X30, X31, X32, X33, X34, X35, X36, X37)) { } };\nstruct X39 { DI_CONSTRUCTOR(X39, (X29, X30, X31, X32, X33, X34, X35, X36, X37, X38)) { } };\nstruct X40 { DI_CONSTRUCTOR(X40, (X30, X31, X32, X33, X34, X35, X36, X37, X38, X39)) { } };\nstruct X41 { DI_CONSTRUCTOR(X41, (X31, X32, X33, X34, X35, X36, X37, X38, X39, X40)) { } };\nstruct X42 { DI_CONSTRUCTOR(X42, (X32, X33, X34, X35, X36, X37, X38, X39, X40, X41)) { } };\nstruct X43 { DI_CONSTRUCTOR(X43, (X33, X34, X35, X36, X37, X38, X39, X40, X41, X42)) { } };\nstruct X44 { DI_CONSTRUCTOR(X44, (X34, X35, X36, X37, X38, X39, X40, X41, X42, X43)) { } };\nstruct X45 { DI_CONSTRUCTOR(X45, (X35, X36, X37, X38, X39, X40, X41, X42, X43, X44)) { } };\nstruct X46 { DI_CONSTRUCTOR(X46, (X36, X37, X38, X39, X40, X41, X42, X43, X44, X45)) { } };\nstruct X47 { DI_CONSTRUCTOR(X47, (X37, X38, X39, X40, X41, X42, X43, X44, X45, X46)) { } };\nstruct X48 { DI_CONSTRUCTOR(X48, (X38, X39, X40, X41, X42, X43, X44, X45, X46, X47)) { } };\nstruct X49 { DI_CONSTRUCTOR(X49, (X39, X40, X41, X42, X43, X44, X45, X46, X47, X48)) { } };\nstruct X50 { DI_CONSTRUCTOR(X50, (X40, X41, X42, X43, X44, X45, X46, X47, X48, X49)) { } };\nstruct X51 { DI_CONSTRUCTOR(X51, (X41, X42, X43, X44, X45, X46, X47, X48, X49, X50)) { } };\nstruct X52 { DI_CONSTRUCTOR(X52, (X42, X43, X44, X45, X46, X47, X48, X49, X50, X51)) { } };\nstruct X53 { DI_CONSTRUCTOR(X53, (X43, X44, X45, X46, X47, X48, X49, X50, X51, X52)) { } };\nstruct X54 { DI_CONSTRUCTOR(X54, (X44, X45, X46, X47, X48, X49, X50, X51, X52, X53)) { } };\nstruct X55 { DI_CONSTRUCTOR(X55, (X45, X46, X47, X48, X49, X50, X51, X52, X53, X54)) { } };\nstruct X56 { DI_CONSTRUCTOR(X56, (X46, X47, X48, X49, X50, X51, X52, X53, X54, X55)) { } };\nstruct X57 { DI_CONSTRUCTOR(X57, (X47, X48, X49, X50, X51, X52, X53, X54, X55, X56)) { } };\nstruct X58 { DI_CONSTRUCTOR(X58, (X48, X49, X50, X51, X52, X53, X54, X55, X56, X57)) { } };\nstruct X59 { DI_CONSTRUCTOR(X59, (X49, X50, X51, X52, X53, X54, X55, X56, X57, X58)) { } };\nstruct X60 { DI_CONSTRUCTOR(X60, (X50, X51, X52, X53, X54, X55, X56, X57, X58, X59)) { } };\nstruct X61 { DI_CONSTRUCTOR(X61, (X51, X52, X53, X54, X55, X56, X57, X58, X59, X60)) { } };\nstruct X62 { DI_CONSTRUCTOR(X62, (X52, X53, X54, X55, X56, X57, X58, X59, X60, X61)) { } };\nstruct X63 { DI_CONSTRUCTOR(X63, (X53, X54, X55, X56, X57, X58, X59, X60, X61, X62)) { } };\nstruct X64 { DI_CONSTRUCTOR(X64, (X54, X55, X56, X57, X58, X59, X60, X61, X62, X63)) { } };\nstruct X65 { DI_CONSTRUCTOR(X65, (X55, X56, X57, X58, X59, X60, X61, X62, X63, X64)) { } };\nstruct X66 { DI_CONSTRUCTOR(X66, (X56, X57, X58, X59, X60, X61, X62, X63, X64, X65)) { } };\nstruct X67 { DI_CONSTRUCTOR(X67, (X57, X58, X59, X60, X61, X62, X63, X64, X65, X66)) { } };\nstruct X68 { DI_CONSTRUCTOR(X68, (X58, X59, X60, X61, X62, X63, X64, X65, X66, X67)) { } };\nstruct X69 { DI_CONSTRUCTOR(X69, (X59, X60, X61, X62, X63, X64, X65, X66, X67, X68)) { } };\nstruct X70 { DI_CONSTRUCTOR(X70, (X60, X61, X62, X63, X64, X65, X66, X67, X68, X69)) { } };\nstruct X71 { DI_CONSTRUCTOR(X71, (X61, X62, X63, X64, X65, X66, X67, X68, X69, X70)) { } };\nstruct X72 { DI_CONSTRUCTOR(X72, (X62, X63, X64, X65, X66, X67, X68, X69, X70, X71)) { } };\nstruct X73 { DI_CONSTRUCTOR(X73, (X63, X64, X65, X66, X67, X68, X69, X70, X71, X72)) { } };\nstruct X74 { DI_CONSTRUCTOR(X74, (X64, X65, X66, X67, X68, X69, X70, X71, X72, X73)) { } };\nstruct X75 { DI_CONSTRUCTOR(X75, (X65, X66, X67, X68, X69, X70, X71, X72, X73, X74)) { } };\nstruct X76 { DI_CONSTRUCTOR(X76, (X66, X67, X68, X69, X70, X71, X72, X73, X74, X75)) { } };\nstruct X77 { DI_CONSTRUCTOR(X77, (X67, X68, X69, X70, X71, X72, X73, X74, X75, X76)) { } };\nstruct X78 { DI_CONSTRUCTOR(X78, (X68, X69, X70, X71, X72, X73, X74, X75, X76, X77)) { } };\nstruct X79 { DI_CONSTRUCTOR(X79, (X69, X70, X71, X72, X73, X74, X75, X76, X77, X78)) { } };\nstruct X80 { DI_CONSTRUCTOR(X80, (X70, X71, X72, X73, X74, X75, X76, X77, X78, X79)) { } };\nstruct X81 { DI_CONSTRUCTOR(X81, (X71, X72, X73, X74, X75, X76, X77, X78, X79, X80)) { } };\nstruct X82 { DI_CONSTRUCTOR(X82, (X72, X73, X74, X75, X76, X77, X78, X79, X80, X81)) { } };\nstruct X83 { DI_CONSTRUCTOR(X83, (X73, X74, X75, X76, X77, X78, X79, X80, X81, X82)) { } };\nstruct X84 { DI_CONSTRUCTOR(X84, (X74, X75, X76, X77, X78, X79, X80, X81, X82, X83)) { } };\nstruct X85 { DI_CONSTRUCTOR(X85, (X75, X76, X77, X78, X79, X80, X81, X82, X83, X84)) { } };\nstruct X86 { DI_CONSTRUCTOR(X86, (X76, X77, X78, X79, X80, X81, X82, X83, X84, X85)) { } };\nstruct X87 { DI_CONSTRUCTOR(X87, (X77, X78, X79, X80, X81, X82, X83, X84, X85, X86)) { } };\nstruct X88 { DI_CONSTRUCTOR(X88, (X78, X79, X80, X81, X82, X83, X84, X85, X86, X87)) { } };\nstruct X89 { DI_CONSTRUCTOR(X89, (X79, X80, X81, X82, X83, X84, X85, X86, X87, X88)) { } };\nstruct X90 { DI_CONSTRUCTOR(X90, (X80, X81, X82, X83, X84, X85, X86, X87, X88, X89)) { } };\nstruct X91 { DI_CONSTRUCTOR(X91, (X81, X82, X83, X84, X85, X86, X87, X88, X89, X90)) { } };\nstruct X92 { DI_CONSTRUCTOR(X92, (X82, X83, X84, X85, X86, X87, X88, X89, X90, X91)) { } };\nstruct X93 { DI_CONSTRUCTOR(X93, (X83, X84, X85, X86, X87, X88, X89, X90, X91, X92)) { } };\nstruct X94 { DI_CONSTRUCTOR(X94, (X84, X85, X86, X87, X88, X89, X90, X91, X92, X93)) { } };\nstruct X95 { DI_CONSTRUCTOR(X95, (X85, X86, X87, X88, X89, X90, X91, X92, X93, X94)) { } };\nstruct X96 { DI_CONSTRUCTOR(X96, (X86, X87, X88, X89, X90, X91, X92, X93, X94, X95)) { } };\nstruct X97 { DI_CONSTRUCTOR(X97, (X87, X88, X89, X90, X91, X92, X93, X94, X95, X96)) { } };\nstruct X98 { DI_CONSTRUCTOR(X98, (X88, X89, X90, X91, X92, X93, X94, X95, X96, X97)) { } };\nstruct X99 { DI_CONSTRUCTOR(X99, (X89, X90, X91, X92, X93, X94, X95, X96, X97, X98)) { } };\nstruct I00 { virtual ~I00() noexcept = default; virtual void dummy() = 0; }; struct Impl00 : I00 { DI_CONSTRUCTOR(Impl00, (X00, X01, X02, X03, X04, X05, X06, X07, X08, X09)) { } void dummy() override { } };\nstruct I01 { virtual ~I01() noexcept = default; virtual void dummy() = 0; }; struct Impl01 : I01 { DI_CONSTRUCTOR(Impl01, (X01, X02, X03, X04, X05, X06, X07, X08, X09, X10)) { } void dummy() override { } };\nstruct I02 { virtual ~I02() noexcept = default; virtual void dummy() = 0; }; struct Impl02 : I02 { DI_CONSTRUCTOR(Impl02, (X02, X03, X04, X05, X06, X07, X08, X09, X10, X11)) { } void dummy() override { } };\nstruct I03 { virtual ~I03() noexcept = default; virtual void dummy() = 0; }; struct Impl03 : I03 { DI_CONSTRUCTOR(Impl03, (X03, X04, X05, X06, X07, X08, X09, X10, X11, X12)) { } void dummy() override { } };\nstruct I04 { virtual ~I04() noexcept = default; virtual void dummy() = 0; }; struct Impl04 : I04 { DI_CONSTRUCTOR(Impl04, (X04, X05, X06, X07, X08, X09, X10, X11, X12, X13)) { } void dummy() override { } };\nstruct I05 { virtual ~I05() noexcept = default; virtual void dummy() = 0; }; struct Impl05 : I05 { DI_CONSTRUCTOR(Impl05, (X05, X06, X07, X08, X09, X10, X11, X12, X13, X14)) { } void dummy() override { } };\nstruct I06 { virtual ~I06() noexcept = default; virtual void dummy() = 0; }; struct Impl06 : I06 { DI_CONSTRUCTOR(Impl06, (X06, X07, X08, X09, X10, X11, X12, X13, X14, X15)) { } void dummy() override { } };\nstruct I07 { virtual ~I07() noexcept = default; virtual void dummy() = 0; }; struct Impl07 : I07 { DI_CONSTRUCTOR(Impl07, (X07, X08, X09, X10, X11, X12, X13, X14, X15, X16)) { } void dummy() override { } };\nstruct I08 { virtual ~I08() noexcept = default; virtual void dummy() = 0; }; struct Impl08 : I08 { DI_CONSTRUCTOR(Impl08, (X08, X09, X10, X11, X12, X13, X14, X15, X16, X17)) { } void dummy() override { } };\nstruct I09 { virtual ~I09() noexcept = default; virtual void dummy() = 0; }; struct Impl09 : I09 { DI_CONSTRUCTOR(Impl09, (X09, X10, X11, X12, X13, X14, X15, X16, X17, X18)) { } void dummy() override { } };\nstruct I10 { virtual ~I10() noexcept = default; virtual void dummy() = 0; }; struct Impl10 : I10 { DI_CONSTRUCTOR(Impl10, (X10, X11, X12, X13, X14, X15, X16, X17, X18, X19)) { } void dummy() override { } };\nstruct I11 { virtual ~I11() noexcept = default; virtual void dummy() = 0; }; struct Impl11 : I11 { DI_CONSTRUCTOR(Impl11, (X11, X12, X13, X14, X15, X16, X17, X18, X19, X20)) { } void dummy() override { } };\nstruct I12 { virtual ~I12() noexcept = default; virtual void dummy() = 0; }; struct Impl12 : I12 { DI_CONSTRUCTOR(Impl12, (X12, X13, X14, X15, X16, X17, X18, X19, X20, X21)) { } void dummy() override { } };\nstruct I13 { virtual ~I13() noexcept = default; virtual void dummy() = 0; }; struct Impl13 : I13 { DI_CONSTRUCTOR(Impl13, (X13, X14, X15, X16, X17, X18, X19, X20, X21, X22)) { } void dummy() override { } };\nstruct I14 { virtual ~I14() noexcept = default; virtual void dummy() = 0; }; struct Impl14 : I14 { DI_CONSTRUCTOR(Impl14, (X14, X15, X16, X17, X18, X19, X20, X21, X22, X23)) { } void dummy() override { } };\nstruct I15 { virtual ~I15() noexcept = default; virtual void dummy() = 0; }; struct Impl15 : I15 { DI_CONSTRUCTOR(Impl15, (X15, X16, X17, X18, X19, X20, X21, X22, X23, X24)) { } void dummy() override { } };\nstruct I16 { virtual ~I16() noexcept = default; virtual void dummy() = 0; }; struct Impl16 : I16 { DI_CONSTRUCTOR(Impl16, (X16, X17, X18, X19, X20, X21, X22, X23, X24, X25)) { } void dummy() override { } };\nstruct I17 { virtual ~I17() noexcept = default; virtual void dummy() = 0; }; struct Impl17 : I17 { DI_CONSTRUCTOR(Impl17, (X17, X18, X19, X20, X21, X22, X23, X24, X25, X26)) { } void dummy() override { } };\nstruct I18 { virtual ~I18() noexcept = default; virtual void dummy() = 0; }; struct Impl18 : I18 { DI_CONSTRUCTOR(Impl18, (X18, X19, X20, X21, X22, X23, X24, X25, X26, X27)) { } void dummy() override { } };\nstruct I19 { virtual ~I19() noexcept = default; virtual void dummy() = 0; }; struct Impl19 : I19 { DI_CONSTRUCTOR(Impl19, (X19, X20, X21, X22, X23, X24, X25, X26, X27, X28)) { } void dummy() override { } };\nstruct I20 { virtual ~I20() noexcept = default; virtual void dummy() = 0; }; struct Impl20 : I20 { DI_CONSTRUCTOR(Impl20, (X20, X21, X22, X23, X24, X25, X26, X27, X28, X29)) { } void dummy() override { } };\nstruct I21 { virtual ~I21() noexcept = default; virtual void dummy() = 0; }; struct Impl21 : I21 { DI_CONSTRUCTOR(Impl21, (X21, X22, X23, X24, X25, X26, X27, X28, X29, X30)) { } void dummy() override { } };\nstruct I22 { virtual ~I22() noexcept = default; virtual void dummy() = 0; }; struct Impl22 : I22 { DI_CONSTRUCTOR(Impl22, (X22, X23, X24, X25, X26, X27, X28, X29, X30, X31)) { } void dummy() override { } };\nstruct I23 { virtual ~I23() noexcept = default; virtual void dummy() = 0; }; struct Impl23 : I23 { DI_CONSTRUCTOR(Impl23, (X23, X24, X25, X26, X27, X28, X29, X30, X31, X32)) { } void dummy() override { } };\nstruct I24 { virtual ~I24() noexcept = default; virtual void dummy() = 0; }; struct Impl24 : I24 { DI_CONSTRUCTOR(Impl24, (X24, X25, X26, X27, X28, X29, X30, X31, X32, X33)) { } void dummy() override { } };\nstruct I25 { virtual ~I25() noexcept = default; virtual void dummy() = 0; }; struct Impl25 : I25 { DI_CONSTRUCTOR(Impl25, (X25, X26, X27, X28, X29, X30, X31, X32, X33, X34)) { } void dummy() override { } };\nstruct I26 { virtual ~I26() noexcept = default; virtual void dummy() = 0; }; struct Impl26 : I26 { DI_CONSTRUCTOR(Impl26, (X26, X27, X28, X29, X30, X31, X32, X33, X34, X35)) { } void dummy() override { } };\nstruct I27 { virtual ~I27() noexcept = default; virtual void dummy() = 0; }; struct Impl27 : I27 { DI_CONSTRUCTOR(Impl27, (X27, X28, X29, X30, X31, X32, X33, X34, X35, X36)) { } void dummy() override { } };\nstruct I28 { virtual ~I28() noexcept = default; virtual void dummy() = 0; }; struct Impl28 : I28 { DI_CONSTRUCTOR(Impl28, (X28, X29, X30, X31, X32, X33, X34, X35, X36, X37)) { } void dummy() override { } };\nstruct I29 { virtual ~I29() noexcept = default; virtual void dummy() = 0; }; struct Impl29 : I29 { DI_CONSTRUCTOR(Impl29, (X29, X30, X31, X32, X33, X34, X35, X36, X37, X38)) { } void dummy() override { } };\nstruct I30 { virtual ~I30() noexcept = default; virtual void dummy() = 0; }; struct Impl30 : I30 { DI_CONSTRUCTOR(Impl30, (X30, X31, X32, X33, X34, X35, X36, X37, X38, X39)) { } void dummy() override { } };\nstruct I31 { virtual ~I31() noexcept = default; virtual void dummy() = 0; }; struct Impl31 : I31 { DI_CONSTRUCTOR(Impl31, (X31, X32, X33, X34, X35, X36, X37, X38, X39, X40)) { } void dummy() override { } };\nstruct I32 { virtual ~I32() noexcept = default; virtual void dummy() = 0; }; struct Impl32 : I32 { DI_CONSTRUCTOR(Impl32, (X32, X33, X34, X35, X36, X37, X38, X39, X40, X41)) { } void dummy() override { } };\nstruct I33 { virtual ~I33() noexcept = default; virtual void dummy() = 0; }; struct Impl33 : I33 { DI_CONSTRUCTOR(Impl33, (X33, X34, X35, X36, X37, X38, X39, X40, X41, X42)) { } void dummy() override { } };\nstruct I34 { virtual ~I34() noexcept = default; virtual void dummy() = 0; }; struct Impl34 : I34 { DI_CONSTRUCTOR(Impl34, (X34, X35, X36, X37, X38, X39, X40, X41, X42, X43)) { } void dummy() override { } };\nstruct I35 { virtual ~I35() noexcept = default; virtual void dummy() = 0; }; struct Impl35 : I35 { DI_CONSTRUCTOR(Impl35, (X35, X36, X37, X38, X39, X40, X41, X42, X43, X44)) { } void dummy() override { } };\nstruct I36 { virtual ~I36() noexcept = default; virtual void dummy() = 0; }; struct Impl36 : I36 { DI_CONSTRUCTOR(Impl36, (X36, X37, X38, X39, X40, X41, X42, X43, X44, X45)) { } void dummy() override { } };\nstruct I37 { virtual ~I37() noexcept = default; virtual void dummy() = 0; }; struct Impl37 : I37 { DI_CONSTRUCTOR(Impl37, (X37, X38, X39, X40, X41, X42, X43, X44, X45, X46)) { } void dummy() override { } };\nstruct I38 { virtual ~I38() noexcept = default; virtual void dummy() = 0; }; struct Impl38 : I38 { DI_CONSTRUCTOR(Impl38, (X38, X39, X40, X41, X42, X43, X44, X45, X46, X47)) { } void dummy() override { } };\nstruct I39 { virtual ~I39() noexcept = default; virtual void dummy() = 0; }; struct Impl39 : I39 { DI_CONSTRUCTOR(Impl39, (X39, X40, X41, X42, X43, X44, X45, X46, X47, X48)) { } void dummy() override { } };\nstruct I40 { virtual ~I40() noexcept = default; virtual void dummy() = 0; }; struct Impl40 : I40 { DI_CONSTRUCTOR(Impl40, (X40, X41, X42, X43, X44, X45, X46, X47, X48, X49)) { } void dummy() override { } };\nstruct I41 { virtual ~I41() noexcept = default; virtual void dummy() = 0; }; struct Impl41 : I41 { DI_CONSTRUCTOR(Impl41, (X41, X42, X43, X44, X45, X46, X47, X48, X49, X50)) { } void dummy() override { } };\nstruct I42 { virtual ~I42() noexcept = default; virtual void dummy() = 0; }; struct Impl42 : I42 { DI_CONSTRUCTOR(Impl42, (X42, X43, X44, X45, X46, X47, X48, X49, X50, X51)) { } void dummy() override { } };\nstruct I43 { virtual ~I43() noexcept = default; virtual void dummy() = 0; }; struct Impl43 : I43 { DI_CONSTRUCTOR(Impl43, (X43, X44, X45, X46, X47, X48, X49, X50, X51, X52)) { } void dummy() override { } };\nstruct I44 { virtual ~I44() noexcept = default; virtual void dummy() = 0; }; struct Impl44 : I44 { DI_CONSTRUCTOR(Impl44, (X44, X45, X46, X47, X48, X49, X50, X51, X52, X53)) { } void dummy() override { } };\nstruct I45 { virtual ~I45() noexcept = default; virtual void dummy() = 0; }; struct Impl45 : I45 { DI_CONSTRUCTOR(Impl45, (X45, X46, X47, X48, X49, X50, X51, X52, X53, X54)) { } void dummy() override { } };\nstruct I46 { virtual ~I46() noexcept = default; virtual void dummy() = 0; }; struct Impl46 : I46 { DI_CONSTRUCTOR(Impl46, (X46, X47, X48, X49, X50, X51, X52, X53, X54, X55)) { } void dummy() override { } };\nstruct I47 { virtual ~I47() noexcept = default; virtual void dummy() = 0; }; struct Impl47 : I47 { DI_CONSTRUCTOR(Impl47, (X47, X48, X49, X50, X51, X52, X53, X54, X55, X56)) { } void dummy() override { } };\nstruct I48 { virtual ~I48() noexcept = default; virtual void dummy() = 0; }; struct Impl48 : I48 { DI_CONSTRUCTOR(Impl48, (X48, X49, X50, X51, X52, X53, X54, X55, X56, X57)) { } void dummy() override { } };\nstruct I49 { virtual ~I49() noexcept = default; virtual void dummy() = 0; }; struct Impl49 : I49 { DI_CONSTRUCTOR(Impl49, (X49, X50, X51, X52, X53, X54, X55, X56, X57, X58)) { } void dummy() override { } };\nstruct I50 { virtual ~I50() noexcept = default; virtual void dummy() = 0; }; struct Impl50 : I50 { DI_CONSTRUCTOR(Impl50, (X50, X51, X52, X53, X54, X55, X56, X57, X58, X59)) { } void dummy() override { } };\nstruct I51 { virtual ~I51() noexcept = default; virtual void dummy() = 0; }; struct Impl51 : I51 { DI_CONSTRUCTOR(Impl51, (X51, X52, X53, X54, X55, X56, X57, X58, X59, X60)) { } void dummy() override { } };\nstruct I52 { virtual ~I52() noexcept = default; virtual void dummy() = 0; }; struct Impl52 : I52 { DI_CONSTRUCTOR(Impl52, (X52, X53, X54, X55, X56, X57, X58, X59, X60, X61)) { } void dummy() override { } };\nstruct I53 { virtual ~I53() noexcept = default; virtual void dummy() = 0; }; struct Impl53 : I53 { DI_CONSTRUCTOR(Impl53, (X53, X54, X55, X56, X57, X58, X59, X60, X61, X62)) { } void dummy() override { } };\nstruct I54 { virtual ~I54() noexcept = default; virtual void dummy() = 0; }; struct Impl54 : I54 { DI_CONSTRUCTOR(Impl54, (X54, X55, X56, X57, X58, X59, X60, X61, X62, X63)) { } void dummy() override { } };\nstruct I55 { virtual ~I55() noexcept = default; virtual void dummy() = 0; }; struct Impl55 : I55 { DI_CONSTRUCTOR(Impl55, (X55, X56, X57, X58, X59, X60, X61, X62, X63, X64)) { } void dummy() override { } };\nstruct I56 { virtual ~I56() noexcept = default; virtual void dummy() = 0; }; struct Impl56 : I56 { DI_CONSTRUCTOR(Impl56, (X56, X57, X58, X59, X60, X61, X62, X63, X64, X65)) { } void dummy() override { } };\nstruct I57 { virtual ~I57() noexcept = default; virtual void dummy() = 0; }; struct Impl57 : I57 { DI_CONSTRUCTOR(Impl57, (X57, X58, X59, X60, X61, X62, X63, X64, X65, X66)) { } void dummy() override { } };\nstruct I58 { virtual ~I58() noexcept = default; virtual void dummy() = 0; }; struct Impl58 : I58 { DI_CONSTRUCTOR(Impl58, (X58, X59, X60, X61, X62, X63, X64, X65, X66, X67)) { } void dummy() override { } };\nstruct I59 { virtual ~I59() noexcept = default; virtual void dummy() = 0; }; struct Impl59 : I59 { DI_CONSTRUCTOR(Impl59, (X59, X60, X61, X62, X63, X64, X65, X66, X67, X68)) { } void dummy() override { } };\nstruct I60 { virtual ~I60() noexcept = default; virtual void dummy() = 0; }; struct Impl60 : I60 { DI_CONSTRUCTOR(Impl60, (X60, X61, X62, X63, X64, X65, X66, X67, X68, X69)) { } void dummy() override { } };\nstruct I61 { virtual ~I61() noexcept = default; virtual void dummy() = 0; }; struct Impl61 : I61 { DI_CONSTRUCTOR(Impl61, (X61, X62, X63, X64, X65, X66, X67, X68, X69, X70)) { } void dummy() override { } };\nstruct I62 { virtual ~I62() noexcept = default; virtual void dummy() = 0; }; struct Impl62 : I62 { DI_CONSTRUCTOR(Impl62, (X62, X63, X64, X65, X66, X67, X68, X69, X70, X71)) { } void dummy() override { } };\nstruct I63 { virtual ~I63() noexcept = default; virtual void dummy() = 0; }; struct Impl63 : I63 { DI_CONSTRUCTOR(Impl63, (X63, X64, X65, X66, X67, X68, X69, X70, X71, X72)) { } void dummy() override { } };\nstruct I64 { virtual ~I64() noexcept = default; virtual void dummy() = 0; }; struct Impl64 : I64 { DI_CONSTRUCTOR(Impl64, (X64, X65, X66, X67, X68, X69, X70, X71, X72, X73)) { } void dummy() override { } };\nstruct I65 { virtual ~I65() noexcept = default; virtual void dummy() = 0; }; struct Impl65 : I65 { DI_CONSTRUCTOR(Impl65, (X65, X66, X67, X68, X69, X70, X71, X72, X73, X74)) { } void dummy() override { } };\nstruct I66 { virtual ~I66() noexcept = default; virtual void dummy() = 0; }; struct Impl66 : I66 { DI_CONSTRUCTOR(Impl66, (X66, X67, X68, X69, X70, X71, X72, X73, X74, X75)) { } void dummy() override { } };\nstruct I67 { virtual ~I67() noexcept = default; virtual void dummy() = 0; }; struct Impl67 : I67 { DI_CONSTRUCTOR(Impl67, (X67, X68, X69, X70, X71, X72, X73, X74, X75, X76)) { } void dummy() override { } };\nstruct I68 { virtual ~I68() noexcept = default; virtual void dummy() = 0; }; struct Impl68 : I68 { DI_CONSTRUCTOR(Impl68, (X68, X69, X70, X71, X72, X73, X74, X75, X76, X77)) { } void dummy() override { } };\nstruct I69 { virtual ~I69() noexcept = default; virtual void dummy() = 0; }; struct Impl69 : I69 { DI_CONSTRUCTOR(Impl69, (X69, X70, X71, X72, X73, X74, X75, X76, X77, X78)) { } void dummy() override { } };\nstruct I70 { virtual ~I70() noexcept = default; virtual void dummy() = 0; }; struct Impl70 : I70 { DI_CONSTRUCTOR(Impl70, (X70, X71, X72, X73, X74, X75, X76, X77, X78, X79)) { } void dummy() override { } };\nstruct I71 { virtual ~I71() noexcept = default; virtual void dummy() = 0; }; struct Impl71 : I71 { DI_CONSTRUCTOR(Impl71, (X71, X72, X73, X74, X75, X76, X77, X78, X79, X80)) { } void dummy() override { } };\nstruct I72 { virtual ~I72() noexcept = default; virtual void dummy() = 0; }; struct Impl72 : I72 { DI_CONSTRUCTOR(Impl72, (X72, X73, X74, X75, X76, X77, X78, X79, X80, X81)) { } void dummy() override { } };\nstruct I73 { virtual ~I73() noexcept = default; virtual void dummy() = 0; }; struct Impl73 : I73 { DI_CONSTRUCTOR(Impl73, (X73, X74, X75, X76, X77, X78, X79, X80, X81, X82)) { } void dummy() override { } };\nstruct I74 { virtual ~I74() noexcept = default; virtual void dummy() = 0; }; struct Impl74 : I74 { DI_CONSTRUCTOR(Impl74, (X74, X75, X76, X77, X78, X79, X80, X81, X82, X83)) { } void dummy() override { } };\nstruct I75 { virtual ~I75() noexcept = default; virtual void dummy() = 0; }; struct Impl75 : I75 { DI_CONSTRUCTOR(Impl75, (X75, X76, X77, X78, X79, X80, X81, X82, X83, X84)) { } void dummy() override { } };\nstruct I76 { virtual ~I76() noexcept = default; virtual void dummy() = 0; }; struct Impl76 : I76 { DI_CONSTRUCTOR(Impl76, (X76, X77, X78, X79, X80, X81, X82, X83, X84, X85)) { } void dummy() override { } };\nstruct I77 { virtual ~I77() noexcept = default; virtual void dummy() = 0; }; struct Impl77 : I77 { DI_CONSTRUCTOR(Impl77, (X77, X78, X79, X80, X81, X82, X83, X84, X85, X86)) { } void dummy() override { } };\nstruct I78 { virtual ~I78() noexcept = default; virtual void dummy() = 0; }; struct Impl78 : I78 { DI_CONSTRUCTOR(Impl78, (X78, X79, X80, X81, X82, X83, X84, X85, X86, X87)) { } void dummy() override { } };\nstruct I79 { virtual ~I79() noexcept = default; virtual void dummy() = 0; }; struct Impl79 : I79 { DI_CONSTRUCTOR(Impl79, (X79, X80, X81, X82, X83, X84, X85, X86, X87, X88)) { } void dummy() override { } };\nstruct I80 { virtual ~I80() noexcept = default; virtual void dummy() = 0; }; struct Impl80 : I80 { DI_CONSTRUCTOR(Impl80, (X80, X81, X82, X83, X84, X85, X86, X87, X88, X89)) { } void dummy() override { } };\nstruct I81 { virtual ~I81() noexcept = default; virtual void dummy() = 0; }; struct Impl81 : I81 { DI_CONSTRUCTOR(Impl81, (X81, X82, X83, X84, X85, X86, X87, X88, X89, X90)) { } void dummy() override { } };\nstruct I82 { virtual ~I82() noexcept = default; virtual void dummy() = 0; }; struct Impl82 : I82 { DI_CONSTRUCTOR(Impl82, (X82, X83, X84, X85, X86, X87, X88, X89, X90, X91)) { } void dummy() override { } };\nstruct I83 { virtual ~I83() noexcept = default; virtual void dummy() = 0; }; struct Impl83 : I83 { DI_CONSTRUCTOR(Impl83, (X83, X84, X85, X86, X87, X88, X89, X90, X91, X92)) { } void dummy() override { } };\nstruct I84 { virtual ~I84() noexcept = default; virtual void dummy() = 0; }; struct Impl84 : I84 { DI_CONSTRUCTOR(Impl84, (X84, X85, X86, X87, X88, X89, X90, X91, X92, X93)) { } void dummy() override { } };\nstruct I85 { virtual ~I85() noexcept = default; virtual void dummy() = 0; }; struct Impl85 : I85 { DI_CONSTRUCTOR(Impl85, (X85, X86, X87, X88, X89, X90, X91, X92, X93, X94)) { } void dummy() override { } };\nstruct I86 { virtual ~I86() noexcept = default; virtual void dummy() = 0; }; struct Impl86 : I86 { DI_CONSTRUCTOR(Impl86, (X86, X87, X88, X89, X90, X91, X92, X93, X94, X95)) { } void dummy() override { } };\nstruct I87 { virtual ~I87() noexcept = default; virtual void dummy() = 0; }; struct Impl87 : I87 { DI_CONSTRUCTOR(Impl87, (X87, X88, X89, X90, X91, X92, X93, X94, X95, X96)) { } void dummy() override { } };\nstruct I88 { virtual ~I88() noexcept = default; virtual void dummy() = 0; }; struct Impl88 : I88 { DI_CONSTRUCTOR(Impl88, (X88, X89, X90, X91, X92, X93, X94, X95, X96, X97)) { } void dummy() override { } };\nstruct I89 { virtual ~I89() noexcept = default; virtual void dummy() = 0; }; struct Impl89 : I89 { DI_CONSTRUCTOR(Impl89, (X89, X90, X91, X92, X93, X94, X95, X96, X97, X98)) { } void dummy() override { } };\nstruct I90 { virtual ~I90() noexcept = default; virtual void dummy() = 0; }; struct Impl90 : I90 { DI_CONSTRUCTOR(Impl90, (X90, X91, X92, X93, X94, X95, X96, X97, X98, X99)) { } void dummy() override { } };\nstruct I91 { virtual ~I91() noexcept = default; virtual void dummy() = 0; }; struct Impl91 : I91 { DI_CONSTRUCTOR(Impl91, (X91, X92, X93, X94, X95, X96, X97, X98, X99, X00)) { } void dummy() override { } };\nstruct I92 { virtual ~I92() noexcept = default; virtual void dummy() = 0; }; struct Impl92 : I92 { DI_CONSTRUCTOR(Impl92, (X92, X93, X94, X95, X96, X97, X98, X99, X00, X01)) { } void dummy() override { } };\nstruct I93 { virtual ~I93() noexcept = default; virtual void dummy() = 0; }; struct Impl93 : I93 { DI_CONSTRUCTOR(Impl93, (X93, X94, X95, X96, X97, X98, X99, X00, X01, X02)) { } void dummy() override { } };\nstruct I94 { virtual ~I94() noexcept = default; virtual void dummy() = 0; }; struct Impl94 : I94 { DI_CONSTRUCTOR(Impl94, (X94, X95, X96, X97, X98, X99, X00, X01, X02, X03)) { } void dummy() override { } };\nstruct I95 { virtual ~I95() noexcept = default; virtual void dummy() = 0; }; struct Impl95 : I95 { DI_CONSTRUCTOR(Impl95, (X95, X96, X97, X98, X99, X00, X01, X02, X03, X04)) { } void dummy() override { } };\nstruct I96 { virtual ~I96() noexcept = default; virtual void dummy() = 0; }; struct Impl96 : I96 { DI_CONSTRUCTOR(Impl96, (X96, X97, X98, X99, X00, X01, X02, X03, X04, X05)) { } void dummy() override { } };\nstruct I97 { virtual ~I97() noexcept = default; virtual void dummy() = 0; }; struct Impl97 : I97 { DI_CONSTRUCTOR(Impl97, (X97, X98, X99, X00, X01, X02, X03, X04, X05, X06)) { } void dummy() override { } };\nstruct I98 { virtual ~I98() noexcept = default; virtual void dummy() = 0; }; struct Impl98 : I98 { DI_CONSTRUCTOR(Impl98, (X98, X99, X00, X01, X02, X03, X04, X05, X06, X07)) { } void dummy() override { } };\nstruct I99 { virtual ~I99() noexcept = default; virtual void dummy() = 0; }; struct Impl99 : I99 { DI_CONSTRUCTOR(Impl99, (X99, X00, X01, X02, X03, X04, X05, X06, X07, X08)) { } void dummy() override { } };\nstruct C0 { DI_CONSTRUCTOR(C0, (std::unique_ptr<I00>, std::unique_ptr<I01>, std::unique_ptr<I02>, std::unique_ptr<I03>, std::unique_ptr<I04>, std::unique_ptr<I05>, std::unique_ptr<I06>, std::unique_ptr<I07>, std::unique_ptr<I08>, std::unique_ptr<I09>)) { } };\nstruct C1 { DI_CONSTRUCTOR(C1, (std::unique_ptr<I10>, std::unique_ptr<I11>, std::unique_ptr<I12>, std::unique_ptr<I13>, std::unique_ptr<I14>, std::unique_ptr<I15>, std::unique_ptr<I16>, std::unique_ptr<I17>, std::unique_ptr<I18>, std::unique_ptr<I19>)) { } };\nstruct C2 { DI_CONSTRUCTOR(C2, (std::unique_ptr<I20>, std::unique_ptr<I21>, std::unique_ptr<I22>, std::unique_ptr<I23>, std::unique_ptr<I24>, std::unique_ptr<I25>, std::unique_ptr<I26>, std::unique_ptr<I27>, std::unique_ptr<I28>, std::unique_ptr<I29>)) { } };\nstruct C3 { DI_CONSTRUCTOR(C3, (std::unique_ptr<I30>, std::unique_ptr<I31>, std::unique_ptr<I32>, std::unique_ptr<I33>, std::unique_ptr<I34>, std::unique_ptr<I35>, std::unique_ptr<I36>, std::unique_ptr<I37>, std::unique_ptr<I38>, std::unique_ptr<I39>)) { } };\nstruct C4 { DI_CONSTRUCTOR(C4, (std::unique_ptr<I40>, std::unique_ptr<I41>, std::unique_ptr<I42>, std::unique_ptr<I43>, std::unique_ptr<I44>, std::unique_ptr<I45>, std::unique_ptr<I46>, std::unique_ptr<I47>, std::unique_ptr<I48>, std::unique_ptr<I49>)) { } };\nstruct C5 { DI_CONSTRUCTOR(C5, (std::unique_ptr<I50>, std::unique_ptr<I51>, std::unique_ptr<I52>, std::unique_ptr<I53>, std::unique_ptr<I54>, std::unique_ptr<I55>, std::unique_ptr<I56>, std::unique_ptr<I57>, std::unique_ptr<I58>, std::unique_ptr<I59>)) { } };\nstruct C6 { DI_CONSTRUCTOR(C6, (std::unique_ptr<I60>, std::unique_ptr<I61>, std::unique_ptr<I62>, std::unique_ptr<I63>, std::unique_ptr<I64>, std::unique_ptr<I65>, std::unique_ptr<I66>, std::unique_ptr<I67>, std::unique_ptr<I68>, std::unique_ptr<I69>)) { } };\nstruct C7 { DI_CONSTRUCTOR(C7, (std::unique_ptr<I70>, std::unique_ptr<I71>, std::unique_ptr<I72>, std::unique_ptr<I73>, std::unique_ptr<I74>, std::unique_ptr<I75>, std::unique_ptr<I76>, std::unique_ptr<I77>, std::unique_ptr<I78>, std::unique_ptr<I79>)) { } };\nstruct C8 { DI_CONSTRUCTOR(C8, (std::unique_ptr<I80>, std::unique_ptr<I81>, std::unique_ptr<I82>, std::unique_ptr<I83>, std::unique_ptr<I84>, std::unique_ptr<I85>, std::unique_ptr<I86>, std::unique_ptr<I87>, std::unique_ptr<I88>, std::unique_ptr<I89>)) { } };\nstruct C9 { DI_CONSTRUCTOR(C9, (std::unique_ptr<I90>, std::unique_ptr<I91>, std::unique_ptr<I92>, std::unique_ptr<I93>, std::unique_ptr<I94>, std::unique_ptr<I95>, std::unique_ptr<I96>, std::unique_ptr<I97>, std::unique_ptr<I98>, std::unique_ptr<I99>)) { } };\nstruct Complex { DI_CONSTRUCTOR(Complex, (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)) { } };\n// clang-format on\n\nvoid module(di::registry& r) {\n  r.add(r.type<I00>().implementation<Impl00>());\n  r.add(r.type<I01>().implementation<Impl01>());\n  r.add(r.type<I02>().implementation<Impl02>());\n  r.add(r.type<I03>().implementation<Impl03>());\n  r.add(r.type<I04>().implementation<Impl04>());\n  r.add(r.type<I05>().implementation<Impl05>());\n  r.add(r.type<I06>().implementation<Impl06>());\n  r.add(r.type<I07>().implementation<Impl07>());\n  r.add(r.type<I08>().implementation<Impl08>());\n  r.add(r.type<I09>().implementation<Impl09>());\n  r.add(r.type<I10>().implementation<Impl10>());\n  r.add(r.type<I11>().implementation<Impl11>());\n  r.add(r.type<I12>().implementation<Impl12>());\n  r.add(r.type<I13>().implementation<Impl13>());\n  r.add(r.type<I14>().implementation<Impl14>());\n  r.add(r.type<I15>().implementation<Impl15>());\n  r.add(r.type<I16>().implementation<Impl16>());\n  r.add(r.type<I17>().implementation<Impl17>());\n  r.add(r.type<I18>().implementation<Impl18>());\n  r.add(r.type<I19>().implementation<Impl19>());\n  r.add(r.type<I20>().implementation<Impl20>());\n  r.add(r.type<I21>().implementation<Impl21>());\n  r.add(r.type<I22>().implementation<Impl22>());\n  r.add(r.type<I23>().implementation<Impl23>());\n  r.add(r.type<I24>().implementation<Impl24>());\n  r.add(r.type<I25>().implementation<Impl25>());\n  r.add(r.type<I26>().implementation<Impl26>());\n  r.add(r.type<I27>().implementation<Impl27>());\n  r.add(r.type<I28>().implementation<Impl28>());\n  r.add(r.type<I29>().implementation<Impl29>());\n  r.add(r.type<I30>().implementation<Impl30>());\n  r.add(r.type<I31>().implementation<Impl31>());\n  r.add(r.type<I32>().implementation<Impl32>());\n  r.add(r.type<I33>().implementation<Impl33>());\n  r.add(r.type<I34>().implementation<Impl34>());\n  r.add(r.type<I35>().implementation<Impl35>());\n  r.add(r.type<I36>().implementation<Impl36>());\n  r.add(r.type<I37>().implementation<Impl37>());\n  r.add(r.type<I38>().implementation<Impl38>());\n  r.add(r.type<I39>().implementation<Impl39>());\n  r.add(r.type<I40>().implementation<Impl40>());\n  r.add(r.type<I41>().implementation<Impl41>());\n  r.add(r.type<I42>().implementation<Impl42>());\n  r.add(r.type<I43>().implementation<Impl43>());\n  r.add(r.type<I44>().implementation<Impl44>());\n  r.add(r.type<I45>().implementation<Impl45>());\n  r.add(r.type<I46>().implementation<Impl46>());\n  r.add(r.type<I47>().implementation<Impl47>());\n  r.add(r.type<I48>().implementation<Impl48>());\n  r.add(r.type<I49>().implementation<Impl49>());\n  r.add(r.type<I50>().implementation<Impl50>());\n  r.add(r.type<I51>().implementation<Impl51>());\n  r.add(r.type<I52>().implementation<Impl52>());\n  r.add(r.type<I53>().implementation<Impl53>());\n  r.add(r.type<I54>().implementation<Impl54>());\n  r.add(r.type<I55>().implementation<Impl55>());\n  r.add(r.type<I56>().implementation<Impl56>());\n  r.add(r.type<I57>().implementation<Impl57>());\n  r.add(r.type<I58>().implementation<Impl58>());\n  r.add(r.type<I59>().implementation<Impl59>());\n  r.add(r.type<I60>().implementation<Impl60>());\n  r.add(r.type<I61>().implementation<Impl61>());\n  r.add(r.type<I62>().implementation<Impl62>());\n  r.add(r.type<I63>().implementation<Impl63>());\n  r.add(r.type<I64>().implementation<Impl64>());\n  r.add(r.type<I65>().implementation<Impl65>());\n  r.add(r.type<I66>().implementation<Impl66>());\n  r.add(r.type<I67>().implementation<Impl67>());\n  r.add(r.type<I68>().implementation<Impl68>());\n  r.add(r.type<I69>().implementation<Impl69>());\n  r.add(r.type<I70>().implementation<Impl70>());\n  r.add(r.type<I71>().implementation<Impl71>());\n  r.add(r.type<I72>().implementation<Impl72>());\n  r.add(r.type<I73>().implementation<Impl73>());\n  r.add(r.type<I74>().implementation<Impl74>());\n  r.add(r.type<I75>().implementation<Impl75>());\n  r.add(r.type<I76>().implementation<Impl76>());\n  r.add(r.type<I77>().implementation<Impl77>());\n  r.add(r.type<I78>().implementation<Impl78>());\n  r.add(r.type<I79>().implementation<Impl79>());\n  r.add(r.type<I80>().implementation<Impl80>());\n  r.add(r.type<I81>().implementation<Impl81>());\n  r.add(r.type<I82>().implementation<Impl82>());\n  r.add(r.type<I83>().implementation<Impl83>());\n  r.add(r.type<I84>().implementation<Impl84>());\n  r.add(r.type<I85>().implementation<Impl85>());\n  r.add(r.type<I86>().implementation<Impl86>());\n  r.add(r.type<I87>().implementation<Impl87>());\n  r.add(r.type<I88>().implementation<Impl88>());\n  r.add(r.type<I89>().implementation<Impl89>());\n  r.add(r.type<I90>().implementation<Impl90>());\n  r.add(r.type<I91>().implementation<Impl91>());\n  r.add(r.type<I92>().implementation<Impl92>());\n  r.add(r.type<I93>().implementation<Impl93>());\n  r.add(r.type<I94>().implementation<Impl94>());\n  r.add(r.type<I95>().implementation<Impl95>());\n  r.add(r.type<I96>().implementation<Impl96>());\n  r.add(r.type<I97>().implementation<Impl97>());\n  r.add(r.type<I98>().implementation<Impl98>());\n  r.add(r.type<I99>().implementation<Impl99>());\n}\n\nint main() {\n  di::injector injector;\n  injector.install(module);\n  injector.construct<Complex>();\n}\n"
  },
  {
    "path": "benchmark/create_complex/fruit.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <memory>\n#include <fruit/fruit.h>\n\n// clang-format off\nstruct X00 { INJECT(X00()) { } };\nstruct X01 { INJECT(X01(X00)) { } };\nstruct X02 { INJECT(X02(X00, X01)) { } };\nstruct X03 { INJECT(X03(X00, X01, X02)) { } };\nstruct X04 { INJECT(X04(X00, X01, X02, X03)) { } };\nstruct X05 { INJECT(X05(X00, X01, X02, X03, X04)) { } };\nstruct X06 { INJECT(X06(X00, X01, X02, X03, X04, X05)) { } };\nstruct X07 { INJECT(X07(X00, X01, X02, X03, X04, X05, X06)) { } };\nstruct X08 { INJECT(X08(X00, X01, X02, X03, X04, X05, X06, X07)) { } };\nstruct X09 { INJECT(X09(X00, X01, X02, X03, X04, X05, X06, X07, X08)) { } };\nstruct X10 { INJECT(X10(X00, X01, X02, X03, X04, X05, X06, X07, X08, X09)) { } };\nstruct X11 { INJECT(X11(X01, X02, X03, X04, X05, X06, X07, X08, X09, X10)) { } };\nstruct X12 { INJECT(X12(X02, X03, X04, X05, X06, X07, X08, X09, X10, X11)) { } };\nstruct X13 { INJECT(X13(X03, X04, X05, X06, X07, X08, X09, X10, X11, X12)) { } };\nstruct X14 { INJECT(X14(X04, X05, X06, X07, X08, X09, X10, X11, X12, X13)) { } };\nstruct X15 { INJECT(X15(X05, X06, X07, X08, X09, X10, X11, X12, X13, X14)) { } };\nstruct X16 { INJECT(X16(X06, X07, X08, X09, X10, X11, X12, X13, X14, X15)) { } };\nstruct X17 { INJECT(X17(X07, X08, X09, X10, X11, X12, X13, X14, X15, X16)) { } };\nstruct X18 { INJECT(X18(X08, X09, X10, X11, X12, X13, X14, X15, X16, X17)) { } };\nstruct X19 { INJECT(X19(X09, X10, X11, X12, X13, X14, X15, X16, X17, X18)) { } };\nstruct X20 { INJECT(X20(X10, X11, X12, X13, X14, X15, X16, X17, X18, X19)) { } };\nstruct X21 { INJECT(X21(X11, X12, X13, X14, X15, X16, X17, X18, X19, X20)) { } };\nstruct X22 { INJECT(X22(X12, X13, X14, X15, X16, X17, X18, X19, X20, X21)) { } };\nstruct X23 { INJECT(X23(X13, X14, X15, X16, X17, X18, X19, X20, X21, X22)) { } };\nstruct X24 { INJECT(X24(X14, X15, X16, X17, X18, X19, X20, X21, X22, X23)) { } };\nstruct X25 { INJECT(X25(X15, X16, X17, X18, X19, X20, X21, X22, X23, X24)) { } };\nstruct X26 { INJECT(X26(X16, X17, X18, X19, X20, X21, X22, X23, X24, X25)) { } };\nstruct X27 { INJECT(X27(X17, X18, X19, X20, X21, X22, X23, X24, X25, X26)) { } };\nstruct X28 { INJECT(X28(X18, X19, X20, X21, X22, X23, X24, X25, X26, X27)) { } };\nstruct X29 { INJECT(X29(X19, X20, X21, X22, X23, X24, X25, X26, X27, X28)) { } };\nstruct X30 { INJECT(X30(X20, X21, X22, X23, X24, X25, X26, X27, X28, X29)) { } };\nstruct X31 { INJECT(X31(X21, X22, X23, X24, X25, X26, X27, X28, X29, X30)) { } };\nstruct X32 { INJECT(X32(X22, X23, X24, X25, X26, X27, X28, X29, X30, X31)) { } };\nstruct X33 { INJECT(X33(X23, X24, X25, X26, X27, X28, X29, X30, X31, X32)) { } };\nstruct X34 { INJECT(X34(X24, X25, X26, X27, X28, X29, X30, X31, X32, X33)) { } };\nstruct X35 { INJECT(X35(X25, X26, X27, X28, X29, X30, X31, X32, X33, X34)) { } };\nstruct X36 { INJECT(X36(X26, X27, X28, X29, X30, X31, X32, X33, X34, X35)) { } };\nstruct X37 { INJECT(X37(X27, X28, X29, X30, X31, X32, X33, X34, X35, X36)) { } };\nstruct X38 { INJECT(X38(X28, X29, X30, X31, X32, X33, X34, X35, X36, X37)) { } };\nstruct X39 { INJECT(X39(X29, X30, X31, X32, X33, X34, X35, X36, X37, X38)) { } };\nstruct X40 { INJECT(X40(X30, X31, X32, X33, X34, X35, X36, X37, X38, X39)) { } };\nstruct X41 { INJECT(X41(X31, X32, X33, X34, X35, X36, X37, X38, X39, X40)) { } };\nstruct X42 { INJECT(X42(X32, X33, X34, X35, X36, X37, X38, X39, X40, X41)) { } };\nstruct X43 { INJECT(X43(X33, X34, X35, X36, X37, X38, X39, X40, X41, X42)) { } };\nstruct X44 { INJECT(X44(X34, X35, X36, X37, X38, X39, X40, X41, X42, X43)) { } };\nstruct X45 { INJECT(X45(X35, X36, X37, X38, X39, X40, X41, X42, X43, X44)) { } };\nstruct X46 { INJECT(X46(X36, X37, X38, X39, X40, X41, X42, X43, X44, X45)) { } };\nstruct X47 { INJECT(X47(X37, X38, X39, X40, X41, X42, X43, X44, X45, X46)) { } };\nstruct X48 { INJECT(X48(X38, X39, X40, X41, X42, X43, X44, X45, X46, X47)) { } };\nstruct X49 { INJECT(X49(X39, X40, X41, X42, X43, X44, X45, X46, X47, X48)) { } };\nstruct X50 { INJECT(X50(X40, X41, X42, X43, X44, X45, X46, X47, X48, X49)) { } };\nstruct X51 { INJECT(X51(X41, X42, X43, X44, X45, X46, X47, X48, X49, X50)) { } };\nstruct X52 { INJECT(X52(X42, X43, X44, X45, X46, X47, X48, X49, X50, X51)) { } };\nstruct X53 { INJECT(X53(X43, X44, X45, X46, X47, X48, X49, X50, X51, X52)) { } };\nstruct X54 { INJECT(X54(X44, X45, X46, X47, X48, X49, X50, X51, X52, X53)) { } };\nstruct X55 { INJECT(X55(X45, X46, X47, X48, X49, X50, X51, X52, X53, X54)) { } };\nstruct X56 { INJECT(X56(X46, X47, X48, X49, X50, X51, X52, X53, X54, X55)) { } };\nstruct X57 { INJECT(X57(X47, X48, X49, X50, X51, X52, X53, X54, X55, X56)) { } };\nstruct X58 { INJECT(X58(X48, X49, X50, X51, X52, X53, X54, X55, X56, X57)) { } };\nstruct X59 { INJECT(X59(X49, X50, X51, X52, X53, X54, X55, X56, X57, X58)) { } };\nstruct X60 { INJECT(X60(X50, X51, X52, X53, X54, X55, X56, X57, X58, X59)) { } };\nstruct X61 { INJECT(X61(X51, X52, X53, X54, X55, X56, X57, X58, X59, X60)) { } };\nstruct X62 { INJECT(X62(X52, X53, X54, X55, X56, X57, X58, X59, X60, X61)) { } };\nstruct X63 { INJECT(X63(X53, X54, X55, X56, X57, X58, X59, X60, X61, X62)) { } };\nstruct X64 { INJECT(X64(X54, X55, X56, X57, X58, X59, X60, X61, X62, X63)) { } };\nstruct X65 { INJECT(X65(X55, X56, X57, X58, X59, X60, X61, X62, X63, X64)) { } };\nstruct X66 { INJECT(X66(X56, X57, X58, X59, X60, X61, X62, X63, X64, X65)) { } };\nstruct X67 { INJECT(X67(X57, X58, X59, X60, X61, X62, X63, X64, X65, X66)) { } };\nstruct X68 { INJECT(X68(X58, X59, X60, X61, X62, X63, X64, X65, X66, X67)) { } };\nstruct X69 { INJECT(X69(X59, X60, X61, X62, X63, X64, X65, X66, X67, X68)) { } };\nstruct X70 { INJECT(X70(X60, X61, X62, X63, X64, X65, X66, X67, X68, X69)) { } };\nstruct X71 { INJECT(X71(X61, X62, X63, X64, X65, X66, X67, X68, X69, X70)) { } };\nstruct X72 { INJECT(X72(X62, X63, X64, X65, X66, X67, X68, X69, X70, X71)) { } };\nstruct X73 { INJECT(X73(X63, X64, X65, X66, X67, X68, X69, X70, X71, X72)) { } };\nstruct X74 { INJECT(X74(X64, X65, X66, X67, X68, X69, X70, X71, X72, X73)) { } };\nstruct X75 { INJECT(X75(X65, X66, X67, X68, X69, X70, X71, X72, X73, X74)) { } };\nstruct X76 { INJECT(X76(X66, X67, X68, X69, X70, X71, X72, X73, X74, X75)) { } };\nstruct X77 { INJECT(X77(X67, X68, X69, X70, X71, X72, X73, X74, X75, X76)) { } };\nstruct X78 { INJECT(X78(X68, X69, X70, X71, X72, X73, X74, X75, X76, X77)) { } };\nstruct X79 { INJECT(X79(X69, X70, X71, X72, X73, X74, X75, X76, X77, X78)) { } };\nstruct X80 { INJECT(X80(X70, X71, X72, X73, X74, X75, X76, X77, X78, X79)) { } };\nstruct X81 { INJECT(X81(X71, X72, X73, X74, X75, X76, X77, X78, X79, X80)) { } };\nstruct X82 { INJECT(X82(X72, X73, X74, X75, X76, X77, X78, X79, X80, X81)) { } };\nstruct X83 { INJECT(X83(X73, X74, X75, X76, X77, X78, X79, X80, X81, X82)) { } };\nstruct X84 { INJECT(X84(X74, X75, X76, X77, X78, X79, X80, X81, X82, X83)) { } };\nstruct X85 { INJECT(X85(X75, X76, X77, X78, X79, X80, X81, X82, X83, X84)) { } };\nstruct X86 { INJECT(X86(X76, X77, X78, X79, X80, X81, X82, X83, X84, X85)) { } };\nstruct X87 { INJECT(X87(X77, X78, X79, X80, X81, X82, X83, X84, X85, X86)) { } };\nstruct X88 { INJECT(X88(X78, X79, X80, X81, X82, X83, X84, X85, X86, X87)) { } };\nstruct X89 { INJECT(X89(X79, X80, X81, X82, X83, X84, X85, X86, X87, X88)) { } };\nstruct X90 { INJECT(X90(X80, X81, X82, X83, X84, X85, X86, X87, X88, X89)) { } };\nstruct X91 { INJECT(X91(X81, X82, X83, X84, X85, X86, X87, X88, X89, X90)) { } };\nstruct X92 { INJECT(X92(X82, X83, X84, X85, X86, X87, X88, X89, X90, X91)) { } };\nstruct X93 { INJECT(X93(X83, X84, X85, X86, X87, X88, X89, X90, X91, X92)) { } };\nstruct X94 { INJECT(X94(X84, X85, X86, X87, X88, X89, X90, X91, X92, X93)) { } };\nstruct X95 { INJECT(X95(X85, X86, X87, X88, X89, X90, X91, X92, X93, X94)) { } };\nstruct X96 { INJECT(X96(X86, X87, X88, X89, X90, X91, X92, X93, X94, X95)) { } };\nstruct X97 { INJECT(X97(X87, X88, X89, X90, X91, X92, X93, X94, X95, X96)) { } };\nstruct X98 { INJECT(X98(X88, X89, X90, X91, X92, X93, X94, X95, X96, X97)) { } };\nstruct X99 { INJECT(X99(X89, X90, X91, X92, X93, X94, X95, X96, X97, X98)) { } };\nstruct I00 { virtual ~I00() noexcept = default; virtual void dummy() = 0; }; struct Impl00 : I00 { INJECT(Impl00(X00, X01, X02, X03, X04, X05, X06, X07, X08, X09)) { } void dummy() override { } };\nstruct I01 { virtual ~I01() noexcept = default; virtual void dummy() = 0; }; struct Impl01 : I01 { INJECT(Impl01(X01, X02, X03, X04, X05, X06, X07, X08, X09, X10)) { } void dummy() override { } };\nstruct I02 { virtual ~I02() noexcept = default; virtual void dummy() = 0; }; struct Impl02 : I02 { INJECT(Impl02(X02, X03, X04, X05, X06, X07, X08, X09, X10, X11)) { } void dummy() override { } };\nstruct I03 { virtual ~I03() noexcept = default; virtual void dummy() = 0; }; struct Impl03 : I03 { INJECT(Impl03(X03, X04, X05, X06, X07, X08, X09, X10, X11, X12)) { } void dummy() override { } };\nstruct I04 { virtual ~I04() noexcept = default; virtual void dummy() = 0; }; struct Impl04 : I04 { INJECT(Impl04(X04, X05, X06, X07, X08, X09, X10, X11, X12, X13)) { } void dummy() override { } };\nstruct I05 { virtual ~I05() noexcept = default; virtual void dummy() = 0; }; struct Impl05 : I05 { INJECT(Impl05(X05, X06, X07, X08, X09, X10, X11, X12, X13, X14)) { } void dummy() override { } };\nstruct I06 { virtual ~I06() noexcept = default; virtual void dummy() = 0; }; struct Impl06 : I06 { INJECT(Impl06(X06, X07, X08, X09, X10, X11, X12, X13, X14, X15)) { } void dummy() override { } };\nstruct I07 { virtual ~I07() noexcept = default; virtual void dummy() = 0; }; struct Impl07 : I07 { INJECT(Impl07(X07, X08, X09, X10, X11, X12, X13, X14, X15, X16)) { } void dummy() override { } };\nstruct I08 { virtual ~I08() noexcept = default; virtual void dummy() = 0; }; struct Impl08 : I08 { INJECT(Impl08(X08, X09, X10, X11, X12, X13, X14, X15, X16, X17)) { } void dummy() override { } };\nstruct I09 { virtual ~I09() noexcept = default; virtual void dummy() = 0; }; struct Impl09 : I09 { INJECT(Impl09(X09, X10, X11, X12, X13, X14, X15, X16, X17, X18)) { } void dummy() override { } };\nstruct I10 { virtual ~I10() noexcept = default; virtual void dummy() = 0; }; struct Impl10 : I10 { INJECT(Impl10(X10, X11, X12, X13, X14, X15, X16, X17, X18, X19)) { } void dummy() override { } };\nstruct I11 { virtual ~I11() noexcept = default; virtual void dummy() = 0; }; struct Impl11 : I11 { INJECT(Impl11(X11, X12, X13, X14, X15, X16, X17, X18, X19, X20)) { } void dummy() override { } };\nstruct I12 { virtual ~I12() noexcept = default; virtual void dummy() = 0; }; struct Impl12 : I12 { INJECT(Impl12(X12, X13, X14, X15, X16, X17, X18, X19, X20, X21)) { } void dummy() override { } };\nstruct I13 { virtual ~I13() noexcept = default; virtual void dummy() = 0; }; struct Impl13 : I13 { INJECT(Impl13(X13, X14, X15, X16, X17, X18, X19, X20, X21, X22)) { } void dummy() override { } };\nstruct I14 { virtual ~I14() noexcept = default; virtual void dummy() = 0; }; struct Impl14 : I14 { INJECT(Impl14(X14, X15, X16, X17, X18, X19, X20, X21, X22, X23)) { } void dummy() override { } };\nstruct I15 { virtual ~I15() noexcept = default; virtual void dummy() = 0; }; struct Impl15 : I15 { INJECT(Impl15(X15, X16, X17, X18, X19, X20, X21, X22, X23, X24)) { } void dummy() override { } };\nstruct I16 { virtual ~I16() noexcept = default; virtual void dummy() = 0; }; struct Impl16 : I16 { INJECT(Impl16(X16, X17, X18, X19, X20, X21, X22, X23, X24, X25)) { } void dummy() override { } };\nstruct I17 { virtual ~I17() noexcept = default; virtual void dummy() = 0; }; struct Impl17 : I17 { INJECT(Impl17(X17, X18, X19, X20, X21, X22, X23, X24, X25, X26)) { } void dummy() override { } };\nstruct I18 { virtual ~I18() noexcept = default; virtual void dummy() = 0; }; struct Impl18 : I18 { INJECT(Impl18(X18, X19, X20, X21, X22, X23, X24, X25, X26, X27)) { } void dummy() override { } };\nstruct I19 { virtual ~I19() noexcept = default; virtual void dummy() = 0; }; struct Impl19 : I19 { INJECT(Impl19(X19, X20, X21, X22, X23, X24, X25, X26, X27, X28)) { } void dummy() override { } };\nstruct I20 { virtual ~I20() noexcept = default; virtual void dummy() = 0; }; struct Impl20 : I20 { INJECT(Impl20(X20, X21, X22, X23, X24, X25, X26, X27, X28, X29)) { } void dummy() override { } };\nstruct I21 { virtual ~I21() noexcept = default; virtual void dummy() = 0; }; struct Impl21 : I21 { INJECT(Impl21(X21, X22, X23, X24, X25, X26, X27, X28, X29, X30)) { } void dummy() override { } };\nstruct I22 { virtual ~I22() noexcept = default; virtual void dummy() = 0; }; struct Impl22 : I22 { INJECT(Impl22(X22, X23, X24, X25, X26, X27, X28, X29, X30, X31)) { } void dummy() override { } };\nstruct I23 { virtual ~I23() noexcept = default; virtual void dummy() = 0; }; struct Impl23 : I23 { INJECT(Impl23(X23, X24, X25, X26, X27, X28, X29, X30, X31, X32)) { } void dummy() override { } };\nstruct I24 { virtual ~I24() noexcept = default; virtual void dummy() = 0; }; struct Impl24 : I24 { INJECT(Impl24(X24, X25, X26, X27, X28, X29, X30, X31, X32, X33)) { } void dummy() override { } };\nstruct I25 { virtual ~I25() noexcept = default; virtual void dummy() = 0; }; struct Impl25 : I25 { INJECT(Impl25(X25, X26, X27, X28, X29, X30, X31, X32, X33, X34)) { } void dummy() override { } };\nstruct I26 { virtual ~I26() noexcept = default; virtual void dummy() = 0; }; struct Impl26 : I26 { INJECT(Impl26(X26, X27, X28, X29, X30, X31, X32, X33, X34, X35)) { } void dummy() override { } };\nstruct I27 { virtual ~I27() noexcept = default; virtual void dummy() = 0; }; struct Impl27 : I27 { INJECT(Impl27(X27, X28, X29, X30, X31, X32, X33, X34, X35, X36)) { } void dummy() override { } };\nstruct I28 { virtual ~I28() noexcept = default; virtual void dummy() = 0; }; struct Impl28 : I28 { INJECT(Impl28(X28, X29, X30, X31, X32, X33, X34, X35, X36, X37)) { } void dummy() override { } };\nstruct I29 { virtual ~I29() noexcept = default; virtual void dummy() = 0; }; struct Impl29 : I29 { INJECT(Impl29(X29, X30, X31, X32, X33, X34, X35, X36, X37, X38)) { } void dummy() override { } };\nstruct I30 { virtual ~I30() noexcept = default; virtual void dummy() = 0; }; struct Impl30 : I30 { INJECT(Impl30(X30, X31, X32, X33, X34, X35, X36, X37, X38, X39)) { } void dummy() override { } };\nstruct I31 { virtual ~I31() noexcept = default; virtual void dummy() = 0; }; struct Impl31 : I31 { INJECT(Impl31(X31, X32, X33, X34, X35, X36, X37, X38, X39, X40)) { } void dummy() override { } };\nstruct I32 { virtual ~I32() noexcept = default; virtual void dummy() = 0; }; struct Impl32 : I32 { INJECT(Impl32(X32, X33, X34, X35, X36, X37, X38, X39, X40, X41)) { } void dummy() override { } };\nstruct I33 { virtual ~I33() noexcept = default; virtual void dummy() = 0; }; struct Impl33 : I33 { INJECT(Impl33(X33, X34, X35, X36, X37, X38, X39, X40, X41, X42)) { } void dummy() override { } };\nstruct I34 { virtual ~I34() noexcept = default; virtual void dummy() = 0; }; struct Impl34 : I34 { INJECT(Impl34(X34, X35, X36, X37, X38, X39, X40, X41, X42, X43)) { } void dummy() override { } };\nstruct I35 { virtual ~I35() noexcept = default; virtual void dummy() = 0; }; struct Impl35 : I35 { INJECT(Impl35(X35, X36, X37, X38, X39, X40, X41, X42, X43, X44)) { } void dummy() override { } };\nstruct I36 { virtual ~I36() noexcept = default; virtual void dummy() = 0; }; struct Impl36 : I36 { INJECT(Impl36(X36, X37, X38, X39, X40, X41, X42, X43, X44, X45)) { } void dummy() override { } };\nstruct I37 { virtual ~I37() noexcept = default; virtual void dummy() = 0; }; struct Impl37 : I37 { INJECT(Impl37(X37, X38, X39, X40, X41, X42, X43, X44, X45, X46)) { } void dummy() override { } };\nstruct I38 { virtual ~I38() noexcept = default; virtual void dummy() = 0; }; struct Impl38 : I38 { INJECT(Impl38(X38, X39, X40, X41, X42, X43, X44, X45, X46, X47)) { } void dummy() override { } };\nstruct I39 { virtual ~I39() noexcept = default; virtual void dummy() = 0; }; struct Impl39 : I39 { INJECT(Impl39(X39, X40, X41, X42, X43, X44, X45, X46, X47, X48)) { } void dummy() override { } };\nstruct I40 { virtual ~I40() noexcept = default; virtual void dummy() = 0; }; struct Impl40 : I40 { INJECT(Impl40(X40, X41, X42, X43, X44, X45, X46, X47, X48, X49)) { } void dummy() override { } };\nstruct I41 { virtual ~I41() noexcept = default; virtual void dummy() = 0; }; struct Impl41 : I41 { INJECT(Impl41(X41, X42, X43, X44, X45, X46, X47, X48, X49, X50)) { } void dummy() override { } };\nstruct I42 { virtual ~I42() noexcept = default; virtual void dummy() = 0; }; struct Impl42 : I42 { INJECT(Impl42(X42, X43, X44, X45, X46, X47, X48, X49, X50, X51)) { } void dummy() override { } };\nstruct I43 { virtual ~I43() noexcept = default; virtual void dummy() = 0; }; struct Impl43 : I43 { INJECT(Impl43(X43, X44, X45, X46, X47, X48, X49, X50, X51, X52)) { } void dummy() override { } };\nstruct I44 { virtual ~I44() noexcept = default; virtual void dummy() = 0; }; struct Impl44 : I44 { INJECT(Impl44(X44, X45, X46, X47, X48, X49, X50, X51, X52, X53)) { } void dummy() override { } };\nstruct I45 { virtual ~I45() noexcept = default; virtual void dummy() = 0; }; struct Impl45 : I45 { INJECT(Impl45(X45, X46, X47, X48, X49, X50, X51, X52, X53, X54)) { } void dummy() override { } };\nstruct I46 { virtual ~I46() noexcept = default; virtual void dummy() = 0; }; struct Impl46 : I46 { INJECT(Impl46(X46, X47, X48, X49, X50, X51, X52, X53, X54, X55)) { } void dummy() override { } };\nstruct I47 { virtual ~I47() noexcept = default; virtual void dummy() = 0; }; struct Impl47 : I47 { INJECT(Impl47(X47, X48, X49, X50, X51, X52, X53, X54, X55, X56)) { } void dummy() override { } };\nstruct I48 { virtual ~I48() noexcept = default; virtual void dummy() = 0; }; struct Impl48 : I48 { INJECT(Impl48(X48, X49, X50, X51, X52, X53, X54, X55, X56, X57)) { } void dummy() override { } };\nstruct I49 { virtual ~I49() noexcept = default; virtual void dummy() = 0; }; struct Impl49 : I49 { INJECT(Impl49(X49, X50, X51, X52, X53, X54, X55, X56, X57, X58)) { } void dummy() override { } };\nstruct I50 { virtual ~I50() noexcept = default; virtual void dummy() = 0; }; struct Impl50 : I50 { INJECT(Impl50(X50, X51, X52, X53, X54, X55, X56, X57, X58, X59)) { } void dummy() override { } };\nstruct I51 { virtual ~I51() noexcept = default; virtual void dummy() = 0; }; struct Impl51 : I51 { INJECT(Impl51(X51, X52, X53, X54, X55, X56, X57, X58, X59, X60)) { } void dummy() override { } };\nstruct I52 { virtual ~I52() noexcept = default; virtual void dummy() = 0; }; struct Impl52 : I52 { INJECT(Impl52(X52, X53, X54, X55, X56, X57, X58, X59, X60, X61)) { } void dummy() override { } };\nstruct I53 { virtual ~I53() noexcept = default; virtual void dummy() = 0; }; struct Impl53 : I53 { INJECT(Impl53(X53, X54, X55, X56, X57, X58, X59, X60, X61, X62)) { } void dummy() override { } };\nstruct I54 { virtual ~I54() noexcept = default; virtual void dummy() = 0; }; struct Impl54 : I54 { INJECT(Impl54(X54, X55, X56, X57, X58, X59, X60, X61, X62, X63)) { } void dummy() override { } };\nstruct I55 { virtual ~I55() noexcept = default; virtual void dummy() = 0; }; struct Impl55 : I55 { INJECT(Impl55(X55, X56, X57, X58, X59, X60, X61, X62, X63, X64)) { } void dummy() override { } };\nstruct I56 { virtual ~I56() noexcept = default; virtual void dummy() = 0; }; struct Impl56 : I56 { INJECT(Impl56(X56, X57, X58, X59, X60, X61, X62, X63, X64, X65)) { } void dummy() override { } };\nstruct I57 { virtual ~I57() noexcept = default; virtual void dummy() = 0; }; struct Impl57 : I57 { INJECT(Impl57(X57, X58, X59, X60, X61, X62, X63, X64, X65, X66)) { } void dummy() override { } };\nstruct I58 { virtual ~I58() noexcept = default; virtual void dummy() = 0; }; struct Impl58 : I58 { INJECT(Impl58(X58, X59, X60, X61, X62, X63, X64, X65, X66, X67)) { } void dummy() override { } };\nstruct I59 { virtual ~I59() noexcept = default; virtual void dummy() = 0; }; struct Impl59 : I59 { INJECT(Impl59(X59, X60, X61, X62, X63, X64, X65, X66, X67, X68)) { } void dummy() override { } };\nstruct I60 { virtual ~I60() noexcept = default; virtual void dummy() = 0; }; struct Impl60 : I60 { INJECT(Impl60(X60, X61, X62, X63, X64, X65, X66, X67, X68, X69)) { } void dummy() override { } };\nstruct I61 { virtual ~I61() noexcept = default; virtual void dummy() = 0; }; struct Impl61 : I61 { INJECT(Impl61(X61, X62, X63, X64, X65, X66, X67, X68, X69, X70)) { } void dummy() override { } };\nstruct I62 { virtual ~I62() noexcept = default; virtual void dummy() = 0; }; struct Impl62 : I62 { INJECT(Impl62(X62, X63, X64, X65, X66, X67, X68, X69, X70, X71)) { } void dummy() override { } };\nstruct I63 { virtual ~I63() noexcept = default; virtual void dummy() = 0; }; struct Impl63 : I63 { INJECT(Impl63(X63, X64, X65, X66, X67, X68, X69, X70, X71, X72)) { } void dummy() override { } };\nstruct I64 { virtual ~I64() noexcept = default; virtual void dummy() = 0; }; struct Impl64 : I64 { INJECT(Impl64(X64, X65, X66, X67, X68, X69, X70, X71, X72, X73)) { } void dummy() override { } };\nstruct I65 { virtual ~I65() noexcept = default; virtual void dummy() = 0; }; struct Impl65 : I65 { INJECT(Impl65(X65, X66, X67, X68, X69, X70, X71, X72, X73, X74)) { } void dummy() override { } };\nstruct I66 { virtual ~I66() noexcept = default; virtual void dummy() = 0; }; struct Impl66 : I66 { INJECT(Impl66(X66, X67, X68, X69, X70, X71, X72, X73, X74, X75)) { } void dummy() override { } };\nstruct I67 { virtual ~I67() noexcept = default; virtual void dummy() = 0; }; struct Impl67 : I67 { INJECT(Impl67(X67, X68, X69, X70, X71, X72, X73, X74, X75, X76)) { } void dummy() override { } };\nstruct I68 { virtual ~I68() noexcept = default; virtual void dummy() = 0; }; struct Impl68 : I68 { INJECT(Impl68(X68, X69, X70, X71, X72, X73, X74, X75, X76, X77)) { } void dummy() override { } };\nstruct I69 { virtual ~I69() noexcept = default; virtual void dummy() = 0; }; struct Impl69 : I69 { INJECT(Impl69(X69, X70, X71, X72, X73, X74, X75, X76, X77, X78)) { } void dummy() override { } };\nstruct I70 { virtual ~I70() noexcept = default; virtual void dummy() = 0; }; struct Impl70 : I70 { INJECT(Impl70(X70, X71, X72, X73, X74, X75, X76, X77, X78, X79)) { } void dummy() override { } };\nstruct I71 { virtual ~I71() noexcept = default; virtual void dummy() = 0; }; struct Impl71 : I71 { INJECT(Impl71(X71, X72, X73, X74, X75, X76, X77, X78, X79, X80)) { } void dummy() override { } };\nstruct I72 { virtual ~I72() noexcept = default; virtual void dummy() = 0; }; struct Impl72 : I72 { INJECT(Impl72(X72, X73, X74, X75, X76, X77, X78, X79, X80, X81)) { } void dummy() override { } };\nstruct I73 { virtual ~I73() noexcept = default; virtual void dummy() = 0; }; struct Impl73 : I73 { INJECT(Impl73(X73, X74, X75, X76, X77, X78, X79, X80, X81, X82)) { } void dummy() override { } };\nstruct I74 { virtual ~I74() noexcept = default; virtual void dummy() = 0; }; struct Impl74 : I74 { INJECT(Impl74(X74, X75, X76, X77, X78, X79, X80, X81, X82, X83)) { } void dummy() override { } };\nstruct I75 { virtual ~I75() noexcept = default; virtual void dummy() = 0; }; struct Impl75 : I75 { INJECT(Impl75(X75, X76, X77, X78, X79, X80, X81, X82, X83, X84)) { } void dummy() override { } };\nstruct I76 { virtual ~I76() noexcept = default; virtual void dummy() = 0; }; struct Impl76 : I76 { INJECT(Impl76(X76, X77, X78, X79, X80, X81, X82, X83, X84, X85)) { } void dummy() override { } };\nstruct I77 { virtual ~I77() noexcept = default; virtual void dummy() = 0; }; struct Impl77 : I77 { INJECT(Impl77(X77, X78, X79, X80, X81, X82, X83, X84, X85, X86)) { } void dummy() override { } };\nstruct I78 { virtual ~I78() noexcept = default; virtual void dummy() = 0; }; struct Impl78 : I78 { INJECT(Impl78(X78, X79, X80, X81, X82, X83, X84, X85, X86, X87)) { } void dummy() override { } };\nstruct I79 { virtual ~I79() noexcept = default; virtual void dummy() = 0; }; struct Impl79 : I79 { INJECT(Impl79(X79, X80, X81, X82, X83, X84, X85, X86, X87, X88)) { } void dummy() override { } };\nstruct I80 { virtual ~I80() noexcept = default; virtual void dummy() = 0; }; struct Impl80 : I80 { INJECT(Impl80(X80, X81, X82, X83, X84, X85, X86, X87, X88, X89)) { } void dummy() override { } };\nstruct I81 { virtual ~I81() noexcept = default; virtual void dummy() = 0; }; struct Impl81 : I81 { INJECT(Impl81(X81, X82, X83, X84, X85, X86, X87, X88, X89, X90)) { } void dummy() override { } };\nstruct I82 { virtual ~I82() noexcept = default; virtual void dummy() = 0; }; struct Impl82 : I82 { INJECT(Impl82(X82, X83, X84, X85, X86, X87, X88, X89, X90, X91)) { } void dummy() override { } };\nstruct I83 { virtual ~I83() noexcept = default; virtual void dummy() = 0; }; struct Impl83 : I83 { INJECT(Impl83(X83, X84, X85, X86, X87, X88, X89, X90, X91, X92)) { } void dummy() override { } };\nstruct I84 { virtual ~I84() noexcept = default; virtual void dummy() = 0; }; struct Impl84 : I84 { INJECT(Impl84(X84, X85, X86, X87, X88, X89, X90, X91, X92, X93)) { } void dummy() override { } };\nstruct I85 { virtual ~I85() noexcept = default; virtual void dummy() = 0; }; struct Impl85 : I85 { INJECT(Impl85(X85, X86, X87, X88, X89, X90, X91, X92, X93, X94)) { } void dummy() override { } };\nstruct I86 { virtual ~I86() noexcept = default; virtual void dummy() = 0; }; struct Impl86 : I86 { INJECT(Impl86(X86, X87, X88, X89, X90, X91, X92, X93, X94, X95)) { } void dummy() override { } };\nstruct I87 { virtual ~I87() noexcept = default; virtual void dummy() = 0; }; struct Impl87 : I87 { INJECT(Impl87(X87, X88, X89, X90, X91, X92, X93, X94, X95, X96)) { } void dummy() override { } };\nstruct I88 { virtual ~I88() noexcept = default; virtual void dummy() = 0; }; struct Impl88 : I88 { INJECT(Impl88(X88, X89, X90, X91, X92, X93, X94, X95, X96, X97)) { } void dummy() override { } };\nstruct I89 { virtual ~I89() noexcept = default; virtual void dummy() = 0; }; struct Impl89 : I89 { INJECT(Impl89(X89, X90, X91, X92, X93, X94, X95, X96, X97, X98)) { } void dummy() override { } };\nstruct I90 { virtual ~I90() noexcept = default; virtual void dummy() = 0; }; struct Impl90 : I90 { INJECT(Impl90(X90, X91, X92, X93, X94, X95, X96, X97, X98, X99)) { } void dummy() override { } };\nstruct I91 { virtual ~I91() noexcept = default; virtual void dummy() = 0; }; struct Impl91 : I91 { INJECT(Impl91(X91, X92, X93, X94, X95, X96, X97, X98, X99, X00)) { } void dummy() override { } };\nstruct I92 { virtual ~I92() noexcept = default; virtual void dummy() = 0; }; struct Impl92 : I92 { INJECT(Impl92(X92, X93, X94, X95, X96, X97, X98, X99, X00, X01)) { } void dummy() override { } };\nstruct I93 { virtual ~I93() noexcept = default; virtual void dummy() = 0; }; struct Impl93 : I93 { INJECT(Impl93(X93, X94, X95, X96, X97, X98, X99, X00, X01, X02)) { } void dummy() override { } };\nstruct I94 { virtual ~I94() noexcept = default; virtual void dummy() = 0; }; struct Impl94 : I94 { INJECT(Impl94(X94, X95, X96, X97, X98, X99, X00, X01, X02, X03)) { } void dummy() override { } };\nstruct I95 { virtual ~I95() noexcept = default; virtual void dummy() = 0; }; struct Impl95 : I95 { INJECT(Impl95(X95, X96, X97, X98, X99, X00, X01, X02, X03, X04)) { } void dummy() override { } };\nstruct I96 { virtual ~I96() noexcept = default; virtual void dummy() = 0; }; struct Impl96 : I96 { INJECT(Impl96(X96, X97, X98, X99, X00, X01, X02, X03, X04, X05)) { } void dummy() override { } };\nstruct I97 { virtual ~I97() noexcept = default; virtual void dummy() = 0; }; struct Impl97 : I97 { INJECT(Impl97(X97, X98, X99, X00, X01, X02, X03, X04, X05, X06)) { } void dummy() override { } };\nstruct I98 { virtual ~I98() noexcept = default; virtual void dummy() = 0; }; struct Impl98 : I98 { INJECT(Impl98(X98, X99, X00, X01, X02, X03, X04, X05, X06, X07)) { } void dummy() override { } };\nstruct I99 { virtual ~I99() noexcept = default; virtual void dummy() = 0; }; struct Impl99 : I99 { INJECT(Impl99(X99, X00, X01, X02, X03, X04, X05, X06, X07, X08)) { } void dummy() override { } };\nstruct C0 { INJECT(C0(std::shared_ptr<I00>, std::shared_ptr<I01>, std::shared_ptr<I02>, std::shared_ptr<I03>, std::shared_ptr<I04>, std::shared_ptr<I05>, std::shared_ptr<I06>, std::shared_ptr<I07>, std::shared_ptr<I08>, std::shared_ptr<I09>)) { } };\nstruct C1 { INJECT(C1(std::shared_ptr<I10>, std::shared_ptr<I11>, std::shared_ptr<I12>, std::shared_ptr<I13>, std::shared_ptr<I14>, std::shared_ptr<I15>, std::shared_ptr<I16>, std::shared_ptr<I17>, std::shared_ptr<I18>, std::shared_ptr<I19>)) { } };\nstruct C2 { INJECT(C2(std::shared_ptr<I20>, std::shared_ptr<I21>, std::shared_ptr<I22>, std::shared_ptr<I23>, std::shared_ptr<I24>, std::shared_ptr<I25>, std::shared_ptr<I26>, std::shared_ptr<I27>, std::shared_ptr<I28>, std::shared_ptr<I29>)) { } };\nstruct C3 { INJECT(C3(std::shared_ptr<I30>, std::shared_ptr<I31>, std::shared_ptr<I32>, std::shared_ptr<I33>, std::shared_ptr<I34>, std::shared_ptr<I35>, std::shared_ptr<I36>, std::shared_ptr<I37>, std::shared_ptr<I38>, std::shared_ptr<I39>)) { } };\nstruct C4 { INJECT(C4(std::shared_ptr<I40>, std::shared_ptr<I41>, std::shared_ptr<I42>, std::shared_ptr<I43>, std::shared_ptr<I44>, std::shared_ptr<I45>, std::shared_ptr<I46>, std::shared_ptr<I47>, std::shared_ptr<I48>, std::shared_ptr<I49>)) { } };\nstruct C5 { INJECT(C5(std::shared_ptr<I50>, std::shared_ptr<I51>, std::shared_ptr<I52>, std::shared_ptr<I53>, std::shared_ptr<I54>, std::shared_ptr<I55>, std::shared_ptr<I56>, std::shared_ptr<I57>, std::shared_ptr<I58>, std::shared_ptr<I59>)) { } };\nstruct C6 { INJECT(C6(std::shared_ptr<I60>, std::shared_ptr<I61>, std::shared_ptr<I62>, std::shared_ptr<I63>, std::shared_ptr<I64>, std::shared_ptr<I65>, std::shared_ptr<I66>, std::shared_ptr<I67>, std::shared_ptr<I68>, std::shared_ptr<I69>)) { } };\nstruct C7 { INJECT(C7(std::shared_ptr<I70>, std::shared_ptr<I71>, std::shared_ptr<I72>, std::shared_ptr<I73>, std::shared_ptr<I74>, std::shared_ptr<I75>, std::shared_ptr<I76>, std::shared_ptr<I77>, std::shared_ptr<I78>, std::shared_ptr<I79>)) { } };\nstruct C8 { INJECT(C8(std::shared_ptr<I80>, std::shared_ptr<I81>, std::shared_ptr<I82>, std::shared_ptr<I83>, std::shared_ptr<I84>, std::shared_ptr<I85>, std::shared_ptr<I86>, std::shared_ptr<I87>, std::shared_ptr<I88>, std::shared_ptr<I89>)) { } };\nstruct C9 { INJECT(C9(std::shared_ptr<I90>, std::shared_ptr<I91>, std::shared_ptr<I92>, std::shared_ptr<I93>, std::shared_ptr<I94>, std::shared_ptr<I95>, std::shared_ptr<I96>, std::shared_ptr<I97>, std::shared_ptr<I98>, std::shared_ptr<I99>)) { } };\nstruct Complex { INJECT(Complex(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)) { } };\n// clang-format off\n\nfruit::Component<Complex> module() {\n  return fruit::createComponent()\n    .bind<I00, Impl00>()\n    .bind<I01, Impl01>()\n    .bind<I02, Impl02>()\n    .bind<I03, Impl03>()\n    .bind<I04, Impl04>()\n    .bind<I05, Impl05>()\n    .bind<I06, Impl06>()\n    .bind<I07, Impl07>()\n    .bind<I08, Impl08>()\n    .bind<I09, Impl09>()\n    .bind<I10, Impl10>()\n    .bind<I11, Impl11>()\n    .bind<I12, Impl12>()\n    .bind<I13, Impl13>()\n    .bind<I14, Impl14>()\n    .bind<I15, Impl15>()\n    .bind<I16, Impl16>()\n    .bind<I17, Impl17>()\n    .bind<I18, Impl18>()\n    .bind<I19, Impl19>()\n    .bind<I20, Impl20>()\n    .bind<I21, Impl21>()\n    .bind<I22, Impl22>()\n    .bind<I23, Impl23>()\n    .bind<I24, Impl24>()\n    .bind<I25, Impl25>()\n    .bind<I26, Impl26>()\n    .bind<I27, Impl27>()\n    .bind<I28, Impl28>()\n    .bind<I29, Impl29>()\n    .bind<I30, Impl30>()\n    .bind<I31, Impl31>()\n    .bind<I32, Impl32>()\n    .bind<I33, Impl33>()\n    .bind<I34, Impl34>()\n    .bind<I35, Impl35>()\n    .bind<I36, Impl36>()\n    .bind<I37, Impl37>()\n    .bind<I38, Impl38>()\n    .bind<I39, Impl39>()\n    .bind<I40, Impl40>()\n    .bind<I41, Impl41>()\n    .bind<I42, Impl42>()\n    .bind<I43, Impl43>()\n    .bind<I44, Impl44>()\n    .bind<I45, Impl45>()\n    .bind<I46, Impl46>()\n    .bind<I47, Impl47>()\n    .bind<I48, Impl48>()\n    .bind<I49, Impl49>()\n    .bind<I50, Impl50>()\n    .bind<I51, Impl51>()\n    .bind<I52, Impl52>()\n    .bind<I53, Impl53>()\n    .bind<I54, Impl54>()\n    .bind<I55, Impl55>()\n    .bind<I56, Impl56>()\n    .bind<I57, Impl57>()\n    .bind<I58, Impl58>()\n    .bind<I59, Impl59>()\n    .bind<I60, Impl60>()\n    .bind<I61, Impl61>()\n    .bind<I62, Impl62>()\n    .bind<I63, Impl63>()\n    .bind<I64, Impl64>()\n    .bind<I65, Impl65>()\n    .bind<I66, Impl66>()\n    .bind<I67, Impl67>()\n    .bind<I68, Impl68>()\n    .bind<I69, Impl69>()\n    .bind<I70, Impl70>()\n    .bind<I71, Impl71>()\n    .bind<I72, Impl72>()\n    .bind<I73, Impl73>()\n    .bind<I74, Impl74>()\n    .bind<I75, Impl75>()\n    .bind<I76, Impl76>()\n    .bind<I77, Impl77>()\n    .bind<I78, Impl78>()\n    .bind<I79, Impl79>()\n    .bind<I80, Impl80>()\n    .bind<I81, Impl81>()\n    .bind<I82, Impl82>()\n    .bind<I83, Impl83>()\n    .bind<I84, Impl84>()\n    .bind<I85, Impl85>()\n    .bind<I86, Impl86>()\n    .bind<I87, Impl87>()\n    .bind<I88, Impl88>()\n    .bind<I89, Impl89>()\n    .bind<I90, Impl90>()\n    .bind<I91, Impl91>()\n    .bind<I92, Impl92>()\n    .bind<I93, Impl93>()\n    .bind<I94, Impl94>()\n    .bind<I95, Impl95>()\n    .bind<I96, Impl96>()\n    .bind<I97, Impl97>()\n    .bind<I98, Impl98>()\n    .bind<I99, Impl99>();\n}\n\nint main() {\n  fruit::Injector<Complex> injector{module()};\n  injector.get<Complex>();\n}\n"
  },
  {
    "path": "benchmark/create_complex/guice.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport com.google.inject.*;\n\nclass X00 { X00() { } }\nclass X01 { @Inject X01(X00 p1) { } }\nclass X02 { @Inject X02(X00 p1, X01 p2) { } }\nclass X03 { @Inject X03(X00 p1, X01 p2, X02 p3) { } }\nclass X04 { @Inject X04(X00 p1, X01 p2, X02 p3, X03 p4) { } }\nclass X05 { @Inject X05(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5) { } }\nclass X06 { @Inject X06(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6) { } }\nclass X07 { @Inject X07(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7) { } }\nclass X08 { @Inject X08(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8) { } }\nclass X09 { @Inject X09(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9) { } }\nclass X10 { @Inject X10(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9, X09 p10) { } }\nclass X11 { @Inject X11(X01 p1, X02 p2, X03 p3, X04 p4, X05 p5, X06 p6, X07 p7, X08 p8, X09 p9, X10 p10) { } }\nclass X12 { @Inject X12(X02 p1, X03 p2, X04 p3, X05 p4, X06 p5, X07 p6, X08 p7, X09 p8, X10 p9, X11 p10) { } }\nclass X13 { @Inject X13(X03 p1, X04 p2, X05 p3, X06 p4, X07 p5, X08 p6, X09 p7, X10 p8, X11 p9, X12 p10) { } }\nclass X14 { @Inject X14(X04 p1, X05 p2, X06 p3, X07 p4, X08 p5, X09 p6, X10 p7, X11 p8, X12 p9, X13 p10) { } }\nclass X15 { @Inject X15(X05 p1, X06 p2, X07 p3, X08 p4, X09 p5, X10 p6, X11 p7, X12 p8, X13 p9, X14 p10) { } }\nclass X16 { @Inject X16(X06 p1, X07 p2, X08 p3, X09 p4, X10 p5, X11 p6, X12 p7, X13 p8, X14 p9, X15 p10) { } }\nclass X17 { @Inject X17(X07 p1, X08 p2, X09 p3, X10 p4, X11 p5, X12 p6, X13 p7, X14 p8, X15 p9, X16 p10) { } }\nclass X18 { @Inject X18(X08 p1, X09 p2, X10 p3, X11 p4, X12 p5, X13 p6, X14 p7, X15 p8, X16 p9, X17 p10) { } }\nclass X19 { @Inject X19(X09 p1, X10 p2, X11 p3, X12 p4, X13 p5, X14 p6, X15 p7, X16 p8, X17 p9, X18 p10) { } }\nclass X20 { @Inject X20(X10 p1, X11 p2, X12 p3, X13 p4, X14 p5, X15 p6, X16 p7, X17 p8, X18 p9, X19 p10) { } }\nclass X21 { @Inject X21(X11 p1, X12 p2, X13 p3, X14 p4, X15 p5, X16 p6, X17 p7, X18 p8, X19 p9, X20 p10) { } }\nclass X22 { @Inject X22(X12 p1, X13 p2, X14 p3, X15 p4, X16 p5, X17 p6, X18 p7, X19 p8, X20 p9, X21 p10) { } }\nclass X23 { @Inject X23(X13 p1, X14 p2, X15 p3, X16 p4, X17 p5, X18 p6, X19 p7, X20 p8, X21 p9, X22 p10) { } }\nclass X24 { @Inject X24(X14 p1, X15 p2, X16 p3, X17 p4, X18 p5, X19 p6, X20 p7, X21 p8, X22 p9, X23 p10) { } }\nclass X25 { @Inject X25(X15 p1, X16 p2, X17 p3, X18 p4, X19 p5, X20 p6, X21 p7, X22 p8, X23 p9, X24 p10) { } }\nclass X26 { @Inject X26(X16 p1, X17 p2, X18 p3, X19 p4, X20 p5, X21 p6, X22 p7, X23 p8, X24 p9, X25 p10) { } }\nclass X27 { @Inject X27(X17 p1, X18 p2, X19 p3, X20 p4, X21 p5, X22 p6, X23 p7, X24 p8, X25 p9, X26 p10) { } }\nclass X28 { @Inject X28(X18 p1, X19 p2, X20 p3, X21 p4, X22 p5, X23 p6, X24 p7, X25 p8, X26 p9, X27 p10) { } }\nclass X29 { @Inject X29(X19 p1, X20 p2, X21 p3, X22 p4, X23 p5, X24 p6, X25 p7, X26 p8, X27 p9, X28 p10) { } }\nclass X30 { @Inject X30(X20 p1, X21 p2, X22 p3, X23 p4, X24 p5, X25 p6, X26 p7, X27 p8, X28 p9, X29 p10) { } }\nclass X31 { @Inject X31(X21 p1, X22 p2, X23 p3, X24 p4, X25 p5, X26 p6, X27 p7, X28 p8, X29 p9, X30 p10) { } }\nclass X32 { @Inject X32(X22 p1, X23 p2, X24 p3, X25 p4, X26 p5, X27 p6, X28 p7, X29 p8, X30 p9, X31 p10) { } }\nclass X33 { @Inject X33(X23 p1, X24 p2, X25 p3, X26 p4, X27 p5, X28 p6, X29 p7, X30 p8, X31 p9, X32 p10) { } }\nclass X34 { @Inject X34(X24 p1, X25 p2, X26 p3, X27 p4, X28 p5, X29 p6, X30 p7, X31 p8, X32 p9, X33 p10) { } }\nclass X35 { @Inject X35(X25 p1, X26 p2, X27 p3, X28 p4, X29 p5, X30 p6, X31 p7, X32 p8, X33 p9, X34 p10) { } }\nclass X36 { @Inject X36(X26 p1, X27 p2, X28 p3, X29 p4, X30 p5, X31 p6, X32 p7, X33 p8, X34 p9, X35 p10) { } }\nclass X37 { @Inject X37(X27 p1, X28 p2, X29 p3, X30 p4, X31 p5, X32 p6, X33 p7, X34 p8, X35 p9, X36 p10) { } }\nclass X38 { @Inject X38(X28 p1, X29 p2, X30 p3, X31 p4, X32 p5, X33 p6, X34 p7, X35 p8, X36 p9, X37 p10) { } }\nclass X39 { @Inject X39(X29 p1, X30 p2, X31 p3, X32 p4, X33 p5, X34 p6, X35 p7, X36 p8, X37 p9, X38 p10) { } }\nclass X40 { @Inject X40(X30 p1, X31 p2, X32 p3, X33 p4, X34 p5, X35 p6, X36 p7, X37 p8, X38 p9, X39 p10) { } }\nclass X41 { @Inject X41(X31 p1, X32 p2, X33 p3, X34 p4, X35 p5, X36 p6, X37 p7, X38 p8, X39 p9, X40 p10) { } }\nclass X42 { @Inject X42(X32 p1, X33 p2, X34 p3, X35 p4, X36 p5, X37 p6, X38 p7, X39 p8, X40 p9, X41 p10) { } }\nclass X43 { @Inject X43(X33 p1, X34 p2, X35 p3, X36 p4, X37 p5, X38 p6, X39 p7, X40 p8, X41 p9, X42 p10) { } }\nclass X44 { @Inject X44(X34 p1, X35 p2, X36 p3, X37 p4, X38 p5, X39 p6, X40 p7, X41 p8, X42 p9, X43 p10) { } }\nclass X45 { @Inject X45(X35 p1, X36 p2, X37 p3, X38 p4, X39 p5, X40 p6, X41 p7, X42 p8, X43 p9, X44 p10) { } }\nclass X46 { @Inject X46(X36 p1, X37 p2, X38 p3, X39 p4, X40 p5, X41 p6, X42 p7, X43 p8, X44 p9, X45 p10) { } }\nclass X47 { @Inject X47(X37 p1, X38 p2, X39 p3, X40 p4, X41 p5, X42 p6, X43 p7, X44 p8, X45 p9, X46 p10) { } }\nclass X48 { @Inject X48(X38 p1, X39 p2, X40 p3, X41 p4, X42 p5, X43 p6, X44 p7, X45 p8, X46 p9, X47 p10) { } }\nclass X49 { @Inject X49(X39 p1, X40 p2, X41 p3, X42 p4, X43 p5, X44 p6, X45 p7, X46 p8, X47 p9, X48 p10) { } }\nclass X50 { @Inject X50(X40 p1, X41 p2, X42 p3, X43 p4, X44 p5, X45 p6, X46 p7, X47 p8, X48 p9, X49 p10) { } }\nclass X51 { @Inject X51(X41 p1, X42 p2, X43 p3, X44 p4, X45 p5, X46 p6, X47 p7, X48 p8, X49 p9, X50 p10) { } }\nclass X52 { @Inject X52(X42 p1, X43 p2, X44 p3, X45 p4, X46 p5, X47 p6, X48 p7, X49 p8, X50 p9, X51 p10) { } }\nclass X53 { @Inject X53(X43 p1, X44 p2, X45 p3, X46 p4, X47 p5, X48 p6, X49 p7, X50 p8, X51 p9, X52 p10) { } }\nclass X54 { @Inject X54(X44 p1, X45 p2, X46 p3, X47 p4, X48 p5, X49 p6, X50 p7, X51 p8, X52 p9, X53 p10) { } }\nclass X55 { @Inject X55(X45 p1, X46 p2, X47 p3, X48 p4, X49 p5, X50 p6, X51 p7, X52 p8, X53 p9, X54 p10) { } }\nclass X56 { @Inject X56(X46 p1, X47 p2, X48 p3, X49 p4, X50 p5, X51 p6, X52 p7, X53 p8, X54 p9, X55 p10) { } }\nclass X57 { @Inject X57(X47 p1, X48 p2, X49 p3, X50 p4, X51 p5, X52 p6, X53 p7, X54 p8, X55 p9, X56 p10) { } }\nclass X58 { @Inject X58(X48 p1, X49 p2, X50 p3, X51 p4, X52 p5, X53 p6, X54 p7, X55 p8, X56 p9, X57 p10) { } }\nclass X59 { @Inject X59(X49 p1, X50 p2, X51 p3, X52 p4, X53 p5, X54 p6, X55 p7, X56 p8, X57 p9, X58 p10) { } }\nclass X60 { @Inject X60(X50 p1, X51 p2, X52 p3, X53 p4, X54 p5, X55 p6, X56 p7, X57 p8, X58 p9, X59 p10) { } }\nclass X61 { @Inject X61(X51 p1, X52 p2, X53 p3, X54 p4, X55 p5, X56 p6, X57 p7, X58 p8, X59 p9, X60 p10) { } }\nclass X62 { @Inject X62(X52 p1, X53 p2, X54 p3, X55 p4, X56 p5, X57 p6, X58 p7, X59 p8, X60 p9, X61 p10) { } }\nclass X63 { @Inject X63(X53 p1, X54 p2, X55 p3, X56 p4, X57 p5, X58 p6, X59 p7, X60 p8, X61 p9, X62 p10) { } }\nclass X64 { @Inject X64(X54 p1, X55 p2, X56 p3, X57 p4, X58 p5, X59 p6, X60 p7, X61 p8, X62 p9, X63 p10) { } }\nclass X65 { @Inject X65(X55 p1, X56 p2, X57 p3, X58 p4, X59 p5, X60 p6, X61 p7, X62 p8, X63 p9, X64 p10) { } }\nclass X66 { @Inject X66(X56 p1, X57 p2, X58 p3, X59 p4, X60 p5, X61 p6, X62 p7, X63 p8, X64 p9, X65 p10) { } }\nclass X67 { @Inject X67(X57 p1, X58 p2, X59 p3, X60 p4, X61 p5, X62 p6, X63 p7, X64 p8, X65 p9, X66 p10) { } }\nclass X68 { @Inject X68(X58 p1, X59 p2, X60 p3, X61 p4, X62 p5, X63 p6, X64 p7, X65 p8, X66 p9, X67 p10) { } }\nclass X69 { @Inject X69(X59 p1, X60 p2, X61 p3, X62 p4, X63 p5, X64 p6, X65 p7, X66 p8, X67 p9, X68 p10) { } }\nclass X70 { @Inject X70(X60 p1, X61 p2, X62 p3, X63 p4, X64 p5, X65 p6, X66 p7, X67 p8, X68 p9, X69 p10) { } }\nclass X71 { @Inject X71(X61 p1, X62 p2, X63 p3, X64 p4, X65 p5, X66 p6, X67 p7, X68 p8, X69 p9, X70 p10) { } }\nclass X72 { @Inject X72(X62 p1, X63 p2, X64 p3, X65 p4, X66 p5, X67 p6, X68 p7, X69 p8, X70 p9, X71 p10) { } }\nclass X73 { @Inject X73(X63 p1, X64 p2, X65 p3, X66 p4, X67 p5, X68 p6, X69 p7, X70 p8, X71 p9, X72 p10) { } }\nclass X74 { @Inject X74(X64 p1, X65 p2, X66 p3, X67 p4, X68 p5, X69 p6, X70 p7, X71 p8, X72 p9, X73 p10) { } }\nclass X75 { @Inject X75(X65 p1, X66 p2, X67 p3, X68 p4, X69 p5, X70 p6, X71 p7, X72 p8, X73 p9, X74 p10) { } }\nclass X76 { @Inject X76(X66 p1, X67 p2, X68 p3, X69 p4, X70 p5, X71 p6, X72 p7, X73 p8, X74 p9, X75 p10) { } }\nclass X77 { @Inject X77(X67 p1, X68 p2, X69 p3, X70 p4, X71 p5, X72 p6, X73 p7, X74 p8, X75 p9, X76 p10) { } }\nclass X78 { @Inject X78(X68 p1, X69 p2, X70 p3, X71 p4, X72 p5, X73 p6, X74 p7, X75 p8, X76 p9, X77 p10) { } }\nclass X79 { @Inject X79(X69 p1, X70 p2, X71 p3, X72 p4, X73 p5, X74 p6, X75 p7, X76 p8, X77 p9, X78 p10) { } }\nclass X80 { @Inject X80(X70 p1, X71 p2, X72 p3, X73 p4, X74 p5, X75 p6, X76 p7, X77 p8, X78 p9, X79 p10) { } }\nclass X81 { @Inject X81(X71 p1, X72 p2, X73 p3, X74 p4, X75 p5, X76 p6, X77 p7, X78 p8, X79 p9, X80 p10) { } }\nclass X82 { @Inject X82(X72 p1, X73 p2, X74 p3, X75 p4, X76 p5, X77 p6, X78 p7, X79 p8, X80 p9, X81 p10) { } }\nclass X83 { @Inject X83(X73 p1, X74 p2, X75 p3, X76 p4, X77 p5, X78 p6, X79 p7, X80 p8, X81 p9, X82 p10) { } }\nclass X84 { @Inject X84(X74 p1, X75 p2, X76 p3, X77 p4, X78 p5, X79 p6, X80 p7, X81 p8, X82 p9, X83 p10) { } }\nclass X85 { @Inject X85(X75 p1, X76 p2, X77 p3, X78 p4, X79 p5, X80 p6, X81 p7, X82 p8, X83 p9, X84 p10) { } }\nclass X86 { @Inject X86(X76 p1, X77 p2, X78 p3, X79 p4, X80 p5, X81 p6, X82 p7, X83 p8, X84 p9, X85 p10) { } }\nclass X87 { @Inject X87(X77 p1, X78 p2, X79 p3, X80 p4, X81 p5, X82 p6, X83 p7, X84 p8, X85 p9, X86 p10) { } }\nclass X88 { @Inject X88(X78 p1, X79 p2, X80 p3, X81 p4, X82 p5, X83 p6, X84 p7, X85 p8, X86 p9, X87 p10) { } }\nclass X89 { @Inject X89(X79 p1, X80 p2, X81 p3, X82 p4, X83 p5, X84 p6, X85 p7, X86 p8, X87 p9, X88 p10) { } }\nclass X90 { @Inject X90(X80 p1, X81 p2, X82 p3, X83 p4, X84 p5, X85 p6, X86 p7, X87 p8, X88 p9, X89 p10) { } }\nclass X91 { @Inject X91(X81 p1, X82 p2, X83 p3, X84 p4, X85 p5, X86 p6, X87 p7, X88 p8, X89 p9, X90 p10) { } }\nclass X92 { @Inject X92(X82 p1, X83 p2, X84 p3, X85 p4, X86 p5, X87 p6, X88 p7, X89 p8, X90 p9, X91 p10) { } }\nclass X93 { @Inject X93(X83 p1, X84 p2, X85 p3, X86 p4, X87 p5, X88 p6, X89 p7, X90 p8, X91 p9, X92 p10) { } }\nclass X94 { @Inject X94(X84 p1, X85 p2, X86 p3, X87 p4, X88 p5, X89 p6, X90 p7, X91 p8, X92 p9, X93 p10) { } }\nclass X95 { @Inject X95(X85 p1, X86 p2, X87 p3, X88 p4, X89 p5, X90 p6, X91 p7, X92 p8, X93 p9, X94 p10) { } }\nclass X96 { @Inject X96(X86 p1, X87 p2, X88 p3, X89 p4, X90 p5, X91 p6, X92 p7, X93 p8, X94 p9, X95 p10) { } }\nclass X97 { @Inject X97(X87 p1, X88 p2, X89 p3, X90 p4, X91 p5, X92 p6, X93 p7, X94 p8, X95 p9, X96 p10) { } }\nclass X98 { @Inject X98(X88 p1, X89 p2, X90 p3, X91 p4, X92 p5, X93 p6, X94 p7, X95 p8, X96 p9, X97 p10) { } }\nclass X99 { @Inject X99(X89 p1, X90 p2, X91 p3, X92 p4, X93 p5, X94 p6, X95 p7, X96 p8, X97 p9, X98 p10) { } }\ninterface I00 { public void dummy(); }; class Impl00 implements I00 { @Inject Impl00(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9, X09 p10) { } @Override public void dummy() { } }\ninterface I01 { public void dummy(); }; class Impl01 implements I01 { @Inject Impl01(X01 p1, X02 p2, X03 p3, X04 p4, X05 p5, X06 p6, X07 p7, X08 p8, X09 p9, X10 p10) { } @Override public void dummy() { } }\ninterface I02 { public void dummy(); }; class Impl02 implements I02 { @Inject Impl02(X02 p1, X03 p2, X04 p3, X05 p4, X06 p5, X07 p6, X08 p7, X09 p8, X10 p9, X11 p10) { } @Override public void dummy() { } }\ninterface I03 { public void dummy(); }; class Impl03 implements I03 { @Inject Impl03(X03 p1, X04 p2, X05 p3, X06 p4, X07 p5, X08 p6, X09 p7, X10 p8, X11 p9, X12 p10) { } @Override public void dummy() { } }\ninterface I04 { public void dummy(); }; class Impl04 implements I04 { @Inject Impl04(X04 p1, X05 p2, X06 p3, X07 p4, X08 p5, X09 p6, X10 p7, X11 p8, X12 p9, X13 p10) { } @Override public void dummy() { } }\ninterface I05 { public void dummy(); }; class Impl05 implements I05 { @Inject Impl05(X05 p1, X06 p2, X07 p3, X08 p4, X09 p5, X10 p6, X11 p7, X12 p8, X13 p9, X14 p10) { } @Override public void dummy() { } }\ninterface I06 { public void dummy(); }; class Impl06 implements I06 { @Inject Impl06(X06 p1, X07 p2, X08 p3, X09 p4, X10 p5, X11 p6, X12 p7, X13 p8, X14 p9, X15 p10) { } @Override public void dummy() { } }\ninterface I07 { public void dummy(); }; class Impl07 implements I07 { @Inject Impl07(X07 p1, X08 p2, X09 p3, X10 p4, X11 p5, X12 p6, X13 p7, X14 p8, X15 p9, X16 p10) { } @Override public void dummy() { } }\ninterface I08 { public void dummy(); }; class Impl08 implements I08 { @Inject Impl08(X08 p1, X09 p2, X10 p3, X11 p4, X12 p5, X13 p6, X14 p7, X15 p8, X16 p9, X17 p10) { } @Override public void dummy() { } }\ninterface I09 { public void dummy(); }; class Impl09 implements I09 { @Inject Impl09(X09 p1, X10 p2, X11 p3, X12 p4, X13 p5, X14 p6, X15 p7, X16 p8, X17 p9, X18 p10) { } @Override public void dummy() { } }\ninterface I10 { public void dummy(); }; class Impl10 implements I10 { @Inject Impl10(X10 p1, X11 p2, X12 p3, X13 p4, X14 p5, X15 p6, X16 p7, X17 p8, X18 p9, X19 p10) { } @Override public void dummy() { } }\ninterface I11 { public void dummy(); }; class Impl11 implements I11 { @Inject Impl11(X11 p1, X12 p2, X13 p3, X14 p4, X15 p5, X16 p6, X17 p7, X18 p8, X19 p9, X20 p10) { } @Override public void dummy() { } }\ninterface I12 { public void dummy(); }; class Impl12 implements I12 { @Inject Impl12(X12 p1, X13 p2, X14 p3, X15 p4, X16 p5, X17 p6, X18 p7, X19 p8, X20 p9, X21 p10) { } @Override public void dummy() { } }\ninterface I13 { public void dummy(); }; class Impl13 implements I13 { @Inject Impl13(X13 p1, X14 p2, X15 p3, X16 p4, X17 p5, X18 p6, X19 p7, X20 p8, X21 p9, X22 p10) { } @Override public void dummy() { } }\ninterface I14 { public void dummy(); }; class Impl14 implements I14 { @Inject Impl14(X14 p1, X15 p2, X16 p3, X17 p4, X18 p5, X19 p6, X20 p7, X21 p8, X22 p9, X23 p10) { } @Override public void dummy() { } }\ninterface I15 { public void dummy(); }; class Impl15 implements I15 { @Inject Impl15(X15 p1, X16 p2, X17 p3, X18 p4, X19 p5, X20 p6, X21 p7, X22 p8, X23 p9, X24 p10) { } @Override public void dummy() { } }\ninterface I16 { public void dummy(); }; class Impl16 implements I16 { @Inject Impl16(X16 p1, X17 p2, X18 p3, X19 p4, X20 p5, X21 p6, X22 p7, X23 p8, X24 p9, X25 p10) { } @Override public void dummy() { } }\ninterface I17 { public void dummy(); }; class Impl17 implements I17 { @Inject Impl17(X17 p1, X18 p2, X19 p3, X20 p4, X21 p5, X22 p6, X23 p7, X24 p8, X25 p9, X26 p10) { } @Override public void dummy() { } }\ninterface I18 { public void dummy(); }; class Impl18 implements I18 { @Inject Impl18(X18 p1, X19 p2, X20 p3, X21 p4, X22 p5, X23 p6, X24 p7, X25 p8, X26 p9, X27 p10) { } @Override public void dummy() { } }\ninterface I19 { public void dummy(); }; class Impl19 implements I19 { @Inject Impl19(X19 p1, X20 p2, X21 p3, X22 p4, X23 p5, X24 p6, X25 p7, X26 p8, X27 p9, X28 p10) { } @Override public void dummy() { } }\ninterface I20 { public void dummy(); }; class Impl20 implements I20 { @Inject Impl20(X20 p1, X21 p2, X22 p3, X23 p4, X24 p5, X25 p6, X26 p7, X27 p8, X28 p9, X29 p10) { } @Override public void dummy() { } }\ninterface I21 { public void dummy(); }; class Impl21 implements I21 { @Inject Impl21(X21 p1, X22 p2, X23 p3, X24 p4, X25 p5, X26 p6, X27 p7, X28 p8, X29 p9, X30 p10) { } @Override public void dummy() { } }\ninterface I22 { public void dummy(); }; class Impl22 implements I22 { @Inject Impl22(X22 p1, X23 p2, X24 p3, X25 p4, X26 p5, X27 p6, X28 p7, X29 p8, X30 p9, X31 p10) { } @Override public void dummy() { } }\ninterface I23 { public void dummy(); }; class Impl23 implements I23 { @Inject Impl23(X23 p1, X24 p2, X25 p3, X26 p4, X27 p5, X28 p6, X29 p7, X30 p8, X31 p9, X32 p10) { } @Override public void dummy() { } }\ninterface I24 { public void dummy(); }; class Impl24 implements I24 { @Inject Impl24(X24 p1, X25 p2, X26 p3, X27 p4, X28 p5, X29 p6, X30 p7, X31 p8, X32 p9, X33 p10) { } @Override public void dummy() { } }\ninterface I25 { public void dummy(); }; class Impl25 implements I25 { @Inject Impl25(X25 p1, X26 p2, X27 p3, X28 p4, X29 p5, X30 p6, X31 p7, X32 p8, X33 p9, X34 p10) { } @Override public void dummy() { } }\ninterface I26 { public void dummy(); }; class Impl26 implements I26 { @Inject Impl26(X26 p1, X27 p2, X28 p3, X29 p4, X30 p5, X31 p6, X32 p7, X33 p8, X34 p9, X35 p10) { } @Override public void dummy() { } }\ninterface I27 { public void dummy(); }; class Impl27 implements I27 { @Inject Impl27(X27 p1, X28 p2, X29 p3, X30 p4, X31 p5, X32 p6, X33 p7, X34 p8, X35 p9, X36 p10) { } @Override public void dummy() { } }\ninterface I28 { public void dummy(); }; class Impl28 implements I28 { @Inject Impl28(X28 p1, X29 p2, X30 p3, X31 p4, X32 p5, X33 p6, X34 p7, X35 p8, X36 p9, X37 p10) { } @Override public void dummy() { } }\ninterface I29 { public void dummy(); }; class Impl29 implements I29 { @Inject Impl29(X29 p1, X30 p2, X31 p3, X32 p4, X33 p5, X34 p6, X35 p7, X36 p8, X37 p9, X38 p10) { } @Override public void dummy() { } }\ninterface I30 { public void dummy(); }; class Impl30 implements I30 { @Inject Impl30(X30 p1, X31 p2, X32 p3, X33 p4, X34 p5, X35 p6, X36 p7, X37 p8, X38 p9, X39 p10) { } @Override public void dummy() { } }\ninterface I31 { public void dummy(); }; class Impl31 implements I31 { @Inject Impl31(X31 p1, X32 p2, X33 p3, X34 p4, X35 p5, X36 p6, X37 p7, X38 p8, X39 p9, X40 p10) { } @Override public void dummy() { } }\ninterface I32 { public void dummy(); }; class Impl32 implements I32 { @Inject Impl32(X32 p1, X33 p2, X34 p3, X35 p4, X36 p5, X37 p6, X38 p7, X39 p8, X40 p9, X41 p10) { } @Override public void dummy() { } }\ninterface I33 { public void dummy(); }; class Impl33 implements I33 { @Inject Impl33(X33 p1, X34 p2, X35 p3, X36 p4, X37 p5, X38 p6, X39 p7, X40 p8, X41 p9, X42 p10) { } @Override public void dummy() { } }\ninterface I34 { public void dummy(); }; class Impl34 implements I34 { @Inject Impl34(X34 p1, X35 p2, X36 p3, X37 p4, X38 p5, X39 p6, X40 p7, X41 p8, X42 p9, X43 p10) { } @Override public void dummy() { } }\ninterface I35 { public void dummy(); }; class Impl35 implements I35 { @Inject Impl35(X35 p1, X36 p2, X37 p3, X38 p4, X39 p5, X40 p6, X41 p7, X42 p8, X43 p9, X44 p10) { } @Override public void dummy() { } }\ninterface I36 { public void dummy(); }; class Impl36 implements I36 { @Inject Impl36(X36 p1, X37 p2, X38 p3, X39 p4, X40 p5, X41 p6, X42 p7, X43 p8, X44 p9, X45 p10) { } @Override public void dummy() { } }\ninterface I37 { public void dummy(); }; class Impl37 implements I37 { @Inject Impl37(X37 p1, X38 p2, X39 p3, X40 p4, X41 p5, X42 p6, X43 p7, X44 p8, X45 p9, X46 p10) { } @Override public void dummy() { } }\ninterface I38 { public void dummy(); }; class Impl38 implements I38 { @Inject Impl38(X38 p1, X39 p2, X40 p3, X41 p4, X42 p5, X43 p6, X44 p7, X45 p8, X46 p9, X47 p10) { } @Override public void dummy() { } }\ninterface I39 { public void dummy(); }; class Impl39 implements I39 { @Inject Impl39(X39 p1, X40 p2, X41 p3, X42 p4, X43 p5, X44 p6, X45 p7, X46 p8, X47 p9, X48 p10) { } @Override public void dummy() { } }\ninterface I40 { public void dummy(); }; class Impl40 implements I40 { @Inject Impl40(X40 p1, X41 p2, X42 p3, X43 p4, X44 p5, X45 p6, X46 p7, X47 p8, X48 p9, X49 p10) { } @Override public void dummy() { } }\ninterface I41 { public void dummy(); }; class Impl41 implements I41 { @Inject Impl41(X41 p1, X42 p2, X43 p3, X44 p4, X45 p5, X46 p6, X47 p7, X48 p8, X49 p9, X50 p10) { } @Override public void dummy() { } }\ninterface I42 { public void dummy(); }; class Impl42 implements I42 { @Inject Impl42(X42 p1, X43 p2, X44 p3, X45 p4, X46 p5, X47 p6, X48 p7, X49 p8, X50 p9, X51 p10) { } @Override public void dummy() { } }\ninterface I43 { public void dummy(); }; class Impl43 implements I43 { @Inject Impl43(X43 p1, X44 p2, X45 p3, X46 p4, X47 p5, X48 p6, X49 p7, X50 p8, X51 p9, X52 p10) { } @Override public void dummy() { } }\ninterface I44 { public void dummy(); }; class Impl44 implements I44 { @Inject Impl44(X44 p1, X45 p2, X46 p3, X47 p4, X48 p5, X49 p6, X50 p7, X51 p8, X52 p9, X53 p10) { } @Override public void dummy() { } }\ninterface I45 { public void dummy(); }; class Impl45 implements I45 { @Inject Impl45(X45 p1, X46 p2, X47 p3, X48 p4, X49 p5, X50 p6, X51 p7, X52 p8, X53 p9, X54 p10) { } @Override public void dummy() { } }\ninterface I46 { public void dummy(); }; class Impl46 implements I46 { @Inject Impl46(X46 p1, X47 p2, X48 p3, X49 p4, X50 p5, X51 p6, X52 p7, X53 p8, X54 p9, X55 p10) { } @Override public void dummy() { } }\ninterface I47 { public void dummy(); }; class Impl47 implements I47 { @Inject Impl47(X47 p1, X48 p2, X49 p3, X50 p4, X51 p5, X52 p6, X53 p7, X54 p8, X55 p9, X56 p10) { } @Override public void dummy() { } }\ninterface I48 { public void dummy(); }; class Impl48 implements I48 { @Inject Impl48(X48 p1, X49 p2, X50 p3, X51 p4, X52 p5, X53 p6, X54 p7, X55 p8, X56 p9, X57 p10) { } @Override public void dummy() { } }\ninterface I49 { public void dummy(); }; class Impl49 implements I49 { @Inject Impl49(X49 p1, X50 p2, X51 p3, X52 p4, X53 p5, X54 p6, X55 p7, X56 p8, X57 p9, X58 p10) { } @Override public void dummy() { } }\ninterface I50 { public void dummy(); }; class Impl50 implements I50 { @Inject Impl50(X50 p1, X51 p2, X52 p3, X53 p4, X54 p5, X55 p6, X56 p7, X57 p8, X58 p9, X59 p10) { } @Override public void dummy() { } }\ninterface I51 { public void dummy(); }; class Impl51 implements I51 { @Inject Impl51(X51 p1, X52 p2, X53 p3, X54 p4, X55 p5, X56 p6, X57 p7, X58 p8, X59 p9, X60 p10) { } @Override public void dummy() { } }\ninterface I52 { public void dummy(); }; class Impl52 implements I52 { @Inject Impl52(X52 p1, X53 p2, X54 p3, X55 p4, X56 p5, X57 p6, X58 p7, X59 p8, X60 p9, X61 p10) { } @Override public void dummy() { } }\ninterface I53 { public void dummy(); }; class Impl53 implements I53 { @Inject Impl53(X53 p1, X54 p2, X55 p3, X56 p4, X57 p5, X58 p6, X59 p7, X60 p8, X61 p9, X62 p10) { } @Override public void dummy() { } }\ninterface I54 { public void dummy(); }; class Impl54 implements I54 { @Inject Impl54(X54 p1, X55 p2, X56 p3, X57 p4, X58 p5, X59 p6, X60 p7, X61 p8, X62 p9, X63 p10) { } @Override public void dummy() { } }\ninterface I55 { public void dummy(); }; class Impl55 implements I55 { @Inject Impl55(X55 p1, X56 p2, X57 p3, X58 p4, X59 p5, X60 p6, X61 p7, X62 p8, X63 p9, X64 p10) { } @Override public void dummy() { } }\ninterface I56 { public void dummy(); }; class Impl56 implements I56 { @Inject Impl56(X56 p1, X57 p2, X58 p3, X59 p4, X60 p5, X61 p6, X62 p7, X63 p8, X64 p9, X65 p10) { } @Override public void dummy() { } }\ninterface I57 { public void dummy(); }; class Impl57 implements I57 { @Inject Impl57(X57 p1, X58 p2, X59 p3, X60 p4, X61 p5, X62 p6, X63 p7, X64 p8, X65 p9, X66 p10) { } @Override public void dummy() { } }\ninterface I58 { public void dummy(); }; class Impl58 implements I58 { @Inject Impl58(X58 p1, X59 p2, X60 p3, X61 p4, X62 p5, X63 p6, X64 p7, X65 p8, X66 p9, X67 p10) { } @Override public void dummy() { } }\ninterface I59 { public void dummy(); }; class Impl59 implements I59 { @Inject Impl59(X59 p1, X60 p2, X61 p3, X62 p4, X63 p5, X64 p6, X65 p7, X66 p8, X67 p9, X68 p10) { } @Override public void dummy() { } }\ninterface I60 { public void dummy(); }; class Impl60 implements I60 { @Inject Impl60(X60 p1, X61 p2, X62 p3, X63 p4, X64 p5, X65 p6, X66 p7, X67 p8, X68 p9, X69 p10) { } @Override public void dummy() { } }\ninterface I61 { public void dummy(); }; class Impl61 implements I61 { @Inject Impl61(X61 p1, X62 p2, X63 p3, X64 p4, X65 p5, X66 p6, X67 p7, X68 p8, X69 p9, X70 p10) { } @Override public void dummy() { } }\ninterface I62 { public void dummy(); }; class Impl62 implements I62 { @Inject Impl62(X62 p1, X63 p2, X64 p3, X65 p4, X66 p5, X67 p6, X68 p7, X69 p8, X70 p9, X71 p10) { } @Override public void dummy() { } }\ninterface I63 { public void dummy(); }; class Impl63 implements I63 { @Inject Impl63(X63 p1, X64 p2, X65 p3, X66 p4, X67 p5, X68 p6, X69 p7, X70 p8, X71 p9, X72 p10) { } @Override public void dummy() { } }\ninterface I64 { public void dummy(); }; class Impl64 implements I64 { @Inject Impl64(X64 p1, X65 p2, X66 p3, X67 p4, X68 p5, X69 p6, X70 p7, X71 p8, X72 p9, X73 p10) { } @Override public void dummy() { } }\ninterface I65 { public void dummy(); }; class Impl65 implements I65 { @Inject Impl65(X65 p1, X66 p2, X67 p3, X68 p4, X69 p5, X70 p6, X71 p7, X72 p8, X73 p9, X74 p10) { } @Override public void dummy() { } }\ninterface I66 { public void dummy(); }; class Impl66 implements I66 { @Inject Impl66(X66 p1, X67 p2, X68 p3, X69 p4, X70 p5, X71 p6, X72 p7, X73 p8, X74 p9, X75 p10) { } @Override public void dummy() { } }\ninterface I67 { public void dummy(); }; class Impl67 implements I67 { @Inject Impl67(X67 p1, X68 p2, X69 p3, X70 p4, X71 p5, X72 p6, X73 p7, X74 p8, X75 p9, X76 p10) { } @Override public void dummy() { } }\ninterface I68 { public void dummy(); }; class Impl68 implements I68 { @Inject Impl68(X68 p1, X69 p2, X70 p3, X71 p4, X72 p5, X73 p6, X74 p7, X75 p8, X76 p9, X77 p10) { } @Override public void dummy() { } }\ninterface I69 { public void dummy(); }; class Impl69 implements I69 { @Inject Impl69(X69 p1, X70 p2, X71 p3, X72 p4, X73 p5, X74 p6, X75 p7, X76 p8, X77 p9, X78 p10) { } @Override public void dummy() { } }\ninterface I70 { public void dummy(); }; class Impl70 implements I70 { @Inject Impl70(X70 p1, X71 p2, X72 p3, X73 p4, X74 p5, X75 p6, X76 p7, X77 p8, X78 p9, X79 p10) { } @Override public void dummy() { } }\ninterface I71 { public void dummy(); }; class Impl71 implements I71 { @Inject Impl71(X71 p1, X72 p2, X73 p3, X74 p4, X75 p5, X76 p6, X77 p7, X78 p8, X79 p9, X80 p10) { } @Override public void dummy() { } }\ninterface I72 { public void dummy(); }; class Impl72 implements I72 { @Inject Impl72(X72 p1, X73 p2, X74 p3, X75 p4, X76 p5, X77 p6, X78 p7, X79 p8, X80 p9, X81 p10) { } @Override public void dummy() { } }\ninterface I73 { public void dummy(); }; class Impl73 implements I73 { @Inject Impl73(X73 p1, X74 p2, X75 p3, X76 p4, X77 p5, X78 p6, X79 p7, X80 p8, X81 p9, X82 p10) { } @Override public void dummy() { } }\ninterface I74 { public void dummy(); }; class Impl74 implements I74 { @Inject Impl74(X74 p1, X75 p2, X76 p3, X77 p4, X78 p5, X79 p6, X80 p7, X81 p8, X82 p9, X83 p10) { } @Override public void dummy() { } }\ninterface I75 { public void dummy(); }; class Impl75 implements I75 { @Inject Impl75(X75 p1, X76 p2, X77 p3, X78 p4, X79 p5, X80 p6, X81 p7, X82 p8, X83 p9, X84 p10) { } @Override public void dummy() { } }\ninterface I76 { public void dummy(); }; class Impl76 implements I76 { @Inject Impl76(X76 p1, X77 p2, X78 p3, X79 p4, X80 p5, X81 p6, X82 p7, X83 p8, X84 p9, X85 p10) { } @Override public void dummy() { } }\ninterface I77 { public void dummy(); }; class Impl77 implements I77 { @Inject Impl77(X77 p1, X78 p2, X79 p3, X80 p4, X81 p5, X82 p6, X83 p7, X84 p8, X85 p9, X86 p10) { } @Override public void dummy() { } }\ninterface I78 { public void dummy(); }; class Impl78 implements I78 { @Inject Impl78(X78 p1, X79 p2, X80 p3, X81 p4, X82 p5, X83 p6, X84 p7, X85 p8, X86 p9, X87 p10) { } @Override public void dummy() { } }\ninterface I79 { public void dummy(); }; class Impl79 implements I79 { @Inject Impl79(X79 p1, X80 p2, X81 p3, X82 p4, X83 p5, X84 p6, X85 p7, X86 p8, X87 p9, X88 p10) { } @Override public void dummy() { } }\ninterface I80 { public void dummy(); }; class Impl80 implements I80 { @Inject Impl80(X80 p1, X81 p2, X82 p3, X83 p4, X84 p5, X85 p6, X86 p7, X87 p8, X88 p9, X89 p10) { } @Override public void dummy() { } }\ninterface I81 { public void dummy(); }; class Impl81 implements I81 { @Inject Impl81(X81 p1, X82 p2, X83 p3, X84 p4, X85 p5, X86 p6, X87 p7, X88 p8, X89 p9, X90 p10) { } @Override public void dummy() { } }\ninterface I82 { public void dummy(); }; class Impl82 implements I82 { @Inject Impl82(X82 p1, X83 p2, X84 p3, X85 p4, X86 p5, X87 p6, X88 p7, X89 p8, X90 p9, X91 p10) { } @Override public void dummy() { } }\ninterface I83 { public void dummy(); }; class Impl83 implements I83 { @Inject Impl83(X83 p1, X84 p2, X85 p3, X86 p4, X87 p5, X88 p6, X89 p7, X90 p8, X91 p9, X92 p10) { } @Override public void dummy() { } }\ninterface I84 { public void dummy(); }; class Impl84 implements I84 { @Inject Impl84(X84 p1, X85 p2, X86 p3, X87 p4, X88 p5, X89 p6, X90 p7, X91 p8, X92 p9, X93 p10) { } @Override public void dummy() { } }\ninterface I85 { public void dummy(); }; class Impl85 implements I85 { @Inject Impl85(X85 p1, X86 p2, X87 p3, X88 p4, X89 p5, X90 p6, X91 p7, X92 p8, X93 p9, X94 p10) { } @Override public void dummy() { } }\ninterface I86 { public void dummy(); }; class Impl86 implements I86 { @Inject Impl86(X86 p1, X87 p2, X88 p3, X89 p4, X90 p5, X91 p6, X92 p7, X93 p8, X94 p9, X95 p10) { } @Override public void dummy() { } }\ninterface I87 { public void dummy(); }; class Impl87 implements I87 { @Inject Impl87(X87 p1, X88 p2, X89 p3, X90 p4, X91 p5, X92 p6, X93 p7, X94 p8, X95 p9, X96 p10) { } @Override public void dummy() { } }\ninterface I88 { public void dummy(); }; class Impl88 implements I88 { @Inject Impl88(X88 p1, X89 p2, X90 p3, X91 p4, X92 p5, X93 p6, X94 p7, X95 p8, X96 p9, X97 p10) { } @Override public void dummy() { } }\ninterface I89 { public void dummy(); }; class Impl89 implements I89 { @Inject Impl89(X89 p1, X90 p2, X91 p3, X92 p4, X93 p5, X94 p6, X95 p7, X96 p8, X97 p9, X98 p10) { } @Override public void dummy() { } }\ninterface I90 { public void dummy(); }; class Impl90 implements I90 { @Inject Impl90(X90 p1, X91 p2, X92 p3, X93 p4, X94 p5, X95 p6, X96 p7, X97 p8, X98 p9, X99 p10) { } @Override public void dummy() { } }\ninterface I91 { public void dummy(); }; class Impl91 implements I91 { @Inject Impl91(X91 p1, X92 p2, X93 p3, X94 p4, X95 p5, X96 p6, X97 p7, X98 p8, X99 p9, X00 p10) { } @Override public void dummy() { } }\ninterface I92 { public void dummy(); }; class Impl92 implements I92 { @Inject Impl92(X92 p1, X93 p2, X94 p3, X95 p4, X96 p5, X97 p6, X98 p7, X99 p8, X00 p9, X01 p10) { } @Override public void dummy() { } }\ninterface I93 { public void dummy(); }; class Impl93 implements I93 { @Inject Impl93(X93 p1, X94 p2, X95 p3, X96 p4, X97 p5, X98 p6, X99 p7, X00 p8, X01 p9, X02 p10) { } @Override public void dummy() { } }\ninterface I94 { public void dummy(); }; class Impl94 implements I94 { @Inject Impl94(X94 p1, X95 p2, X96 p3, X97 p4, X98 p5, X99 p6, X00 p7, X01 p8, X02 p9, X03 p10) { } @Override public void dummy() { } }\ninterface I95 { public void dummy(); }; class Impl95 implements I95 { @Inject Impl95(X95 p1, X96 p2, X97 p3, X98 p4, X99 p5, X00 p6, X01 p7, X02 p8, X03 p9, X04 p10) { } @Override public void dummy() { } }\ninterface I96 { public void dummy(); }; class Impl96 implements I96 { @Inject Impl96(X96 p1, X97 p2, X98 p3, X99 p4, X00 p5, X01 p6, X02 p7, X03 p8, X04 p9, X05 p10) { } @Override public void dummy() { } }\ninterface I97 { public void dummy(); }; class Impl97 implements I97 { @Inject Impl97(X97 p1, X98 p2, X99 p3, X00 p4, X01 p5, X02 p6, X03 p7, X04 p8, X05 p9, X06 p10) { } @Override public void dummy() { } }\ninterface I98 { public void dummy(); }; class Impl98 implements I98 { @Inject Impl98(X98 p1, X99 p2, X00 p3, X01 p4, X02 p5, X03 p6, X04 p7, X05 p8, X06 p9, X07 p10) { } @Override public void dummy() { } }\ninterface I99 { public void dummy(); }; class Impl99 implements I99 { @Inject Impl99(X99 p1, X00 p2, X01 p3, X02 p4, X03 p5, X04 p6, X05 p7, X06 p8, X07 p9, X08 p10) { } @Override public void dummy() { } }\nclass C0 { @Inject C0(I00 p1, I01 p2, I02 p3, I03 p4, I04 p5, I05 p6, I06 p7, I07 p8, I08 p9, I09 p10) { } }\nclass C1 { @Inject C1(I10 p1, I11 p2, I12 p3, I13 p4, I14 p5, I15 p6, I16 p7, I17 p8, I18 p9, I19 p10) { } }\nclass C2 { @Inject C2(I20 p1, I21 p2, I22 p3, I23 p4, I24 p5, I25 p6, I26 p7, I27 p8, I28 p9, I29 p10) { } }\nclass C3 { @Inject C3(I30 p1, I31 p2, I32 p3, I33 p4, I34 p5, I35 p6, I36 p7, I37 p8, I38 p9, I39 p10) { } }\nclass C4 { @Inject C4(I40 p1, I41 p2, I42 p3, I43 p4, I44 p5, I45 p6, I46 p7, I47 p8, I48 p9, I49 p10) { } }\nclass C5 { @Inject C5(I50 p1, I51 p2, I52 p3, I53 p4, I54 p5, I55 p6, I56 p7, I57 p8, I58 p9, I59 p10) { } }\nclass C6 { @Inject C6(I60 p1, I61 p2, I62 p3, I63 p4, I64 p5, I65 p6, I66 p7, I67 p8, I68 p9, I69 p10) { } }\nclass C7 { @Inject C7(I70 p1, I71 p2, I72 p3, I73 p4, I74 p5, I75 p6, I76 p7, I77 p8, I78 p9, I79 p10) { } }\nclass C8 { @Inject C8(I80 p1, I81 p2, I82 p3, I83 p4, I84 p5, I85 p6, I86 p7, I87 p8, I88 p9, I89 p10) { } }\nclass C9 { @Inject C9(I90 p1, I91 p2, I92 p3, I93 p4, I94 p5, I95 p6, I96 p7, I97 p8, I98 p9, I99 p10) { } }\nclass Complex { @Inject Complex(C0 p1, C1 p2, C2 p3, C3 p4, C4 p5, C5 p6, C6 p7, C7 p8, C8 p9, C9 p10) { } }\n\nclass Module extends AbstractModule {\n  @Override\n  protected void configure() {\n    bind(I00.class).to(Impl00.class);\n    bind(I01.class).to(Impl01.class);\n    bind(I02.class).to(Impl02.class);\n    bind(I03.class).to(Impl03.class);\n    bind(I04.class).to(Impl04.class);\n    bind(I05.class).to(Impl05.class);\n    bind(I06.class).to(Impl06.class);\n    bind(I07.class).to(Impl07.class);\n    bind(I08.class).to(Impl08.class);\n    bind(I09.class).to(Impl09.class);\n    bind(I10.class).to(Impl10.class);\n    bind(I11.class).to(Impl11.class);\n    bind(I12.class).to(Impl12.class);\n    bind(I13.class).to(Impl13.class);\n    bind(I14.class).to(Impl14.class);\n    bind(I15.class).to(Impl15.class);\n    bind(I16.class).to(Impl16.class);\n    bind(I17.class).to(Impl17.class);\n    bind(I18.class).to(Impl18.class);\n    bind(I19.class).to(Impl19.class);\n    bind(I20.class).to(Impl20.class);\n    bind(I21.class).to(Impl21.class);\n    bind(I22.class).to(Impl22.class);\n    bind(I23.class).to(Impl23.class);\n    bind(I24.class).to(Impl24.class);\n    bind(I25.class).to(Impl25.class);\n    bind(I26.class).to(Impl26.class);\n    bind(I27.class).to(Impl27.class);\n    bind(I28.class).to(Impl28.class);\n    bind(I29.class).to(Impl29.class);\n    bind(I30.class).to(Impl30.class);\n    bind(I31.class).to(Impl31.class);\n    bind(I32.class).to(Impl32.class);\n    bind(I33.class).to(Impl33.class);\n    bind(I34.class).to(Impl34.class);\n    bind(I35.class).to(Impl35.class);\n    bind(I36.class).to(Impl36.class);\n    bind(I37.class).to(Impl37.class);\n    bind(I38.class).to(Impl38.class);\n    bind(I39.class).to(Impl39.class);\n    bind(I40.class).to(Impl40.class);\n    bind(I41.class).to(Impl41.class);\n    bind(I42.class).to(Impl42.class);\n    bind(I43.class).to(Impl43.class);\n    bind(I44.class).to(Impl44.class);\n    bind(I45.class).to(Impl45.class);\n    bind(I46.class).to(Impl46.class);\n    bind(I47.class).to(Impl47.class);\n    bind(I48.class).to(Impl48.class);\n    bind(I49.class).to(Impl49.class);\n    bind(I50.class).to(Impl50.class);\n    bind(I51.class).to(Impl51.class);\n    bind(I52.class).to(Impl52.class);\n    bind(I53.class).to(Impl53.class);\n    bind(I54.class).to(Impl54.class);\n    bind(I55.class).to(Impl55.class);\n    bind(I56.class).to(Impl56.class);\n    bind(I57.class).to(Impl57.class);\n    bind(I58.class).to(Impl58.class);\n    bind(I59.class).to(Impl59.class);\n    bind(I60.class).to(Impl60.class);\n    bind(I61.class).to(Impl61.class);\n    bind(I62.class).to(Impl62.class);\n    bind(I63.class).to(Impl63.class);\n    bind(I64.class).to(Impl64.class);\n    bind(I65.class).to(Impl65.class);\n    bind(I66.class).to(Impl66.class);\n    bind(I67.class).to(Impl67.class);\n    bind(I68.class).to(Impl68.class);\n    bind(I69.class).to(Impl69.class);\n    bind(I70.class).to(Impl70.class);\n    bind(I71.class).to(Impl71.class);\n    bind(I72.class).to(Impl72.class);\n    bind(I73.class).to(Impl73.class);\n    bind(I74.class).to(Impl74.class);\n    bind(I75.class).to(Impl75.class);\n    bind(I76.class).to(Impl76.class);\n    bind(I77.class).to(Impl77.class);\n    bind(I78.class).to(Impl78.class);\n    bind(I79.class).to(Impl79.class);\n    bind(I80.class).to(Impl80.class);\n    bind(I81.class).to(Impl81.class);\n    bind(I82.class).to(Impl82.class);\n    bind(I83.class).to(Impl83.class);\n    bind(I84.class).to(Impl84.class);\n    bind(I85.class).to(Impl85.class);\n    bind(I86.class).to(Impl86.class);\n    bind(I87.class).to(Impl87.class);\n    bind(I88.class).to(Impl88.class);\n    bind(I89.class).to(Impl89.class);\n    bind(I90.class).to(Impl90.class);\n    bind(I91.class).to(Impl91.class);\n    bind(I92.class).to(Impl92.class);\n    bind(I93.class).to(Impl93.class);\n    bind(I94.class).to(Impl94.class);\n    bind(I95.class).to(Impl95.class);\n    bind(I96.class).to(Impl96.class);\n    bind(I97.class).to(Impl97.class);\n    bind(I98.class).to(Impl98.class);\n    bind(I99.class).to(Impl99.class);\n  }\n}\n\npublic class guice {\n  public static void main(String[] args) {\n    Injector injector = Guice.createInjector(new Module());\n    injector.getInstance(Complex.class);\n  }\n}\n"
  },
  {
    "path": "benchmark/create_complex/ninject.cs",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nusing Ninject;\n\nclass X00 { public X00() { } }\nclass X01 { public X01(X00 p1) { } }\nclass X02 { public X02(X00 p1, X01 p2) { } }\nclass X03 { public X03(X00 p1, X01 p2, X02 p3) { } }\nclass X04 { public X04(X00 p1, X01 p2, X02 p3, X03 p4) { } }\nclass X05 { public X05(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5) { } }\nclass X06 { public X06(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6) { } }\nclass X07 { public X07(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7) { } }\nclass X08 { public X08(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8) { } }\nclass X09 { public X09(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9) { } }\nclass X10 { public X10(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9, X09 p10) { } }\nclass X11 { public X11(X01 p1, X02 p2, X03 p3, X04 p4, X05 p5, X06 p6, X07 p7, X08 p8, X09 p9, X10 p10) { } }\nclass X12 { public X12(X02 p1, X03 p2, X04 p3, X05 p4, X06 p5, X07 p6, X08 p7, X09 p8, X10 p9, X11 p10) { } }\nclass X13 { public X13(X03 p1, X04 p2, X05 p3, X06 p4, X07 p5, X08 p6, X09 p7, X10 p8, X11 p9, X12 p10) { } }\nclass X14 { public X14(X04 p1, X05 p2, X06 p3, X07 p4, X08 p5, X09 p6, X10 p7, X11 p8, X12 p9, X13 p10) { } }\nclass X15 { public X15(X05 p1, X06 p2, X07 p3, X08 p4, X09 p5, X10 p6, X11 p7, X12 p8, X13 p9, X14 p10) { } }\nclass X16 { public X16(X06 p1, X07 p2, X08 p3, X09 p4, X10 p5, X11 p6, X12 p7, X13 p8, X14 p9, X15 p10) { } }\nclass X17 { public X17(X07 p1, X08 p2, X09 p3, X10 p4, X11 p5, X12 p6, X13 p7, X14 p8, X15 p9, X16 p10) { } }\nclass X18 { public X18(X08 p1, X09 p2, X10 p3, X11 p4, X12 p5, X13 p6, X14 p7, X15 p8, X16 p9, X17 p10) { } }\nclass X19 { public X19(X09 p1, X10 p2, X11 p3, X12 p4, X13 p5, X14 p6, X15 p7, X16 p8, X17 p9, X18 p10) { } }\nclass X20 { public X20(X10 p1, X11 p2, X12 p3, X13 p4, X14 p5, X15 p6, X16 p7, X17 p8, X18 p9, X19 p10) { } }\nclass X21 { public X21(X11 p1, X12 p2, X13 p3, X14 p4, X15 p5, X16 p6, X17 p7, X18 p8, X19 p9, X20 p10) { } }\nclass X22 { public X22(X12 p1, X13 p2, X14 p3, X15 p4, X16 p5, X17 p6, X18 p7, X19 p8, X20 p9, X21 p10) { } }\nclass X23 { public X23(X13 p1, X14 p2, X15 p3, X16 p4, X17 p5, X18 p6, X19 p7, X20 p8, X21 p9, X22 p10) { } }\nclass X24 { public X24(X14 p1, X15 p2, X16 p3, X17 p4, X18 p5, X19 p6, X20 p7, X21 p8, X22 p9, X23 p10) { } }\nclass X25 { public X25(X15 p1, X16 p2, X17 p3, X18 p4, X19 p5, X20 p6, X21 p7, X22 p8, X23 p9, X24 p10) { } }\nclass X26 { public X26(X16 p1, X17 p2, X18 p3, X19 p4, X20 p5, X21 p6, X22 p7, X23 p8, X24 p9, X25 p10) { } }\nclass X27 { public X27(X17 p1, X18 p2, X19 p3, X20 p4, X21 p5, X22 p6, X23 p7, X24 p8, X25 p9, X26 p10) { } }\nclass X28 { public X28(X18 p1, X19 p2, X20 p3, X21 p4, X22 p5, X23 p6, X24 p7, X25 p8, X26 p9, X27 p10) { } }\nclass X29 { public X29(X19 p1, X20 p2, X21 p3, X22 p4, X23 p5, X24 p6, X25 p7, X26 p8, X27 p9, X28 p10) { } }\nclass X30 { public X30(X20 p1, X21 p2, X22 p3, X23 p4, X24 p5, X25 p6, X26 p7, X27 p8, X28 p9, X29 p10) { } }\nclass X31 { public X31(X21 p1, X22 p2, X23 p3, X24 p4, X25 p5, X26 p6, X27 p7, X28 p8, X29 p9, X30 p10) { } }\nclass X32 { public X32(X22 p1, X23 p2, X24 p3, X25 p4, X26 p5, X27 p6, X28 p7, X29 p8, X30 p9, X31 p10) { } }\nclass X33 { public X33(X23 p1, X24 p2, X25 p3, X26 p4, X27 p5, X28 p6, X29 p7, X30 p8, X31 p9, X32 p10) { } }\nclass X34 { public X34(X24 p1, X25 p2, X26 p3, X27 p4, X28 p5, X29 p6, X30 p7, X31 p8, X32 p9, X33 p10) { } }\nclass X35 { public X35(X25 p1, X26 p2, X27 p3, X28 p4, X29 p5, X30 p6, X31 p7, X32 p8, X33 p9, X34 p10) { } }\nclass X36 { public X36(X26 p1, X27 p2, X28 p3, X29 p4, X30 p5, X31 p6, X32 p7, X33 p8, X34 p9, X35 p10) { } }\nclass X37 { public X37(X27 p1, X28 p2, X29 p3, X30 p4, X31 p5, X32 p6, X33 p7, X34 p8, X35 p9, X36 p10) { } }\nclass X38 { public X38(X28 p1, X29 p2, X30 p3, X31 p4, X32 p5, X33 p6, X34 p7, X35 p8, X36 p9, X37 p10) { } }\nclass X39 { public X39(X29 p1, X30 p2, X31 p3, X32 p4, X33 p5, X34 p6, X35 p7, X36 p8, X37 p9, X38 p10) { } }\nclass X40 { public X40(X30 p1, X31 p2, X32 p3, X33 p4, X34 p5, X35 p6, X36 p7, X37 p8, X38 p9, X39 p10) { } }\nclass X41 { public X41(X31 p1, X32 p2, X33 p3, X34 p4, X35 p5, X36 p6, X37 p7, X38 p8, X39 p9, X40 p10) { } }\nclass X42 { public X42(X32 p1, X33 p2, X34 p3, X35 p4, X36 p5, X37 p6, X38 p7, X39 p8, X40 p9, X41 p10) { } }\nclass X43 { public X43(X33 p1, X34 p2, X35 p3, X36 p4, X37 p5, X38 p6, X39 p7, X40 p8, X41 p9, X42 p10) { } }\nclass X44 { public X44(X34 p1, X35 p2, X36 p3, X37 p4, X38 p5, X39 p6, X40 p7, X41 p8, X42 p9, X43 p10) { } }\nclass X45 { public X45(X35 p1, X36 p2, X37 p3, X38 p4, X39 p5, X40 p6, X41 p7, X42 p8, X43 p9, X44 p10) { } }\nclass X46 { public X46(X36 p1, X37 p2, X38 p3, X39 p4, X40 p5, X41 p6, X42 p7, X43 p8, X44 p9, X45 p10) { } }\nclass X47 { public X47(X37 p1, X38 p2, X39 p3, X40 p4, X41 p5, X42 p6, X43 p7, X44 p8, X45 p9, X46 p10) { } }\nclass X48 { public X48(X38 p1, X39 p2, X40 p3, X41 p4, X42 p5, X43 p6, X44 p7, X45 p8, X46 p9, X47 p10) { } }\nclass X49 { public X49(X39 p1, X40 p2, X41 p3, X42 p4, X43 p5, X44 p6, X45 p7, X46 p8, X47 p9, X48 p10) { } }\nclass X50 { public X50(X40 p1, X41 p2, X42 p3, X43 p4, X44 p5, X45 p6, X46 p7, X47 p8, X48 p9, X49 p10) { } }\nclass X51 { public X51(X41 p1, X42 p2, X43 p3, X44 p4, X45 p5, X46 p6, X47 p7, X48 p8, X49 p9, X50 p10) { } }\nclass X52 { public X52(X42 p1, X43 p2, X44 p3, X45 p4, X46 p5, X47 p6, X48 p7, X49 p8, X50 p9, X51 p10) { } }\nclass X53 { public X53(X43 p1, X44 p2, X45 p3, X46 p4, X47 p5, X48 p6, X49 p7, X50 p8, X51 p9, X52 p10) { } }\nclass X54 { public X54(X44 p1, X45 p2, X46 p3, X47 p4, X48 p5, X49 p6, X50 p7, X51 p8, X52 p9, X53 p10) { } }\nclass X55 { public X55(X45 p1, X46 p2, X47 p3, X48 p4, X49 p5, X50 p6, X51 p7, X52 p8, X53 p9, X54 p10) { } }\nclass X56 { public X56(X46 p1, X47 p2, X48 p3, X49 p4, X50 p5, X51 p6, X52 p7, X53 p8, X54 p9, X55 p10) { } }\nclass X57 { public X57(X47 p1, X48 p2, X49 p3, X50 p4, X51 p5, X52 p6, X53 p7, X54 p8, X55 p9, X56 p10) { } }\nclass X58 { public X58(X48 p1, X49 p2, X50 p3, X51 p4, X52 p5, X53 p6, X54 p7, X55 p8, X56 p9, X57 p10) { } }\nclass X59 { public X59(X49 p1, X50 p2, X51 p3, X52 p4, X53 p5, X54 p6, X55 p7, X56 p8, X57 p9, X58 p10) { } }\nclass X60 { public X60(X50 p1, X51 p2, X52 p3, X53 p4, X54 p5, X55 p6, X56 p7, X57 p8, X58 p9, X59 p10) { } }\nclass X61 { public X61(X51 p1, X52 p2, X53 p3, X54 p4, X55 p5, X56 p6, X57 p7, X58 p8, X59 p9, X60 p10) { } }\nclass X62 { public X62(X52 p1, X53 p2, X54 p3, X55 p4, X56 p5, X57 p6, X58 p7, X59 p8, X60 p9, X61 p10) { } }\nclass X63 { public X63(X53 p1, X54 p2, X55 p3, X56 p4, X57 p5, X58 p6, X59 p7, X60 p8, X61 p9, X62 p10) { } }\nclass X64 { public X64(X54 p1, X55 p2, X56 p3, X57 p4, X58 p5, X59 p6, X60 p7, X61 p8, X62 p9, X63 p10) { } }\nclass X65 { public X65(X55 p1, X56 p2, X57 p3, X58 p4, X59 p5, X60 p6, X61 p7, X62 p8, X63 p9, X64 p10) { } }\nclass X66 { public X66(X56 p1, X57 p2, X58 p3, X59 p4, X60 p5, X61 p6, X62 p7, X63 p8, X64 p9, X65 p10) { } }\nclass X67 { public X67(X57 p1, X58 p2, X59 p3, X60 p4, X61 p5, X62 p6, X63 p7, X64 p8, X65 p9, X66 p10) { } }\nclass X68 { public X68(X58 p1, X59 p2, X60 p3, X61 p4, X62 p5, X63 p6, X64 p7, X65 p8, X66 p9, X67 p10) { } }\nclass X69 { public X69(X59 p1, X60 p2, X61 p3, X62 p4, X63 p5, X64 p6, X65 p7, X66 p8, X67 p9, X68 p10) { } }\nclass X70 { public X70(X60 p1, X61 p2, X62 p3, X63 p4, X64 p5, X65 p6, X66 p7, X67 p8, X68 p9, X69 p10) { } }\nclass X71 { public X71(X61 p1, X62 p2, X63 p3, X64 p4, X65 p5, X66 p6, X67 p7, X68 p8, X69 p9, X70 p10) { } }\nclass X72 { public X72(X62 p1, X63 p2, X64 p3, X65 p4, X66 p5, X67 p6, X68 p7, X69 p8, X70 p9, X71 p10) { } }\nclass X73 { public X73(X63 p1, X64 p2, X65 p3, X66 p4, X67 p5, X68 p6, X69 p7, X70 p8, X71 p9, X72 p10) { } }\nclass X74 { public X74(X64 p1, X65 p2, X66 p3, X67 p4, X68 p5, X69 p6, X70 p7, X71 p8, X72 p9, X73 p10) { } }\nclass X75 { public X75(X65 p1, X66 p2, X67 p3, X68 p4, X69 p5, X70 p6, X71 p7, X72 p8, X73 p9, X74 p10) { } }\nclass X76 { public X76(X66 p1, X67 p2, X68 p3, X69 p4, X70 p5, X71 p6, X72 p7, X73 p8, X74 p9, X75 p10) { } }\nclass X77 { public X77(X67 p1, X68 p2, X69 p3, X70 p4, X71 p5, X72 p6, X73 p7, X74 p8, X75 p9, X76 p10) { } }\nclass X78 { public X78(X68 p1, X69 p2, X70 p3, X71 p4, X72 p5, X73 p6, X74 p7, X75 p8, X76 p9, X77 p10) { } }\nclass X79 { public X79(X69 p1, X70 p2, X71 p3, X72 p4, X73 p5, X74 p6, X75 p7, X76 p8, X77 p9, X78 p10) { } }\nclass X80 { public X80(X70 p1, X71 p2, X72 p3, X73 p4, X74 p5, X75 p6, X76 p7, X77 p8, X78 p9, X79 p10) { } }\nclass X81 { public X81(X71 p1, X72 p2, X73 p3, X74 p4, X75 p5, X76 p6, X77 p7, X78 p8, X79 p9, X80 p10) { } }\nclass X82 { public X82(X72 p1, X73 p2, X74 p3, X75 p4, X76 p5, X77 p6, X78 p7, X79 p8, X80 p9, X81 p10) { } }\nclass X83 { public X83(X73 p1, X74 p2, X75 p3, X76 p4, X77 p5, X78 p6, X79 p7, X80 p8, X81 p9, X82 p10) { } }\nclass X84 { public X84(X74 p1, X75 p2, X76 p3, X77 p4, X78 p5, X79 p6, X80 p7, X81 p8, X82 p9, X83 p10) { } }\nclass X85 { public X85(X75 p1, X76 p2, X77 p3, X78 p4, X79 p5, X80 p6, X81 p7, X82 p8, X83 p9, X84 p10) { } }\nclass X86 { public X86(X76 p1, X77 p2, X78 p3, X79 p4, X80 p5, X81 p6, X82 p7, X83 p8, X84 p9, X85 p10) { } }\nclass X87 { public X87(X77 p1, X78 p2, X79 p3, X80 p4, X81 p5, X82 p6, X83 p7, X84 p8, X85 p9, X86 p10) { } }\nclass X88 { public X88(X78 p1, X79 p2, X80 p3, X81 p4, X82 p5, X83 p6, X84 p7, X85 p8, X86 p9, X87 p10) { } }\nclass X89 { public X89(X79 p1, X80 p2, X81 p3, X82 p4, X83 p5, X84 p6, X85 p7, X86 p8, X87 p9, X88 p10) { } }\nclass X90 { public X90(X80 p1, X81 p2, X82 p3, X83 p4, X84 p5, X85 p6, X86 p7, X87 p8, X88 p9, X89 p10) { } }\nclass X91 { public X91(X81 p1, X82 p2, X83 p3, X84 p4, X85 p5, X86 p6, X87 p7, X88 p8, X89 p9, X90 p10) { } }\nclass X92 { public X92(X82 p1, X83 p2, X84 p3, X85 p4, X86 p5, X87 p6, X88 p7, X89 p8, X90 p9, X91 p10) { } }\nclass X93 { public X93(X83 p1, X84 p2, X85 p3, X86 p4, X87 p5, X88 p6, X89 p7, X90 p8, X91 p9, X92 p10) { } }\nclass X94 { public X94(X84 p1, X85 p2, X86 p3, X87 p4, X88 p5, X89 p6, X90 p7, X91 p8, X92 p9, X93 p10) { } }\nclass X95 { public X95(X85 p1, X86 p2, X87 p3, X88 p4, X89 p5, X90 p6, X91 p7, X92 p8, X93 p9, X94 p10) { } }\nclass X96 { public X96(X86 p1, X87 p2, X88 p3, X89 p4, X90 p5, X91 p6, X92 p7, X93 p8, X94 p9, X95 p10) { } }\nclass X97 { public X97(X87 p1, X88 p2, X89 p3, X90 p4, X91 p5, X92 p6, X93 p7, X94 p8, X95 p9, X96 p10) { } }\nclass X98 { public X98(X88 p1, X89 p2, X90 p3, X91 p4, X92 p5, X93 p6, X94 p7, X95 p8, X96 p9, X97 p10) { } }\nclass X99 { public X99(X89 p1, X90 p2, X91 p3, X92 p4, X93 p5, X94 p6, X95 p7, X96 p8, X97 p9, X98 p10) { } }\ninterface I00 { void dummy(); }; class Impl00 : I00 { public Impl00(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9, X09 p10) { } void I00.dummy() { } }\ninterface I01 { void dummy(); }; class Impl01 : I01 { public Impl01(X01 p1, X02 p2, X03 p3, X04 p4, X05 p5, X06 p6, X07 p7, X08 p8, X09 p9, X10 p10) { } void I01.dummy() { } }\ninterface I02 { void dummy(); }; class Impl02 : I02 { public Impl02(X02 p1, X03 p2, X04 p3, X05 p4, X06 p5, X07 p6, X08 p7, X09 p8, X10 p9, X11 p10) { } void I02.dummy() { } }\ninterface I03 { void dummy(); }; class Impl03 : I03 { public Impl03(X03 p1, X04 p2, X05 p3, X06 p4, X07 p5, X08 p6, X09 p7, X10 p8, X11 p9, X12 p10) { } void I03.dummy() { } }\ninterface I04 { void dummy(); }; class Impl04 : I04 { public Impl04(X04 p1, X05 p2, X06 p3, X07 p4, X08 p5, X09 p6, X10 p7, X11 p8, X12 p9, X13 p10) { } void I04.dummy() { } }\ninterface I05 { void dummy(); }; class Impl05 : I05 { public Impl05(X05 p1, X06 p2, X07 p3, X08 p4, X09 p5, X10 p6, X11 p7, X12 p8, X13 p9, X14 p10) { } void I05.dummy() { } }\ninterface I06 { void dummy(); }; class Impl06 : I06 { public Impl06(X06 p1, X07 p2, X08 p3, X09 p4, X10 p5, X11 p6, X12 p7, X13 p8, X14 p9, X15 p10) { } void I06.dummy() { } }\ninterface I07 { void dummy(); }; class Impl07 : I07 { public Impl07(X07 p1, X08 p2, X09 p3, X10 p4, X11 p5, X12 p6, X13 p7, X14 p8, X15 p9, X16 p10) { } void I07.dummy() { } }\ninterface I08 { void dummy(); }; class Impl08 : I08 { public Impl08(X08 p1, X09 p2, X10 p3, X11 p4, X12 p5, X13 p6, X14 p7, X15 p8, X16 p9, X17 p10) { } void I08.dummy() { } }\ninterface I09 { void dummy(); }; class Impl09 : I09 { public Impl09(X09 p1, X10 p2, X11 p3, X12 p4, X13 p5, X14 p6, X15 p7, X16 p8, X17 p9, X18 p10) { } void I09.dummy() { } }\ninterface I10 { void dummy(); }; class Impl10 : I10 { public Impl10(X10 p1, X11 p2, X12 p3, X13 p4, X14 p5, X15 p6, X16 p7, X17 p8, X18 p9, X19 p10) { } void I10.dummy() { } }\ninterface I11 { void dummy(); }; class Impl11 : I11 { public Impl11(X11 p1, X12 p2, X13 p3, X14 p4, X15 p5, X16 p6, X17 p7, X18 p8, X19 p9, X20 p10) { } void I11.dummy() { } }\ninterface I12 { void dummy(); }; class Impl12 : I12 { public Impl12(X12 p1, X13 p2, X14 p3, X15 p4, X16 p5, X17 p6, X18 p7, X19 p8, X20 p9, X21 p10) { } void I12.dummy() { } }\ninterface I13 { void dummy(); }; class Impl13 : I13 { public Impl13(X13 p1, X14 p2, X15 p3, X16 p4, X17 p5, X18 p6, X19 p7, X20 p8, X21 p9, X22 p10) { } void I13.dummy() { } }\ninterface I14 { void dummy(); }; class Impl14 : I14 { public Impl14(X14 p1, X15 p2, X16 p3, X17 p4, X18 p5, X19 p6, X20 p7, X21 p8, X22 p9, X23 p10) { } void I14.dummy() { } }\ninterface I15 { void dummy(); }; class Impl15 : I15 { public Impl15(X15 p1, X16 p2, X17 p3, X18 p4, X19 p5, X20 p6, X21 p7, X22 p8, X23 p9, X24 p10) { } void I15.dummy() { } }\ninterface I16 { void dummy(); }; class Impl16 : I16 { public Impl16(X16 p1, X17 p2, X18 p3, X19 p4, X20 p5, X21 p6, X22 p7, X23 p8, X24 p9, X25 p10) { } void I16.dummy() { } }\ninterface I17 { void dummy(); }; class Impl17 : I17 { public Impl17(X17 p1, X18 p2, X19 p3, X20 p4, X21 p5, X22 p6, X23 p7, X24 p8, X25 p9, X26 p10) { } void I17.dummy() { } }\ninterface I18 { void dummy(); }; class Impl18 : I18 { public Impl18(X18 p1, X19 p2, X20 p3, X21 p4, X22 p5, X23 p6, X24 p7, X25 p8, X26 p9, X27 p10) { } void I18.dummy() { } }\ninterface I19 { void dummy(); }; class Impl19 : I19 { public Impl19(X19 p1, X20 p2, X21 p3, X22 p4, X23 p5, X24 p6, X25 p7, X26 p8, X27 p9, X28 p10) { } void I19.dummy() { } }\ninterface I20 { void dummy(); }; class Impl20 : I20 { public Impl20(X20 p1, X21 p2, X22 p3, X23 p4, X24 p5, X25 p6, X26 p7, X27 p8, X28 p9, X29 p10) { } void I20.dummy() { } }\ninterface I21 { void dummy(); }; class Impl21 : I21 { public Impl21(X21 p1, X22 p2, X23 p3, X24 p4, X25 p5, X26 p6, X27 p7, X28 p8, X29 p9, X30 p10) { } void I21.dummy() { } }\ninterface I22 { void dummy(); }; class Impl22 : I22 { public Impl22(X22 p1, X23 p2, X24 p3, X25 p4, X26 p5, X27 p6, X28 p7, X29 p8, X30 p9, X31 p10) { } void I22.dummy() { } }\ninterface I23 { void dummy(); }; class Impl23 : I23 { public Impl23(X23 p1, X24 p2, X25 p3, X26 p4, X27 p5, X28 p6, X29 p7, X30 p8, X31 p9, X32 p10) { } void I23.dummy() { } }\ninterface I24 { void dummy(); }; class Impl24 : I24 { public Impl24(X24 p1, X25 p2, X26 p3, X27 p4, X28 p5, X29 p6, X30 p7, X31 p8, X32 p9, X33 p10) { } void I24.dummy() { } }\ninterface I25 { void dummy(); }; class Impl25 : I25 { public Impl25(X25 p1, X26 p2, X27 p3, X28 p4, X29 p5, X30 p6, X31 p7, X32 p8, X33 p9, X34 p10) { } void I25.dummy() { } }\ninterface I26 { void dummy(); }; class Impl26 : I26 { public Impl26(X26 p1, X27 p2, X28 p3, X29 p4, X30 p5, X31 p6, X32 p7, X33 p8, X34 p9, X35 p10) { } void I26.dummy() { } }\ninterface I27 { void dummy(); }; class Impl27 : I27 { public Impl27(X27 p1, X28 p2, X29 p3, X30 p4, X31 p5, X32 p6, X33 p7, X34 p8, X35 p9, X36 p10) { } void I27.dummy() { } }\ninterface I28 { void dummy(); }; class Impl28 : I28 { public Impl28(X28 p1, X29 p2, X30 p3, X31 p4, X32 p5, X33 p6, X34 p7, X35 p8, X36 p9, X37 p10) { } void I28.dummy() { } }\ninterface I29 { void dummy(); }; class Impl29 : I29 { public Impl29(X29 p1, X30 p2, X31 p3, X32 p4, X33 p5, X34 p6, X35 p7, X36 p8, X37 p9, X38 p10) { } void I29.dummy() { } }\ninterface I30 { void dummy(); }; class Impl30 : I30 { public Impl30(X30 p1, X31 p2, X32 p3, X33 p4, X34 p5, X35 p6, X36 p7, X37 p8, X38 p9, X39 p10) { } void I30.dummy() { } }\ninterface I31 { void dummy(); }; class Impl31 : I31 { public Impl31(X31 p1, X32 p2, X33 p3, X34 p4, X35 p5, X36 p6, X37 p7, X38 p8, X39 p9, X40 p10) { } void I31.dummy() { } }\ninterface I32 { void dummy(); }; class Impl32 : I32 { public Impl32(X32 p1, X33 p2, X34 p3, X35 p4, X36 p5, X37 p6, X38 p7, X39 p8, X40 p9, X41 p10) { } void I32.dummy() { } }\ninterface I33 { void dummy(); }; class Impl33 : I33 { public Impl33(X33 p1, X34 p2, X35 p3, X36 p4, X37 p5, X38 p6, X39 p7, X40 p8, X41 p9, X42 p10) { } void I33.dummy() { } }\ninterface I34 { void dummy(); }; class Impl34 : I34 { public Impl34(X34 p1, X35 p2, X36 p3, X37 p4, X38 p5, X39 p6, X40 p7, X41 p8, X42 p9, X43 p10) { } void I34.dummy() { } }\ninterface I35 { void dummy(); }; class Impl35 : I35 { public Impl35(X35 p1, X36 p2, X37 p3, X38 p4, X39 p5, X40 p6, X41 p7, X42 p8, X43 p9, X44 p10) { } void I35.dummy() { } }\ninterface I36 { void dummy(); }; class Impl36 : I36 { public Impl36(X36 p1, X37 p2, X38 p3, X39 p4, X40 p5, X41 p6, X42 p7, X43 p8, X44 p9, X45 p10) { } void I36.dummy() { } }\ninterface I37 { void dummy(); }; class Impl37 : I37 { public Impl37(X37 p1, X38 p2, X39 p3, X40 p4, X41 p5, X42 p6, X43 p7, X44 p8, X45 p9, X46 p10) { } void I37.dummy() { } }\ninterface I38 { void dummy(); }; class Impl38 : I38 { public Impl38(X38 p1, X39 p2, X40 p3, X41 p4, X42 p5, X43 p6, X44 p7, X45 p8, X46 p9, X47 p10) { } void I38.dummy() { } }\ninterface I39 { void dummy(); }; class Impl39 : I39 { public Impl39(X39 p1, X40 p2, X41 p3, X42 p4, X43 p5, X44 p6, X45 p7, X46 p8, X47 p9, X48 p10) { } void I39.dummy() { } }\ninterface I40 { void dummy(); }; class Impl40 : I40 { public Impl40(X40 p1, X41 p2, X42 p3, X43 p4, X44 p5, X45 p6, X46 p7, X47 p8, X48 p9, X49 p10) { } void I40.dummy() { } }\ninterface I41 { void dummy(); }; class Impl41 : I41 { public Impl41(X41 p1, X42 p2, X43 p3, X44 p4, X45 p5, X46 p6, X47 p7, X48 p8, X49 p9, X50 p10) { } void I41.dummy() { } }\ninterface I42 { void dummy(); }; class Impl42 : I42 { public Impl42(X42 p1, X43 p2, X44 p3, X45 p4, X46 p5, X47 p6, X48 p7, X49 p8, X50 p9, X51 p10) { } void I42.dummy() { } }\ninterface I43 { void dummy(); }; class Impl43 : I43 { public Impl43(X43 p1, X44 p2, X45 p3, X46 p4, X47 p5, X48 p6, X49 p7, X50 p8, X51 p9, X52 p10) { } void I43.dummy() { } }\ninterface I44 { void dummy(); }; class Impl44 : I44 { public Impl44(X44 p1, X45 p2, X46 p3, X47 p4, X48 p5, X49 p6, X50 p7, X51 p8, X52 p9, X53 p10) { } void I44.dummy() { } }\ninterface I45 { void dummy(); }; class Impl45 : I45 { public Impl45(X45 p1, X46 p2, X47 p3, X48 p4, X49 p5, X50 p6, X51 p7, X52 p8, X53 p9, X54 p10) { } void I45.dummy() { } }\ninterface I46 { void dummy(); }; class Impl46 : I46 { public Impl46(X46 p1, X47 p2, X48 p3, X49 p4, X50 p5, X51 p6, X52 p7, X53 p8, X54 p9, X55 p10) { } void I46.dummy() { } }\ninterface I47 { void dummy(); }; class Impl47 : I47 { public Impl47(X47 p1, X48 p2, X49 p3, X50 p4, X51 p5, X52 p6, X53 p7, X54 p8, X55 p9, X56 p10) { } void I47.dummy() { } }\ninterface I48 { void dummy(); }; class Impl48 : I48 { public Impl48(X48 p1, X49 p2, X50 p3, X51 p4, X52 p5, X53 p6, X54 p7, X55 p8, X56 p9, X57 p10) { } void I48.dummy() { } }\ninterface I49 { void dummy(); }; class Impl49 : I49 { public Impl49(X49 p1, X50 p2, X51 p3, X52 p4, X53 p5, X54 p6, X55 p7, X56 p8, X57 p9, X58 p10) { } void I49.dummy() { } }\ninterface I50 { void dummy(); }; class Impl50 : I50 { public Impl50(X50 p1, X51 p2, X52 p3, X53 p4, X54 p5, X55 p6, X56 p7, X57 p8, X58 p9, X59 p10) { } void I50.dummy() { } }\ninterface I51 { void dummy(); }; class Impl51 : I51 { public Impl51(X51 p1, X52 p2, X53 p3, X54 p4, X55 p5, X56 p6, X57 p7, X58 p8, X59 p9, X60 p10) { } void I51.dummy() { } }\ninterface I52 { void dummy(); }; class Impl52 : I52 { public Impl52(X52 p1, X53 p2, X54 p3, X55 p4, X56 p5, X57 p6, X58 p7, X59 p8, X60 p9, X61 p10) { } void I52.dummy() { } }\ninterface I53 { void dummy(); }; class Impl53 : I53 { public Impl53(X53 p1, X54 p2, X55 p3, X56 p4, X57 p5, X58 p6, X59 p7, X60 p8, X61 p9, X62 p10) { } void I53.dummy() { } }\ninterface I54 { void dummy(); }; class Impl54 : I54 { public Impl54(X54 p1, X55 p2, X56 p3, X57 p4, X58 p5, X59 p6, X60 p7, X61 p8, X62 p9, X63 p10) { } void I54.dummy() { } }\ninterface I55 { void dummy(); }; class Impl55 : I55 { public Impl55(X55 p1, X56 p2, X57 p3, X58 p4, X59 p5, X60 p6, X61 p7, X62 p8, X63 p9, X64 p10) { } void I55.dummy() { } }\ninterface I56 { void dummy(); }; class Impl56 : I56 { public Impl56(X56 p1, X57 p2, X58 p3, X59 p4, X60 p5, X61 p6, X62 p7, X63 p8, X64 p9, X65 p10) { } void I56.dummy() { } }\ninterface I57 { void dummy(); }; class Impl57 : I57 { public Impl57(X57 p1, X58 p2, X59 p3, X60 p4, X61 p5, X62 p6, X63 p7, X64 p8, X65 p9, X66 p10) { } void I57.dummy() { } }\ninterface I58 { void dummy(); }; class Impl58 : I58 { public Impl58(X58 p1, X59 p2, X60 p3, X61 p4, X62 p5, X63 p6, X64 p7, X65 p8, X66 p9, X67 p10) { } void I58.dummy() { } }\ninterface I59 { void dummy(); }; class Impl59 : I59 { public Impl59(X59 p1, X60 p2, X61 p3, X62 p4, X63 p5, X64 p6, X65 p7, X66 p8, X67 p9, X68 p10) { } void I59.dummy() { } }\ninterface I60 { void dummy(); }; class Impl60 : I60 { public Impl60(X60 p1, X61 p2, X62 p3, X63 p4, X64 p5, X65 p6, X66 p7, X67 p8, X68 p9, X69 p10) { } void I60.dummy() { } }\ninterface I61 { void dummy(); }; class Impl61 : I61 { public Impl61(X61 p1, X62 p2, X63 p3, X64 p4, X65 p5, X66 p6, X67 p7, X68 p8, X69 p9, X70 p10) { } void I61.dummy() { } }\ninterface I62 { void dummy(); }; class Impl62 : I62 { public Impl62(X62 p1, X63 p2, X64 p3, X65 p4, X66 p5, X67 p6, X68 p7, X69 p8, X70 p9, X71 p10) { } void I62.dummy() { } }\ninterface I63 { void dummy(); }; class Impl63 : I63 { public Impl63(X63 p1, X64 p2, X65 p3, X66 p4, X67 p5, X68 p6, X69 p7, X70 p8, X71 p9, X72 p10) { } void I63.dummy() { } }\ninterface I64 { void dummy(); }; class Impl64 : I64 { public Impl64(X64 p1, X65 p2, X66 p3, X67 p4, X68 p5, X69 p6, X70 p7, X71 p8, X72 p9, X73 p10) { } void I64.dummy() { } }\ninterface I65 { void dummy(); }; class Impl65 : I65 { public Impl65(X65 p1, X66 p2, X67 p3, X68 p4, X69 p5, X70 p6, X71 p7, X72 p8, X73 p9, X74 p10) { } void I65.dummy() { } }\ninterface I66 { void dummy(); }; class Impl66 : I66 { public Impl66(X66 p1, X67 p2, X68 p3, X69 p4, X70 p5, X71 p6, X72 p7, X73 p8, X74 p9, X75 p10) { } void I66.dummy() { } }\ninterface I67 { void dummy(); }; class Impl67 : I67 { public Impl67(X67 p1, X68 p2, X69 p3, X70 p4, X71 p5, X72 p6, X73 p7, X74 p8, X75 p9, X76 p10) { } void I67.dummy() { } }\ninterface I68 { void dummy(); }; class Impl68 : I68 { public Impl68(X68 p1, X69 p2, X70 p3, X71 p4, X72 p5, X73 p6, X74 p7, X75 p8, X76 p9, X77 p10) { } void I68.dummy() { } }\ninterface I69 { void dummy(); }; class Impl69 : I69 { public Impl69(X69 p1, X70 p2, X71 p3, X72 p4, X73 p5, X74 p6, X75 p7, X76 p8, X77 p9, X78 p10) { } void I69.dummy() { } }\ninterface I70 { void dummy(); }; class Impl70 : I70 { public Impl70(X70 p1, X71 p2, X72 p3, X73 p4, X74 p5, X75 p6, X76 p7, X77 p8, X78 p9, X79 p10) { } void I70.dummy() { } }\ninterface I71 { void dummy(); }; class Impl71 : I71 { public Impl71(X71 p1, X72 p2, X73 p3, X74 p4, X75 p5, X76 p6, X77 p7, X78 p8, X79 p9, X80 p10) { } void I71.dummy() { } }\ninterface I72 { void dummy(); }; class Impl72 : I72 { public Impl72(X72 p1, X73 p2, X74 p3, X75 p4, X76 p5, X77 p6, X78 p7, X79 p8, X80 p9, X81 p10) { } void I72.dummy() { } }\ninterface I73 { void dummy(); }; class Impl73 : I73 { public Impl73(X73 p1, X74 p2, X75 p3, X76 p4, X77 p5, X78 p6, X79 p7, X80 p8, X81 p9, X82 p10) { } void I73.dummy() { } }\ninterface I74 { void dummy(); }; class Impl74 : I74 { public Impl74(X74 p1, X75 p2, X76 p3, X77 p4, X78 p5, X79 p6, X80 p7, X81 p8, X82 p9, X83 p10) { } void I74.dummy() { } }\ninterface I75 { void dummy(); }; class Impl75 : I75 { public Impl75(X75 p1, X76 p2, X77 p3, X78 p4, X79 p5, X80 p6, X81 p7, X82 p8, X83 p9, X84 p10) { } void I75.dummy() { } }\ninterface I76 { void dummy(); }; class Impl76 : I76 { public Impl76(X76 p1, X77 p2, X78 p3, X79 p4, X80 p5, X81 p6, X82 p7, X83 p8, X84 p9, X85 p10) { } void I76.dummy() { } }\ninterface I77 { void dummy(); }; class Impl77 : I77 { public Impl77(X77 p1, X78 p2, X79 p3, X80 p4, X81 p5, X82 p6, X83 p7, X84 p8, X85 p9, X86 p10) { } void I77.dummy() { } }\ninterface I78 { void dummy(); }; class Impl78 : I78 { public Impl78(X78 p1, X79 p2, X80 p3, X81 p4, X82 p5, X83 p6, X84 p7, X85 p8, X86 p9, X87 p10) { } void I78.dummy() { } }\ninterface I79 { void dummy(); }; class Impl79 : I79 { public Impl79(X79 p1, X80 p2, X81 p3, X82 p4, X83 p5, X84 p6, X85 p7, X86 p8, X87 p9, X88 p10) { } void I79.dummy() { } }\ninterface I80 { void dummy(); }; class Impl80 : I80 { public Impl80(X80 p1, X81 p2, X82 p3, X83 p4, X84 p5, X85 p6, X86 p7, X87 p8, X88 p9, X89 p10) { } void I80.dummy() { } }\ninterface I81 { void dummy(); }; class Impl81 : I81 { public Impl81(X81 p1, X82 p2, X83 p3, X84 p4, X85 p5, X86 p6, X87 p7, X88 p8, X89 p9, X90 p10) { } void I81.dummy() { } }\ninterface I82 { void dummy(); }; class Impl82 : I82 { public Impl82(X82 p1, X83 p2, X84 p3, X85 p4, X86 p5, X87 p6, X88 p7, X89 p8, X90 p9, X91 p10) { } void I82.dummy() { } }\ninterface I83 { void dummy(); }; class Impl83 : I83 { public Impl83(X83 p1, X84 p2, X85 p3, X86 p4, X87 p5, X88 p6, X89 p7, X90 p8, X91 p9, X92 p10) { } void I83.dummy() { } }\ninterface I84 { void dummy(); }; class Impl84 : I84 { public Impl84(X84 p1, X85 p2, X86 p3, X87 p4, X88 p5, X89 p6, X90 p7, X91 p8, X92 p9, X93 p10) { } void I84.dummy() { } }\ninterface I85 { void dummy(); }; class Impl85 : I85 { public Impl85(X85 p1, X86 p2, X87 p3, X88 p4, X89 p5, X90 p6, X91 p7, X92 p8, X93 p9, X94 p10) { } void I85.dummy() { } }\ninterface I86 { void dummy(); }; class Impl86 : I86 { public Impl86(X86 p1, X87 p2, X88 p3, X89 p4, X90 p5, X91 p6, X92 p7, X93 p8, X94 p9, X95 p10) { } void I86.dummy() { } }\ninterface I87 { void dummy(); }; class Impl87 : I87 { public Impl87(X87 p1, X88 p2, X89 p3, X90 p4, X91 p5, X92 p6, X93 p7, X94 p8, X95 p9, X96 p10) { } void I87.dummy() { } }\ninterface I88 { void dummy(); }; class Impl88 : I88 { public Impl88(X88 p1, X89 p2, X90 p3, X91 p4, X92 p5, X93 p6, X94 p7, X95 p8, X96 p9, X97 p10) { } void I88.dummy() { } }\ninterface I89 { void dummy(); }; class Impl89 : I89 { public Impl89(X89 p1, X90 p2, X91 p3, X92 p4, X93 p5, X94 p6, X95 p7, X96 p8, X97 p9, X98 p10) { } void I89.dummy() { } }\ninterface I90 { void dummy(); }; class Impl90 : I90 { public Impl90(X90 p1, X91 p2, X92 p3, X93 p4, X94 p5, X95 p6, X96 p7, X97 p8, X98 p9, X99 p10) { } void I90.dummy() { } }\ninterface I91 { void dummy(); }; class Impl91 : I91 { public Impl91(X91 p1, X92 p2, X93 p3, X94 p4, X95 p5, X96 p6, X97 p7, X98 p8, X99 p9, X00 p10) { } void I91.dummy() { } }\ninterface I92 { void dummy(); }; class Impl92 : I92 { public Impl92(X92 p1, X93 p2, X94 p3, X95 p4, X96 p5, X97 p6, X98 p7, X99 p8, X00 p9, X01 p10) { } void I92.dummy() { } }\ninterface I93 { void dummy(); }; class Impl93 : I93 { public Impl93(X93 p1, X94 p2, X95 p3, X96 p4, X97 p5, X98 p6, X99 p7, X00 p8, X01 p9, X02 p10) { } void I93.dummy() { } }\ninterface I94 { void dummy(); }; class Impl94 : I94 { public Impl94(X94 p1, X95 p2, X96 p3, X97 p4, X98 p5, X99 p6, X00 p7, X01 p8, X02 p9, X03 p10) { } void I94.dummy() { } }\ninterface I95 { void dummy(); }; class Impl95 : I95 { public Impl95(X95 p1, X96 p2, X97 p3, X98 p4, X99 p5, X00 p6, X01 p7, X02 p8, X03 p9, X04 p10) { } void I95.dummy() { } }\ninterface I96 { void dummy(); }; class Impl96 : I96 { public Impl96(X96 p1, X97 p2, X98 p3, X99 p4, X00 p5, X01 p6, X02 p7, X03 p8, X04 p9, X05 p10) { } void I96.dummy() { } }\ninterface I97 { void dummy(); }; class Impl97 : I97 { public Impl97(X97 p1, X98 p2, X99 p3, X00 p4, X01 p5, X02 p6, X03 p7, X04 p8, X05 p9, X06 p10) { } void I97.dummy() { } }\ninterface I98 { void dummy(); }; class Impl98 : I98 { public Impl98(X98 p1, X99 p2, X00 p3, X01 p4, X02 p5, X03 p6, X04 p7, X05 p8, X06 p9, X07 p10) { } void I98.dummy() { } }\ninterface I99 { void dummy(); }; class Impl99 : I99 { public Impl99(X99 p1, X00 p2, X01 p3, X02 p4, X03 p5, X04 p6, X05 p7, X06 p8, X07 p9, X08 p10) { } void I99.dummy() { } }\nclass C0 { public C0(I00 p1, I01 p2, I02 p3, I03 p4, I04 p5, I05 p6, I06 p7, I07 p8, I08 p9, I09 p10) { } }\nclass C1 { public C1(I10 p1, I11 p2, I12 p3, I13 p4, I14 p5, I15 p6, I16 p7, I17 p8, I18 p9, I19 p10) { } }\nclass C2 { public C2(I20 p1, I21 p2, I22 p3, I23 p4, I24 p5, I25 p6, I26 p7, I27 p8, I28 p9, I29 p10) { } }\nclass C3 { public C3(I30 p1, I31 p2, I32 p3, I33 p4, I34 p5, I35 p6, I36 p7, I37 p8, I38 p9, I39 p10) { } }\nclass C4 { public C4(I40 p1, I41 p2, I42 p3, I43 p4, I44 p5, I45 p6, I46 p7, I47 p8, I48 p9, I49 p10) { } }\nclass C5 { public C5(I50 p1, I51 p2, I52 p3, I53 p4, I54 p5, I55 p6, I56 p7, I57 p8, I58 p9, I59 p10) { } }\nclass C6 { public C6(I60 p1, I61 p2, I62 p3, I63 p4, I64 p5, I65 p6, I66 p7, I67 p8, I68 p9, I69 p10) { } }\nclass C7 { public C7(I70 p1, I71 p2, I72 p3, I73 p4, I74 p5, I75 p6, I76 p7, I77 p8, I78 p9, I79 p10) { } }\nclass C8 { public C8(I80 p1, I81 p2, I82 p3, I83 p4, I84 p5, I85 p6, I86 p7, I87 p8, I88 p9, I89 p10) { } }\nclass C9 { public C9(I90 p1, I91 p2, I92 p3, I93 p4, I94 p5, I95 p6, I96 p7, I97 p8, I98 p9, I99 p10) { } }\nclass Complex { public Complex(C0 p1, C1 p2, C2 p3, C3 p4, C4 p5, C5 p6, C6 p7, C7 p8, C8 p9, C9 p10) { } }\n\nclass Module : Ninject.Modules.NinjectModule {\n  public override void Load() {\n    Bind<I00>().To<Impl00>();\n    Bind<I01>().To<Impl01>();\n    Bind<I02>().To<Impl02>();\n    Bind<I03>().To<Impl03>();\n    Bind<I04>().To<Impl04>();\n    Bind<I05>().To<Impl05>();\n    Bind<I06>().To<Impl06>();\n    Bind<I07>().To<Impl07>();\n    Bind<I08>().To<Impl08>();\n    Bind<I09>().To<Impl09>();\n    Bind<I10>().To<Impl10>();\n    Bind<I11>().To<Impl11>();\n    Bind<I12>().To<Impl12>();\n    Bind<I13>().To<Impl13>();\n    Bind<I14>().To<Impl14>();\n    Bind<I15>().To<Impl15>();\n    Bind<I16>().To<Impl16>();\n    Bind<I17>().To<Impl17>();\n    Bind<I18>().To<Impl18>();\n    Bind<I19>().To<Impl19>();\n    Bind<I20>().To<Impl20>();\n    Bind<I21>().To<Impl21>();\n    Bind<I22>().To<Impl22>();\n    Bind<I23>().To<Impl23>();\n    Bind<I24>().To<Impl24>();\n    Bind<I25>().To<Impl25>();\n    Bind<I26>().To<Impl26>();\n    Bind<I27>().To<Impl27>();\n    Bind<I28>().To<Impl28>();\n    Bind<I29>().To<Impl29>();\n    Bind<I30>().To<Impl30>();\n    Bind<I31>().To<Impl31>();\n    Bind<I32>().To<Impl32>();\n    Bind<I33>().To<Impl33>();\n    Bind<I34>().To<Impl34>();\n    Bind<I35>().To<Impl35>();\n    Bind<I36>().To<Impl36>();\n    Bind<I37>().To<Impl37>();\n    Bind<I38>().To<Impl38>();\n    Bind<I39>().To<Impl39>();\n    Bind<I40>().To<Impl40>();\n    Bind<I41>().To<Impl41>();\n    Bind<I42>().To<Impl42>();\n    Bind<I43>().To<Impl43>();\n    Bind<I44>().To<Impl44>();\n    Bind<I45>().To<Impl45>();\n    Bind<I46>().To<Impl46>();\n    Bind<I47>().To<Impl47>();\n    Bind<I48>().To<Impl48>();\n    Bind<I49>().To<Impl49>();\n    Bind<I50>().To<Impl50>();\n    Bind<I51>().To<Impl51>();\n    Bind<I52>().To<Impl52>();\n    Bind<I53>().To<Impl53>();\n    Bind<I54>().To<Impl54>();\n    Bind<I55>().To<Impl55>();\n    Bind<I56>().To<Impl56>();\n    Bind<I57>().To<Impl57>();\n    Bind<I58>().To<Impl58>();\n    Bind<I59>().To<Impl59>();\n    Bind<I60>().To<Impl60>();\n    Bind<I61>().To<Impl61>();\n    Bind<I62>().To<Impl62>();\n    Bind<I63>().To<Impl63>();\n    Bind<I64>().To<Impl64>();\n    Bind<I65>().To<Impl65>();\n    Bind<I66>().To<Impl66>();\n    Bind<I67>().To<Impl67>();\n    Bind<I68>().To<Impl68>();\n    Bind<I69>().To<Impl69>();\n    Bind<I70>().To<Impl70>();\n    Bind<I71>().To<Impl71>();\n    Bind<I72>().To<Impl72>();\n    Bind<I73>().To<Impl73>();\n    Bind<I74>().To<Impl74>();\n    Bind<I75>().To<Impl75>();\n    Bind<I76>().To<Impl76>();\n    Bind<I77>().To<Impl77>();\n    Bind<I78>().To<Impl78>();\n    Bind<I79>().To<Impl79>();\n    Bind<I80>().To<Impl80>();\n    Bind<I81>().To<Impl81>();\n    Bind<I82>().To<Impl82>();\n    Bind<I83>().To<Impl83>();\n    Bind<I84>().To<Impl84>();\n    Bind<I85>().To<Impl85>();\n    Bind<I86>().To<Impl86>();\n    Bind<I87>().To<Impl87>();\n    Bind<I88>().To<Impl88>();\n    Bind<I89>().To<Impl89>();\n    Bind<I90>().To<Impl90>();\n    Bind<I91>().To<Impl91>();\n    Bind<I92>().To<Impl92>();\n    Bind<I93>().To<Impl93>();\n    Bind<I94>().To<Impl94>();\n    Bind<I95>().To<Impl95>();\n    Bind<I96>().To<Impl96>();\n    Bind<I97>().To<Impl97>();\n    Bind<I98>().To<Impl98>();\n    Bind<I99>().To<Impl99>();\n  }\n}\n\nclass ninject {\n  static void Main(string[] args) {\n    Ninject.IKernel kernel = new StandardKernel(new Module());\n    kernel.Get<Complex>();\n  }\n}\n"
  },
  {
    "path": "benchmark/create_simple/dagger2.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport javax.inject.Inject;\nimport dagger.*;\n\nclass X00 { @Inject X00() { } }\nclass X01 { @Inject X01(X00 p1) { } }\nclass X02 { @Inject X02(X00 p1, X01 p2) { } }\nclass X03 { @Inject X03(X00 p1, X01 p2, X02 p3) { } }\nclass X04 { @Inject X04(X00 p1, X01 p2, X02 p3, X03 p4) { } }\nclass X05 { @Inject X05(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5) { } }\nclass X06 { @Inject X06(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6) { } }\nclass X07 { @Inject X07(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7) { } }\nclass X08 { @Inject X08(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8) { } }\nclass X09 { @Inject X09(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9) { } }\nclass X10 { @Inject X10(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9, X09 p10) { } }\nclass X11 { @Inject X11(X01 p1, X02 p2, X03 p3, X04 p4, X05 p5, X06 p6, X07 p7, X08 p8, X09 p9, X10 p10) { } }\nclass X12 { @Inject X12(X02 p1, X03 p2, X04 p3, X05 p4, X06 p5, X07 p6, X08 p7, X09 p8, X10 p9, X11 p10) { } }\nclass X13 { @Inject X13(X03 p1, X04 p2, X05 p3, X06 p4, X07 p5, X08 p6, X09 p7, X10 p8, X11 p9, X12 p10) { } }\nclass X14 { @Inject X14(X04 p1, X05 p2, X06 p3, X07 p4, X08 p5, X09 p6, X10 p7, X11 p8, X12 p9, X13 p10) { } }\nclass X15 { @Inject X15(X05 p1, X06 p2, X07 p3, X08 p4, X09 p5, X10 p6, X11 p7, X12 p8, X13 p9, X14 p10) { } }\nclass X16 { @Inject X16(X06 p1, X07 p2, X08 p3, X09 p4, X10 p5, X11 p6, X12 p7, X13 p8, X14 p9, X15 p10) { } }\nclass X17 { @Inject X17(X07 p1, X08 p2, X09 p3, X10 p4, X11 p5, X12 p6, X13 p7, X14 p8, X15 p9, X16 p10) { } }\nclass X18 { @Inject X18(X08 p1, X09 p2, X10 p3, X11 p4, X12 p5, X13 p6, X14 p7, X15 p8, X16 p9, X17 p10) { } }\nclass X19 { @Inject X19(X09 p1, X10 p2, X11 p3, X12 p4, X13 p5, X14 p6, X15 p7, X16 p8, X17 p9, X18 p10) { } }\nclass X20 { @Inject X20(X10 p1, X11 p2, X12 p3, X13 p4, X14 p5, X15 p6, X16 p7, X17 p8, X18 p9, X19 p10) { } }\nclass X21 { @Inject X21(X11 p1, X12 p2, X13 p3, X14 p4, X15 p5, X16 p6, X17 p7, X18 p8, X19 p9, X20 p10) { } }\nclass X22 { @Inject X22(X12 p1, X13 p2, X14 p3, X15 p4, X16 p5, X17 p6, X18 p7, X19 p8, X20 p9, X21 p10) { } }\nclass X23 { @Inject X23(X13 p1, X14 p2, X15 p3, X16 p4, X17 p5, X18 p6, X19 p7, X20 p8, X21 p9, X22 p10) { } }\nclass X24 { @Inject X24(X14 p1, X15 p2, X16 p3, X17 p4, X18 p5, X19 p6, X20 p7, X21 p8, X22 p9, X23 p10) { } }\nclass X25 { @Inject X25(X15 p1, X16 p2, X17 p3, X18 p4, X19 p5, X20 p6, X21 p7, X22 p8, X23 p9, X24 p10) { } }\nclass X26 { @Inject X26(X16 p1, X17 p2, X18 p3, X19 p4, X20 p5, X21 p6, X22 p7, X23 p8, X24 p9, X25 p10) { } }\nclass X27 { @Inject X27(X17 p1, X18 p2, X19 p3, X20 p4, X21 p5, X22 p6, X23 p7, X24 p8, X25 p9, X26 p10) { } }\nclass X28 { @Inject X28(X18 p1, X19 p2, X20 p3, X21 p4, X22 p5, X23 p6, X24 p7, X25 p8, X26 p9, X27 p10) { } }\nclass X29 { @Inject X29(X19 p1, X20 p2, X21 p3, X22 p4, X23 p5, X24 p6, X25 p7, X26 p8, X27 p9, X28 p10) { } }\nclass X30 { @Inject X30(X20 p1, X21 p2, X22 p3, X23 p4, X24 p5, X25 p6, X26 p7, X27 p8, X28 p9, X29 p10) { } }\nclass X31 { @Inject X31(X21 p1, X22 p2, X23 p3, X24 p4, X25 p5, X26 p6, X27 p7, X28 p8, X29 p9, X30 p10) { } }\nclass X32 { @Inject X32(X22 p1, X23 p2, X24 p3, X25 p4, X26 p5, X27 p6, X28 p7, X29 p8, X30 p9, X31 p10) { } }\nclass X33 { @Inject X33(X23 p1, X24 p2, X25 p3, X26 p4, X27 p5, X28 p6, X29 p7, X30 p8, X31 p9, X32 p10) { } }\nclass X34 { @Inject X34(X24 p1, X25 p2, X26 p3, X27 p4, X28 p5, X29 p6, X30 p7, X31 p8, X32 p9, X33 p10) { } }\nclass X35 { @Inject X35(X25 p1, X26 p2, X27 p3, X28 p4, X29 p5, X30 p6, X31 p7, X32 p8, X33 p9, X34 p10) { } }\nclass X36 { @Inject X36(X26 p1, X27 p2, X28 p3, X29 p4, X30 p5, X31 p6, X32 p7, X33 p8, X34 p9, X35 p10) { } }\nclass X37 { @Inject X37(X27 p1, X28 p2, X29 p3, X30 p4, X31 p5, X32 p6, X33 p7, X34 p8, X35 p9, X36 p10) { } }\nclass X38 { @Inject X38(X28 p1, X29 p2, X30 p3, X31 p4, X32 p5, X33 p6, X34 p7, X35 p8, X36 p9, X37 p10) { } }\nclass X39 { @Inject X39(X29 p1, X30 p2, X31 p3, X32 p4, X33 p5, X34 p6, X35 p7, X36 p8, X37 p9, X38 p10) { } }\nclass X40 { @Inject X40(X30 p1, X31 p2, X32 p3, X33 p4, X34 p5, X35 p6, X36 p7, X37 p8, X38 p9, X39 p10) { } }\nclass X41 { @Inject X41(X31 p1, X32 p2, X33 p3, X34 p4, X35 p5, X36 p6, X37 p7, X38 p8, X39 p9, X40 p10) { } }\nclass X42 { @Inject X42(X32 p1, X33 p2, X34 p3, X35 p4, X36 p5, X37 p6, X38 p7, X39 p8, X40 p9, X41 p10) { } }\nclass X43 { @Inject X43(X33 p1, X34 p2, X35 p3, X36 p4, X37 p5, X38 p6, X39 p7, X40 p8, X41 p9, X42 p10) { } }\nclass X44 { @Inject X44(X34 p1, X35 p2, X36 p3, X37 p4, X38 p5, X39 p6, X40 p7, X41 p8, X42 p9, X43 p10) { } }\nclass X45 { @Inject X45(X35 p1, X36 p2, X37 p3, X38 p4, X39 p5, X40 p6, X41 p7, X42 p8, X43 p9, X44 p10) { } }\nclass X46 { @Inject X46(X36 p1, X37 p2, X38 p3, X39 p4, X40 p5, X41 p6, X42 p7, X43 p8, X44 p9, X45 p10) { } }\nclass X47 { @Inject X47(X37 p1, X38 p2, X39 p3, X40 p4, X41 p5, X42 p6, X43 p7, X44 p8, X45 p9, X46 p10) { } }\nclass X48 { @Inject X48(X38 p1, X39 p2, X40 p3, X41 p4, X42 p5, X43 p6, X44 p7, X45 p8, X46 p9, X47 p10) { } }\nclass X49 { @Inject X49(X39 p1, X40 p2, X41 p3, X42 p4, X43 p5, X44 p6, X45 p7, X46 p8, X47 p9, X48 p10) { } }\nclass X50 { @Inject X50(X40 p1, X41 p2, X42 p3, X43 p4, X44 p5, X45 p6, X46 p7, X47 p8, X48 p9, X49 p10) { } }\nclass X51 { @Inject X51(X41 p1, X42 p2, X43 p3, X44 p4, X45 p5, X46 p6, X47 p7, X48 p8, X49 p9, X50 p10) { } }\nclass X52 { @Inject X52(X42 p1, X43 p2, X44 p3, X45 p4, X46 p5, X47 p6, X48 p7, X49 p8, X50 p9, X51 p10) { } }\nclass X53 { @Inject X53(X43 p1, X44 p2, X45 p3, X46 p4, X47 p5, X48 p6, X49 p7, X50 p8, X51 p9, X52 p10) { } }\nclass X54 { @Inject X54(X44 p1, X45 p2, X46 p3, X47 p4, X48 p5, X49 p6, X50 p7, X51 p8, X52 p9, X53 p10) { } }\nclass X55 { @Inject X55(X45 p1, X46 p2, X47 p3, X48 p4, X49 p5, X50 p6, X51 p7, X52 p8, X53 p9, X54 p10) { } }\nclass X56 { @Inject X56(X46 p1, X47 p2, X48 p3, X49 p4, X50 p5, X51 p6, X52 p7, X53 p8, X54 p9, X55 p10) { } }\nclass X57 { @Inject X57(X47 p1, X48 p2, X49 p3, X50 p4, X51 p5, X52 p6, X53 p7, X54 p8, X55 p9, X56 p10) { } }\nclass X58 { @Inject X58(X48 p1, X49 p2, X50 p3, X51 p4, X52 p5, X53 p6, X54 p7, X55 p8, X56 p9, X57 p10) { } }\nclass X59 { @Inject X59(X49 p1, X50 p2, X51 p3, X52 p4, X53 p5, X54 p6, X55 p7, X56 p8, X57 p9, X58 p10) { } }\nclass X60 { @Inject X60(X50 p1, X51 p2, X52 p3, X53 p4, X54 p5, X55 p6, X56 p7, X57 p8, X58 p9, X59 p10) { } }\nclass X61 { @Inject X61(X51 p1, X52 p2, X53 p3, X54 p4, X55 p5, X56 p6, X57 p7, X58 p8, X59 p9, X60 p10) { } }\nclass X62 { @Inject X62(X52 p1, X53 p2, X54 p3, X55 p4, X56 p5, X57 p6, X58 p7, X59 p8, X60 p9, X61 p10) { } }\nclass X63 { @Inject X63(X53 p1, X54 p2, X55 p3, X56 p4, X57 p5, X58 p6, X59 p7, X60 p8, X61 p9, X62 p10) { } }\nclass X64 { @Inject X64(X54 p1, X55 p2, X56 p3, X57 p4, X58 p5, X59 p6, X60 p7, X61 p8, X62 p9, X63 p10) { } }\nclass X65 { @Inject X65(X55 p1, X56 p2, X57 p3, X58 p4, X59 p5, X60 p6, X61 p7, X62 p8, X63 p9, X64 p10) { } }\nclass X66 { @Inject X66(X56 p1, X57 p2, X58 p3, X59 p4, X60 p5, X61 p6, X62 p7, X63 p8, X64 p9, X65 p10) { } }\nclass X67 { @Inject X67(X57 p1, X58 p2, X59 p3, X60 p4, X61 p5, X62 p6, X63 p7, X64 p8, X65 p9, X66 p10) { } }\nclass X68 { @Inject X68(X58 p1, X59 p2, X60 p3, X61 p4, X62 p5, X63 p6, X64 p7, X65 p8, X66 p9, X67 p10) { } }\nclass X69 { @Inject X69(X59 p1, X60 p2, X61 p3, X62 p4, X63 p5, X64 p6, X65 p7, X66 p8, X67 p9, X68 p10) { } }\nclass X70 { @Inject X70(X60 p1, X61 p2, X62 p3, X63 p4, X64 p5, X65 p6, X66 p7, X67 p8, X68 p9, X69 p10) { } }\nclass X71 { @Inject X71(X61 p1, X62 p2, X63 p3, X64 p4, X65 p5, X66 p6, X67 p7, X68 p8, X69 p9, X70 p10) { } }\nclass X72 { @Inject X72(X62 p1, X63 p2, X64 p3, X65 p4, X66 p5, X67 p6, X68 p7, X69 p8, X70 p9, X71 p10) { } }\nclass X73 { @Inject X73(X63 p1, X64 p2, X65 p3, X66 p4, X67 p5, X68 p6, X69 p7, X70 p8, X71 p9, X72 p10) { } }\nclass X74 { @Inject X74(X64 p1, X65 p2, X66 p3, X67 p4, X68 p5, X69 p6, X70 p7, X71 p8, X72 p9, X73 p10) { } }\nclass X75 { @Inject X75(X65 p1, X66 p2, X67 p3, X68 p4, X69 p5, X70 p6, X71 p7, X72 p8, X73 p9, X74 p10) { } }\nclass X76 { @Inject X76(X66 p1, X67 p2, X68 p3, X69 p4, X70 p5, X71 p6, X72 p7, X73 p8, X74 p9, X75 p10) { } }\nclass X77 { @Inject X77(X67 p1, X68 p2, X69 p3, X70 p4, X71 p5, X72 p6, X73 p7, X74 p8, X75 p9, X76 p10) { } }\nclass X78 { @Inject X78(X68 p1, X69 p2, X70 p3, X71 p4, X72 p5, X73 p6, X74 p7, X75 p8, X76 p9, X77 p10) { } }\nclass X79 { @Inject X79(X69 p1, X70 p2, X71 p3, X72 p4, X73 p5, X74 p6, X75 p7, X76 p8, X77 p9, X78 p10) { } }\nclass X80 { @Inject X80(X70 p1, X71 p2, X72 p3, X73 p4, X74 p5, X75 p6, X76 p7, X77 p8, X78 p9, X79 p10) { } }\nclass X81 { @Inject X81(X71 p1, X72 p2, X73 p3, X74 p4, X75 p5, X76 p6, X77 p7, X78 p8, X79 p9, X80 p10) { } }\nclass X82 { @Inject X82(X72 p1, X73 p2, X74 p3, X75 p4, X76 p5, X77 p6, X78 p7, X79 p8, X80 p9, X81 p10) { } }\nclass X83 { @Inject X83(X73 p1, X74 p2, X75 p3, X76 p4, X77 p5, X78 p6, X79 p7, X80 p8, X81 p9, X82 p10) { } }\nclass X84 { @Inject X84(X74 p1, X75 p2, X76 p3, X77 p4, X78 p5, X79 p6, X80 p7, X81 p8, X82 p9, X83 p10) { } }\nclass X85 { @Inject X85(X75 p1, X76 p2, X77 p3, X78 p4, X79 p5, X80 p6, X81 p7, X82 p8, X83 p9, X84 p10) { } }\nclass X86 { @Inject X86(X76 p1, X77 p2, X78 p3, X79 p4, X80 p5, X81 p6, X82 p7, X83 p8, X84 p9, X85 p10) { } }\nclass X87 { @Inject X87(X77 p1, X78 p2, X79 p3, X80 p4, X81 p5, X82 p6, X83 p7, X84 p8, X85 p9, X86 p10) { } }\nclass X88 { @Inject X88(X78 p1, X79 p2, X80 p3, X81 p4, X82 p5, X83 p6, X84 p7, X85 p8, X86 p9, X87 p10) { } }\nclass X89 { @Inject X89(X79 p1, X80 p2, X81 p3, X82 p4, X83 p5, X84 p6, X85 p7, X86 p8, X87 p9, X88 p10) { } }\nclass X90 { @Inject X90(X80 p1, X81 p2, X82 p3, X83 p4, X84 p5, X85 p6, X86 p7, X87 p8, X88 p9, X89 p10) { } }\nclass X91 { @Inject X91(X81 p1, X82 p2, X83 p3, X84 p4, X85 p5, X86 p6, X87 p7, X88 p8, X89 p9, X90 p10) { } }\nclass X92 { @Inject X92(X82 p1, X83 p2, X84 p3, X85 p4, X86 p5, X87 p6, X88 p7, X89 p8, X90 p9, X91 p10) { } }\nclass X93 { @Inject X93(X83 p1, X84 p2, X85 p3, X86 p4, X87 p5, X88 p6, X89 p7, X90 p8, X91 p9, X92 p10) { } }\nclass X94 { @Inject X94(X84 p1, X85 p2, X86 p3, X87 p4, X88 p5, X89 p6, X90 p7, X91 p8, X92 p9, X93 p10) { } }\nclass X95 { @Inject X95(X85 p1, X86 p2, X87 p3, X88 p4, X89 p5, X90 p6, X91 p7, X92 p8, X93 p9, X94 p10) { } }\nclass X96 { @Inject X96(X86 p1, X87 p2, X88 p3, X89 p4, X90 p5, X91 p6, X92 p7, X93 p8, X94 p9, X95 p10) { } }\nclass X97 { @Inject X97(X87 p1, X88 p2, X89 p3, X90 p4, X91 p5, X92 p6, X93 p7, X94 p8, X95 p9, X96 p10) { } }\nclass X98 { @Inject X98(X88 p1, X89 p2, X90 p3, X91 p4, X92 p5, X93 p6, X94 p7, X95 p8, X96 p9, X97 p10) { } }\nclass X99 { @Inject X99(X89 p1, X90 p2, X91 p3, X92 p4, X93 p5, X94 p6, X95 p7, X96 p8, X97 p9, X98 p10) { } }\nclass Simple { @Inject Simple(X99 x99, X89 x89, X79 x79, X69 x69, X59 x59, X49 x49, X39 x39, X29 x29, X19 x19, X09 x09) { } }\n\n@Module\nclass AppModule { }\n\n@Component(modules = AppModule.class)\ninterface AppComponent {\n  Simple build();\n}\n\npublic class dagger2 {\n  public static void main(String[] args) {\n    Dagger_AppComponent.create().build();\n  }\n}\n\n"
  },
  {
    "path": "benchmark/create_simple/di.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n// clang-format off\nstruct X00 { BOOST_DI_INJECT(X00) { } };\nstruct X01 { BOOST_DI_INJECT(X01, X00) { } };\nstruct X02 { BOOST_DI_INJECT(X02, X00, X01) { } };\nstruct X03 { BOOST_DI_INJECT(X03, X00, X01, X02) { } };\nstruct X04 { BOOST_DI_INJECT(X04, X00, X01, X02, X03) { } };\nstruct X05 { BOOST_DI_INJECT(X05, X00, X01, X02, X03, X04) { } };\nstruct X06 { BOOST_DI_INJECT(X06, X00, X01, X02, X03, X04, X05) { } };\nstruct X07 { BOOST_DI_INJECT(X07, X00, X01, X02, X03, X04, X05, X06) { } };\nstruct X08 { BOOST_DI_INJECT(X08, X00, X01, X02, X03, X04, X05, X06, X07) { } };\nstruct X09 { BOOST_DI_INJECT(X09, X00, X01, X02, X03, X04, X05, X06, X07, X08) { } };\nstruct X10 { BOOST_DI_INJECT(X10, X00, X01, X02, X03, X04, X05, X06, X07, X08, X09) { } };\nstruct X11 { BOOST_DI_INJECT(X11, X01, X02, X03, X04, X05, X06, X07, X08, X09, X10) { } };\nstruct X12 { BOOST_DI_INJECT(X12, X02, X03, X04, X05, X06, X07, X08, X09, X10, X11) { } };\nstruct X13 { BOOST_DI_INJECT(X13, X03, X04, X05, X06, X07, X08, X09, X10, X11, X12) { } };\nstruct X14 { BOOST_DI_INJECT(X14, X04, X05, X06, X07, X08, X09, X10, X11, X12, X13) { } };\nstruct X15 { BOOST_DI_INJECT(X15, X05, X06, X07, X08, X09, X10, X11, X12, X13, X14) { } };\nstruct X16 { BOOST_DI_INJECT(X16, X06, X07, X08, X09, X10, X11, X12, X13, X14, X15) { } };\nstruct X17 { BOOST_DI_INJECT(X17, X07, X08, X09, X10, X11, X12, X13, X14, X15, X16) { } };\nstruct X18 { BOOST_DI_INJECT(X18, X08, X09, X10, X11, X12, X13, X14, X15, X16, X17) { } };\nstruct X19 { BOOST_DI_INJECT(X19, X09, X10, X11, X12, X13, X14, X15, X16, X17, X18) { } };\nstruct X20 { BOOST_DI_INJECT(X20, X10, X11, X12, X13, X14, X15, X16, X17, X18, X19) { } };\nstruct X21 { BOOST_DI_INJECT(X21, X11, X12, X13, X14, X15, X16, X17, X18, X19, X20) { } };\nstruct X22 { BOOST_DI_INJECT(X22, X12, X13, X14, X15, X16, X17, X18, X19, X20, X21) { } };\nstruct X23 { BOOST_DI_INJECT(X23, X13, X14, X15, X16, X17, X18, X19, X20, X21, X22) { } };\nstruct X24 { BOOST_DI_INJECT(X24, X14, X15, X16, X17, X18, X19, X20, X21, X22, X23) { } };\nstruct X25 { BOOST_DI_INJECT(X25, X15, X16, X17, X18, X19, X20, X21, X22, X23, X24) { } };\nstruct X26 { BOOST_DI_INJECT(X26, X16, X17, X18, X19, X20, X21, X22, X23, X24, X25) { } };\nstruct X27 { BOOST_DI_INJECT(X27, X17, X18, X19, X20, X21, X22, X23, X24, X25, X26) { } };\nstruct X28 { BOOST_DI_INJECT(X28, X18, X19, X20, X21, X22, X23, X24, X25, X26, X27) { } };\nstruct X29 { BOOST_DI_INJECT(X29, X19, X20, X21, X22, X23, X24, X25, X26, X27, X28) { } };\nstruct X30 { BOOST_DI_INJECT(X30, X20, X21, X22, X23, X24, X25, X26, X27, X28, X29) { } };\nstruct X31 { BOOST_DI_INJECT(X31, X21, X22, X23, X24, X25, X26, X27, X28, X29, X30) { } };\nstruct X32 { BOOST_DI_INJECT(X32, X22, X23, X24, X25, X26, X27, X28, X29, X30, X31) { } };\nstruct X33 { BOOST_DI_INJECT(X33, X23, X24, X25, X26, X27, X28, X29, X30, X31, X32) { } };\nstruct X34 { BOOST_DI_INJECT(X34, X24, X25, X26, X27, X28, X29, X30, X31, X32, X33) { } };\nstruct X35 { BOOST_DI_INJECT(X35, X25, X26, X27, X28, X29, X30, X31, X32, X33, X34) { } };\nstruct X36 { BOOST_DI_INJECT(X36, X26, X27, X28, X29, X30, X31, X32, X33, X34, X35) { } };\nstruct X37 { BOOST_DI_INJECT(X37, X27, X28, X29, X30, X31, X32, X33, X34, X35, X36) { } };\nstruct X38 { BOOST_DI_INJECT(X38, X28, X29, X30, X31, X32, X33, X34, X35, X36, X37) { } };\nstruct X39 { BOOST_DI_INJECT(X39, X29, X30, X31, X32, X33, X34, X35, X36, X37, X38) { } };\nstruct X40 { BOOST_DI_INJECT(X40, X30, X31, X32, X33, X34, X35, X36, X37, X38, X39) { } };\nstruct X41 { BOOST_DI_INJECT(X41, X31, X32, X33, X34, X35, X36, X37, X38, X39, X40) { } };\nstruct X42 { BOOST_DI_INJECT(X42, X32, X33, X34, X35, X36, X37, X38, X39, X40, X41) { } };\nstruct X43 { BOOST_DI_INJECT(X43, X33, X34, X35, X36, X37, X38, X39, X40, X41, X42) { } };\nstruct X44 { BOOST_DI_INJECT(X44, X34, X35, X36, X37, X38, X39, X40, X41, X42, X43) { } };\nstruct X45 { BOOST_DI_INJECT(X45, X35, X36, X37, X38, X39, X40, X41, X42, X43, X44) { } };\nstruct X46 { BOOST_DI_INJECT(X46, X36, X37, X38, X39, X40, X41, X42, X43, X44, X45) { } };\nstruct X47 { BOOST_DI_INJECT(X47, X37, X38, X39, X40, X41, X42, X43, X44, X45, X46) { } };\nstruct X48 { BOOST_DI_INJECT(X48, X38, X39, X40, X41, X42, X43, X44, X45, X46, X47) { } };\nstruct X49 { BOOST_DI_INJECT(X49, X39, X40, X41, X42, X43, X44, X45, X46, X47, X48) { } };\nstruct X50 { BOOST_DI_INJECT(X50, X40, X41, X42, X43, X44, X45, X46, X47, X48, X49) { } };\nstruct X51 { BOOST_DI_INJECT(X51, X41, X42, X43, X44, X45, X46, X47, X48, X49, X50) { } };\nstruct X52 { BOOST_DI_INJECT(X52, X42, X43, X44, X45, X46, X47, X48, X49, X50, X51) { } };\nstruct X53 { BOOST_DI_INJECT(X53, X43, X44, X45, X46, X47, X48, X49, X50, X51, X52) { } };\nstruct X54 { BOOST_DI_INJECT(X54, X44, X45, X46, X47, X48, X49, X50, X51, X52, X53) { } };\nstruct X55 { BOOST_DI_INJECT(X55, X45, X46, X47, X48, X49, X50, X51, X52, X53, X54) { } };\nstruct X56 { BOOST_DI_INJECT(X56, X46, X47, X48, X49, X50, X51, X52, X53, X54, X55) { } };\nstruct X57 { BOOST_DI_INJECT(X57, X47, X48, X49, X50, X51, X52, X53, X54, X55, X56) { } };\nstruct X58 { BOOST_DI_INJECT(X58, X48, X49, X50, X51, X52, X53, X54, X55, X56, X57) { } };\nstruct X59 { BOOST_DI_INJECT(X59, X49, X50, X51, X52, X53, X54, X55, X56, X57, X58) { } };\nstruct X60 { BOOST_DI_INJECT(X60, X50, X51, X52, X53, X54, X55, X56, X57, X58, X59) { } };\nstruct X61 { BOOST_DI_INJECT(X61, X51, X52, X53, X54, X55, X56, X57, X58, X59, X60) { } };\nstruct X62 { BOOST_DI_INJECT(X62, X52, X53, X54, X55, X56, X57, X58, X59, X60, X61) { } };\nstruct X63 { BOOST_DI_INJECT(X63, X53, X54, X55, X56, X57, X58, X59, X60, X61, X62) { } };\nstruct X64 { BOOST_DI_INJECT(X64, X54, X55, X56, X57, X58, X59, X60, X61, X62, X63) { } };\nstruct X65 { BOOST_DI_INJECT(X65, X55, X56, X57, X58, X59, X60, X61, X62, X63, X64) { } };\nstruct X66 { BOOST_DI_INJECT(X66, X56, X57, X58, X59, X60, X61, X62, X63, X64, X65) { } };\nstruct X67 { BOOST_DI_INJECT(X67, X57, X58, X59, X60, X61, X62, X63, X64, X65, X66) { } };\nstruct X68 { BOOST_DI_INJECT(X68, X58, X59, X60, X61, X62, X63, X64, X65, X66, X67) { } };\nstruct X69 { BOOST_DI_INJECT(X69, X59, X60, X61, X62, X63, X64, X65, X66, X67, X68) { } };\nstruct X70 { BOOST_DI_INJECT(X70, X60, X61, X62, X63, X64, X65, X66, X67, X68, X69) { } };\nstruct X71 { BOOST_DI_INJECT(X71, X61, X62, X63, X64, X65, X66, X67, X68, X69, X70) { } };\nstruct X72 { BOOST_DI_INJECT(X72, X62, X63, X64, X65, X66, X67, X68, X69, X70, X71) { } };\nstruct X73 { BOOST_DI_INJECT(X73, X63, X64, X65, X66, X67, X68, X69, X70, X71, X72) { } };\nstruct X74 { BOOST_DI_INJECT(X74, X64, X65, X66, X67, X68, X69, X70, X71, X72, X73) { } };\nstruct X75 { BOOST_DI_INJECT(X75, X65, X66, X67, X68, X69, X70, X71, X72, X73, X74) { } };\nstruct X76 { BOOST_DI_INJECT(X76, X66, X67, X68, X69, X70, X71, X72, X73, X74, X75) { } };\nstruct X77 { BOOST_DI_INJECT(X77, X67, X68, X69, X70, X71, X72, X73, X74, X75, X76) { } };\nstruct X78 { BOOST_DI_INJECT(X78, X68, X69, X70, X71, X72, X73, X74, X75, X76, X77) { } };\nstruct X79 { BOOST_DI_INJECT(X79, X69, X70, X71, X72, X73, X74, X75, X76, X77, X78) { } };\nstruct X80 { BOOST_DI_INJECT(X80, X70, X71, X72, X73, X74, X75, X76, X77, X78, X79) { } };\nstruct X81 { BOOST_DI_INJECT(X81, X71, X72, X73, X74, X75, X76, X77, X78, X79, X80) { } };\nstruct X82 { BOOST_DI_INJECT(X82, X72, X73, X74, X75, X76, X77, X78, X79, X80, X81) { } };\nstruct X83 { BOOST_DI_INJECT(X83, X73, X74, X75, X76, X77, X78, X79, X80, X81, X82) { } };\nstruct X84 { BOOST_DI_INJECT(X84, X74, X75, X76, X77, X78, X79, X80, X81, X82, X83) { } };\nstruct X85 { BOOST_DI_INJECT(X85, X75, X76, X77, X78, X79, X80, X81, X82, X83, X84) { } };\nstruct X86 { BOOST_DI_INJECT(X86, X76, X77, X78, X79, X80, X81, X82, X83, X84, X85) { } };\nstruct X87 { BOOST_DI_INJECT(X87, X77, X78, X79, X80, X81, X82, X83, X84, X85, X86) { } };\nstruct X88 { BOOST_DI_INJECT(X88, X78, X79, X80, X81, X82, X83, X84, X85, X86, X87) { } };\nstruct X89 { BOOST_DI_INJECT(X89, X79, X80, X81, X82, X83, X84, X85, X86, X87, X88) { } };\nstruct X90 { BOOST_DI_INJECT(X90, X80, X81, X82, X83, X84, X85, X86, X87, X88, X89) { } };\nstruct X91 { BOOST_DI_INJECT(X91, X81, X82, X83, X84, X85, X86, X87, X88, X89, X90) { } };\nstruct X92 { BOOST_DI_INJECT(X92, X82, X83, X84, X85, X86, X87, X88, X89, X90, X91) { } };\nstruct X93 { BOOST_DI_INJECT(X93, X83, X84, X85, X86, X87, X88, X89, X90, X91, X92) { } };\nstruct X94 { BOOST_DI_INJECT(X94, X84, X85, X86, X87, X88, X89, X90, X91, X92, X93) { } };\nstruct X95 { BOOST_DI_INJECT(X95, X85, X86, X87, X88, X89, X90, X91, X92, X93, X94) { } };\nstruct X96 { BOOST_DI_INJECT(X96, X86, X87, X88, X89, X90, X91, X92, X93, X94, X95) { } };\nstruct X97 { BOOST_DI_INJECT(X97, X87, X88, X89, X90, X91, X92, X93, X94, X95, X96) { } };\nstruct X98 { BOOST_DI_INJECT(X98, X88, X89, X90, X91, X92, X93, X94, X95, X96, X97) { } };\nstruct X99 { BOOST_DI_INJECT(X99, X89, X90, X91, X92, X93, X94, X95, X96, X97, X98) { } };\nstruct Simple { BOOST_DI_INJECT(Simple, X99, X89, X79, X69, X59, X49, X39, X29, X19, X09) { } };\n// clang-format on\n\nauto module = [] { return di::make_injector(); };\n\nint main() {\n  auto injector = module();\n  injector.create<Simple>();\n}\n"
  },
  {
    "path": "benchmark/create_simple/dicpp.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <di/registry.hpp>\n#include <di/injector.hpp>\n#include <di/constructor.hpp>\n\n// clang-format off\nstruct X00 { DI_CONSTRUCTOR(X00, ()) { } };\nstruct X01 { DI_CONSTRUCTOR(X01, (X00)) { } };\nstruct X02 { DI_CONSTRUCTOR(X02, (X00, X01)) { } };\nstruct X03 { DI_CONSTRUCTOR(X03, (X00, X01, X02)) { } };\nstruct X04 { DI_CONSTRUCTOR(X04, (X00, X01, X02, X03)) { } };\nstruct X05 { DI_CONSTRUCTOR(X05, (X00, X01, X02, X03, X04)) { } };\nstruct X06 { DI_CONSTRUCTOR(X06, (X00, X01, X02, X03, X04, X05)) { } };\nstruct X07 { DI_CONSTRUCTOR(X07, (X00, X01, X02, X03, X04, X05, X06)) { } };\nstruct X08 { DI_CONSTRUCTOR(X08, (X00, X01, X02, X03, X04, X05, X06, X07)) { } };\nstruct X09 { DI_CONSTRUCTOR(X09, (X00, X01, X02, X03, X04, X05, X06, X07, X08)) { } };\nstruct X10 { DI_CONSTRUCTOR(X10, (X00, X01, X02, X03, X04, X05, X06, X07, X08, X09)) { } };\nstruct X11 { DI_CONSTRUCTOR(X11, (X01, X02, X03, X04, X05, X06, X07, X08, X09, X10)) { } };\nstruct X12 { DI_CONSTRUCTOR(X12, (X02, X03, X04, X05, X06, X07, X08, X09, X10, X11)) { } };\nstruct X13 { DI_CONSTRUCTOR(X13, (X03, X04, X05, X06, X07, X08, X09, X10, X11, X12)) { } };\nstruct X14 { DI_CONSTRUCTOR(X14, (X04, X05, X06, X07, X08, X09, X10, X11, X12, X13)) { } };\nstruct X15 { DI_CONSTRUCTOR(X15, (X05, X06, X07, X08, X09, X10, X11, X12, X13, X14)) { } };\nstruct X16 { DI_CONSTRUCTOR(X16, (X06, X07, X08, X09, X10, X11, X12, X13, X14, X15)) { } };\nstruct X17 { DI_CONSTRUCTOR(X17, (X07, X08, X09, X10, X11, X12, X13, X14, X15, X16)) { } };\nstruct X18 { DI_CONSTRUCTOR(X18, (X08, X09, X10, X11, X12, X13, X14, X15, X16, X17)) { } };\nstruct X19 { DI_CONSTRUCTOR(X19, (X09, X10, X11, X12, X13, X14, X15, X16, X17, X18)) { } };\nstruct X20 { DI_CONSTRUCTOR(X20, (X10, X11, X12, X13, X14, X15, X16, X17, X18, X19)) { } };\nstruct X21 { DI_CONSTRUCTOR(X21, (X11, X12, X13, X14, X15, X16, X17, X18, X19, X20)) { } };\nstruct X22 { DI_CONSTRUCTOR(X22, (X12, X13, X14, X15, X16, X17, X18, X19, X20, X21)) { } };\nstruct X23 { DI_CONSTRUCTOR(X23, (X13, X14, X15, X16, X17, X18, X19, X20, X21, X22)) { } };\nstruct X24 { DI_CONSTRUCTOR(X24, (X14, X15, X16, X17, X18, X19, X20, X21, X22, X23)) { } };\nstruct X25 { DI_CONSTRUCTOR(X25, (X15, X16, X17, X18, X19, X20, X21, X22, X23, X24)) { } };\nstruct X26 { DI_CONSTRUCTOR(X26, (X16, X17, X18, X19, X20, X21, X22, X23, X24, X25)) { } };\nstruct X27 { DI_CONSTRUCTOR(X27, (X17, X18, X19, X20, X21, X22, X23, X24, X25, X26)) { } };\nstruct X28 { DI_CONSTRUCTOR(X28, (X18, X19, X20, X21, X22, X23, X24, X25, X26, X27)) { } };\nstruct X29 { DI_CONSTRUCTOR(X29, (X19, X20, X21, X22, X23, X24, X25, X26, X27, X28)) { } };\nstruct X30 { DI_CONSTRUCTOR(X30, (X20, X21, X22, X23, X24, X25, X26, X27, X28, X29)) { } };\nstruct X31 { DI_CONSTRUCTOR(X31, (X21, X22, X23, X24, X25, X26, X27, X28, X29, X30)) { } };\nstruct X32 { DI_CONSTRUCTOR(X32, (X22, X23, X24, X25, X26, X27, X28, X29, X30, X31)) { } };\nstruct X33 { DI_CONSTRUCTOR(X33, (X23, X24, X25, X26, X27, X28, X29, X30, X31, X32)) { } };\nstruct X34 { DI_CONSTRUCTOR(X34, (X24, X25, X26, X27, X28, X29, X30, X31, X32, X33)) { } };\nstruct X35 { DI_CONSTRUCTOR(X35, (X25, X26, X27, X28, X29, X30, X31, X32, X33, X34)) { } };\nstruct X36 { DI_CONSTRUCTOR(X36, (X26, X27, X28, X29, X30, X31, X32, X33, X34, X35)) { } };\nstruct X37 { DI_CONSTRUCTOR(X37, (X27, X28, X29, X30, X31, X32, X33, X34, X35, X36)) { } };\nstruct X38 { DI_CONSTRUCTOR(X38, (X28, X29, X30, X31, X32, X33, X34, X35, X36, X37)) { } };\nstruct X39 { DI_CONSTRUCTOR(X39, (X29, X30, X31, X32, X33, X34, X35, X36, X37, X38)) { } };\nstruct X40 { DI_CONSTRUCTOR(X40, (X30, X31, X32, X33, X34, X35, X36, X37, X38, X39)) { } };\nstruct X41 { DI_CONSTRUCTOR(X41, (X31, X32, X33, X34, X35, X36, X37, X38, X39, X40)) { } };\nstruct X42 { DI_CONSTRUCTOR(X42, (X32, X33, X34, X35, X36, X37, X38, X39, X40, X41)) { } };\nstruct X43 { DI_CONSTRUCTOR(X43, (X33, X34, X35, X36, X37, X38, X39, X40, X41, X42)) { } };\nstruct X44 { DI_CONSTRUCTOR(X44, (X34, X35, X36, X37, X38, X39, X40, X41, X42, X43)) { } };\nstruct X45 { DI_CONSTRUCTOR(X45, (X35, X36, X37, X38, X39, X40, X41, X42, X43, X44)) { } };\nstruct X46 { DI_CONSTRUCTOR(X46, (X36, X37, X38, X39, X40, X41, X42, X43, X44, X45)) { } };\nstruct X47 { DI_CONSTRUCTOR(X47, (X37, X38, X39, X40, X41, X42, X43, X44, X45, X46)) { } };\nstruct X48 { DI_CONSTRUCTOR(X48, (X38, X39, X40, X41, X42, X43, X44, X45, X46, X47)) { } };\nstruct X49 { DI_CONSTRUCTOR(X49, (X39, X40, X41, X42, X43, X44, X45, X46, X47, X48)) { } };\nstruct X50 { DI_CONSTRUCTOR(X50, (X40, X41, X42, X43, X44, X45, X46, X47, X48, X49)) { } };\nstruct X51 { DI_CONSTRUCTOR(X51, (X41, X42, X43, X44, X45, X46, X47, X48, X49, X50)) { } };\nstruct X52 { DI_CONSTRUCTOR(X52, (X42, X43, X44, X45, X46, X47, X48, X49, X50, X51)) { } };\nstruct X53 { DI_CONSTRUCTOR(X53, (X43, X44, X45, X46, X47, X48, X49, X50, X51, X52)) { } };\nstruct X54 { DI_CONSTRUCTOR(X54, (X44, X45, X46, X47, X48, X49, X50, X51, X52, X53)) { } };\nstruct X55 { DI_CONSTRUCTOR(X55, (X45, X46, X47, X48, X49, X50, X51, X52, X53, X54)) { } };\nstruct X56 { DI_CONSTRUCTOR(X56, (X46, X47, X48, X49, X50, X51, X52, X53, X54, X55)) { } };\nstruct X57 { DI_CONSTRUCTOR(X57, (X47, X48, X49, X50, X51, X52, X53, X54, X55, X56)) { } };\nstruct X58 { DI_CONSTRUCTOR(X58, (X48, X49, X50, X51, X52, X53, X54, X55, X56, X57)) { } };\nstruct X59 { DI_CONSTRUCTOR(X59, (X49, X50, X51, X52, X53, X54, X55, X56, X57, X58)) { } };\nstruct X60 { DI_CONSTRUCTOR(X60, (X50, X51, X52, X53, X54, X55, X56, X57, X58, X59)) { } };\nstruct X61 { DI_CONSTRUCTOR(X61, (X51, X52, X53, X54, X55, X56, X57, X58, X59, X60)) { } };\nstruct X62 { DI_CONSTRUCTOR(X62, (X52, X53, X54, X55, X56, X57, X58, X59, X60, X61)) { } };\nstruct X63 { DI_CONSTRUCTOR(X63, (X53, X54, X55, X56, X57, X58, X59, X60, X61, X62)) { } };\nstruct X64 { DI_CONSTRUCTOR(X64, (X54, X55, X56, X57, X58, X59, X60, X61, X62, X63)) { } };\nstruct X65 { DI_CONSTRUCTOR(X65, (X55, X56, X57, X58, X59, X60, X61, X62, X63, X64)) { } };\nstruct X66 { DI_CONSTRUCTOR(X66, (X56, X57, X58, X59, X60, X61, X62, X63, X64, X65)) { } };\nstruct X67 { DI_CONSTRUCTOR(X67, (X57, X58, X59, X60, X61, X62, X63, X64, X65, X66)) { } };\nstruct X68 { DI_CONSTRUCTOR(X68, (X58, X59, X60, X61, X62, X63, X64, X65, X66, X67)) { } };\nstruct X69 { DI_CONSTRUCTOR(X69, (X59, X60, X61, X62, X63, X64, X65, X66, X67, X68)) { } };\nstruct X70 { DI_CONSTRUCTOR(X70, (X60, X61, X62, X63, X64, X65, X66, X67, X68, X69)) { } };\nstruct X71 { DI_CONSTRUCTOR(X71, (X61, X62, X63, X64, X65, X66, X67, X68, X69, X70)) { } };\nstruct X72 { DI_CONSTRUCTOR(X72, (X62, X63, X64, X65, X66, X67, X68, X69, X70, X71)) { } };\nstruct X73 { DI_CONSTRUCTOR(X73, (X63, X64, X65, X66, X67, X68, X69, X70, X71, X72)) { } };\nstruct X74 { DI_CONSTRUCTOR(X74, (X64, X65, X66, X67, X68, X69, X70, X71, X72, X73)) { } };\nstruct X75 { DI_CONSTRUCTOR(X75, (X65, X66, X67, X68, X69, X70, X71, X72, X73, X74)) { } };\nstruct X76 { DI_CONSTRUCTOR(X76, (X66, X67, X68, X69, X70, X71, X72, X73, X74, X75)) { } };\nstruct X77 { DI_CONSTRUCTOR(X77, (X67, X68, X69, X70, X71, X72, X73, X74, X75, X76)) { } };\nstruct X78 { DI_CONSTRUCTOR(X78, (X68, X69, X70, X71, X72, X73, X74, X75, X76, X77)) { } };\nstruct X79 { DI_CONSTRUCTOR(X79, (X69, X70, X71, X72, X73, X74, X75, X76, X77, X78)) { } };\nstruct X80 { DI_CONSTRUCTOR(X80, (X70, X71, X72, X73, X74, X75, X76, X77, X78, X79)) { } };\nstruct X81 { DI_CONSTRUCTOR(X81, (X71, X72, X73, X74, X75, X76, X77, X78, X79, X80)) { } };\nstruct X82 { DI_CONSTRUCTOR(X82, (X72, X73, X74, X75, X76, X77, X78, X79, X80, X81)) { } };\nstruct X83 { DI_CONSTRUCTOR(X83, (X73, X74, X75, X76, X77, X78, X79, X80, X81, X82)) { } };\nstruct X84 { DI_CONSTRUCTOR(X84, (X74, X75, X76, X77, X78, X79, X80, X81, X82, X83)) { } };\nstruct X85 { DI_CONSTRUCTOR(X85, (X75, X76, X77, X78, X79, X80, X81, X82, X83, X84)) { } };\nstruct X86 { DI_CONSTRUCTOR(X86, (X76, X77, X78, X79, X80, X81, X82, X83, X84, X85)) { } };\nstruct X87 { DI_CONSTRUCTOR(X87, (X77, X78, X79, X80, X81, X82, X83, X84, X85, X86)) { } };\nstruct X88 { DI_CONSTRUCTOR(X88, (X78, X79, X80, X81, X82, X83, X84, X85, X86, X87)) { } };\nstruct X89 { DI_CONSTRUCTOR(X89, (X79, X80, X81, X82, X83, X84, X85, X86, X87, X88)) { } };\nstruct X90 { DI_CONSTRUCTOR(X90, (X80, X81, X82, X83, X84, X85, X86, X87, X88, X89)) { } };\nstruct X91 { DI_CONSTRUCTOR(X91, (X81, X82, X83, X84, X85, X86, X87, X88, X89, X90)) { } };\nstruct X92 { DI_CONSTRUCTOR(X92, (X82, X83, X84, X85, X86, X87, X88, X89, X90, X91)) { } };\nstruct X93 { DI_CONSTRUCTOR(X93, (X83, X84, X85, X86, X87, X88, X89, X90, X91, X92)) { } };\nstruct X94 { DI_CONSTRUCTOR(X94, (X84, X85, X86, X87, X88, X89, X90, X91, X92, X93)) { } };\nstruct X95 { DI_CONSTRUCTOR(X95, (X85, X86, X87, X88, X89, X90, X91, X92, X93, X94)) { } };\nstruct X96 { DI_CONSTRUCTOR(X96, (X86, X87, X88, X89, X90, X91, X92, X93, X94, X95)) { } };\nstruct X97 { DI_CONSTRUCTOR(X97, (X87, X88, X89, X90, X91, X92, X93, X94, X95, X96)) { } };\nstruct X98 { DI_CONSTRUCTOR(X98, (X88, X89, X90, X91, X92, X93, X94, X95, X96, X97)) { } };\nstruct X99 { DI_CONSTRUCTOR(X99, (X89, X90, X91, X92, X93, X94, X95, X96, X97, X98)) { } };\nstruct Simple { DI_CONSTRUCTOR(Simple, (X99, X89, X79, X69, X59, X49, X39, X29, X19, X09)) { } };\n// clang-format on\n\nvoid module(di::registry&) {}\n\nint main() {\n  di::injector injector;\n  injector.install(module);\n  injector.construct<Simple>();\n}\n"
  },
  {
    "path": "benchmark/create_simple/fruit.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <fruit/fruit.h>\n\n// clang-format off\nstruct X00 { INJECT(X00()) { } };\nstruct X01 { INJECT(X01(X00)) { } };\nstruct X02 { INJECT(X02(X00, X01)) { } };\nstruct X03 { INJECT(X03(X00, X01, X02)) { } };\nstruct X04 { INJECT(X04(X00, X01, X02, X03)) { } };\nstruct X05 { INJECT(X05(X00, X01, X02, X03, X04)) { } };\nstruct X06 { INJECT(X06(X00, X01, X02, X03, X04, X05)) { } };\nstruct X07 { INJECT(X07(X00, X01, X02, X03, X04, X05, X06)) { } };\nstruct X08 { INJECT(X08(X00, X01, X02, X03, X04, X05, X06, X07)) { } };\nstruct X09 { INJECT(X09(X00, X01, X02, X03, X04, X05, X06, X07, X08)) { } };\nstruct X10 { INJECT(X10(X00, X01, X02, X03, X04, X05, X06, X07, X08, X09)) { } };\nstruct X11 { INJECT(X11(X01, X02, X03, X04, X05, X06, X07, X08, X09, X10)) { } };\nstruct X12 { INJECT(X12(X02, X03, X04, X05, X06, X07, X08, X09, X10, X11)) { } };\nstruct X13 { INJECT(X13(X03, X04, X05, X06, X07, X08, X09, X10, X11, X12)) { } };\nstruct X14 { INJECT(X14(X04, X05, X06, X07, X08, X09, X10, X11, X12, X13)) { } };\nstruct X15 { INJECT(X15(X05, X06, X07, X08, X09, X10, X11, X12, X13, X14)) { } };\nstruct X16 { INJECT(X16(X06, X07, X08, X09, X10, X11, X12, X13, X14, X15)) { } };\nstruct X17 { INJECT(X17(X07, X08, X09, X10, X11, X12, X13, X14, X15, X16)) { } };\nstruct X18 { INJECT(X18(X08, X09, X10, X11, X12, X13, X14, X15, X16, X17)) { } };\nstruct X19 { INJECT(X19(X09, X10, X11, X12, X13, X14, X15, X16, X17, X18)) { } };\nstruct X20 { INJECT(X20(X10, X11, X12, X13, X14, X15, X16, X17, X18, X19)) { } };\nstruct X21 { INJECT(X21(X11, X12, X13, X14, X15, X16, X17, X18, X19, X20)) { } };\nstruct X22 { INJECT(X22(X12, X13, X14, X15, X16, X17, X18, X19, X20, X21)) { } };\nstruct X23 { INJECT(X23(X13, X14, X15, X16, X17, X18, X19, X20, X21, X22)) { } };\nstruct X24 { INJECT(X24(X14, X15, X16, X17, X18, X19, X20, X21, X22, X23)) { } };\nstruct X25 { INJECT(X25(X15, X16, X17, X18, X19, X20, X21, X22, X23, X24)) { } };\nstruct X26 { INJECT(X26(X16, X17, X18, X19, X20, X21, X22, X23, X24, X25)) { } };\nstruct X27 { INJECT(X27(X17, X18, X19, X20, X21, X22, X23, X24, X25, X26)) { } };\nstruct X28 { INJECT(X28(X18, X19, X20, X21, X22, X23, X24, X25, X26, X27)) { } };\nstruct X29 { INJECT(X29(X19, X20, X21, X22, X23, X24, X25, X26, X27, X28)) { } };\nstruct X30 { INJECT(X30(X20, X21, X22, X23, X24, X25, X26, X27, X28, X29)) { } };\nstruct X31 { INJECT(X31(X21, X22, X23, X24, X25, X26, X27, X28, X29, X30)) { } };\nstruct X32 { INJECT(X32(X22, X23, X24, X25, X26, X27, X28, X29, X30, X31)) { } };\nstruct X33 { INJECT(X33(X23, X24, X25, X26, X27, X28, X29, X30, X31, X32)) { } };\nstruct X34 { INJECT(X34(X24, X25, X26, X27, X28, X29, X30, X31, X32, X33)) { } };\nstruct X35 { INJECT(X35(X25, X26, X27, X28, X29, X30, X31, X32, X33, X34)) { } };\nstruct X36 { INJECT(X36(X26, X27, X28, X29, X30, X31, X32, X33, X34, X35)) { } };\nstruct X37 { INJECT(X37(X27, X28, X29, X30, X31, X32, X33, X34, X35, X36)) { } };\nstruct X38 { INJECT(X38(X28, X29, X30, X31, X32, X33, X34, X35, X36, X37)) { } };\nstruct X39 { INJECT(X39(X29, X30, X31, X32, X33, X34, X35, X36, X37, X38)) { } };\nstruct X40 { INJECT(X40(X30, X31, X32, X33, X34, X35, X36, X37, X38, X39)) { } };\nstruct X41 { INJECT(X41(X31, X32, X33, X34, X35, X36, X37, X38, X39, X40)) { } };\nstruct X42 { INJECT(X42(X32, X33, X34, X35, X36, X37, X38, X39, X40, X41)) { } };\nstruct X43 { INJECT(X43(X33, X34, X35, X36, X37, X38, X39, X40, X41, X42)) { } };\nstruct X44 { INJECT(X44(X34, X35, X36, X37, X38, X39, X40, X41, X42, X43)) { } };\nstruct X45 { INJECT(X45(X35, X36, X37, X38, X39, X40, X41, X42, X43, X44)) { } };\nstruct X46 { INJECT(X46(X36, X37, X38, X39, X40, X41, X42, X43, X44, X45)) { } };\nstruct X47 { INJECT(X47(X37, X38, X39, X40, X41, X42, X43, X44, X45, X46)) { } };\nstruct X48 { INJECT(X48(X38, X39, X40, X41, X42, X43, X44, X45, X46, X47)) { } };\nstruct X49 { INJECT(X49(X39, X40, X41, X42, X43, X44, X45, X46, X47, X48)) { } };\nstruct X50 { INJECT(X50(X40, X41, X42, X43, X44, X45, X46, X47, X48, X49)) { } };\nstruct X51 { INJECT(X51(X41, X42, X43, X44, X45, X46, X47, X48, X49, X50)) { } };\nstruct X52 { INJECT(X52(X42, X43, X44, X45, X46, X47, X48, X49, X50, X51)) { } };\nstruct X53 { INJECT(X53(X43, X44, X45, X46, X47, X48, X49, X50, X51, X52)) { } };\nstruct X54 { INJECT(X54(X44, X45, X46, X47, X48, X49, X50, X51, X52, X53)) { } };\nstruct X55 { INJECT(X55(X45, X46, X47, X48, X49, X50, X51, X52, X53, X54)) { } };\nstruct X56 { INJECT(X56(X46, X47, X48, X49, X50, X51, X52, X53, X54, X55)) { } };\nstruct X57 { INJECT(X57(X47, X48, X49, X50, X51, X52, X53, X54, X55, X56)) { } };\nstruct X58 { INJECT(X58(X48, X49, X50, X51, X52, X53, X54, X55, X56, X57)) { } };\nstruct X59 { INJECT(X59(X49, X50, X51, X52, X53, X54, X55, X56, X57, X58)) { } };\nstruct X60 { INJECT(X60(X50, X51, X52, X53, X54, X55, X56, X57, X58, X59)) { } };\nstruct X61 { INJECT(X61(X51, X52, X53, X54, X55, X56, X57, X58, X59, X60)) { } };\nstruct X62 { INJECT(X62(X52, X53, X54, X55, X56, X57, X58, X59, X60, X61)) { } };\nstruct X63 { INJECT(X63(X53, X54, X55, X56, X57, X58, X59, X60, X61, X62)) { } };\nstruct X64 { INJECT(X64(X54, X55, X56, X57, X58, X59, X60, X61, X62, X63)) { } };\nstruct X65 { INJECT(X65(X55, X56, X57, X58, X59, X60, X61, X62, X63, X64)) { } };\nstruct X66 { INJECT(X66(X56, X57, X58, X59, X60, X61, X62, X63, X64, X65)) { } };\nstruct X67 { INJECT(X67(X57, X58, X59, X60, X61, X62, X63, X64, X65, X66)) { } };\nstruct X68 { INJECT(X68(X58, X59, X60, X61, X62, X63, X64, X65, X66, X67)) { } };\nstruct X69 { INJECT(X69(X59, X60, X61, X62, X63, X64, X65, X66, X67, X68)) { } };\nstruct X70 { INJECT(X70(X60, X61, X62, X63, X64, X65, X66, X67, X68, X69)) { } };\nstruct X71 { INJECT(X71(X61, X62, X63, X64, X65, X66, X67, X68, X69, X70)) { } };\nstruct X72 { INJECT(X72(X62, X63, X64, X65, X66, X67, X68, X69, X70, X71)) { } };\nstruct X73 { INJECT(X73(X63, X64, X65, X66, X67, X68, X69, X70, X71, X72)) { } };\nstruct X74 { INJECT(X74(X64, X65, X66, X67, X68, X69, X70, X71, X72, X73)) { } };\nstruct X75 { INJECT(X75(X65, X66, X67, X68, X69, X70, X71, X72, X73, X74)) { } };\nstruct X76 { INJECT(X76(X66, X67, X68, X69, X70, X71, X72, X73, X74, X75)) { } };\nstruct X77 { INJECT(X77(X67, X68, X69, X70, X71, X72, X73, X74, X75, X76)) { } };\nstruct X78 { INJECT(X78(X68, X69, X70, X71, X72, X73, X74, X75, X76, X77)) { } };\nstruct X79 { INJECT(X79(X69, X70, X71, X72, X73, X74, X75, X76, X77, X78)) { } };\nstruct X80 { INJECT(X80(X70, X71, X72, X73, X74, X75, X76, X77, X78, X79)) { } };\nstruct X81 { INJECT(X81(X71, X72, X73, X74, X75, X76, X77, X78, X79, X80)) { } };\nstruct X82 { INJECT(X82(X72, X73, X74, X75, X76, X77, X78, X79, X80, X81)) { } };\nstruct X83 { INJECT(X83(X73, X74, X75, X76, X77, X78, X79, X80, X81, X82)) { } };\nstruct X84 { INJECT(X84(X74, X75, X76, X77, X78, X79, X80, X81, X82, X83)) { } };\nstruct X85 { INJECT(X85(X75, X76, X77, X78, X79, X80, X81, X82, X83, X84)) { } };\nstruct X86 { INJECT(X86(X76, X77, X78, X79, X80, X81, X82, X83, X84, X85)) { } };\nstruct X87 { INJECT(X87(X77, X78, X79, X80, X81, X82, X83, X84, X85, X86)) { } };\nstruct X88 { INJECT(X88(X78, X79, X80, X81, X82, X83, X84, X85, X86, X87)) { } };\nstruct X89 { INJECT(X89(X79, X80, X81, X82, X83, X84, X85, X86, X87, X88)) { } };\nstruct X90 { INJECT(X90(X80, X81, X82, X83, X84, X85, X86, X87, X88, X89)) { } };\nstruct X91 { INJECT(X91(X81, X82, X83, X84, X85, X86, X87, X88, X89, X90)) { } };\nstruct X92 { INJECT(X92(X82, X83, X84, X85, X86, X87, X88, X89, X90, X91)) { } };\nstruct X93 { INJECT(X93(X83, X84, X85, X86, X87, X88, X89, X90, X91, X92)) { } };\nstruct X94 { INJECT(X94(X84, X85, X86, X87, X88, X89, X90, X91, X92, X93)) { } };\nstruct X95 { INJECT(X95(X85, X86, X87, X88, X89, X90, X91, X92, X93, X94)) { } };\nstruct X96 { INJECT(X96(X86, X87, X88, X89, X90, X91, X92, X93, X94, X95)) { } };\nstruct X97 { INJECT(X97(X87, X88, X89, X90, X91, X92, X93, X94, X95, X96)) { } };\nstruct X98 { INJECT(X98(X88, X89, X90, X91, X92, X93, X94, X95, X96, X97)) { } };\nstruct X99 { INJECT(X99(X89, X90, X91, X92, X93, X94, X95, X96, X97, X98)) { } };\nstruct Simple { INJECT(Simple(X99, X89, X79, X69, X59, X49, X39, X29, X19, X09)) { } };\n// clang-format on\n\nfruit::Component<Simple> module() { return fruit::createComponent(); }\n\nint main() {\n  fruit::Injector<Simple> injector{module()};\n  injector.get<Simple>();\n}\n"
  },
  {
    "path": "benchmark/create_simple/guice.java",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nimport com.google.inject.*;\n\nclass X00 { X00() { } }\nclass X01 { @Inject X01(X00 p1) { } }\nclass X02 { @Inject X02(X00 p1, X01 p2) { } }\nclass X03 { @Inject X03(X00 p1, X01 p2, X02 p3) { } }\nclass X04 { @Inject X04(X00 p1, X01 p2, X02 p3, X03 p4) { } }\nclass X05 { @Inject X05(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5) { } }\nclass X06 { @Inject X06(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6) { } }\nclass X07 { @Inject X07(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7) { } }\nclass X08 { @Inject X08(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8) { } }\nclass X09 { @Inject X09(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9) { } }\nclass X10 { @Inject X10(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9, X09 p10) { } }\nclass X11 { @Inject X11(X01 p1, X02 p2, X03 p3, X04 p4, X05 p5, X06 p6, X07 p7, X08 p8, X09 p9, X10 p10) { } }\nclass X12 { @Inject X12(X02 p1, X03 p2, X04 p3, X05 p4, X06 p5, X07 p6, X08 p7, X09 p8, X10 p9, X11 p10) { } }\nclass X13 { @Inject X13(X03 p1, X04 p2, X05 p3, X06 p4, X07 p5, X08 p6, X09 p7, X10 p8, X11 p9, X12 p10) { } }\nclass X14 { @Inject X14(X04 p1, X05 p2, X06 p3, X07 p4, X08 p5, X09 p6, X10 p7, X11 p8, X12 p9, X13 p10) { } }\nclass X15 { @Inject X15(X05 p1, X06 p2, X07 p3, X08 p4, X09 p5, X10 p6, X11 p7, X12 p8, X13 p9, X14 p10) { } }\nclass X16 { @Inject X16(X06 p1, X07 p2, X08 p3, X09 p4, X10 p5, X11 p6, X12 p7, X13 p8, X14 p9, X15 p10) { } }\nclass X17 { @Inject X17(X07 p1, X08 p2, X09 p3, X10 p4, X11 p5, X12 p6, X13 p7, X14 p8, X15 p9, X16 p10) { } }\nclass X18 { @Inject X18(X08 p1, X09 p2, X10 p3, X11 p4, X12 p5, X13 p6, X14 p7, X15 p8, X16 p9, X17 p10) { } }\nclass X19 { @Inject X19(X09 p1, X10 p2, X11 p3, X12 p4, X13 p5, X14 p6, X15 p7, X16 p8, X17 p9, X18 p10) { } }\nclass X20 { @Inject X20(X10 p1, X11 p2, X12 p3, X13 p4, X14 p5, X15 p6, X16 p7, X17 p8, X18 p9, X19 p10) { } }\nclass X21 { @Inject X21(X11 p1, X12 p2, X13 p3, X14 p4, X15 p5, X16 p6, X17 p7, X18 p8, X19 p9, X20 p10) { } }\nclass X22 { @Inject X22(X12 p1, X13 p2, X14 p3, X15 p4, X16 p5, X17 p6, X18 p7, X19 p8, X20 p9, X21 p10) { } }\nclass X23 { @Inject X23(X13 p1, X14 p2, X15 p3, X16 p4, X17 p5, X18 p6, X19 p7, X20 p8, X21 p9, X22 p10) { } }\nclass X24 { @Inject X24(X14 p1, X15 p2, X16 p3, X17 p4, X18 p5, X19 p6, X20 p7, X21 p8, X22 p9, X23 p10) { } }\nclass X25 { @Inject X25(X15 p1, X16 p2, X17 p3, X18 p4, X19 p5, X20 p6, X21 p7, X22 p8, X23 p9, X24 p10) { } }\nclass X26 { @Inject X26(X16 p1, X17 p2, X18 p3, X19 p4, X20 p5, X21 p6, X22 p7, X23 p8, X24 p9, X25 p10) { } }\nclass X27 { @Inject X27(X17 p1, X18 p2, X19 p3, X20 p4, X21 p5, X22 p6, X23 p7, X24 p8, X25 p9, X26 p10) { } }\nclass X28 { @Inject X28(X18 p1, X19 p2, X20 p3, X21 p4, X22 p5, X23 p6, X24 p7, X25 p8, X26 p9, X27 p10) { } }\nclass X29 { @Inject X29(X19 p1, X20 p2, X21 p3, X22 p4, X23 p5, X24 p6, X25 p7, X26 p8, X27 p9, X28 p10) { } }\nclass X30 { @Inject X30(X20 p1, X21 p2, X22 p3, X23 p4, X24 p5, X25 p6, X26 p7, X27 p8, X28 p9, X29 p10) { } }\nclass X31 { @Inject X31(X21 p1, X22 p2, X23 p3, X24 p4, X25 p5, X26 p6, X27 p7, X28 p8, X29 p9, X30 p10) { } }\nclass X32 { @Inject X32(X22 p1, X23 p2, X24 p3, X25 p4, X26 p5, X27 p6, X28 p7, X29 p8, X30 p9, X31 p10) { } }\nclass X33 { @Inject X33(X23 p1, X24 p2, X25 p3, X26 p4, X27 p5, X28 p6, X29 p7, X30 p8, X31 p9, X32 p10) { } }\nclass X34 { @Inject X34(X24 p1, X25 p2, X26 p3, X27 p4, X28 p5, X29 p6, X30 p7, X31 p8, X32 p9, X33 p10) { } }\nclass X35 { @Inject X35(X25 p1, X26 p2, X27 p3, X28 p4, X29 p5, X30 p6, X31 p7, X32 p8, X33 p9, X34 p10) { } }\nclass X36 { @Inject X36(X26 p1, X27 p2, X28 p3, X29 p4, X30 p5, X31 p6, X32 p7, X33 p8, X34 p9, X35 p10) { } }\nclass X37 { @Inject X37(X27 p1, X28 p2, X29 p3, X30 p4, X31 p5, X32 p6, X33 p7, X34 p8, X35 p9, X36 p10) { } }\nclass X38 { @Inject X38(X28 p1, X29 p2, X30 p3, X31 p4, X32 p5, X33 p6, X34 p7, X35 p8, X36 p9, X37 p10) { } }\nclass X39 { @Inject X39(X29 p1, X30 p2, X31 p3, X32 p4, X33 p5, X34 p6, X35 p7, X36 p8, X37 p9, X38 p10) { } }\nclass X40 { @Inject X40(X30 p1, X31 p2, X32 p3, X33 p4, X34 p5, X35 p6, X36 p7, X37 p8, X38 p9, X39 p10) { } }\nclass X41 { @Inject X41(X31 p1, X32 p2, X33 p3, X34 p4, X35 p5, X36 p6, X37 p7, X38 p8, X39 p9, X40 p10) { } }\nclass X42 { @Inject X42(X32 p1, X33 p2, X34 p3, X35 p4, X36 p5, X37 p6, X38 p7, X39 p8, X40 p9, X41 p10) { } }\nclass X43 { @Inject X43(X33 p1, X34 p2, X35 p3, X36 p4, X37 p5, X38 p6, X39 p7, X40 p8, X41 p9, X42 p10) { } }\nclass X44 { @Inject X44(X34 p1, X35 p2, X36 p3, X37 p4, X38 p5, X39 p6, X40 p7, X41 p8, X42 p9, X43 p10) { } }\nclass X45 { @Inject X45(X35 p1, X36 p2, X37 p3, X38 p4, X39 p5, X40 p6, X41 p7, X42 p8, X43 p9, X44 p10) { } }\nclass X46 { @Inject X46(X36 p1, X37 p2, X38 p3, X39 p4, X40 p5, X41 p6, X42 p7, X43 p8, X44 p9, X45 p10) { } }\nclass X47 { @Inject X47(X37 p1, X38 p2, X39 p3, X40 p4, X41 p5, X42 p6, X43 p7, X44 p8, X45 p9, X46 p10) { } }\nclass X48 { @Inject X48(X38 p1, X39 p2, X40 p3, X41 p4, X42 p5, X43 p6, X44 p7, X45 p8, X46 p9, X47 p10) { } }\nclass X49 { @Inject X49(X39 p1, X40 p2, X41 p3, X42 p4, X43 p5, X44 p6, X45 p7, X46 p8, X47 p9, X48 p10) { } }\nclass X50 { @Inject X50(X40 p1, X41 p2, X42 p3, X43 p4, X44 p5, X45 p6, X46 p7, X47 p8, X48 p9, X49 p10) { } }\nclass X51 { @Inject X51(X41 p1, X42 p2, X43 p3, X44 p4, X45 p5, X46 p6, X47 p7, X48 p8, X49 p9, X50 p10) { } }\nclass X52 { @Inject X52(X42 p1, X43 p2, X44 p3, X45 p4, X46 p5, X47 p6, X48 p7, X49 p8, X50 p9, X51 p10) { } }\nclass X53 { @Inject X53(X43 p1, X44 p2, X45 p3, X46 p4, X47 p5, X48 p6, X49 p7, X50 p8, X51 p9, X52 p10) { } }\nclass X54 { @Inject X54(X44 p1, X45 p2, X46 p3, X47 p4, X48 p5, X49 p6, X50 p7, X51 p8, X52 p9, X53 p10) { } }\nclass X55 { @Inject X55(X45 p1, X46 p2, X47 p3, X48 p4, X49 p5, X50 p6, X51 p7, X52 p8, X53 p9, X54 p10) { } }\nclass X56 { @Inject X56(X46 p1, X47 p2, X48 p3, X49 p4, X50 p5, X51 p6, X52 p7, X53 p8, X54 p9, X55 p10) { } }\nclass X57 { @Inject X57(X47 p1, X48 p2, X49 p3, X50 p4, X51 p5, X52 p6, X53 p7, X54 p8, X55 p9, X56 p10) { } }\nclass X58 { @Inject X58(X48 p1, X49 p2, X50 p3, X51 p4, X52 p5, X53 p6, X54 p7, X55 p8, X56 p9, X57 p10) { } }\nclass X59 { @Inject X59(X49 p1, X50 p2, X51 p3, X52 p4, X53 p5, X54 p6, X55 p7, X56 p8, X57 p9, X58 p10) { } }\nclass X60 { @Inject X60(X50 p1, X51 p2, X52 p3, X53 p4, X54 p5, X55 p6, X56 p7, X57 p8, X58 p9, X59 p10) { } }\nclass X61 { @Inject X61(X51 p1, X52 p2, X53 p3, X54 p4, X55 p5, X56 p6, X57 p7, X58 p8, X59 p9, X60 p10) { } }\nclass X62 { @Inject X62(X52 p1, X53 p2, X54 p3, X55 p4, X56 p5, X57 p6, X58 p7, X59 p8, X60 p9, X61 p10) { } }\nclass X63 { @Inject X63(X53 p1, X54 p2, X55 p3, X56 p4, X57 p5, X58 p6, X59 p7, X60 p8, X61 p9, X62 p10) { } }\nclass X64 { @Inject X64(X54 p1, X55 p2, X56 p3, X57 p4, X58 p5, X59 p6, X60 p7, X61 p8, X62 p9, X63 p10) { } }\nclass X65 { @Inject X65(X55 p1, X56 p2, X57 p3, X58 p4, X59 p5, X60 p6, X61 p7, X62 p8, X63 p9, X64 p10) { } }\nclass X66 { @Inject X66(X56 p1, X57 p2, X58 p3, X59 p4, X60 p5, X61 p6, X62 p7, X63 p8, X64 p9, X65 p10) { } }\nclass X67 { @Inject X67(X57 p1, X58 p2, X59 p3, X60 p4, X61 p5, X62 p6, X63 p7, X64 p8, X65 p9, X66 p10) { } }\nclass X68 { @Inject X68(X58 p1, X59 p2, X60 p3, X61 p4, X62 p5, X63 p6, X64 p7, X65 p8, X66 p9, X67 p10) { } }\nclass X69 { @Inject X69(X59 p1, X60 p2, X61 p3, X62 p4, X63 p5, X64 p6, X65 p7, X66 p8, X67 p9, X68 p10) { } }\nclass X70 { @Inject X70(X60 p1, X61 p2, X62 p3, X63 p4, X64 p5, X65 p6, X66 p7, X67 p8, X68 p9, X69 p10) { } }\nclass X71 { @Inject X71(X61 p1, X62 p2, X63 p3, X64 p4, X65 p5, X66 p6, X67 p7, X68 p8, X69 p9, X70 p10) { } }\nclass X72 { @Inject X72(X62 p1, X63 p2, X64 p3, X65 p4, X66 p5, X67 p6, X68 p7, X69 p8, X70 p9, X71 p10) { } }\nclass X73 { @Inject X73(X63 p1, X64 p2, X65 p3, X66 p4, X67 p5, X68 p6, X69 p7, X70 p8, X71 p9, X72 p10) { } }\nclass X74 { @Inject X74(X64 p1, X65 p2, X66 p3, X67 p4, X68 p5, X69 p6, X70 p7, X71 p8, X72 p9, X73 p10) { } }\nclass X75 { @Inject X75(X65 p1, X66 p2, X67 p3, X68 p4, X69 p5, X70 p6, X71 p7, X72 p8, X73 p9, X74 p10) { } }\nclass X76 { @Inject X76(X66 p1, X67 p2, X68 p3, X69 p4, X70 p5, X71 p6, X72 p7, X73 p8, X74 p9, X75 p10) { } }\nclass X77 { @Inject X77(X67 p1, X68 p2, X69 p3, X70 p4, X71 p5, X72 p6, X73 p7, X74 p8, X75 p9, X76 p10) { } }\nclass X78 { @Inject X78(X68 p1, X69 p2, X70 p3, X71 p4, X72 p5, X73 p6, X74 p7, X75 p8, X76 p9, X77 p10) { } }\nclass X79 { @Inject X79(X69 p1, X70 p2, X71 p3, X72 p4, X73 p5, X74 p6, X75 p7, X76 p8, X77 p9, X78 p10) { } }\nclass X80 { @Inject X80(X70 p1, X71 p2, X72 p3, X73 p4, X74 p5, X75 p6, X76 p7, X77 p8, X78 p9, X79 p10) { } }\nclass X81 { @Inject X81(X71 p1, X72 p2, X73 p3, X74 p4, X75 p5, X76 p6, X77 p7, X78 p8, X79 p9, X80 p10) { } }\nclass X82 { @Inject X82(X72 p1, X73 p2, X74 p3, X75 p4, X76 p5, X77 p6, X78 p7, X79 p8, X80 p9, X81 p10) { } }\nclass X83 { @Inject X83(X73 p1, X74 p2, X75 p3, X76 p4, X77 p5, X78 p6, X79 p7, X80 p8, X81 p9, X82 p10) { } }\nclass X84 { @Inject X84(X74 p1, X75 p2, X76 p3, X77 p4, X78 p5, X79 p6, X80 p7, X81 p8, X82 p9, X83 p10) { } }\nclass X85 { @Inject X85(X75 p1, X76 p2, X77 p3, X78 p4, X79 p5, X80 p6, X81 p7, X82 p8, X83 p9, X84 p10) { } }\nclass X86 { @Inject X86(X76 p1, X77 p2, X78 p3, X79 p4, X80 p5, X81 p6, X82 p7, X83 p8, X84 p9, X85 p10) { } }\nclass X87 { @Inject X87(X77 p1, X78 p2, X79 p3, X80 p4, X81 p5, X82 p6, X83 p7, X84 p8, X85 p9, X86 p10) { } }\nclass X88 { @Inject X88(X78 p1, X79 p2, X80 p3, X81 p4, X82 p5, X83 p6, X84 p7, X85 p8, X86 p9, X87 p10) { } }\nclass X89 { @Inject X89(X79 p1, X80 p2, X81 p3, X82 p4, X83 p5, X84 p6, X85 p7, X86 p8, X87 p9, X88 p10) { } }\nclass X90 { @Inject X90(X80 p1, X81 p2, X82 p3, X83 p4, X84 p5, X85 p6, X86 p7, X87 p8, X88 p9, X89 p10) { } }\nclass X91 { @Inject X91(X81 p1, X82 p2, X83 p3, X84 p4, X85 p5, X86 p6, X87 p7, X88 p8, X89 p9, X90 p10) { } }\nclass X92 { @Inject X92(X82 p1, X83 p2, X84 p3, X85 p4, X86 p5, X87 p6, X88 p7, X89 p8, X90 p9, X91 p10) { } }\nclass X93 { @Inject X93(X83 p1, X84 p2, X85 p3, X86 p4, X87 p5, X88 p6, X89 p7, X90 p8, X91 p9, X92 p10) { } }\nclass X94 { @Inject X94(X84 p1, X85 p2, X86 p3, X87 p4, X88 p5, X89 p6, X90 p7, X91 p8, X92 p9, X93 p10) { } }\nclass X95 { @Inject X95(X85 p1, X86 p2, X87 p3, X88 p4, X89 p5, X90 p6, X91 p7, X92 p8, X93 p9, X94 p10) { } }\nclass X96 { @Inject X96(X86 p1, X87 p2, X88 p3, X89 p4, X90 p5, X91 p6, X92 p7, X93 p8, X94 p9, X95 p10) { } }\nclass X97 { @Inject X97(X87 p1, X88 p2, X89 p3, X90 p4, X91 p5, X92 p6, X93 p7, X94 p8, X95 p9, X96 p10) { } }\nclass X98 { @Inject X98(X88 p1, X89 p2, X90 p3, X91 p4, X92 p5, X93 p6, X94 p7, X95 p8, X96 p9, X97 p10) { } }\nclass X99 { @Inject X99(X89 p1, X90 p2, X91 p3, X92 p4, X93 p5, X94 p6, X95 p7, X96 p8, X97 p9, X98 p10) { } }\nclass Simple { @Inject Simple(X99 x99, X89 x89, X79 x79, X69 x69, X59 x59, X49 x49, X39 x39, X29 x29, X19 x19, X09 x09) { } }\n\nclass Module extends AbstractModule {\n  @Override\n  protected void configure() {\n  }\n}\n\npublic class guice {\n  public static void main(String[] args) {\n    Injector injector = Guice.createInjector(new Module());\n    injector.getInstance(Simple.class);\n  }\n}\n"
  },
  {
    "path": "benchmark/create_simple/ninject.cs",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\nusing Ninject;\n\nclass X00 { public X00() { } }\nclass X01 { public X01(X00 p1) { } }\nclass X02 { public X02(X00 p1, X01 p2) { } }\nclass X03 { public X03(X00 p1, X01 p2, X02 p3) { } }\nclass X04 { public X04(X00 p1, X01 p2, X02 p3, X03 p4) { } }\nclass X05 { public X05(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5) { } }\nclass X06 { public X06(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6) { } }\nclass X07 { public X07(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7) { } }\nclass X08 { public X08(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8) { } }\nclass X09 { public X09(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9) { } }\nclass X10 { public X10(X00 p1, X01 p2, X02 p3, X03 p4, X04 p5, X05 p6, X06 p7, X07 p8, X08 p9, X09 p10) { } }\nclass X11 { public X11(X01 p1, X02 p2, X03 p3, X04 p4, X05 p5, X06 p6, X07 p7, X08 p8, X09 p9, X10 p10) { } }\nclass X12 { public X12(X02 p1, X03 p2, X04 p3, X05 p4, X06 p5, X07 p6, X08 p7, X09 p8, X10 p9, X11 p10) { } }\nclass X13 { public X13(X03 p1, X04 p2, X05 p3, X06 p4, X07 p5, X08 p6, X09 p7, X10 p8, X11 p9, X12 p10) { } }\nclass X14 { public X14(X04 p1, X05 p2, X06 p3, X07 p4, X08 p5, X09 p6, X10 p7, X11 p8, X12 p9, X13 p10) { } }\nclass X15 { public X15(X05 p1, X06 p2, X07 p3, X08 p4, X09 p5, X10 p6, X11 p7, X12 p8, X13 p9, X14 p10) { } }\nclass X16 { public X16(X06 p1, X07 p2, X08 p3, X09 p4, X10 p5, X11 p6, X12 p7, X13 p8, X14 p9, X15 p10) { } }\nclass X17 { public X17(X07 p1, X08 p2, X09 p3, X10 p4, X11 p5, X12 p6, X13 p7, X14 p8, X15 p9, X16 p10) { } }\nclass X18 { public X18(X08 p1, X09 p2, X10 p3, X11 p4, X12 p5, X13 p6, X14 p7, X15 p8, X16 p9, X17 p10) { } }\nclass X19 { public X19(X09 p1, X10 p2, X11 p3, X12 p4, X13 p5, X14 p6, X15 p7, X16 p8, X17 p9, X18 p10) { } }\nclass X20 { public X20(X10 p1, X11 p2, X12 p3, X13 p4, X14 p5, X15 p6, X16 p7, X17 p8, X18 p9, X19 p10) { } }\nclass X21 { public X21(X11 p1, X12 p2, X13 p3, X14 p4, X15 p5, X16 p6, X17 p7, X18 p8, X19 p9, X20 p10) { } }\nclass X22 { public X22(X12 p1, X13 p2, X14 p3, X15 p4, X16 p5, X17 p6, X18 p7, X19 p8, X20 p9, X21 p10) { } }\nclass X23 { public X23(X13 p1, X14 p2, X15 p3, X16 p4, X17 p5, X18 p6, X19 p7, X20 p8, X21 p9, X22 p10) { } }\nclass X24 { public X24(X14 p1, X15 p2, X16 p3, X17 p4, X18 p5, X19 p6, X20 p7, X21 p8, X22 p9, X23 p10) { } }\nclass X25 { public X25(X15 p1, X16 p2, X17 p3, X18 p4, X19 p5, X20 p6, X21 p7, X22 p8, X23 p9, X24 p10) { } }\nclass X26 { public X26(X16 p1, X17 p2, X18 p3, X19 p4, X20 p5, X21 p6, X22 p7, X23 p8, X24 p9, X25 p10) { } }\nclass X27 { public X27(X17 p1, X18 p2, X19 p3, X20 p4, X21 p5, X22 p6, X23 p7, X24 p8, X25 p9, X26 p10) { } }\nclass X28 { public X28(X18 p1, X19 p2, X20 p3, X21 p4, X22 p5, X23 p6, X24 p7, X25 p8, X26 p9, X27 p10) { } }\nclass X29 { public X29(X19 p1, X20 p2, X21 p3, X22 p4, X23 p5, X24 p6, X25 p7, X26 p8, X27 p9, X28 p10) { } }\nclass X30 { public X30(X20 p1, X21 p2, X22 p3, X23 p4, X24 p5, X25 p6, X26 p7, X27 p8, X28 p9, X29 p10) { } }\nclass X31 { public X31(X21 p1, X22 p2, X23 p3, X24 p4, X25 p5, X26 p6, X27 p7, X28 p8, X29 p9, X30 p10) { } }\nclass X32 { public X32(X22 p1, X23 p2, X24 p3, X25 p4, X26 p5, X27 p6, X28 p7, X29 p8, X30 p9, X31 p10) { } }\nclass X33 { public X33(X23 p1, X24 p2, X25 p3, X26 p4, X27 p5, X28 p6, X29 p7, X30 p8, X31 p9, X32 p10) { } }\nclass X34 { public X34(X24 p1, X25 p2, X26 p3, X27 p4, X28 p5, X29 p6, X30 p7, X31 p8, X32 p9, X33 p10) { } }\nclass X35 { public X35(X25 p1, X26 p2, X27 p3, X28 p4, X29 p5, X30 p6, X31 p7, X32 p8, X33 p9, X34 p10) { } }\nclass X36 { public X36(X26 p1, X27 p2, X28 p3, X29 p4, X30 p5, X31 p6, X32 p7, X33 p8, X34 p9, X35 p10) { } }\nclass X37 { public X37(X27 p1, X28 p2, X29 p3, X30 p4, X31 p5, X32 p6, X33 p7, X34 p8, X35 p9, X36 p10) { } }\nclass X38 { public X38(X28 p1, X29 p2, X30 p3, X31 p4, X32 p5, X33 p6, X34 p7, X35 p8, X36 p9, X37 p10) { } }\nclass X39 { public X39(X29 p1, X30 p2, X31 p3, X32 p4, X33 p5, X34 p6, X35 p7, X36 p8, X37 p9, X38 p10) { } }\nclass X40 { public X40(X30 p1, X31 p2, X32 p3, X33 p4, X34 p5, X35 p6, X36 p7, X37 p8, X38 p9, X39 p10) { } }\nclass X41 { public X41(X31 p1, X32 p2, X33 p3, X34 p4, X35 p5, X36 p6, X37 p7, X38 p8, X39 p9, X40 p10) { } }\nclass X42 { public X42(X32 p1, X33 p2, X34 p3, X35 p4, X36 p5, X37 p6, X38 p7, X39 p8, X40 p9, X41 p10) { } }\nclass X43 { public X43(X33 p1, X34 p2, X35 p3, X36 p4, X37 p5, X38 p6, X39 p7, X40 p8, X41 p9, X42 p10) { } }\nclass X44 { public X44(X34 p1, X35 p2, X36 p3, X37 p4, X38 p5, X39 p6, X40 p7, X41 p8, X42 p9, X43 p10) { } }\nclass X45 { public X45(X35 p1, X36 p2, X37 p3, X38 p4, X39 p5, X40 p6, X41 p7, X42 p8, X43 p9, X44 p10) { } }\nclass X46 { public X46(X36 p1, X37 p2, X38 p3, X39 p4, X40 p5, X41 p6, X42 p7, X43 p8, X44 p9, X45 p10) { } }\nclass X47 { public X47(X37 p1, X38 p2, X39 p3, X40 p4, X41 p5, X42 p6, X43 p7, X44 p8, X45 p9, X46 p10) { } }\nclass X48 { public X48(X38 p1, X39 p2, X40 p3, X41 p4, X42 p5, X43 p6, X44 p7, X45 p8, X46 p9, X47 p10) { } }\nclass X49 { public X49(X39 p1, X40 p2, X41 p3, X42 p4, X43 p5, X44 p6, X45 p7, X46 p8, X47 p9, X48 p10) { } }\nclass X50 { public X50(X40 p1, X41 p2, X42 p3, X43 p4, X44 p5, X45 p6, X46 p7, X47 p8, X48 p9, X49 p10) { } }\nclass X51 { public X51(X41 p1, X42 p2, X43 p3, X44 p4, X45 p5, X46 p6, X47 p7, X48 p8, X49 p9, X50 p10) { } }\nclass X52 { public X52(X42 p1, X43 p2, X44 p3, X45 p4, X46 p5, X47 p6, X48 p7, X49 p8, X50 p9, X51 p10) { } }\nclass X53 { public X53(X43 p1, X44 p2, X45 p3, X46 p4, X47 p5, X48 p6, X49 p7, X50 p8, X51 p9, X52 p10) { } }\nclass X54 { public X54(X44 p1, X45 p2, X46 p3, X47 p4, X48 p5, X49 p6, X50 p7, X51 p8, X52 p9, X53 p10) { } }\nclass X55 { public X55(X45 p1, X46 p2, X47 p3, X48 p4, X49 p5, X50 p6, X51 p7, X52 p8, X53 p9, X54 p10) { } }\nclass X56 { public X56(X46 p1, X47 p2, X48 p3, X49 p4, X50 p5, X51 p6, X52 p7, X53 p8, X54 p9, X55 p10) { } }\nclass X57 { public X57(X47 p1, X48 p2, X49 p3, X50 p4, X51 p5, X52 p6, X53 p7, X54 p8, X55 p9, X56 p10) { } }\nclass X58 { public X58(X48 p1, X49 p2, X50 p3, X51 p4, X52 p5, X53 p6, X54 p7, X55 p8, X56 p9, X57 p10) { } }\nclass X59 { public X59(X49 p1, X50 p2, X51 p3, X52 p4, X53 p5, X54 p6, X55 p7, X56 p8, X57 p9, X58 p10) { } }\nclass X60 { public X60(X50 p1, X51 p2, X52 p3, X53 p4, X54 p5, X55 p6, X56 p7, X57 p8, X58 p9, X59 p10) { } }\nclass X61 { public X61(X51 p1, X52 p2, X53 p3, X54 p4, X55 p5, X56 p6, X57 p7, X58 p8, X59 p9, X60 p10) { } }\nclass X62 { public X62(X52 p1, X53 p2, X54 p3, X55 p4, X56 p5, X57 p6, X58 p7, X59 p8, X60 p9, X61 p10) { } }\nclass X63 { public X63(X53 p1, X54 p2, X55 p3, X56 p4, X57 p5, X58 p6, X59 p7, X60 p8, X61 p9, X62 p10) { } }\nclass X64 { public X64(X54 p1, X55 p2, X56 p3, X57 p4, X58 p5, X59 p6, X60 p7, X61 p8, X62 p9, X63 p10) { } }\nclass X65 { public X65(X55 p1, X56 p2, X57 p3, X58 p4, X59 p5, X60 p6, X61 p7, X62 p8, X63 p9, X64 p10) { } }\nclass X66 { public X66(X56 p1, X57 p2, X58 p3, X59 p4, X60 p5, X61 p6, X62 p7, X63 p8, X64 p9, X65 p10) { } }\nclass X67 { public X67(X57 p1, X58 p2, X59 p3, X60 p4, X61 p5, X62 p6, X63 p7, X64 p8, X65 p9, X66 p10) { } }\nclass X68 { public X68(X58 p1, X59 p2, X60 p3, X61 p4, X62 p5, X63 p6, X64 p7, X65 p8, X66 p9, X67 p10) { } }\nclass X69 { public X69(X59 p1, X60 p2, X61 p3, X62 p4, X63 p5, X64 p6, X65 p7, X66 p8, X67 p9, X68 p10) { } }\nclass X70 { public X70(X60 p1, X61 p2, X62 p3, X63 p4, X64 p5, X65 p6, X66 p7, X67 p8, X68 p9, X69 p10) { } }\nclass X71 { public X71(X61 p1, X62 p2, X63 p3, X64 p4, X65 p5, X66 p6, X67 p7, X68 p8, X69 p9, X70 p10) { } }\nclass X72 { public X72(X62 p1, X63 p2, X64 p3, X65 p4, X66 p5, X67 p6, X68 p7, X69 p8, X70 p9, X71 p10) { } }\nclass X73 { public X73(X63 p1, X64 p2, X65 p3, X66 p4, X67 p5, X68 p6, X69 p7, X70 p8, X71 p9, X72 p10) { } }\nclass X74 { public X74(X64 p1, X65 p2, X66 p3, X67 p4, X68 p5, X69 p6, X70 p7, X71 p8, X72 p9, X73 p10) { } }\nclass X75 { public X75(X65 p1, X66 p2, X67 p3, X68 p4, X69 p5, X70 p6, X71 p7, X72 p8, X73 p9, X74 p10) { } }\nclass X76 { public X76(X66 p1, X67 p2, X68 p3, X69 p4, X70 p5, X71 p6, X72 p7, X73 p8, X74 p9, X75 p10) { } }\nclass X77 { public X77(X67 p1, X68 p2, X69 p3, X70 p4, X71 p5, X72 p6, X73 p7, X74 p8, X75 p9, X76 p10) { } }\nclass X78 { public X78(X68 p1, X69 p2, X70 p3, X71 p4, X72 p5, X73 p6, X74 p7, X75 p8, X76 p9, X77 p10) { } }\nclass X79 { public X79(X69 p1, X70 p2, X71 p3, X72 p4, X73 p5, X74 p6, X75 p7, X76 p8, X77 p9, X78 p10) { } }\nclass X80 { public X80(X70 p1, X71 p2, X72 p3, X73 p4, X74 p5, X75 p6, X76 p7, X77 p8, X78 p9, X79 p10) { } }\nclass X81 { public X81(X71 p1, X72 p2, X73 p3, X74 p4, X75 p5, X76 p6, X77 p7, X78 p8, X79 p9, X80 p10) { } }\nclass X82 { public X82(X72 p1, X73 p2, X74 p3, X75 p4, X76 p5, X77 p6, X78 p7, X79 p8, X80 p9, X81 p10) { } }\nclass X83 { public X83(X73 p1, X74 p2, X75 p3, X76 p4, X77 p5, X78 p6, X79 p7, X80 p8, X81 p9, X82 p10) { } }\nclass X84 { public X84(X74 p1, X75 p2, X76 p3, X77 p4, X78 p5, X79 p6, X80 p7, X81 p8, X82 p9, X83 p10) { } }\nclass X85 { public X85(X75 p1, X76 p2, X77 p3, X78 p4, X79 p5, X80 p6, X81 p7, X82 p8, X83 p9, X84 p10) { } }\nclass X86 { public X86(X76 p1, X77 p2, X78 p3, X79 p4, X80 p5, X81 p6, X82 p7, X83 p8, X84 p9, X85 p10) { } }\nclass X87 { public X87(X77 p1, X78 p2, X79 p3, X80 p4, X81 p5, X82 p6, X83 p7, X84 p8, X85 p9, X86 p10) { } }\nclass X88 { public X88(X78 p1, X79 p2, X80 p3, X81 p4, X82 p5, X83 p6, X84 p7, X85 p8, X86 p9, X87 p10) { } }\nclass X89 { public X89(X79 p1, X80 p2, X81 p3, X82 p4, X83 p5, X84 p6, X85 p7, X86 p8, X87 p9, X88 p10) { } }\nclass X90 { public X90(X80 p1, X81 p2, X82 p3, X83 p4, X84 p5, X85 p6, X86 p7, X87 p8, X88 p9, X89 p10) { } }\nclass X91 { public X91(X81 p1, X82 p2, X83 p3, X84 p4, X85 p5, X86 p6, X87 p7, X88 p8, X89 p9, X90 p10) { } }\nclass X92 { public X92(X82 p1, X83 p2, X84 p3, X85 p4, X86 p5, X87 p6, X88 p7, X89 p8, X90 p9, X91 p10) { } }\nclass X93 { public X93(X83 p1, X84 p2, X85 p3, X86 p4, X87 p5, X88 p6, X89 p7, X90 p8, X91 p9, X92 p10) { } }\nclass X94 { public X94(X84 p1, X85 p2, X86 p3, X87 p4, X88 p5, X89 p6, X90 p7, X91 p8, X92 p9, X93 p10) { } }\nclass X95 { public X95(X85 p1, X86 p2, X87 p3, X88 p4, X89 p5, X90 p6, X91 p7, X92 p8, X93 p9, X94 p10) { } }\nclass X96 { public X96(X86 p1, X87 p2, X88 p3, X89 p4, X90 p5, X91 p6, X92 p7, X93 p8, X94 p9, X95 p10) { } }\nclass X97 { public X97(X87 p1, X88 p2, X89 p3, X90 p4, X91 p5, X92 p6, X93 p7, X94 p8, X95 p9, X96 p10) { } }\nclass X98 { public X98(X88 p1, X89 p2, X90 p3, X91 p4, X92 p5, X93 p6, X94 p7, X95 p8, X96 p9, X97 p10) { } }\nclass X99 { public X99(X89 p1, X90 p2, X91 p3, X92 p4, X93 p5, X94 p6, X95 p7, X96 p8, X97 p9, X98 p10) { } }\nclass Simple { public Simple(X99 x99, X89 x89, X79 x79, X69 x69, X59 x59, X49 x49, X39 x39, X29 x29, X19 x19, X09 x09) { } }\n\nclass Module : Ninject.Modules.NinjectModule {\n  public override void Load() { }\n}\n\nclass ninject {\n  static void Main(string[] args) {\n    var kernel = new Ninject.StandardKernel(new Module());\n    kernel.Get<Simple>();\n  }\n}\n"
  },
  {
    "path": "benchmark/generate_test.py",
    "content": "#!/usr/bin/env python\n#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nimport os\n\ndef base(output, x, b = 0, e = 0):\n  o = \"struct C\" + str(x) + \" {\"\n  o += \"  C\" + str(x) + \"(\"\n  for i in range(b, e):\n    o += \"C\" + str(i) + (\",\" if i < e - 1 else \"\")\n  o += \") { ++g; } };\"\n  output.append(o)\n\ndef base_instance(output, x, b = 0, e = 0):\n  o = \"C\" + str(x) + \" C\" + str(x) + \"_{\"\n  for i in range(b, e):\n    o += \"C\" + str(i) + \"_\" + (\",\" if i < e - 1 else \"\")\n  o += \"};\"\n  output.append(o)\n\ndef hypodermic(output, x, b = 0, e = 0):\n  o = \"struct C\" + str(x) + \" {\"\n  o += \"  C\" + str(x) + \"(\"\n  for i in range(b, e):\n    o += \"const std::shared_ptr<C\" + str(i) + \">&\" + (\",\" if i < e - 1 else \"\")\n  o += \") { ++g; } };\"\n  output.append(o)\n\ndef di(output, x, b = 0, e = 0):\n  o = \"struct C\" + str(x) + \" {\"\n  o += \"  BOOST_DI_INJECT(C\" + str(x) + \",\"\n  for i in range(b, e):\n    o += \"C\" + str(i) + (\",\" if i < e - 1 else \"\")\n  o += \") { ++g; } };\"\n  output.append(o)\n\ndef fruit(output, x, b = 0, e = 0):\n  o = \"struct C\" + str(x) + \" {\"\n  o += \"  INJECT(C\" + str(x) + \"(\"\n  for i in range(b, e):\n    o += \"C\" + str(i) + (\",\" if i < e - 1 else \"\")\n  o += \")) { ++g; } };\"\n  output.append(o)\n\ndef javax(output, x, b = 0, e = 0):\n  o = \"class C\" + str(x) + \" {\"\n  o += \" @Inject C\" + str(x) + \"(\"\n  for i in range(b, e):\n    o += \"C\" + str(i) + \" arg\" + str(i) + (\",\" if i < e - 1 else \"\")\n  o += \") { ++Global.g; } }\"\n  output.append(o)\n\ndef csharp(output, x, b = 0, e = 0):\n  o = \"class C\" + str(x) + \" {\"\n  o += \" public C\" + str(x) + \"(\"\n  for i in range(b, e):\n    o += \"C\" + str(i) + \" arg\" + str(i) + (\",\" if i < e - 1 else \"\")\n  o += \") { ++Global.g; } }\"\n  output.append(o)\n\ndef create_data(types, ctor_args, struct):\n    output = []\n    g = 1\n    for i in range(0, types * 2):\n      if i >= g:\n        break\n      if g > types:\n        struct(output, i)\n      else:\n        struct(output, i, g, g + ctor_args)\n        g = g + ctor_args\n    return reversed(output)\n\ndef create_cpp_test(types, ctor_args, iterations, expected, file, struct, header, module, main, impl):\n  with open(file, 'w') as f:\n    f.write(header)\n    f.write(\"volatile unsigned long g = 0;\\n\")\n    for o in create_data(types, ctor_args, struct):\n      f.write(o + \"\\n\")\n    f.write(\"\\n\" + module + \"\\n\")\n    f.write(\"int main() {\\n\")\n    f.write(main)\n    f.write(\"for (auto i = 0; i < \" + str(iterations) + \"; ++i) {\")\n    f.write(impl)\n    f.write(\"};\\n\")\n    f.write(\"return \" + str(expected) + \" != g;\\n\")\n    f.write(\"}\\n\")\n\ndef create_java_test(types, ctor_args, iterations, expected, file, struct, header, module, main, impl):\n  with open(file, 'w') as f:\n    f.write(header)\n    f.write(\"class Global { public static long g = 0; }\\n\")\n    for o in create_data(types, ctor_args, struct):\n      f.write(o + \"\\n\")\n    f.write(\"\\n\" + module + \"\\n\")\n    f.write(\"\\npublic class \" + os.path.splitext(file)[0] + \" {\\n\")\n    f.write(\"\\npublic static void main(String[] args) {\\n\")\n    f.write(main)\n    f.write(\"\\nfor (int i = 0; i < \" + str(iterations) + \"; ++i) {\\n\")\n    f.write(impl)\n    f.write(\"}\\nSystem.exit(\" + str(expected) + \"!= Global.g ? 1 : 0);\")\n    f.write(\"\\n}\\n}\")\n\ndef create_csharp_test(types, ctor_args, iterations, expected, file, struct, header, module, main, impl):\n  with open(file, 'w') as f:\n    f.write(header)\n    f.write(\"class Global { public static long g = 0; }\\n\")\n    for o in create_data(types, ctor_args, struct):\n      f.write(o + \"\\n\")\n    f.write(\"\\n\" + module + \"\\n\")\n    f.write(\"\\nclass \" + os.path.splitext(file)[0] + \" {\\n\")\n    f.write(\"\\nstatic int Main(string[] args) {\\n\")\n    f.write(main)\n    f.write(\"\\nfor (int i = 0; i < \" + str(iterations) + \"; ++i) {\\n\")\n    f.write(impl)\n    f.write(\"}\\nreturn \" + str(expected) + \" != Global.g ? 1 : 0;\")\n    f.write(\"\\n}\\n}\")\n\nif os.environ['TEST'] == \"unique\":\n\n    if os.environ['FRAMEWORK'] == \"guice\":\n      create_java_test(\n        types = int(os.environ['TYPES'])\n      , ctor_args = int(os.environ['CTOR_ARGS'])\n      , iterations = int(os.environ['ITERATIONS'])\n      , expected = int(os.environ['ITERATIONS']) * (int(os.environ['TYPES']) + 1)\n      , file = \"guice.java\"\n      , struct = javax\n      , header = \"import com.google.inject.*;\\n\"\n      , module = \"class Module extends AbstractModule { @Override protected void configure() { } }\"\n      , main = \"Injector injector = Guice.createInjector(new Module());\"\n      , impl = \"injector.getInstance(C0.class);\"\n      )\n\n    if os.environ['FRAMEWORK'] == \"dagger2\":\n      create_java_test(\n        types = int(os.environ['TYPES'])\n      , ctor_args = int(os.environ['CTOR_ARGS'])\n      , iterations = int(os.environ['ITERATIONS'])\n      , expected = int(os.environ['ITERATIONS']) * (int(os.environ['TYPES']) + 1)\n      , file = \"dagger2.java\"\n      , struct = javax\n      , header = \"import dagger.*;\\nimport javax.inject.Inject;\\n\"\n      , module = \"@Module class AppModule { } @Component(modules = AppModule.class) interface AppComponent { C0 build(); }\"\n      , main = \"\"\n      , impl = \"Dagger_AppComponent.create().build();\"\n      )\n\n    if os.environ['FRAMEWORK'] == \"ninject\":\n      create_csharp_test(\n        types = int(os.environ['TYPES'])\n      , ctor_args = int(os.environ['CTOR_ARGS'])\n      , iterations = int(os.environ['ITERATIONS'])\n      , expected = int(os.environ['ITERATIONS']) * (int(os.environ['TYPES']) + 1)\n      , file = \"ninject.cs\"\n      , struct = csharp\n      , header = \"using Ninject;\\n\"\n      , module = \"class Module : Ninject.Modules.NinjectModule { public override void Load() { } }\"\n      , main = \"Ninject.IKernel kernel = new StandardKernel(new Module());\"\n      , impl = \"kernel.Get<C0>();\"\n      )\n\n    if os.environ['FRAMEWORK'] == \"base\":\n      create_cpp_test(\n        types = int(os.environ['TYPES'])\n      , ctor_args = int(os.environ['CTOR_ARGS'])\n      , iterations = int(os.environ['ITERATIONS'])\n      , expected = int(os.environ['ITERATIONS']) * (int(os.environ['TYPES']) + 1)\n      , file = \"base.cpp\"\n      , struct = base\n      , header = \"\"\n      , module = \"\"\n      , main = \"\"\n      , impl = '\\n'.join(o for o in create_data(int(os.environ['TYPES']), int(os.environ['CTOR_ARGS']), base_instance))\n      )\n\n    if os.environ['FRAMEWORK'] == \"di\":\n      create_cpp_test(\n        types = int(os.environ['TYPES'])\n      , ctor_args = int(os.environ['CTOR_ARGS'])\n      , iterations = int(os.environ['ITERATIONS'])\n      , expected = int(os.environ['ITERATIONS']) * (int(os.environ['TYPES']) + 1)\n      , file = \"di.cpp\"\n      , struct = di\n      , header = \"#include <boost/di.hpp>\\nnamespace di = boost::di;\"\n      , module = \"\"\n      , main = \"auto injector = di::make_injector();\"\n      , impl = \"injector.create<C0>();\"\n      )\n\n    if os.environ['FRAMEWORK'] == \"fruit\":\n      create_cpp_test(\n        types = int(os.environ['TYPES'])\n      , ctor_args = int(os.environ['CTOR_ARGS'])\n      , iterations = int(os.environ['ITERATIONS'])\n      , expected = int(os.environ['ITERATIONS']) * (int(os.environ['TYPES']) + 1)\n      , file = \"fruit.cpp\"\n      , struct = fruit\n      , header = \"#include <fruit/fruit.h>\\n\"\n      , module = \"fruit::Component<C0> module() { return fruit::createComponent(); }\"\n      , main = \"\"\n      , impl = \"fruit::Injector<C0> injector{module()}; injector.get<C0>();\"\n      )\n\n    if os.environ['FRAMEWORK'] == \"hypodermic\":\n      create_cpp_test(\n        types = int(os.environ['TYPES'])\n      , ctor_args = int(os.environ['CTOR_ARGS'])\n      , iterations = int(os.environ['ITERATIONS'])\n      , expected = int(os.environ['ITERATIONS']) * (int(os.environ['TYPES']) + 1)\n      , file = \"hypodermic.cpp\"\n      , struct = hypodermic\n      , header = \"#include <Hypodermic/ContainerBuilder.h>\\n\"\n      , module = \"\"\n      , main = \"Hypodermic::ContainerBuilder builder; auto injector = builder.build();\"\n      , impl = \"injector->resolve<C0>();\"\n      )\n"
  },
  {
    "path": "benchmark/performance/Makefile",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nCXXFLAGS?=\"-O2 -std=c++1y -I ../../include\"\n\nall test:\n\tCXXFLAGS=$(CXXFLAGS) ./di.sh\n\nsmall:\n\tCOMPLEXITY=small CXXFLAGS=$(CXXFLAGS) ./di.sh\n\nmedium:\n\tCOMPLEXITY=medium CXXFLAGS=$(CXXFLAGS) ./di.sh\n\nbig:\n\tCOMPLEXITY=big CXXFLAGS=$(CXXFLAGS) ./di.sh\n\nquick:\n\tCOMPLEXITY=quick CXXFLAGS=$(CXXFLAGS) ./di.sh\n\nheader:\n\t$(CXX) $(CXXFLAGS) header.cpp\n\n"
  },
  {
    "path": "benchmark/performance/di.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at\n// http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <memory>\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nstruct x00 {\n  BOOST_DI_INJECT(x00) {}\n};\nstruct x01 {\n  BOOST_DI_INJECT(x01) {}\n};\nstruct x02 {\n  BOOST_DI_INJECT(x02) {}\n};\nstruct x03 {\n  BOOST_DI_INJECT(x03) {}\n};\nstruct x04 {\n  BOOST_DI_INJECT(x04) {}\n};\nstruct x05 {\n  BOOST_DI_INJECT(x05) {}\n};\nstruct x06 {\n  BOOST_DI_INJECT(x06) {}\n};\nstruct x07 {\n  BOOST_DI_INJECT(x07) {}\n};\nstruct x08 {\n  BOOST_DI_INJECT(x08) {}\n};\nstruct x09 {\n  BOOST_DI_INJECT(x09) {}\n};\nstruct x10 {\n  BOOST_DI_INJECT(x10) {}\n};\nstruct x11 {\n  BOOST_DI_INJECT(x11) {}\n};\nstruct x12 {\n  BOOST_DI_INJECT(x12) {}\n};\nstruct x13 {\n  BOOST_DI_INJECT(x13) {}\n};\nstruct x14 {\n  BOOST_DI_INJECT(x14) {}\n};\nstruct x15 {\n  BOOST_DI_INJECT(x15) {}\n};\nstruct x16 {\n  BOOST_DI_INJECT(x16) {}\n};\nstruct x17 {\n  BOOST_DI_INJECT(x17) {}\n};\nstruct x18 {\n  BOOST_DI_INJECT(x18) {}\n};\nstruct x19 {\n  BOOST_DI_INJECT(x19) {}\n};\nstruct x20 {\n  BOOST_DI_INJECT(x20) {}\n};\nstruct x21 {\n  BOOST_DI_INJECT(x21) {}\n};\nstruct x22 {\n  BOOST_DI_INJECT(x22) {}\n};\nstruct x23 {\n  BOOST_DI_INJECT(x23) {}\n};\nstruct x24 {\n  BOOST_DI_INJECT(x24) {}\n};\nstruct x25 {\n  BOOST_DI_INJECT(x25) {}\n};\nstruct x26 {\n  BOOST_DI_INJECT(x26) {}\n};\nstruct x27 {\n  BOOST_DI_INJECT(x27) {}\n};\nstruct x28 {\n  BOOST_DI_INJECT(x28) {}\n};\nstruct x29 {\n  BOOST_DI_INJECT(x29) {}\n};\nstruct x30 {\n  BOOST_DI_INJECT(x30) {}\n};\nstruct x31 {\n  BOOST_DI_INJECT(x31) {}\n};\nstruct x32 {\n  BOOST_DI_INJECT(x32) {}\n};\nstruct x33 {\n  BOOST_DI_INJECT(x33) {}\n};\nstruct x34 {\n  BOOST_DI_INJECT(x34) {}\n};\nstruct x35 {\n  BOOST_DI_INJECT(x35) {}\n};\nstruct x36 {\n  BOOST_DI_INJECT(x36) {}\n};\nstruct x37 {\n  BOOST_DI_INJECT(x37) {}\n};\nstruct x38 {\n  BOOST_DI_INJECT(x38) {}\n};\nstruct x39 {\n  BOOST_DI_INJECT(x39) {}\n};\nstruct x40 {\n  BOOST_DI_INJECT(x40) {}\n};\nstruct x41 {\n  BOOST_DI_INJECT(x41) {}\n};\nstruct x42 {\n  BOOST_DI_INJECT(x42) {}\n};\nstruct x43 {\n  BOOST_DI_INJECT(x43) {}\n};\nstruct x44 {\n  BOOST_DI_INJECT(x44) {}\n};\nstruct x45 {\n  BOOST_DI_INJECT(x45) {}\n};\nstruct x46 {\n  BOOST_DI_INJECT(x46) {}\n};\nstruct x47 {\n  BOOST_DI_INJECT(x47) {}\n};\nstruct x48 {\n  BOOST_DI_INJECT(x48) {}\n};\nstruct x49 {\n  BOOST_DI_INJECT(x49) {}\n};\nstruct x50 {\n  BOOST_DI_INJECT(x50) {}\n};\nstruct x51 {\n  BOOST_DI_INJECT(x51) {}\n};\nstruct x52 {\n  BOOST_DI_INJECT(x52) {}\n};\nstruct x53 {\n  BOOST_DI_INJECT(x53) {}\n};\nstruct x54 {\n  BOOST_DI_INJECT(x54) {}\n};\nstruct x55 {\n  BOOST_DI_INJECT(x55) {}\n};\nstruct x56 {\n  BOOST_DI_INJECT(x56) {}\n};\nstruct x57 {\n  BOOST_DI_INJECT(x57) {}\n};\nstruct x58 {\n  BOOST_DI_INJECT(x58) {}\n};\nstruct x59 {\n  BOOST_DI_INJECT(x59) {}\n};\nstruct x60 {\n  BOOST_DI_INJECT(x60) {}\n};\nstruct x61 {\n  BOOST_DI_INJECT(x61) {}\n};\nstruct x62 {\n  BOOST_DI_INJECT(x62) {}\n};\nstruct x63 {\n  BOOST_DI_INJECT(x63) {}\n};\nstruct x64 {\n  BOOST_DI_INJECT(x64) {}\n};\nstruct x65 {\n  BOOST_DI_INJECT(x65) {}\n};\nstruct x66 {\n  BOOST_DI_INJECT(x66) {}\n};\nstruct x67 {\n  BOOST_DI_INJECT(x67) {}\n};\nstruct x68 {\n  BOOST_DI_INJECT(x68) {}\n};\nstruct x69 {\n  BOOST_DI_INJECT(x69) {}\n};\nstruct x70 {\n  BOOST_DI_INJECT(x70) {}\n};\nstruct x71 {\n  BOOST_DI_INJECT(x71) {}\n};\nstruct x72 {\n  BOOST_DI_INJECT(x72) {}\n};\nstruct x73 {\n  BOOST_DI_INJECT(x73) {}\n};\nstruct x74 {\n  BOOST_DI_INJECT(x74) {}\n};\nstruct x75 {\n  BOOST_DI_INJECT(x75) {}\n};\nstruct x76 {\n  BOOST_DI_INJECT(x76) {}\n};\nstruct x77 {\n  BOOST_DI_INJECT(x77) {}\n};\nstruct x78 {\n  BOOST_DI_INJECT(x78) {}\n};\nstruct x79 {\n  BOOST_DI_INJECT(x79) {}\n};\nstruct x80 {\n  BOOST_DI_INJECT(x80) {}\n};\nstruct x81 {\n  BOOST_DI_INJECT(x81) {}\n};\nstruct x82 {\n  BOOST_DI_INJECT(x82) {}\n};\nstruct x83 {\n  BOOST_DI_INJECT(x83) {}\n};\nstruct x84 {\n  BOOST_DI_INJECT(x84) {}\n};\nstruct x85 {\n  BOOST_DI_INJECT(x85) {}\n};\nstruct x86 {\n  BOOST_DI_INJECT(x86) {}\n};\nstruct x87 {\n  BOOST_DI_INJECT(x87) {}\n};\nstruct x88 {\n  BOOST_DI_INJECT(x88) {}\n};\nstruct x89 {\n  BOOST_DI_INJECT(x89) {}\n};\nstruct x90 {\n  BOOST_DI_INJECT(x90) {}\n};\nstruct x91 {\n  BOOST_DI_INJECT(x91) {}\n};\nstruct x92 {\n  BOOST_DI_INJECT(x92) {}\n};\nstruct x93 {\n  BOOST_DI_INJECT(x93) {}\n};\nstruct x94 {\n  BOOST_DI_INJECT(x94) {}\n};\nstruct x95 {\n  BOOST_DI_INJECT(x95) {}\n};\nstruct x96 {\n  BOOST_DI_INJECT(x96) {}\n};\nstruct x97 {\n  BOOST_DI_INJECT(x97) {}\n};\nstruct x98 {\n  BOOST_DI_INJECT(x98) {}\n};\nstruct x99 {\n  BOOST_DI_INJECT(x99) {}\n};\n\nstruct y00 {\n  BOOST_DI_INJECT(y00) {}\n};\nstruct y01 {\n  BOOST_DI_INJECT(y01, y00) {}\n};\nstruct y02 {\n  BOOST_DI_INJECT(y02, y00, y01) {}\n};\nstruct y03 {\n  BOOST_DI_INJECT(y03, y00, y01, y02) {}\n};\nstruct y04 {\n  BOOST_DI_INJECT(y04, y00, y01, y02, y03) {}\n};\nstruct y05 {\n  BOOST_DI_INJECT(y05, y00, y01, y02, y03, y04) {}\n};\nstruct y06 {\n  BOOST_DI_INJECT(y06, y00, y01, y02, y03, y04, y05) {}\n};\nstruct y07 {\n  BOOST_DI_INJECT(y07, y00, y01, y02, y03, y04, y05, y06) {}\n};\nstruct y08 {\n  BOOST_DI_INJECT(y08, y00, y01, y02, y03, y04, y05, y06, y07) {}\n};\nstruct y09 {\n  BOOST_DI_INJECT(y09, y00, y01, y02, y03, y04, y05, y06, y07, y08) {}\n};\nstruct y10 {\n  BOOST_DI_INJECT(y10, y00, y01, y02, y03, y04, y05, y06, y07, y08, y09) {}\n};\nstruct y11 {\n  BOOST_DI_INJECT(y11, y01, y02, y03, y04, y05, y06, y07, y08, y09, y10) {}\n};\nstruct y12 {\n  BOOST_DI_INJECT(y12, y02, y03, y04, y05, y06, y07, y08, y09, y10, y11) {}\n};\nstruct y13 {\n  BOOST_DI_INJECT(y13, y03, y04, y05, y06, y07, y08, y09, y10, y11, y12) {}\n};\nstruct y14 {\n  BOOST_DI_INJECT(y14, y04, y05, y06, y07, y08, y09, y10, y11, y12, y13) {}\n};\nstruct y15 {\n  BOOST_DI_INJECT(y15, y05, y06, y07, y08, y09, y10, y11, y12, y13, y14) {}\n};\nstruct y16 {\n  BOOST_DI_INJECT(y16, y06, y07, y08, y09, y10, y11, y12, y13, y14, y15) {}\n};\nstruct y17 {\n  BOOST_DI_INJECT(y17, y07, y08, y09, y10, y11, y12, y13, y14, y15, y16) {}\n};\nstruct y18 {\n  BOOST_DI_INJECT(y18, y08, y09, y10, y11, y12, y13, y14, y15, y16, y17) {}\n};\nstruct y19 {\n  BOOST_DI_INJECT(y19, y09, y10, y11, y12, y13, y14, y15, y16, y17, y18) {}\n};\nstruct y20 {\n  BOOST_DI_INJECT(y20, y10, y11, y12, y13, y14, y15, y16, y17, y18, y19) {}\n};\nstruct y21 {\n  BOOST_DI_INJECT(y21, y11, y12, y13, y14, y15, y16, y17, y18, y19, y20) {}\n};\nstruct y22 {\n  BOOST_DI_INJECT(y22, y12, y13, y14, y15, y16, y17, y18, y19, y20, y21) {}\n};\nstruct y23 {\n  BOOST_DI_INJECT(y23, y13, y14, y15, y16, y17, y18, y19, y20, y21, y22) {}\n};\nstruct y24 {\n  BOOST_DI_INJECT(y24, y14, y15, y16, y17, y18, y19, y20, y21, y22, y23) {}\n};\nstruct y25 {\n  BOOST_DI_INJECT(y25, y15, y16, y17, y18, y19, y20, y21, y22, y23, y24) {}\n};\nstruct y26 {\n  BOOST_DI_INJECT(y26, y16, y17, y18, y19, y20, y21, y22, y23, y24, y25) {}\n};\nstruct y27 {\n  BOOST_DI_INJECT(y27, y17, y18, y19, y20, y21, y22, y23, y24, y25, y26) {}\n};\nstruct y28 {\n  BOOST_DI_INJECT(y28, y18, y19, y20, y21, y22, y23, y24, y25, y26, y27) {}\n};\nstruct y29 {\n  BOOST_DI_INJECT(y29, y19, y20, y21, y22, y23, y24, y25, y26, y27, y28) {}\n};\nstruct y30 {\n  BOOST_DI_INJECT(y30, y20, y21, y22, y23, y24, y25, y26, y27, y28, y29) {}\n};\nstruct y31 {\n  BOOST_DI_INJECT(y31, y21, y22, y23, y24, y25, y26, y27, y28, y29, y30) {}\n};\nstruct y32 {\n  BOOST_DI_INJECT(y32, y22, y23, y24, y25, y26, y27, y28, y29, y30, y31) {}\n};\nstruct y33 {\n  BOOST_DI_INJECT(y33, y23, y24, y25, y26, y27, y28, y29, y30, y31, y32) {}\n};\nstruct y34 {\n  BOOST_DI_INJECT(y34, y24, y25, y26, y27, y28, y29, y30, y31, y32, y33) {}\n};\nstruct y35 {\n  BOOST_DI_INJECT(y35, y25, y26, y27, y28, y29, y30, y31, y32, y33, y34) {}\n};\nstruct y36 {\n  BOOST_DI_INJECT(y36, y26, y27, y28, y29, y30, y31, y32, y33, y34, y35) {}\n};\nstruct y37 {\n  BOOST_DI_INJECT(y37, y27, y28, y29, y30, y31, y32, y33, y34, y35, y36) {}\n};\nstruct y38 {\n  BOOST_DI_INJECT(y38, y28, y29, y30, y31, y32, y33, y34, y35, y36, y37) {}\n};\nstruct y39 {\n  BOOST_DI_INJECT(y39, y29, y30, y31, y32, y33, y34, y35, y36, y37, y38) {}\n};\nstruct y40 {\n  BOOST_DI_INJECT(y40, y30, y31, y32, y33, y34, y35, y36, y37, y38, y39) {}\n};\nstruct y41 {\n  BOOST_DI_INJECT(y41, y31, y32, y33, y34, y35, y36, y37, y38, y39, y40) {}\n};\nstruct y42 {\n  BOOST_DI_INJECT(y42, y32, y33, y34, y35, y36, y37, y38, y39, y40, y41) {}\n};\nstruct y43 {\n  BOOST_DI_INJECT(y43, y33, y34, y35, y36, y37, y38, y39, y40, y41, y42) {}\n};\nstruct y44 {\n  BOOST_DI_INJECT(y44, y34, y35, y36, y37, y38, y39, y40, y41, y42, y43) {}\n};\nstruct y45 {\n  BOOST_DI_INJECT(y45, y35, y36, y37, y38, y39, y40, y41, y42, y43, y44) {}\n};\nstruct y46 {\n  BOOST_DI_INJECT(y46, y36, y37, y38, y39, y40, y41, y42, y43, y44, y45) {}\n};\nstruct y47 {\n  BOOST_DI_INJECT(y47, y37, y38, y39, y40, y41, y42, y43, y44, y45, y46) {}\n};\nstruct y48 {\n  BOOST_DI_INJECT(y48, y38, y39, y40, y41, y42, y43, y44, y45, y46, y47) {}\n};\nstruct y49 {\n  BOOST_DI_INJECT(y49, y39, y40, y41, y42, y43, y44, y45, y46, y47, y48) {}\n};\nstruct y50 {\n  BOOST_DI_INJECT(y50, y40, y41, y42, y43, y44, y45, y46, y47, y48, y49) {}\n};\nstruct y51 {\n  BOOST_DI_INJECT(y51, y41, y42, y43, y44, y45, y46, y47, y48, y49, y50) {}\n};\nstruct y52 {\n  BOOST_DI_INJECT(y52, y42, y43, y44, y45, y46, y47, y48, y49, y50, y51) {}\n};\nstruct y53 {\n  BOOST_DI_INJECT(y53, y43, y44, y45, y46, y47, y48, y49, y50, y51, y52) {}\n};\nstruct y54 {\n  BOOST_DI_INJECT(y54, y44, y45, y46, y47, y48, y49, y50, y51, y52, y53) {}\n};\nstruct y55 {\n  BOOST_DI_INJECT(y55, y45, y46, y47, y48, y49, y50, y51, y52, y53, y54) {}\n};\nstruct y56 {\n  BOOST_DI_INJECT(y56, y46, y47, y48, y49, y50, y51, y52, y53, y54, y55) {}\n};\nstruct y57 {\n  BOOST_DI_INJECT(y57, y47, y48, y49, y50, y51, y52, y53, y54, y55, y56) {}\n};\nstruct y58 {\n  BOOST_DI_INJECT(y58, y48, y49, y50, y51, y52, y53, y54, y55, y56, y57) {}\n};\nstruct y59 {\n  BOOST_DI_INJECT(y59, y49, y50, y51, y52, y53, y54, y55, y56, y57, y58) {}\n};\nstruct y60 {\n  BOOST_DI_INJECT(y60, y50, y51, y52, y53, y54, y55, y56, y57, y58, y59) {}\n};\nstruct y61 {\n  BOOST_DI_INJECT(y61, y51, y52, y53, y54, y55, y56, y57, y58, y59, y60) {}\n};\nstruct y62 {\n  BOOST_DI_INJECT(y62, y52, y53, y54, y55, y56, y57, y58, y59, y60, y61) {}\n};\nstruct y63 {\n  BOOST_DI_INJECT(y63, y53, y54, y55, y56, y57, y58, y59, y60, y61, y62) {}\n};\nstruct y64 {\n  BOOST_DI_INJECT(y64, y54, y55, y56, y57, y58, y59, y60, y61, y62, y63) {}\n};\nstruct y65 {\n  BOOST_DI_INJECT(y65, y55, y56, y57, y58, y59, y60, y61, y62, y63, y64) {}\n};\nstruct y66 {\n  BOOST_DI_INJECT(y66, y56, y57, y58, y59, y60, y61, y62, y63, y64, y65) {}\n};\nstruct y67 {\n  BOOST_DI_INJECT(y67, y57, y58, y59, y60, y61, y62, y63, y64, y65, y66) {}\n};\nstruct y68 {\n  BOOST_DI_INJECT(y68, y58, y59, y60, y61, y62, y63, y64, y65, y66, y67) {}\n};\nstruct y69 {\n  BOOST_DI_INJECT(y69, y59, y60, y61, y62, y63, y64, y65, y66, y67, y68) {}\n};\nstruct y70 {\n  BOOST_DI_INJECT(y70, y60, y61, y62, y63, y64, y65, y66, y67, y68, y69) {}\n};\nstruct y71 {\n  BOOST_DI_INJECT(y71, y61, y62, y63, y64, y65, y66, y67, y68, y69, y70) {}\n};\nstruct y72 {\n  BOOST_DI_INJECT(y72, y62, y63, y64, y65, y66, y67, y68, y69, y70, y71) {}\n};\nstruct y73 {\n  BOOST_DI_INJECT(y73, y63, y64, y65, y66, y67, y68, y69, y70, y71, y72) {}\n};\nstruct y74 {\n  BOOST_DI_INJECT(y74, y64, y65, y66, y67, y68, y69, y70, y71, y72, y73) {}\n};\nstruct y75 {\n  BOOST_DI_INJECT(y75, y65, y66, y67, y68, y69, y70, y71, y72, y73, y74) {}\n};\nstruct y76 {\n  BOOST_DI_INJECT(y76, y66, y67, y68, y69, y70, y71, y72, y73, y74, y75) {}\n};\nstruct y77 {\n  BOOST_DI_INJECT(y77, y67, y68, y69, y70, y71, y72, y73, y74, y75, y76) {}\n};\nstruct y78 {\n  BOOST_DI_INJECT(y78, y68, y69, y70, y71, y72, y73, y74, y75, y76, y77) {}\n};\nstruct y79 {\n  BOOST_DI_INJECT(y79, y69, y70, y71, y72, y73, y74, y75, y76, y77, y78) {}\n};\nstruct y80 {\n  BOOST_DI_INJECT(y80, y70, y71, y72, y73, y74, y75, y76, y77, y78, y79) {}\n};\nstruct y81 {\n  BOOST_DI_INJECT(y81, y71, y72, y73, y74, y75, y76, y77, y78, y79, y80) {}\n};\nstruct y82 {\n  BOOST_DI_INJECT(y82, y72, y73, y74, y75, y76, y77, y78, y79, y80, y81) {}\n};\nstruct y83 {\n  BOOST_DI_INJECT(y83, y73, y74, y75, y76, y77, y78, y79, y80, y81, y82) {}\n};\nstruct y84 {\n  BOOST_DI_INJECT(y84, y74, y75, y76, y77, y78, y79, y80, y81, y82, y83) {}\n};\nstruct y85 {\n  BOOST_DI_INJECT(y85, y75, y76, y77, y78, y79, y80, y81, y82, y83, y84) {}\n};\nstruct y86 {\n  BOOST_DI_INJECT(y86, y76, y77, y78, y79, y80, y81, y82, y83, y84, y85) {}\n};\nstruct y87 {\n  BOOST_DI_INJECT(y87, y77, y78, y79, y80, y81, y82, y83, y84, y85, y86) {}\n};\nstruct y88 {\n  BOOST_DI_INJECT(y88, y78, y79, y80, y81, y82, y83, y84, y85, y86, y87) {}\n};\nstruct y89 {\n  BOOST_DI_INJECT(y89, y79, y80, y81, y82, y83, y84, y85, y86, y87, y88) {}\n};\nstruct y90 {\n  BOOST_DI_INJECT(y90, y80, y81, y82, y83, y84, y85, y86, y87, y88, y89) {}\n};\nstruct y91 {\n  BOOST_DI_INJECT(y91, y81, y82, y83, y84, y85, y86, y87, y88, y89, y90) {}\n};\nstruct y92 {\n  BOOST_DI_INJECT(y92, y82, y83, y84, y85, y86, y87, y88, y89, y90, y91) {}\n};\nstruct y93 {\n  BOOST_DI_INJECT(y93, y83, y84, y85, y86, y87, y88, y89, y90, y91, y92) {}\n};\nstruct y94 {\n  BOOST_DI_INJECT(y94, y84, y85, y86, y87, y88, y89, y90, y91, y92, y93) {}\n};\nstruct y95 {\n  BOOST_DI_INJECT(y95, y85, y86, y87, y88, y89, y90, y91, y92, y93, y94) {}\n};\nstruct y96 {\n  BOOST_DI_INJECT(y96, y86, y87, y88, y89, y90, y91, y92, y93, y94, y95) {}\n};\nstruct y97 {\n  BOOST_DI_INJECT(y97, y87, y88, y89, y90, y91, y92, y93, y94, y95, y96) {}\n};\nstruct y98 {\n  BOOST_DI_INJECT(y98, y88, y89, y90, y91, y92, y93, y94, y95, y96, y97) {}\n};\nstruct y99 {\n  BOOST_DI_INJECT(y99, y89, y90, y91, y92, y93, y94, y95, y96, y97, y98) {}\n};\n\nstruct i00 {\n  virtual ~i00() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl00 : i00 {\n  BOOST_DI_INJECT(impl00, y00, y01, y02, y03, y04, y05, y06, y07, y08, y09) {}\n  void dummy() override {}\n};\nstruct i01 {\n  virtual ~i01() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl01 : i01 {\n  BOOST_DI_INJECT(impl01, y01, y02, y03, y04, y05, y06, y07, y08, y09, y10) {}\n  void dummy() override {}\n};\nstruct i02 {\n  virtual ~i02() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl02 : i02 {\n  BOOST_DI_INJECT(impl02, y02, y03, y04, y05, y06, y07, y08, y09, y10, y11) {}\n  void dummy() override {}\n};\nstruct i03 {\n  virtual ~i03() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl03 : i03 {\n  BOOST_DI_INJECT(impl03, y03, y04, y05, y06, y07, y08, y09, y10, y11, y12) {}\n  void dummy() override {}\n};\nstruct i04 {\n  virtual ~i04() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl04 : i04 {\n  BOOST_DI_INJECT(impl04, y04, y05, y06, y07, y08, y09, y10, y11, y12, y13) {}\n  void dummy() override {}\n};\nstruct i05 {\n  virtual ~i05() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl05 : i05 {\n  BOOST_DI_INJECT(impl05, y05, y06, y07, y08, y09, y10, y11, y12, y13, y14) {}\n  void dummy() override {}\n};\nstruct i06 {\n  virtual ~i06() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl06 : i06 {\n  BOOST_DI_INJECT(impl06, y06, y07, y08, y09, y10, y11, y12, y13, y14, y15) {}\n  void dummy() override {}\n};\nstruct i07 {\n  virtual ~i07() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl07 : i07 {\n  BOOST_DI_INJECT(impl07, y07, y08, y09, y10, y11, y12, y13, y14, y15, y16) {}\n  void dummy() override {}\n};\nstruct i08 {\n  virtual ~i08() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl08 : i08 {\n  BOOST_DI_INJECT(impl08, y08, y09, y10, y11, y12, y13, y14, y15, y16, y17) {}\n  void dummy() override {}\n};\nstruct i09 {\n  virtual ~i09() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl09 : i09 {\n  BOOST_DI_INJECT(impl09, y09, y10, y11, y12, y13, y14, y15, y16, y17, y18) {}\n  void dummy() override {}\n};\nstruct i10 {\n  virtual ~i10() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl10 : i10 {\n  BOOST_DI_INJECT(impl10, y10, y11, y12, y13, y14, y15, y16, y17, y18, y19) {}\n  void dummy() override {}\n};\nstruct i11 {\n  virtual ~i11() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl11 : i11 {\n  BOOST_DI_INJECT(impl11, y11, y12, y13, y14, y15, y16, y17, y18, y19, y20) {}\n  void dummy() override {}\n};\nstruct i12 {\n  virtual ~i12() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl12 : i12 {\n  BOOST_DI_INJECT(impl12, y12, y13, y14, y15, y16, y17, y18, y19, y20, y21) {}\n  void dummy() override {}\n};\nstruct i13 {\n  virtual ~i13() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl13 : i13 {\n  BOOST_DI_INJECT(impl13, y13, y14, y15, y16, y17, y18, y19, y20, y21, y22) {}\n  void dummy() override {}\n};\nstruct i14 {\n  virtual ~i14() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl14 : i14 {\n  BOOST_DI_INJECT(impl14, y14, y15, y16, y17, y18, y19, y20, y21, y22, y23) {}\n  void dummy() override {}\n};\nstruct i15 {\n  virtual ~i15() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl15 : i15 {\n  BOOST_DI_INJECT(impl15, y15, y16, y17, y18, y19, y20, y21, y22, y23, y24) {}\n  void dummy() override {}\n};\nstruct i16 {\n  virtual ~i16() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl16 : i16 {\n  BOOST_DI_INJECT(impl16, y16, y17, y18, y19, y20, y21, y22, y23, y24, y25) {}\n  void dummy() override {}\n};\nstruct i17 {\n  virtual ~i17() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl17 : i17 {\n  BOOST_DI_INJECT(impl17, y17, y18, y19, y20, y21, y22, y23, y24, y25, y26) {}\n  void dummy() override {}\n};\nstruct i18 {\n  virtual ~i18() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl18 : i18 {\n  BOOST_DI_INJECT(impl18, y18, y19, y20, y21, y22, y23, y24, y25, y26, y27) {}\n  void dummy() override {}\n};\nstruct i19 {\n  virtual ~i19() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl19 : i19 {\n  BOOST_DI_INJECT(impl19, y19, y20, y21, y22, y23, y24, y25, y26, y27, y28) {}\n  void dummy() override {}\n};\nstruct i20 {\n  virtual ~i20() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl20 : i20 {\n  BOOST_DI_INJECT(impl20, y20, y21, y22, y23, y24, y25, y26, y27, y28, y29) {}\n  void dummy() override {}\n};\nstruct i21 {\n  virtual ~i21() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl21 : i21 {\n  BOOST_DI_INJECT(impl21, y21, y22, y23, y24, y25, y26, y27, y28, y29, y30) {}\n  void dummy() override {}\n};\nstruct i22 {\n  virtual ~i22() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl22 : i22 {\n  BOOST_DI_INJECT(impl22, y22, y23, y24, y25, y26, y27, y28, y29, y30, y31) {}\n  void dummy() override {}\n};\nstruct i23 {\n  virtual ~i23() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl23 : i23 {\n  BOOST_DI_INJECT(impl23, y23, y24, y25, y26, y27, y28, y29, y30, y31, y32) {}\n  void dummy() override {}\n};\nstruct i24 {\n  virtual ~i24() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl24 : i24 {\n  BOOST_DI_INJECT(impl24, y24, y25, y26, y27, y28, y29, y30, y31, y32, y33) {}\n  void dummy() override {}\n};\nstruct i25 {\n  virtual ~i25() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl25 : i25 {\n  BOOST_DI_INJECT(impl25, y25, y26, y27, y28, y29, y30, y31, y32, y33, y34) {}\n  void dummy() override {}\n};\nstruct i26 {\n  virtual ~i26() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl26 : i26 {\n  BOOST_DI_INJECT(impl26, y26, y27, y28, y29, y30, y31, y32, y33, y34, y35) {}\n  void dummy() override {}\n};\nstruct i27 {\n  virtual ~i27() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl27 : i27 {\n  BOOST_DI_INJECT(impl27, y27, y28, y29, y30, y31, y32, y33, y34, y35, y36) {}\n  void dummy() override {}\n};\nstruct i28 {\n  virtual ~i28() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl28 : i28 {\n  BOOST_DI_INJECT(impl28, y28, y29, y30, y31, y32, y33, y34, y35, y36, y37) {}\n  void dummy() override {}\n};\nstruct i29 {\n  virtual ~i29() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl29 : i29 {\n  BOOST_DI_INJECT(impl29, y29, y30, y31, y32, y33, y34, y35, y36, y37, y38) {}\n  void dummy() override {}\n};\nstruct i30 {\n  virtual ~i30() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl30 : i30 {\n  BOOST_DI_INJECT(impl30, y30, y31, y32, y33, y34, y35, y36, y37, y38, y39) {}\n  void dummy() override {}\n};\nstruct i31 {\n  virtual ~i31() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl31 : i31 {\n  BOOST_DI_INJECT(impl31, y31, y32, y33, y34, y35, y36, y37, y38, y39, y40) {}\n  void dummy() override {}\n};\nstruct i32 {\n  virtual ~i32() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl32 : i32 {\n  BOOST_DI_INJECT(impl32, y32, y33, y34, y35, y36, y37, y38, y39, y40, y41) {}\n  void dummy() override {}\n};\nstruct i33 {\n  virtual ~i33() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl33 : i33 {\n  BOOST_DI_INJECT(impl33, y33, y34, y35, y36, y37, y38, y39, y40, y41, y42) {}\n  void dummy() override {}\n};\nstruct i34 {\n  virtual ~i34() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl34 : i34 {\n  BOOST_DI_INJECT(impl34, y34, y35, y36, y37, y38, y39, y40, y41, y42, y43) {}\n  void dummy() override {}\n};\nstruct i35 {\n  virtual ~i35() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl35 : i35 {\n  BOOST_DI_INJECT(impl35, y35, y36, y37, y38, y39, y40, y41, y42, y43, y44) {}\n  void dummy() override {}\n};\nstruct i36 {\n  virtual ~i36() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl36 : i36 {\n  BOOST_DI_INJECT(impl36, y36, y37, y38, y39, y40, y41, y42, y43, y44, y45) {}\n  void dummy() override {}\n};\nstruct i37 {\n  virtual ~i37() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl37 : i37 {\n  BOOST_DI_INJECT(impl37, y37, y38, y39, y40, y41, y42, y43, y44, y45, y46) {}\n  void dummy() override {}\n};\nstruct i38 {\n  virtual ~i38() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl38 : i38 {\n  BOOST_DI_INJECT(impl38, y38, y39, y40, y41, y42, y43, y44, y45, y46, y47) {}\n  void dummy() override {}\n};\nstruct i39 {\n  virtual ~i39() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl39 : i39 {\n  BOOST_DI_INJECT(impl39, y39, y40, y41, y42, y43, y44, y45, y46, y47, y48) {}\n  void dummy() override {}\n};\nstruct i40 {\n  virtual ~i40() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl40 : i40 {\n  BOOST_DI_INJECT(impl40, y40, y41, y42, y43, y44, y45, y46, y47, y48, y49) {}\n  void dummy() override {}\n};\nstruct i41 {\n  virtual ~i41() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl41 : i41 {\n  BOOST_DI_INJECT(impl41, y41, y42, y43, y44, y45, y46, y47, y48, y49, y50) {}\n  void dummy() override {}\n};\nstruct i42 {\n  virtual ~i42() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl42 : i42 {\n  BOOST_DI_INJECT(impl42, y42, y43, y44, y45, y46, y47, y48, y49, y50, y51) {}\n  void dummy() override {}\n};\nstruct i43 {\n  virtual ~i43() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl43 : i43 {\n  BOOST_DI_INJECT(impl43, y43, y44, y45, y46, y47, y48, y49, y50, y51, y52) {}\n  void dummy() override {}\n};\nstruct i44 {\n  virtual ~i44() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl44 : i44 {\n  BOOST_DI_INJECT(impl44, y44, y45, y46, y47, y48, y49, y50, y51, y52, y53) {}\n  void dummy() override {}\n};\nstruct i45 {\n  virtual ~i45() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl45 : i45 {\n  BOOST_DI_INJECT(impl45, y45, y46, y47, y48, y49, y50, y51, y52, y53, y54) {}\n  void dummy() override {}\n};\nstruct i46 {\n  virtual ~i46() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl46 : i46 {\n  BOOST_DI_INJECT(impl46, y46, y47, y48, y49, y50, y51, y52, y53, y54, y55) {}\n  void dummy() override {}\n};\nstruct i47 {\n  virtual ~i47() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl47 : i47 {\n  BOOST_DI_INJECT(impl47, y47, y48, y49, y50, y51, y52, y53, y54, y55, y56) {}\n  void dummy() override {}\n};\nstruct i48 {\n  virtual ~i48() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl48 : i48 {\n  BOOST_DI_INJECT(impl48, y48, y49, y50, y51, y52, y53, y54, y55, y56, y57) {}\n  void dummy() override {}\n};\nstruct i49 {\n  virtual ~i49() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl49 : i49 {\n  BOOST_DI_INJECT(impl49, y49, y50, y51, y52, y53, y54, y55, y56, y57, y58) {}\n  void dummy() override {}\n};\nstruct i50 {\n  virtual ~i50() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl50 : i50 {\n  BOOST_DI_INJECT(impl50, y50, y51, y52, y53, y54, y55, y56, y57, y58, y59) {}\n  void dummy() override {}\n};\nstruct i51 {\n  virtual ~i51() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl51 : i51 {\n  BOOST_DI_INJECT(impl51, y51, y52, y53, y54, y55, y56, y57, y58, y59, y60) {}\n  void dummy() override {}\n};\nstruct i52 {\n  virtual ~i52() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl52 : i52 {\n  BOOST_DI_INJECT(impl52, y52, y53, y54, y55, y56, y57, y58, y59, y60, y61) {}\n  void dummy() override {}\n};\nstruct i53 {\n  virtual ~i53() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl53 : i53 {\n  BOOST_DI_INJECT(impl53, y53, y54, y55, y56, y57, y58, y59, y60, y61, y62) {}\n  void dummy() override {}\n};\nstruct i54 {\n  virtual ~i54() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl54 : i54 {\n  BOOST_DI_INJECT(impl54, y54, y55, y56, y57, y58, y59, y60, y61, y62, y63) {}\n  void dummy() override {}\n};\nstruct i55 {\n  virtual ~i55() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl55 : i55 {\n  BOOST_DI_INJECT(impl55, y55, y56, y57, y58, y59, y60, y61, y62, y63, y64) {}\n  void dummy() override {}\n};\nstruct i56 {\n  virtual ~i56() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl56 : i56 {\n  BOOST_DI_INJECT(impl56, y56, y57, y58, y59, y60, y61, y62, y63, y64, y65) {}\n  void dummy() override {}\n};\nstruct i57 {\n  virtual ~i57() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl57 : i57 {\n  BOOST_DI_INJECT(impl57, y57, y58, y59, y60, y61, y62, y63, y64, y65, y66) {}\n  void dummy() override {}\n};\nstruct i58 {\n  virtual ~i58() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl58 : i58 {\n  BOOST_DI_INJECT(impl58, y58, y59, y60, y61, y62, y63, y64, y65, y66, y67) {}\n  void dummy() override {}\n};\nstruct i59 {\n  virtual ~i59() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl59 : i59 {\n  BOOST_DI_INJECT(impl59, y59, y60, y61, y62, y63, y64, y65, y66, y67, y68) {}\n  void dummy() override {}\n};\nstruct i60 {\n  virtual ~i60() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl60 : i60 {\n  BOOST_DI_INJECT(impl60, y60, y61, y62, y63, y64, y65, y66, y67, y68, y69) {}\n  void dummy() override {}\n};\nstruct i61 {\n  virtual ~i61() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl61 : i61 {\n  BOOST_DI_INJECT(impl61, y61, y62, y63, y64, y65, y66, y67, y68, y69, y70) {}\n  void dummy() override {}\n};\nstruct i62 {\n  virtual ~i62() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl62 : i62 {\n  BOOST_DI_INJECT(impl62, y62, y63, y64, y65, y66, y67, y68, y69, y70, y71) {}\n  void dummy() override {}\n};\nstruct i63 {\n  virtual ~i63() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl63 : i63 {\n  BOOST_DI_INJECT(impl63, y63, y64, y65, y66, y67, y68, y69, y70, y71, y72) {}\n  void dummy() override {}\n};\nstruct i64 {\n  virtual ~i64() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl64 : i64 {\n  BOOST_DI_INJECT(impl64, y64, y65, y66, y67, y68, y69, y70, y71, y72, y73) {}\n  void dummy() override {}\n};\nstruct i65 {\n  virtual ~i65() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl65 : i65 {\n  BOOST_DI_INJECT(impl65, y65, y66, y67, y68, y69, y70, y71, y72, y73, y74) {}\n  void dummy() override {}\n};\nstruct i66 {\n  virtual ~i66() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl66 : i66 {\n  BOOST_DI_INJECT(impl66, y66, y67, y68, y69, y70, y71, y72, y73, y74, y75) {}\n  void dummy() override {}\n};\nstruct i67 {\n  virtual ~i67() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl67 : i67 {\n  BOOST_DI_INJECT(impl67, y67, y68, y69, y70, y71, y72, y73, y74, y75, y76) {}\n  void dummy() override {}\n};\nstruct i68 {\n  virtual ~i68() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl68 : i68 {\n  BOOST_DI_INJECT(impl68, y68, y69, y70, y71, y72, y73, y74, y75, y76, y77) {}\n  void dummy() override {}\n};\nstruct i69 {\n  virtual ~i69() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl69 : i69 {\n  BOOST_DI_INJECT(impl69, y69, y70, y71, y72, y73, y74, y75, y76, y77, y78) {}\n  void dummy() override {}\n};\nstruct i70 {\n  virtual ~i70() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl70 : i70 {\n  BOOST_DI_INJECT(impl70, y70, y71, y72, y73, y74, y75, y76, y77, y78, y79) {}\n  void dummy() override {}\n};\nstruct i71 {\n  virtual ~i71() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl71 : i71 {\n  BOOST_DI_INJECT(impl71, y71, y72, y73, y74, y75, y76, y77, y78, y79, y80) {}\n  void dummy() override {}\n};\nstruct i72 {\n  virtual ~i72() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl72 : i72 {\n  BOOST_DI_INJECT(impl72, y72, y73, y74, y75, y76, y77, y78, y79, y80, y81) {}\n  void dummy() override {}\n};\nstruct i73 {\n  virtual ~i73() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl73 : i73 {\n  BOOST_DI_INJECT(impl73, y73, y74, y75, y76, y77, y78, y79, y80, y81, y82) {}\n  void dummy() override {}\n};\nstruct i74 {\n  virtual ~i74() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl74 : i74 {\n  BOOST_DI_INJECT(impl74, y74, y75, y76, y77, y78, y79, y80, y81, y82, y83) {}\n  void dummy() override {}\n};\nstruct i75 {\n  virtual ~i75() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl75 : i75 {\n  BOOST_DI_INJECT(impl75, y75, y76, y77, y78, y79, y80, y81, y82, y83, y84) {}\n  void dummy() override {}\n};\nstruct i76 {\n  virtual ~i76() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl76 : i76 {\n  BOOST_DI_INJECT(impl76, y76, y77, y78, y79, y80, y81, y82, y83, y84, y85) {}\n  void dummy() override {}\n};\nstruct i77 {\n  virtual ~i77() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl77 : i77 {\n  BOOST_DI_INJECT(impl77, y77, y78, y79, y80, y81, y82, y83, y84, y85, y86) {}\n  void dummy() override {}\n};\nstruct i78 {\n  virtual ~i78() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl78 : i78 {\n  BOOST_DI_INJECT(impl78, y78, y79, y80, y81, y82, y83, y84, y85, y86, y87) {}\n  void dummy() override {}\n};\nstruct i79 {\n  virtual ~i79() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl79 : i79 {\n  BOOST_DI_INJECT(impl79, y79, y80, y81, y82, y83, y84, y85, y86, y87, y88) {}\n  void dummy() override {}\n};\nstruct i80 {\n  virtual ~i80() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl80 : i80 {\n  BOOST_DI_INJECT(impl80, y80, y81, y82, y83, y84, y85, y86, y87, y88, y89) {}\n  void dummy() override {}\n};\nstruct i81 {\n  virtual ~i81() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl81 : i81 {\n  BOOST_DI_INJECT(impl81, y81, y82, y83, y84, y85, y86, y87, y88, y89, y90) {}\n  void dummy() override {}\n};\nstruct i82 {\n  virtual ~i82() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl82 : i82 {\n  BOOST_DI_INJECT(impl82, y82, y83, y84, y85, y86, y87, y88, y89, y90, y91) {}\n  void dummy() override {}\n};\nstruct i83 {\n  virtual ~i83() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl83 : i83 {\n  BOOST_DI_INJECT(impl83, y83, y84, y85, y86, y87, y88, y89, y90, y91, y92) {}\n  void dummy() override {}\n};\nstruct i84 {\n  virtual ~i84() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl84 : i84 {\n  BOOST_DI_INJECT(impl84, y84, y85, y86, y87, y88, y89, y90, y91, y92, y93) {}\n  void dummy() override {}\n};\nstruct i85 {\n  virtual ~i85() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl85 : i85 {\n  BOOST_DI_INJECT(impl85, y85, y86, y87, y88, y89, y90, y91, y92, y93, y94) {}\n  void dummy() override {}\n};\nstruct i86 {\n  virtual ~i86() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl86 : i86 {\n  BOOST_DI_INJECT(impl86, y86, y87, y88, y89, y90, y91, y92, y93, y94, y95) {}\n  void dummy() override {}\n};\nstruct i87 {\n  virtual ~i87() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl87 : i87 {\n  BOOST_DI_INJECT(impl87, y87, y88, y89, y90, y91, y92, y93, y94, y95, y96) {}\n  void dummy() override {}\n};\nstruct i88 {\n  virtual ~i88() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl88 : i88 {\n  BOOST_DI_INJECT(impl88, y88, y89, y90, y91, y92, y93, y94, y95, y96, y97) {}\n  void dummy() override {}\n};\nstruct i89 {\n  virtual ~i89() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl89 : i89 {\n  BOOST_DI_INJECT(impl89, y89, y90, y91, y92, y93, y94, y95, y96, y97, y98) {}\n  void dummy() override {}\n};\nstruct i90 {\n  virtual ~i90() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl90 : i90 {\n  BOOST_DI_INJECT(impl90, y90, y91, y92, y93, y94, y95, y96, y97, y98, y99) {}\n  void dummy() override {}\n};\nstruct i91 {\n  virtual ~i91() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl91 : i91 {\n  BOOST_DI_INJECT(impl91, y91, y92, y93, y94, y95, y96, y97, y98, y99, y00) {}\n  void dummy() override {}\n};\nstruct i92 {\n  virtual ~i92() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl92 : i92 {\n  BOOST_DI_INJECT(impl92, y92, y93, y94, y95, y96, y97, y98, y99, y00, y01) {}\n  void dummy() override {}\n};\nstruct i93 {\n  virtual ~i93() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl93 : i93 {\n  BOOST_DI_INJECT(impl93, y93, y94, y95, y96, y97, y98, y99, y00, y01, y02) {}\n  void dummy() override {}\n};\nstruct i94 {\n  virtual ~i94() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl94 : i94 {\n  BOOST_DI_INJECT(impl94, y94, y95, y96, y97, y98, y99, y00, y01, y02, y03) {}\n  void dummy() override {}\n};\nstruct i95 {\n  virtual ~i95() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl95 : i95 {\n  BOOST_DI_INJECT(impl95, y95, y96, y97, y98, y99, y00, y01, y02, y03, y04) {}\n  void dummy() override {}\n};\nstruct i96 {\n  virtual ~i96() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl96 : i96 {\n  BOOST_DI_INJECT(impl96, y96, y97, y98, y99, y00, y01, y02, y03, y04, y05) {}\n  void dummy() override {}\n};\nstruct i97 {\n  virtual ~i97() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl97 : i97 {\n  BOOST_DI_INJECT(impl97, y97, y98, y99, y00, y01, y02, y03, y04, y05, y06) {}\n  void dummy() override {}\n};\nstruct i98 {\n  virtual ~i98() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl98 : i98 {\n  BOOST_DI_INJECT(impl98, y98, y99, y00, y01, y02, y03, y04, y05, y06, y07) {}\n  void dummy() override {}\n};\nstruct i99 {\n  virtual ~i99() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl99 : i99 {\n  BOOST_DI_INJECT(impl99, y99, y00, y01, y02, y03, y04, y05, y06, y07, y08) {}\n  void dummy() override {}\n};\n\nstruct c0 {\n  BOOST_DI_INJECT(c0\n#if !defined(NO_CTOR_INTERFACES1)\n                  ,\n                  std::unique_ptr<i00>, std::unique_ptr<i01>, std::unique_ptr<i02>, std::unique_ptr<i03>, std::unique_ptr<i04>,\n                  std::unique_ptr<i05>, std::unique_ptr<i06>, std::unique_ptr<i07>, std::unique_ptr<i08>, std::unique_ptr<i09>\n#endif\n                  ) {\n  }\n};\n\nstruct c1 {\n  BOOST_DI_INJECT(c1\n#if !defined(NO_CTOR_INTERFACES2)\n                  ,\n                  std::unique_ptr<i10>, std::unique_ptr<i11>, std::unique_ptr<i12>, std::unique_ptr<i13>, std::unique_ptr<i14>,\n                  std::unique_ptr<i15>, std::unique_ptr<i16>, std::unique_ptr<i17>, std::unique_ptr<i18>, std::unique_ptr<i19>\n#endif\n                  ) {\n  }\n};\n\nstruct c2 {\n  BOOST_DI_INJECT(c2\n#if !defined(NO_CTOR_INTERFACES3)\n                  ,\n                  std::unique_ptr<i20>, std::unique_ptr<i21>, std::unique_ptr<i22>, std::unique_ptr<i23>, std::unique_ptr<i24>,\n                  std::unique_ptr<i25>, std::unique_ptr<i26>, std::unique_ptr<i27>, std::unique_ptr<i28>, std::unique_ptr<i29>\n#endif\n                  ) {\n  }\n};\n\nstruct c3 {\n  BOOST_DI_INJECT(c3\n#if !defined(NO_CTOR_INTERFACES4)\n                  ,\n                  std::unique_ptr<i30>, std::unique_ptr<i31>, std::unique_ptr<i32>, std::unique_ptr<i33>, std::unique_ptr<i34>,\n                  std::unique_ptr<i35>, std::unique_ptr<i36>, std::unique_ptr<i37>, std::unique_ptr<i38>, std::unique_ptr<i39>\n#endif\n                  ) {\n  }\n};\n\nstruct c4 {\n  BOOST_DI_INJECT(c4\n#if !defined(NO_CTOR_INTERFACES5)\n                  ,\n                  std::unique_ptr<i40>, std::unique_ptr<i41>, std::unique_ptr<i42>, std::unique_ptr<i43>, std::unique_ptr<i44>,\n                  std::unique_ptr<i45>, std::unique_ptr<i46>, std::unique_ptr<i47>, std::unique_ptr<i48>, std::unique_ptr<i49>\n#endif\n                  ) {\n  }\n};\n\nstruct c5 {\n  BOOST_DI_INJECT(c5\n#if !defined(NO_CTOR_INTERFACES6)\n                  ,\n                  std::unique_ptr<i50>, std::unique_ptr<i51>, std::unique_ptr<i52>, std::unique_ptr<i53>, std::unique_ptr<i54>,\n                  std::unique_ptr<i55>, std::unique_ptr<i56>, std::unique_ptr<i57>, std::unique_ptr<i58>, std::unique_ptr<i59>\n#endif\n                  ) {\n  }\n};\n\nstruct c6 {\n  BOOST_DI_INJECT(c6\n#if !defined(NO_CTOR_INTERFACES7)\n                  ,\n                  std::unique_ptr<i60>, std::unique_ptr<i61>, std::unique_ptr<i62>, std::unique_ptr<i63>, std::unique_ptr<i64>,\n                  std::unique_ptr<i65>, std::unique_ptr<i66>, std::unique_ptr<i67>, std::unique_ptr<i68>, std::unique_ptr<i69>\n#endif\n                  ) {\n  }\n};\n\nstruct c7 {\n  BOOST_DI_INJECT(c7\n#if !defined(NO_CTOR_INTERFACES8)\n                  ,\n                  std::unique_ptr<i70>, std::unique_ptr<i71>, std::unique_ptr<i72>, std::unique_ptr<i73>, std::unique_ptr<i74>,\n                  std::unique_ptr<i75>, std::unique_ptr<i76>, std::unique_ptr<i77>, std::unique_ptr<i78>, std::unique_ptr<i79>\n#endif\n                  ) {\n  }\n};\n\nstruct c8 {\n  BOOST_DI_INJECT(c8\n#if !defined(NO_CTOR_INTERFACES9)\n                  ,\n                  std::unique_ptr<i80>, std::unique_ptr<i81>, std::unique_ptr<i82>, std::unique_ptr<i83>, std::unique_ptr<i84>,\n                  std::unique_ptr<i85>, std::unique_ptr<i86>, std::unique_ptr<i87>, std::unique_ptr<i88>, std::unique_ptr<i89>\n#endif\n                  ) {\n  }\n};\n\nstruct c9 {\n  BOOST_DI_INJECT(c9\n#if !defined(NO_CTOR_INTERFACES10)\n                  ,\n                  std::unique_ptr<i90>, std::unique_ptr<i91>, std::unique_ptr<i92>, std::unique_ptr<i93>, std::unique_ptr<i94>,\n                  std::unique_ptr<i95>, std::unique_ptr<i96>, std::unique_ptr<i97>, std::unique_ptr<i98>, std::unique_ptr<i99>\n#endif\n                  ) {\n  }\n};\n\nstruct small_complexity {\n  BOOST_DI_INJECT(small_complexity, y32) {}\n};\nstruct medium_complexity {\n  BOOST_DI_INJECT(medium_complexity, y99) {}\n};\nstruct big_complexity {\n  BOOST_DI_INJECT(big_complexity, c0, c1, c2, c3, c4, c5, c6, c7, c8, c9) {}\n};\n\n#define RETURN(...)      \\\n  auto m = __VA_ARGS__;  \\\n  using t = decltype(m); \\\n  struct i : t {         \\\n    using t::t;          \\\n  };                     \\\n  return i { static_cast<t &&>(m) }\n\n#if defined(MODULE1)\nEXPOSED_OR_AUTO(di::injector<c0>, auto) module1() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES1(di::bind<i00>().to<impl00>(), di::bind<i01>().to<impl01>(), di::bind<i02>().to<impl02>(),\n                       di::bind<i03>().to<impl03>(), di::bind<i04>().to<impl04>(), di::bind<i05>().to<impl05>(),\n                       di::bind<i06>().to<impl06>(), di::bind<i07>().to<impl07>(), di::bind<i08>().to<impl08>(),\n                       di::bind<i09>().to<impl09>())\n          BIND_OTHERS1(di::bind<x00>.in(di::unique), di::bind<x01>.in(di::unique), di::bind<x02>.in(di::unique),\n                       di::bind<x03>.in(di::unique), di::bind<x04>.in(di::unique), di::bind<x05>.in(di::unique),\n                       di::bind<x06>.in(di::unique), di::bind<x07>.in(di::unique), di::bind<x08>.in(di::unique),\n                       di::bind<x09>.in(di::unique), di::bind<y00>.in(di::unique), di::bind<y01>.in(di::unique),\n                       di::bind<y02>.in(di::unique), di::bind<y03>.in(di::unique), di::bind<y04>.in(di::unique),\n                       di::bind<y05>.in(di::unique), di::bind<y06>.in(di::unique), di::bind<y07>.in(di::unique),\n                       di::bind<y08>.in(di::unique), di::bind<y09>.in(di::unique))));\n};\n#endif\n\n#if defined(MODULE2)\nEXPOSED_OR_AUTO(di::injector<c1>, auto) module2() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES2(di::bind<i10>().to<impl10>(), di::bind<i11>().to<impl11>(), di::bind<i12>().to<impl12>(),\n                       di::bind<i13>().to<impl13>(), di::bind<i14>().to<impl14>(), di::bind<i15>().to<impl15>(),\n                       di::bind<i16>().to<impl16>(), di::bind<i17>().to<impl17>(), di::bind<i18>().to<impl18>(),\n                       di::bind<i19>().to<impl19>())\n          BIND_OTHERS2(di::bind<x10>.in(di::unique), di::bind<x11>.in(di::unique), di::bind<x12>.in(di::unique),\n                       di::bind<x13>.in(di::unique), di::bind<x14>.in(di::unique), di::bind<x15>.in(di::unique),\n                       di::bind<x16>.in(di::unique), di::bind<x17>.in(di::unique), di::bind<x18>.in(di::unique),\n                       di::bind<x19>.in(di::unique), di::bind<y10>.in(di::unique), di::bind<y11>.in(di::unique),\n                       di::bind<y12>.in(di::unique), di::bind<y13>.in(di::unique), di::bind<y14>.in(di::unique),\n                       di::bind<y15>.in(di::unique), di::bind<y16>.in(di::unique), di::bind<y17>.in(di::unique),\n                       di::bind<y18>.in(di::unique), di::bind<y19>.in(di::unique))));\n};\n#endif\n\n#if defined(MODULE3)\nEXPOSED_OR_AUTO(di::injector<c2>, auto) module3() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES3(di::bind<i20>().to<impl20>(), di::bind<i21>().to<impl21>(), di::bind<i22>().to<impl22>(),\n                       di::bind<i23>().to<impl23>(), di::bind<i24>().to<impl24>(), di::bind<i25>().to<impl25>(),\n                       di::bind<i26>().to<impl26>(), di::bind<i27>().to<impl27>(), di::bind<i28>().to<impl28>(),\n                       di::bind<i29>().to<impl29>())\n          BIND_OTHERS3(di::bind<x20>.in(di::unique), di::bind<x21>.in(di::unique), di::bind<x22>.in(di::unique),\n                       di::bind<x23>.in(di::unique), di::bind<x24>.in(di::unique), di::bind<x25>.in(di::unique),\n                       di::bind<x26>.in(di::unique), di::bind<x27>.in(di::unique), di::bind<x28>.in(di::unique),\n                       di::bind<x29>.in(di::unique), di::bind<y20>.in(di::unique), di::bind<y21>.in(di::unique),\n                       di::bind<y22>.in(di::unique), di::bind<y23>.in(di::unique), di::bind<y24>.in(di::unique),\n                       di::bind<y25>.in(di::unique), di::bind<y26>.in(di::unique), di::bind<y27>.in(di::unique),\n                       di::bind<y28>.in(di::unique), di::bind<y29>.in(di::unique))));\n};\n#endif\n\n#if defined(MODULE4)\nEXPOSED_OR_AUTO(di::injector<c3>, auto) module4() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES4(di::bind<i30>().to<impl30>(), di::bind<i31>().to<impl31>(), di::bind<i32>().to<impl32>(),\n                       di::bind<i33>().to<impl33>(), di::bind<i34>().to<impl34>(), di::bind<i35>().to<impl35>(),\n                       di::bind<i36>().to<impl36>(), di::bind<i37>().to<impl37>(), di::bind<i38>().to<impl38>(),\n                       di::bind<i39>().to<impl39>())\n          BIND_OTHERS4(di::bind<x30>.in(di::unique), di::bind<x31>.in(di::unique), di::bind<x32>.in(di::unique),\n                       di::bind<x33>.in(di::unique), di::bind<x34>.in(di::unique), di::bind<x35>.in(di::unique),\n                       di::bind<x36>.in(di::unique), di::bind<x37>.in(di::unique), di::bind<x38>.in(di::unique),\n                       di::bind<x39>.in(di::unique), di::bind<y30>.in(di::unique), di::bind<y31>.in(di::unique),\n                       di::bind<y32>.in(di::unique), di::bind<y33>.in(di::unique), di::bind<y34>.in(di::unique),\n                       di::bind<y35>.in(di::unique), di::bind<y36>.in(di::unique), di::bind<y37>.in(di::unique),\n                       di::bind<y38>.in(di::unique), di::bind<y39>.in(di::unique))));\n};\n#endif\n\n#if defined(MODULE5)\nEXPOSED_OR_AUTO(di::injector<c4>, auto) module5() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES5(di::bind<i40>().to<impl40>(), di::bind<i41>().to<impl41>(), di::bind<i42>().to<impl42>(),\n                       di::bind<i43>().to<impl43>(), di::bind<i44>().to<impl44>(), di::bind<i45>().to<impl45>(),\n                       di::bind<i46>().to<impl46>(), di::bind<i47>().to<impl47>(), di::bind<i48>().to<impl48>(),\n                       di::bind<i49>().to<impl49>())\n          BIND_OTHERS5(di::bind<x40>.in(di::unique), di::bind<x41>.in(di::unique), di::bind<x42>.in(di::unique),\n                       di::bind<x43>.in(di::unique), di::bind<x44>.in(di::unique), di::bind<x45>.in(di::unique),\n                       di::bind<x46>.in(di::unique), di::bind<x47>.in(di::unique), di::bind<x48>.in(di::unique),\n                       di::bind<x49>.in(di::unique), di::bind<y40>.in(di::unique), di::bind<y41>.in(di::unique),\n                       di::bind<y42>.in(di::unique), di::bind<y43>.in(di::unique), di::bind<y44>.in(di::unique),\n                       di::bind<y45>.in(di::unique), di::bind<y46>.in(di::unique), di::bind<y47>.in(di::unique),\n                       di::bind<y48>.in(di::unique), di::bind<y49>.in(di::unique))));\n};\n#endif\n\n#if defined(MODULE6)\nEXPOSED_OR_AUTO(di::injector<c5>, auto) module6() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES6(di::bind<i50>().to<impl50>(), di::bind<i51>().to<impl51>(), di::bind<i52>().to<impl52>(),\n                       di::bind<i53>().to<impl53>(), di::bind<i54>().to<impl54>(), di::bind<i55>().to<impl55>(),\n                       di::bind<i56>().to<impl56>(), di::bind<i57>().to<impl57>(), di::bind<i58>().to<impl58>(),\n                       di::bind<i59>().to<impl59>())\n          BIND_OTHERS6(di::bind<x50>.in(di::unique), di::bind<x51>.in(di::unique), di::bind<x52>.in(di::unique),\n                       di::bind<x53>.in(di::unique), di::bind<x54>.in(di::unique), di::bind<x55>.in(di::unique),\n                       di::bind<x56>.in(di::unique), di::bind<x57>.in(di::unique), di::bind<x58>.in(di::unique),\n                       di::bind<x59>.in(di::unique), di::bind<y50>.in(di::unique), di::bind<y51>.in(di::unique),\n                       di::bind<y52>.in(di::unique), di::bind<y53>.in(di::unique), di::bind<y54>.in(di::unique),\n                       di::bind<y55>.in(di::unique), di::bind<y56>.in(di::unique), di::bind<y57>.in(di::unique),\n                       di::bind<y58>.in(di::unique), di::bind<y59>.in(di::unique))));\n};\n#endif\n\n#if defined(MODULE7)\nEXPOSED_OR_AUTO(di::injector<c6>, auto) module7() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES7(di::bind<i60>().to<impl60>(), di::bind<i61>().to<impl61>(), di::bind<i62>().to<impl62>(),\n                       di::bind<i63>().to<impl63>(), di::bind<i64>().to<impl64>(), di::bind<i65>().to<impl65>(),\n                       di::bind<i66>().to<impl66>(), di::bind<i67>().to<impl67>(), di::bind<i68>().to<impl68>(),\n                       di::bind<i69>().to<impl69>())\n          BIND_OTHERS7(di::bind<x60>.in(di::unique), di::bind<x61>.in(di::unique), di::bind<x62>.in(di::unique),\n                       di::bind<x63>.in(di::unique), di::bind<x64>.in(di::unique), di::bind<x65>.in(di::unique),\n                       di::bind<x66>.in(di::unique), di::bind<x67>.in(di::unique), di::bind<x68>.in(di::unique),\n                       di::bind<x69>.in(di::unique), di::bind<y60>.in(di::unique), di::bind<y61>.in(di::unique),\n                       di::bind<y62>.in(di::unique), di::bind<y63>.in(di::unique), di::bind<y64>.in(di::unique),\n                       di::bind<y65>.in(di::unique), di::bind<y66>.in(di::unique), di::bind<y67>.in(di::unique),\n                       di::bind<y68>.in(di::unique), di::bind<y69>.in(di::unique))));\n};\n#endif\n\n#if defined(MODULE8)\nEXPOSED_OR_AUTO(di::injector<c7>, auto) module8() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES8(di::bind<i70>().to<impl70>(), di::bind<i71>().to<impl71>(), di::bind<i72>().to<impl72>(),\n                       di::bind<i73>().to<impl73>(), di::bind<i74>().to<impl74>(), di::bind<i75>().to<impl75>(),\n                       di::bind<i76>().to<impl76>(), di::bind<i77>().to<impl77>(), di::bind<i78>().to<impl78>(),\n                       di::bind<i79>().to<impl79>())\n          BIND_OTHERS8(di::bind<x70>.in(di::unique), di::bind<x71>.in(di::unique), di::bind<x72>.in(di::unique),\n                       di::bind<x73>.in(di::unique), di::bind<x74>.in(di::unique), di::bind<x75>.in(di::unique),\n                       di::bind<x76>.in(di::unique), di::bind<x77>.in(di::unique), di::bind<x78>.in(di::unique),\n                       di::bind<x79>.in(di::unique), di::bind<y70>.in(di::unique), di::bind<y71>.in(di::unique),\n                       di::bind<y72>.in(di::unique), di::bind<y73>.in(di::unique), di::bind<y74>.in(di::unique),\n                       di::bind<y75>.in(di::unique), di::bind<y76>.in(di::unique), di::bind<y77>.in(di::unique),\n                       di::bind<y78>.in(di::unique), di::bind<y79>.in(di::unique))));\n};\n#endif\n\n#if defined(MODULE9)\nEXPOSED_OR_AUTO(di::injector<c8>, auto) module9() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES9(di::bind<i80>().to<impl80>(), di::bind<i81>().to<impl81>(), di::bind<i82>().to<impl82>(),\n                       di::bind<i83>().to<impl83>(), di::bind<i84>().to<impl84>(), di::bind<i85>().to<impl85>(),\n                       di::bind<i86>().to<impl86>(), di::bind<i87>().to<impl87>(), di::bind<i88>().to<impl88>(),\n                       di::bind<i89>().to<impl89>())\n          BIND_OTHERS9(di::bind<x80>.in(di::unique), di::bind<x81>.in(di::unique), di::bind<x82>.in(di::unique),\n                       di::bind<x83>.in(di::unique), di::bind<x84>.in(di::unique), di::bind<x85>.in(di::unique),\n                       di::bind<x86>.in(di::unique), di::bind<x87>.in(di::unique), di::bind<x88>.in(di::unique),\n                       di::bind<x89>.in(di::unique), di::bind<y80>.in(di::unique), di::bind<y81>.in(di::unique),\n                       di::bind<y82>.in(di::unique), di::bind<y83>.in(di::unique), di::bind<y84>.in(di::unique),\n                       di::bind<y85>.in(di::unique), di::bind<y86>.in(di::unique), di::bind<y87>.in(di::unique),\n                       di::bind<y88>.in(di::unique), di::bind<y89>.in(di::unique))));\n};\n#endif\n\n#if defined(MODULE10)\nEXPOSED_OR_AUTO(di::injector<c9>, auto) module10() noexcept {\n  RETURN(di::make_injector(\n      BIND_INTERFACES10(di::bind<i90>().to<impl90>(), di::bind<i91>().to<impl91>(), di::bind<i92>().to<impl92>(),\n                        di::bind<i93>().to<impl93>(), di::bind<i94>().to<impl94>(), di::bind<i95>().to<impl95>(),\n                        di::bind<i96>().to<impl96>(), di::bind<i97>().to<impl97>(), di::bind<i98>().to<impl98>(),\n                        di::bind<i99>().to<impl99>())\n          BIND_OTHERS10(di::bind<x90>.in(di::unique), di::bind<x91>.in(di::unique), di::bind<x92>.in(di::unique),\n                        di::bind<x93>.in(di::unique), di::bind<x94>.in(di::unique), di::bind<x95>.in(di::unique),\n                        di::bind<x96>.in(di::unique), di::bind<x97>.in(di::unique), di::bind<x98>.in(di::unique),\n                        di::bind<x99>.in(di::unique), di::bind<y90>.in(di::unique), di::bind<y91>.in(di::unique),\n                        di::bind<y92>.in(di::unique), di::bind<y93>.in(di::unique), di::bind<y94>.in(di::unique),\n                        di::bind<y95>.in(di::unique), di::bind<y96>.in(di::unique), di::bind<y97>.in(di::unique),\n                        di::bind<y98>.in(di::unique), di::bind<y99>.in(di::unique))));\n};\n#endif\n\nint main() {\n  auto injector = di::make_injector(\n#if defined(MODULE1)\n      module1()\n#endif\n\n#if defined(MODULE2)\n          ,\n      module2()\n#endif\n\n#if defined(MODULE3)\n          ,\n      module3()\n#endif\n\n#if defined(MODULE4)\n          ,\n      module4()\n#endif\n\n#if defined(MODULE5)\n          ,\n      module5()\n#endif\n\n#if defined(MODULE6)\n          ,\n      module6()\n#endif\n\n#if defined(MODULE7)\n          ,\n      module7()\n#endif\n\n#if defined(MODULE8)\n          ,\n      module8()\n#endif\n\n#if defined(MODULE9)\n          ,\n      module9()\n#endif\n\n#if defined(MODULE10)\n          ,\n      module10()\n#endif\n          );\n\n  injector.create<COMPLEX>();\n}\n"
  },
  {
    "path": "benchmark/performance/di.sh",
    "content": "#!/bin/bash\n#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\n\nbind_interfaces() {\n  for ((i=1; i<=$1; ++i)); do\n    echo \"#define MODULE$i\"\n    echo \"#define BIND_INTERFACES$i(...) __VA_ARGS__\"\n    echo \"#define BIND_OTHERS$i(...) \"\n  done\n}\n\nbind_others() {\n  for ((i=1; i<=$1; ++i)); do\n    echo \"#define MODULE$i\"\n    echo \"#define BIND_INTERFACES$i(...)\"\n    echo \"#define NO_CTOR_INTERFACES$i\"\n    echo \"#define BIND_OTHERS$i(...) __VA_ARGS__\"\n  done\n}\n\nbind_interfaces_others() {\n  for ((i=1; i<=$1; ++i)); do\n    if [ \"$2\" -ge \"$1\" ]; then\n      echo \"#define MODULE$i\"\n      echo \"#define BIND_INTERFACES$i(...) __VA_ARGS__,\"\n      echo \"#define BIND_OTHERS$i(...) __VA_ARGS__\"\n    else\n      echo \"#define MODULE$i\"\n      echo \"#define BIND_INTERFACES$i(...) __VA_ARGS__\"\n      echo \"#define BIND_OTHERS$i(...)\"\n    fi\n  done\n}\n\nbind_all() {\n  for ((i=1; i<=$1; ++i)); do\n    echo \"#define MODULE$i\"\n    echo \"#define BIND_INTERFACES$i(...) __VA_ARGS__,\"\n    echo \"#define BIND_OTHERS$i(...) __VA_ARGS__\"\n  done\n}\n\nbenchmark() {\n  rm -f /tmp/$0.hpp /tmp/$0.dat 2>/dev/null\n  [ \"$2\" == \"ctor\" ] && echo -e \"#undef BOOST_DI_INJECT\\n#define BOOST_DI_INJECT(type, ...) type(__VA_ARGS__)\" > /tmp/$0.hpp\n  [ \"$3\" == \"auto\" ] && echo \"#define EXPOSED_OR_AUTO(t1, t2) t2\" >> /tmp/$0.hpp || echo \"#define EXPOSED_OR_AUTO(t1, t2) t1\" >> /tmp/$0.hpp\n  echo \"`$4`\" >> /tmp/$0.hpp\n  (time $CXX di.cpp -I ../../include -Wall -Werror $CXXFLAGS $CXXINC \"boost/di.hpp\" $CXXINC /tmp/$0.hpp $5 -DCOMPLEX=$1) 2> /tmp/$0.dat\n  if [[ \"`grep error: /tmp/$0.dat`\" != \"\" ]]; then >&2 cat /tmp/$0.dat; exit; fi\n  cat /tmp/$0.dat | grep real | awk '{print $2}' | sed \"s/0m\\(.*\\)s/\\1/\" | tr '\\n' ' '\n}\n\ngraph() {\n  rm -f $1.pg $1.dat\n  `echo $1` > $1.dat\n  echo -e \"set terminal png\n       set xlabel \\\"Number of bindings\\\"\n       set ylabel \\\"Time [s]\\\"\n       set title \\\"$2\\\"\n       set key reverse Left outside\n       set grid\n       set style data linespoints\n       plot \\\"$1.dat\\\" \\\n          using 1:2 title \\\"ctor/all\\\" \\\n       , \\\"\\\" using 1:3 title \\\"inject/all\\\" \\\n       , \\\"\\\" using 1:4 title \\\"ctor/exposed\\\" \\\n       , \\\"\\\" using 1:5 title \\\"inject/exposed\\\"\n  \" > $1.pg\n  gnuplot $1.pg > $1.png\n}\n\nsmall_complexity() {\n  for ((i=0; i<=10; ++i)); do\n    echo -n \"$((i*20)) \"\n    benchmark small_complexity ctor auto \"bind_others $i\"\n    benchmark small_complexity inject auto \"bind_others $i\"\n    benchmark small_complexity ctor exposed \"bind_others $i\"\n    benchmark small_complexity inject exposed \"bind_others $i\"\n    echo\n  done\n}\n\nmedium_complexity() {\n  for ((i=0; i<=10; ++i)); do\n    echo -n \"$((i*20)) \"\n    benchmark medium_complexity ctor auto \"bind_others $i\"\n    benchmark medium_complexity inject auto \"bind_others $i\"\n    benchmark medium_complexity ctor exposed \"bind_others $i\"\n    benchmark medium_complexity inject exposed \"bind_others $i\"\n    echo\n  done\n}\n\nbig_complexity() {\n  for ((i=0; i<=10; ++i)); do\n    n=$((100+(i*20)));\n    echo -n \"$n \"\n    benchmark big_complexity ctor auto \"bind_interfaces_others 10 $i\" \"-ftemplate-depth=$((n+10))\"\n    benchmark big_complexity ctor exposed \"bind_interfaces_others 10 $i\"\n    benchmark big_complexity inject auto \"bind_interfaces_others 10 $i\" \"-ftemplate-depth=$((n+10))\"\n    benchmark big_complexity inject exposed \"bind_interfaces_others 10 $i\"\n    echo\n  done\n}\n\nverify() {\n  echo -n \"$1[$MAX] \"\n  [ $(echo \"$1 < $MAX\" | bc) -ne 1 ] && exit -1\n}\n\nquick() {\n  verify `benchmark small_complexity ctor auto \"bind_others 200\"`\n  verify `benchmark small_complexity ctor exposed \"bind_others 200\"`\n  verify `benchmark small_complexity inject auto \"bind_others 200\"`\n  verify `benchmark small_complexity inject exposed \"bind_others 200\"`\n  exit 0\n}\n\n[[ -z \"$CXX\" ]] && CXX=\"clang++\"\n[[ -z \"$CXXFLAGS\" ]] && CXXFLAGS=\"-O2 -std=c++1y\"\n[[ -z \"$CXXINC\" ]] && CXXINC=\"-include\"\n[[ -z \"$MAX\" ]] && MAX=\"10.0\"\n[[ -z \"$COMPLEXITY\" ]] && COMPLEXITY=\"small,medium,big\"\n\n[[ $COMPLEXITY == *\"small\"* ]] && graph small_complexity \"Small complexity | $CXX $CXXFLAGS\"\n[[ $COMPLEXITY == *\"medium\"* ]] && graph medium_complexity \"Medium complexity | $CXX $CXXFLAGS\"\n[[ $COMPLEXITY == *\"big\"* ]] &&  graph big_complexity \"Big complexity | $CXX $CXXFLAGS\"\n[[ $COMPLEXITY == *\"quick\"* ]] && quick\n\n"
  },
  {
    "path": "benchmark/performance/header.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\nint main() {}\n"
  },
  {
    "path": "doc/CHANGELOG.md",
    "content": "## [1.1.0] - 2017-05-04\n- **Additions**\n  - Support for Clang-4.0\n  - Support for GCC-7.0\n  - Support for MSVC-2017\n  >\n  - **Core**\n    - [Support for injecting templates/concepts]()\n\n## [1.0.1] - 2016-05-04\n- **Breaking Changes**\n    - [Simplified interface for policies](http://boost-experimental.github.io/di/user_guide/index.html#policies)\n>\n- **Additions**\n    - Support for Clang-3.9\n    - Support for GCC-6\n    >\n    - **Extensions**\n        - [Contextual Bindings](http://boost-experimental.github.io/di/extensions/index.html#contextual-bindings)\n        - [Serialize](http://boost-experimental.github.io/di/extensions/index.html#serialize)\n>\n- **Bug Fixes**\n    - [Link error if di.hpp is included in two cpp-files](https://github.com/boost-experimental/di/issues/212)\n    - [Creation of empty injector crashes on MSVC 2015, Update 1, x64, Debug](https://github.com/boost-experimental/di/issues/211)\n\n## [1.0.0] - 2016-02-22\n- Support for MSVC-2015+\n- Support for GCC-5+\n- Support for CMake 2.8+\n- Support for libc++, libstdc++\n- Support for Mac OS\n\n## [0.5.0] - 2015-01-12\n- C++14 version\n- Support for Clang3.4+\n\n## [0.1.0] - 2014-08-15\n- C++03/C++11 version\n- Support for Clang3.2+\n\n---\n\n* TODO\n\n    * [https://waffle.io/boost-experimental/di](https://waffle.io/boost-experimental/di)\n\n[1.0.1]: https://github.com/boost-experimental/di/compare/v1.0.0...v1.0.1\n[1.0.0]: https://github.com/boost-experimental/di/compare/v0.5.0...v1.0.0\n[0.5.0]: https://github.com/boost-experimental/di/compare/v0.1.0...v0.5.0\n[0.1.0]: https://github.com/boost-experimental/di/tree/v0.1.0\n"
  },
  {
    "path": "doc/FAQ.md",
    "content": "* ### Dependency Inversion vs Dependency Injection\nIn principle Dependency Inversion might be implemented using DI or Service Locator (SL).\nThe latter is more like a 'God' object. It has a lot of benefits but, probably, the same\namount of cons such as that SL requires that SL will be the only constructor parameter for any class which can be created using it.\nDI, on the other hand, is less intrusive and easier to follow than SL.\n\n>\n\n* ### Why C++14 is required for [Boost].DI?\nAt first [Boost].DI was implemented using C++03 standard with a switch to C++11 when available/possible.\nHowever, this approach, although was/is working just fine, was/is really slow to compile and hard to maintain too.\nMoreover, interface for `modules` wasn't perfect due to missing return type deduction for functions in C++11.\nTherefore, I made a decision to reimplement the core using C++14 features which sped up compilation times dramatically\nand make the interface cleaner and easier to maintain. Nevertheless, effort was made to support the newest versions of\npopular C++ compilers including GCC/Clang and MSVC. If you are interested in C++03 version of the library, please, take\na look into [cpp03](https://github.com/boost-experimental/di/tree/cpp03) branch. Please, also notice that this\nbranch is not maintained anymore.\n\n>\n\n* ### How the constructor deduction works without reflection support in C++?\nPlease check out [injection](overview.md#nutshell) design and http://boost-experimental.github.io/di/cppnow-2016/#/7/11.\n\n>\n\n* ### Can I inject templates/concepts?\nYes, concepts/templates can be injected.\n:w\n\n```cpp\ntemplate <class T = class Greater>\nstruct example { \n  using type = T;\n};\n\nstruct hello {};\n\nint main() {\n  const auto injector = di::make_injector(\n    di::bind<class Greater>().to<hello>()\n  );\n\n  auto object = injector.create<example>();\n  static_assert(std::is_same<hello, decltype(object)::type>{});\n}\n```\n\n>\n\n* ### Can I use XML in order to set-up bindings configuration?\nYes, however, XML injection is not part of the [Boost].DI release.\nPlease, check out [XML Extension](extensions.md#xml-injection).\n\n>\n\n* ### Since [Boost].DI has a compile time approach can I have dynamic bindings?\nYes, [Boost].DI supports dynamic bindings.\n\n```cpp\nauto use_gui_view = true/false;\n\nauto injector = di::make_injector(\n  di::bind<iview>.to([&](const auto& injector) -> iview& {\n    if (use_gui_view)\n      return injector.template create<gui_view&>();\n    else\n      return injector.template create<text_view&>();\n  })\n, di::bind<>.to(42) // renderer device\n);\n```\n\nCheck out full example of [Dynamic Bindings](examples.md#dynamic-bindings).\n"
  },
  {
    "path": "doc/benchmarks.md",
    "content": "##Performance\n\n* **Run-time performance**\n    * Environment\n        * x86\\_64 Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz GenuineIntel GNU/Linux\n        * clang++3.4 -O2 -fno-exceptions / `gdb -batch -ex 'file ./a.out' -ex 'disassemble main'`\n\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/performance/create_type_without_bindings.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/performance/create_type_with_bound_instance.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/performance/create_named_type.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/performance/create_bound_interface.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/performance/create_bound_interface_via_module.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/performance/create_bound_interface_via_exposed_module.cpp)\n\n* **Compile-time performance**\n    * Environment\n        * x86\\_64 Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz GenuineIntel GNU/Linux\n        * clang++3.4 -O2 -fno-exceptions\n\n[Boost].DI header         | Time [s]\n--------------------------|----------\n`#include <boost/di.hpp>` | 0.050s\n\n```cpp\nLegend:\n    ctor    = raw constructor: T(int i, double d);\n    inject  = inject constructor: BOOST_DI_INJECT(T, int i, double d);\n    all     = all types exposed from module: auto configure();\n    exposed = one type exposed from module: di::injector<T> configure();\n```\n[![small complexity](https://raw.githubusercontent.com/boost-experimental/di/cpp14/doc/images/small_complexity.png)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/doc/images/small_complexity.png)\n```cpp\n* 4248897537 instances created\n* 132 different types\n* 10 modules\n```\n---\n[![medium complexity](https://raw.githubusercontent.com/boost-experimental/di/cpp14/doc/images/medium_complexity.png)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/doc/images/medium_complexity.png)\n```cpp\n* 1862039751439806464 instances created\n* 200 different types\n* 10 modules\n```\n---\n[![big complexity](https://raw.githubusercontent.com/boost-experimental/di/cpp14/doc/images/big_complexity.png)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/doc/images/big_complexity.png)\n```cpp\n* 5874638529236910091 instances created\n* 310 different types\n* 100 different interfaces\n* 10 modules\n```\n\n##C++ Libraries\n\n| **Library** | [Boost].DI ([See Performance](overview.md#performance)) | [dicpp] | [Google.Fruit] |\n| ----------- | -------- | ----- | ------------ |\n| Version     | 1.0.1 | HEAD | 2.0.2 |\n| Language    | C++14 | C++11 | C++11 |\n| License     | Boost 1.0 | Boost 1.0 | Apache 2.0|\n| Linkage     | header only | header only | library |\n| Dependencies| - | boost system/boost thread | - |\n| Approach    | compile-time | run-time | compile/run-time |\n| Errors      | compile-time errors | exceptions | compile-time errors/exceptions |\n\n* Environment\n    * x86\\_64 Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz GenuineIntel GNU/Linux\n    * $CXX -O2\n\n| Create a unique objects tree for each iteration<br /><br />`TYPES: 64`  `BINDINGS: 0`  `ITERATIONS: 1024` | \n|  ------------------------ | ------------ | -------- | ---------- | -------------- |\n| **Clang-3.7**             | **Baseline** | **[Boost].DI** | **[dicpp]**    | **[Google.Fruit]**              |\n| Compilation time          |              | 3.082s       | 1m14.080s      | 34.461s / FRUIT_NO_LOOP_CHECK |\n| Execution time            |              | 0.002s       | -              | -                               |\n| Memory usage (stack/heap) |              | 1b/0b        | -              | -                               |\n| Executable size           |              | 72kb         | 4.4M           | 5.1M                            |\n| |  |  |  |\n| **GCC-5.2** |  |  |  |\n| Compilation time          |              |  | | |\n| Execution time            |              |  | | |\n| Memory usage (stack/heap) |              |  | | |\n| Executable size           |              |  | | |\n\n* To run benchmarks\n```sh\ncd benchmark && make\n```\n---\n\n##C++ vs Java vs C# Libraries\n\n| **Library** | [Boost].DI | [Google.Guice] | [Dagger2] | [Ninject] |\n| ----------  | -------- | ------------ | ------- | ------- |\n| Language    | C++14    | Java | Java | C# |\n| Version     | 1.0.1    | 4.0 | 2.4 | 3.2 |\n| License     | Boost 1.0 | Apache 2.0 | Apache 2.0 | Apache 2.0|\n| Linkage     | header only | jar | jar | dll |\n| Approach    | compile-time | run-time | compile-time (annotation processor) | run-time |\n| Errors      | compile-time errors | exceptions | compile-time errors | exceptions |\n\n* **Environment**\n    * x86\\_64 Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz GenuineIntel GNU/Linux\n    * $CXX -O2/Java8/Mono4.2\n\n>\n\n* **Baseline**\n    * Manual object creation\n\n| Create a unique objects tree for each iteration<br /><br />`TYPES: 64`  `BINDINGS: 0`  `ITERATIONS: 1024` | \n| ----------------------------------- | ------------ | ------------ | ------------------------------ | ------------------ | ------------- | --------------- |\n| **Clang-3.7 -O2 / Java8 / Mono4.2 --aot** | **Baseline** | **[Boost].DI** | **[Google.Fruit]**             | **[Google.Guice]** | **[Dagger2]** | **[Ninject]**   |\n| Compilation time                    | 0.063s       | 0.376s       | 2.329s / FRUIT_NO_LOOP_CHECK   | 0.570s             | 1.411s        | 0.144s + 0.079s |\n| Executable size                     | 4.2K         | 8.5K         | 213K                           | -                  | -             | -               |\n| Execution time                      | 0.002s       | 0.002s       | 0.037s                         | 0.528s             | 0.157s        | 1.131s          |\n| `TYPES: 128`  `BINDINGS: 0`  `ITERATIONS: 1024` | \n| Compilation time                    | 0.082s       | 0.706s       | 4.375s / FRUIT_NO_LOOP_CHECK   | 0.642s             | 1.903s        | 0.149s + 0.093s |\n| Executable size                     | 4.2K         | 8.5K         | 513K                           | -                  | -             | -               |\n| Execution time                      | 0.002s       | 0.002s       | 0.074s                         | 0.544s             | 0.210s        | 2.230s          |\n| `TYPES: 256`  `BINDINGS: 0`  `ITERATIONS: 1024` | \n| Compilation time                    | 0.131s       | 1.328s       | 9.641s / FRUIT_NO_LOOP_CHECK   | 0.783s             | 2.814s        | 0.151s + 0.114s |\n| Executable size                     | 4.2K         | 8.7K         | 1.4M                           | -                  | -             | -               |\n| Execution time                      | 0.003s       | 0.003s       | 0.154s                         | 0.723s             | 0.323s        | 4.838s          |\n| `TYPES: 512`  `BINDINGS: 0`  `ITERATIONS: 1024` | \n| Compilation time                    | 0.215s       | 2.459s       | 23.924s / FRUIT_NO_LOOP_CHECK  | 1.054s             | 4.231s        | 0.157s + 0.161  |\n| Executable size                     | 8.2K         | 13K          | 4.2M                           | -                  | -             | -               |\n| Execution time                      | 0.003s       | 0.003s       | 0.328s                         | 0.943s             | 0.547s        | 11.123s         |\n| `TYPES: 1024`  `BINDINGS: 0`  `ITERATIONS: 1024` | \n| Compilation time                    | 0.402s       | 4.911s       | 1m9.601s / FRUIT_NO_LOOP_CHECK | 1.357s             | 5.943s        | 0.167s + 0.258  |\n| Executable size                     | 12K          | 17K          | 15M                            | -                  | -             | -               |\n| Execution time                      | 0.004s       | 0.004s       | 0.765s                         | 1.334s             | 0.998s        | 21.808s         |\n\n* To run benchmarks\n```sh\ncd benchmark && make\n```\n---\n\n##Usage of C++ vs Java vs C# Libraries\n\n| Library | Bind Interface | Performance |\n| ------- | -------------- | ----------- |\n| [Boost].DI | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_interface/di.cpp) | [ASM x86-64](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_interface/di.cpp) |\n| [dicpp] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_interface/dicpp.cpp) | [ASM x86-64](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_interface/dicpp.cpp) |\n| [Google.Fruit] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_interface/fruit.cpp) | [ASM x86-64](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_interface/fruit.cpp) |\n| [Google.Guice] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_interface/guice.java) |\n| [Dagger2] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_interface/dagger2.java) |\n| [Ninject] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_interface/ninject.cs) |\n\n| Library | Bind Value | Performance |\n| ------- | ---------- | ----------- |\n| [Boost].DI | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_value/di.cpp) | [ASM x86-64](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_value/di.cpp) |\n| [dicpp] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_value/dicpp.cpp) | [ASM x86-64](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_value/dicpp.cpp) |\n| [Google.Fruit] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_value/fruit.cpp) | [ASM x86-64](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_value/fruit.cpp) |\n| [Google.Guice] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_value/guice.java) |\n| [Dagger2] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_value/dagger2.java) |\n| [Ninject] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_value/ninject.cs) |\n\n| Library | Missing Bindings Error |\n| ------- | ---------- |\n| [Boost].DI | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_error/di.cpp) |\n| [dicpp] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_error/dicpp.cpp) |\n| [Google.Fruit] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_error/fruit.cpp) |\n| [Google.Guice] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_error/guice.java) |\n| [Dagger2] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_error/dagger2.java) |\n| [Ninject] | ![CPP(SHOW)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/benchmark/bind_error/ninject.cs) |\n\n[dicpp]: https://bitbucket.org/cheez/dicpp/wiki/Home\n[Google.Fruit]: https://github.com/google/fruit\n[Google.Guice]: https://github.com/google/guice\n[Dagger2]: https://github.com/google/dagger\n[Ninject]: https://github.com/ninject/ninject\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/.gitignore",
    "content": ".DS_Store\n.svn\nlog/*.log\ntmp/**\nnode_modules/\n.sass-cache\ncss/reveal.min.css\njs/reveal.min.js\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/.travis.yml",
    "content": "language: node_js\nnode_js:\n  - 4.1.1\nbefore_script:\n  - npm install -g grunt-cli"
  },
  {
    "path": "doc/concepts-driven-design-with-di/CONTRIBUTING.md",
    "content": "## Contributing\n\nPlease keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.\n\n\n### Personal Support\nIf you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).\n\n\n### Bug Reports\nWhen reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.\n\n\n### Pull Requests\n- Should follow the coding style of the file you work in, most importantly:\n  - Tabs to indent\n  - Single-quoted strings\n- Should be made towards the **dev branch**\n- Should be submitted from a feature/topic branch (not your master)\n\n\n### Plugins\nPlease do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/Gruntfile.js",
    "content": "/* global module:false */\nmodule.exports = function(grunt) {\n\tvar port = grunt.option('port') || 8000;\n\tvar base = grunt.option('base') || '.';\n\n\t// Project configuration\n\tgrunt.initConfig({\n\t\tpkg: grunt.file.readJSON('package.json'),\n\t\tmeta: {\n\t\t\tbanner:\n\t\t\t\t'/*!\\n' +\n\t\t\t\t' * reveal.js <%= pkg.version %> (<%= grunt.template.today(\"yyyy-mm-dd, HH:MM\") %>)\\n' +\n\t\t\t\t' * http://lab.hakim.se/reveal-js\\n' +\n\t\t\t\t' * MIT licensed\\n' +\n\t\t\t\t' *\\n' +\n\t\t\t\t' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\\n' +\n\t\t\t\t' */'\n\t\t},\n\n\t\tqunit: {\n\t\t\tfiles: [ 'test/*.html' ]\n\t\t},\n\n\t\tuglify: {\n\t\t\toptions: {\n\t\t\t\tbanner: '<%= meta.banner %>\\n'\n\t\t\t},\n\t\t\tbuild: {\n\t\t\t\tsrc: 'js/reveal.js',\n\t\t\t\tdest: 'js/reveal.min.js'\n\t\t\t}\n\t\t},\n\n\t\tsass: {\n\t\t\tcore: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.css': 'css/reveal.scss',\n\t\t\t\t}\n\t\t\t},\n\t\t\tthemes: {\n\t\t\t\tfiles: [\n\t\t\t\t\t{\n\t\t\t\t\t\texpand: true,\n\t\t\t\t\t\tcwd: 'css/theme/source',\n\t\t\t\t\t\tsrc: ['*.scss'],\n\t\t\t\t\t\tdest: 'css/theme',\n\t\t\t\t\t\text: '.css'\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t},\n\n\t\tautoprefixer: {\n\t\t\tdist: {\n\t\t\t\tsrc: 'css/reveal.css'\n\t\t\t}\n\t\t},\n\n\t\tcssmin: {\n\t\t\tcompress: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.min.css': [ 'css/reveal.css' ]\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tjshint: {\n\t\t\toptions: {\n\t\t\t\tcurly: false,\n\t\t\t\teqeqeq: true,\n\t\t\t\timmed: true,\n\t\t\t\tlatedef: true,\n\t\t\t\tnewcap: true,\n\t\t\t\tnoarg: true,\n\t\t\t\tsub: true,\n\t\t\t\tundef: true,\n\t\t\t\teqnull: true,\n\t\t\t\tbrowser: true,\n\t\t\t\texpr: true,\n\t\t\t\tglobals: {\n\t\t\t\t\thead: false,\n\t\t\t\t\tmodule: false,\n\t\t\t\t\tconsole: false,\n\t\t\t\t\tunescape: false,\n\t\t\t\t\tdefine: false,\n\t\t\t\t\texports: false\n\t\t\t\t}\n\t\t\t},\n\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ]\n\t\t},\n\n\t\tconnect: {\n\t\t\tserver: {\n\t\t\t\toptions: {\n\t\t\t\t\tport: port,\n\t\t\t\t\tbase: base,\n\t\t\t\t\tlivereload: true,\n\t\t\t\t\topen: true\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tzip: {\n\t\t\t'reveal-js-presentation.zip': [\n\t\t\t\t'index.html',\n\t\t\t\t'css/**',\n\t\t\t\t'js/**',\n\t\t\t\t'lib/**',\n\t\t\t\t'images/**',\n\t\t\t\t'plugin/**',\n\t\t\t\t'**.md'\n\t\t\t]\n\t\t},\n\n\t\twatch: {\n\t\t\toptions: {\n\t\t\t\tlivereload: true\n\t\t\t},\n\t\t\tjs: {\n\t\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ],\n\t\t\t\ttasks: 'js'\n\t\t\t},\n\t\t\ttheme: {\n\t\t\t\tfiles: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],\n\t\t\t\ttasks: 'css-themes'\n\t\t\t},\n\t\t\tcss: {\n\t\t\t\tfiles: [ 'css/reveal.scss' ],\n\t\t\t\ttasks: 'css-core'\n\t\t\t},\n\t\t\thtml: {\n\t\t\t\tfiles: [ 'index.html']\n\t\t\t},\n\t\t\tmarkdown: {\n\t\t\t\tfiles: [ './*.md' ]\n\t\t\t}\n\t\t}\n\n\t});\n\n\t// Dependencies\n\tgrunt.loadNpmTasks( 'grunt-contrib-qunit' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-jshint' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-cssmin' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-uglify' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-watch' );\n\tgrunt.loadNpmTasks( 'grunt-sass' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-connect' );\n\tgrunt.loadNpmTasks( 'grunt-autoprefixer' );\n\tgrunt.loadNpmTasks( 'grunt-zip' );\n\n\t// Default task\n\tgrunt.registerTask( 'default', [ 'css', 'js' ] );\n\n\t// JS task\n\tgrunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );\n\n\t// Theme CSS\n\tgrunt.registerTask( 'css-themes', [ 'sass:themes' ] );\n\n\t// Core framework CSS\n\tgrunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );\n\n\t// All CSS\n\tgrunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );\n\n\t// Package presentation to archive\n\tgrunt.registerTask( 'package', [ 'default', 'zip' ] );\n\n\t// Serve presentation locally\n\tgrunt.registerTask( 'serve', [ 'connect', 'watch' ] );\n\n\t// Run tests\n\tgrunt.registerTask( 'test', [ 'jshint', 'qunit' ] );\n\n};\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/LICENSE",
    "content": "Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "doc/concepts-driven-design-with-di/README.md",
    "content": "# reveal.js [![Build Status](https://travis-ci.org/hakimel/reveal.js.svg?branch=master)](https://travis-ci.org/hakimel/reveal.js)\n\nA framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/).\n\nreveal.js comes with a broad range of features including [nested slides](https://github.com/hakimel/reveal.js#markup), [Markdown contents](https://github.com/hakimel/reveal.js#markdown), [PDF export](https://github.com/hakimel/reveal.js#pdf-export), [speaker notes](https://github.com/hakimel/reveal.js#speaker-notes) and a [JavaScript API](https://github.com/hakimel/reveal.js#api). It's best viewed in a modern browser but [fallbacks](https://github.com/hakimel/reveal.js/wiki/Browser-Support) are available to make sure your presentation can still be viewed elsewhere.\n\n\n#### More reading:\n- [Installation](#installation): Step-by-step instructions for getting reveal.js running on your computer.\n- [Changelog](https://github.com/hakimel/reveal.js/releases): Up-to-date version history.\n- [Examples](https://github.com/hakimel/reveal.js/wiki/Example-Presentations): Presentations created with reveal.js, add your own!\n- [Browser Support](https://github.com/hakimel/reveal.js/wiki/Browser-Support): Explanation of browser support and fallbacks.\n- [Plugins](https://github.com/hakimel/reveal.js/wiki/Plugins,-Tools-and-Hardware): A list of plugins that can be used to extend reveal.js.\n\n## Online Editor\n\nPresentations are written using HTML or Markdown but there's also an online editor for those of you who prefer a graphical interface. Give it a try at [http://slides.com](http://slides.com).\n\n\n## Instructions\n\n### Markup\n\nMarkup hierarchy needs to be ``<div class=\"reveal\"> <div class=\"slides\"> <section>`` where the ``<section>`` represents one slide and can be repeated indefinitely. If you place multiple ``<section>``'s inside of another ``<section>`` they will be shown as vertical slides. The first of the vertical slides is the \"root\" of the others (at the top), and it will be included in the horizontal sequence. For example:\n\n```html\n<div class=\"reveal\">\n\t<div class=\"slides\">\n\t\t<section>Single Horizontal Slide</section>\n\t\t<section>\n\t\t\t<section>Vertical Slide 1</section>\n\t\t\t<section>Vertical Slide 2</section>\n\t\t</section>\n\t</div>\n</div>\n```\n\n### Markdown\n\nIt's possible to write your slides using Markdown. To enable Markdown, add the ```data-markdown``` attribute to your ```<section>``` elements and wrap the contents in a ```<script type=\"text/template\">``` like the example below.\n\nThis is based on [data-markdown](https://gist.github.com/1343518) from [Paul Irish](https://github.com/paulirish) modified to use [marked](https://github.com/chjj/marked) to support [Github Flavoured Markdown](https://help.github.com/articles/github-flavored-markdown). Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks).\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t## Page title\n\n\t\tA paragraph with some text and a [link](http://hakim.se).\n\t</script>\n</section>\n```\n\n#### External Markdown\n\nYou can write your content as a separate file and have reveal.js load it at runtime. Note the separator arguments which determine how slides are delimited in the external file. The ```data-charset``` attribute is optional and specifies which charset to use when loading the external file.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section data-markdown=\"example.md\"  \n         data-separator=\"^\\n\\n\\n\"  \n         data-separator-vertical=\"^\\n\\n\"  \n         data-separator-notes=\"^Note:\"  \n         data-charset=\"iso-8859-15\">\n</section>\n```\n\n#### Element Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to Markdown elements. This is useful for fragments, amongst other things.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t- Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n\t\t- Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n\t</script>\n</section>\n```\n\n#### Slide Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to the slide `<section>` elements generated by your Markdown.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\tMarkdown content\n\t</script>\n</section>\n```\n\n\n### Configuration\n\nAt the end of your page you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below.\n\n```javascript\nReveal.initialize({\n\n\t// Display controls in the bottom right corner\n\tcontrols: true,\n\n\t// Display a presentation progress bar\n\tprogress: true,\n\n\t// Display the page number of the current slide\n\tslideNumber: false,\n\n\t// Push each slide change to the browser history\n\thistory: false,\n\n\t// Enable keyboard shortcuts for navigation\n\tkeyboard: true,\n\n\t// Enable the slide overview mode\n\toverview: true,\n\n\t// Vertical centering of slides\n\tcenter: true,\n\n\t// Enables touch navigation on devices with touch input\n\ttouch: true,\n\n\t// Loop the presentation\n\tloop: false,\n\n\t// Change the presentation direction to be RTL\n\trtl: false,\n\n\t// Turns fragments on and off globally\n\tfragments: true,\n\n\t// Flags if the presentation is running in an embedded mode,\n\t// i.e. contained within a limited portion of the screen\n\tembedded: false,\n\n\t// Flags if we should show a help overlay when the questionmark\n\t// key is pressed\n\thelp: true,\n\n\t// Flags if speaker notes should be visible to all viewers\n\tshowNotes: false,\n\n\t// Number of milliseconds between automatically proceeding to the\n\t// next slide, disabled when set to 0, this value can be overwritten\n\t// by using a data-autoslide attribute on your slides\n\tautoSlide: 0,\n\n\t// Stop auto-sliding after user input\n\tautoSlideStoppable: true,\n\n\t// Enable slide navigation via mouse wheel\n\tmouseWheel: false,\n\n\t// Hides the address bar on mobile devices\n\thideAddressBar: true,\n\n\t// Opens links in an iframe preview overlay\n\tpreviewLinks: false,\n\n\t// Transition style\n\ttransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Transition speed\n\ttransitionSpeed: 'default', // default/fast/slow\n\n\t// Transition style for full page slide backgrounds\n\tbackgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Number of slides away from the current that are visible\n\tviewDistance: 3,\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n\t// Amount to move parallax background (horizontal and vertical) on slide change\n\t// Number, e.g. 100\n\tparallaxBackgroundHorizontal: '',\n\tparallaxBackgroundVertical: ''\n\n});\n```\n\n\nThe configuration can be updated after initialization using the ```configure``` method:\n\n```javascript\n// Turn autoSlide off\nReveal.configure({ autoSlide: 0 });\n\n// Start auto-sliding every 5s\nReveal.configure({ autoSlide: 5000 });\n```\n\n\n### Presentation Size\n\nAll presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport.\n\nSee below for a list of configuration options related to sizing, including default values:\n\n```javascript\nReveal.initialize({\n\n\t...\n\n\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t// when the presentation is scaled to fit different resolutions. Can be\n\t// specified using percentage units.\n\twidth: 960,\n\theight: 700,\n\n\t// Factor of the display size that should remain empty around the content\n\tmargin: 0.1,\n\n\t// Bounds for smallest/largest possible scale to apply to content\n\tminScale: 0.2,\n\tmaxScale: 1.5\n\n});\n```\n\n\n### Dependencies\n\nReveal.js doesn't _rely_ on any third party scripts to work but a few optional libraries are included by default. These libraries are loaded as dependencies in the order they appear, for example:\n\n```javascript\nReveal.initialize({\n\tdependencies: [\n\t\t// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/\n\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\n\t\t// Interpret Markdown in <section> elements\n\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\n\t\t// Syntax highlight for <code> elements\n\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\n\t\t// Zoom in and out with Alt+click\n\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\n\t\t// Speaker notes\n\t\t{ src: 'plugin/notes/notes.js', async: true },\n\n\t\t// MathJax\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n});\n```\n\nYou can add your own extensions using the same syntax. The following properties are available for each dependency object:\n- **src**: Path to the script to load\n- **async**: [optional] Flags if the script should load after reveal.js has started, defaults to false\n- **callback**: [optional] Function to execute when the script has loaded\n- **condition**: [optional] Function which must return true for the script to be loaded\n\n\n### Ready Event\n\nA 'ready' event is fired when reveal.js has loaded all non-async dependencies and is ready to start navigating. To check if reveal.js is already 'ready' you can call `Reveal.isReady()`.\n\n```javascript\nReveal.addEventListener( 'ready', function( event ) {\n\t// event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n\n### Auto-sliding\n\nPresentations can be configured to progress through slides automatically, without any user input. To enable this you will need to tell the framework how many milliseconds it should wait between slides:\n\n```javascript\n// Slide every five seconds\nReveal.configure({\n  autoSlide: 5000\n});\n```\nWhen this is turned on a control element will appear that enables users to pause and resume auto-sliding. Alternatively, sliding can be paused or resumed by pressing »a« on the keyboard. Sliding is paused automatically as soon as the user starts navigating. You can disable these controls by specifying ```autoSlideStoppable: false``` in your reveal.js config.\n\nYou can also override the slide duration for individual slides and fragments by using the ```data-autoslide``` attribute:\n\n```html\n<section data-autoslide=\"2000\">\n\t<p>After 2 seconds the first fragment will be shown.</p>\n\t<p class=\"fragment\" data-autoslide=\"10000\">After 10 seconds the next fragment will be shown.</p>\n\t<p class=\"fragment\">Now, the fragment is displayed for 2 seconds before the next slide is shown.</p>\n</section>\n```\n\nWhenever the auto-slide mode is resumed or paused the ```autoslideresumed``` and ```autoslidepaused``` events are fired.\n\n\n### Keyboard Bindings\n\nIf you're unhappy with any of the default keyboard bindings you can override them using the ```keyboard``` config option:\n\n```javascript\nReveal.configure({\n  keyboard: {\n    13: 'next', // go to the next slide when the ENTER key is pressed\n    27: function() {}, // do something custom when ESC is pressed\n    32: null // don't do anything when SPACE is pressed (i.e. disable a reveal.js default binding)\n  }\n});\n```\n\n### Touch Navigation\n\nYou can swipe to navigate through a presentation on any touch-enabled device. Horizontal swipes change between horizontal slides, vertical swipes change between vertical slides. If you wish to disable this you can set the `touch` config option to false when initializing reveal.js.\n\nIf there's some part of your content that needs to remain accessible to touch events you'll need to highlight this by adding a `data-prevent-swipe` attribute to the element. One common example where this is useful is elements that need to be scrolled.\n\n\n### Lazy Loading\n\nWhen working on presentation with a lot of media or iframe content it's important to load lazily. Lazy loading means that reveal.js will only load content for the few slides nearest to the current slide. The number of slides that are preloaded is determined by the `viewDistance` configuration option.\n\nTo enable lazy loading all you need to do is change your \"src\" attributes to \"data-src\" as shown below. This is supported for image, video, audio and iframe elements. Lazy loaded iframes will also unload when the containing slide is no longer visible.\n\n```html\n<section>\n  <img data-src=\"image.png\">\n  <iframe data-src=\"http://hakim.se\"></iframe>\n  <video>\n    <source data-src=\"video.webm\" type=\"video/webm\" />\n    <source data-src=\"video.mp4\" type=\"video/mp4\" />\n  </video>\n</section>\n```\n\n\n### API\n\nThe ``Reveal`` object exposes a JavaScript API for controlling navigation and reading state:\n\n```javascript\n// Navigation\nReveal.slide( indexh, indexv, indexf );\nReveal.left();\nReveal.right();\nReveal.up();\nReveal.down();\nReveal.prev();\nReveal.next();\nReveal.prevFragment();\nReveal.nextFragment();\n\n// Toggle presentation states, optionally pass true/false to force on/off\nReveal.toggleOverview();\nReveal.togglePause();\nReveal.toggleAutoSlide();\n\n// Change a config value at runtime\nReveal.configure({ controls: true });\n\n// Returns the present configuration options\nReveal.getConfig();\n\n// Fetch the current scale of the presentation\nReveal.getScale();\n\n// Retrieves the previous and current slide elements\nReveal.getPreviousSlide();\nReveal.getCurrentSlide();\n\nReveal.getIndices(); // { h: 0, v: 0 } }\nReveal.getProgress(); // 0-1\nReveal.getTotalSlides();\n\n// Returns the speaker notes for the current slide\nReveal.getSlideNotes();\n\n// State checks\nReveal.isFirstSlide();\nReveal.isLastSlide();\nReveal.isOverview();\nReveal.isPaused();\nReveal.isAutoSliding();\n```\n\n### Slide Changed Event\n\nA 'slidechanged' event is fired each time the slide is changed (regardless of state). The event object holds the index values of the current slide as well as a reference to the previous and current slide HTML nodes.\n\nSome libraries, like MathJax (see [#226](https://github.com/hakimel/reveal.js/issues/226#issuecomment-10261609)), get confused by the transforms and display states of slides. Often times, this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'slidechanged', function( event ) {\n\t// event.previousSlide, event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n### Presentation State\n\nThe presentation's current state can be fetched by using the `getState` method. A state object contains all of the information required to put the presentation back as it was when `getState` was first called. Sort of like a snapshot. It's a simple object that can easily be stringified and persisted or sent over the wire.\n\n```javascript\nReveal.slide( 1 );\n// we're on slide 1\n\nvar state = Reveal.getState();\n\nReveal.slide( 3 );\n// we're on slide 3\n\nReveal.setState( state );\n// we're back on slide 1\n```\n\n### Slide States\n\nIf you set ``data-state=\"somestate\"`` on a slide ``<section>``, \"somestate\" will be applied as a class on the document element when that slide is opened. This allows you to apply broad style changes to the page based on the active slide.\n\nFurthermore you can also listen to these changes in state via JavaScript:\n\n```javascript\nReveal.addEventListener( 'somestate', function() {\n\t// TODO: Sprinkle magic\n}, false );\n```\n\n### Slide Backgrounds\n\nSlides are contained within a limited portion of the screen by default to allow them to fit any display and scale uniformly. You can apply full page backgrounds outside of the slide area by adding a ```data-background``` attribute to your ```<section>``` elements. Four different types of backgrounds are supported: color, image, video and iframe. Below are a few examples.\n\n```html\n<section data-background=\"#ff0000\">\n\t<h2>All CSS color formats are supported, like rgba() or hsl().</h2>\n</section>\n<section data-background=\"http://example.com/image.png\">\n\t<h2>This slide will have a full-size background image.</h2>\n</section>\n<section data-background=\"http://example.com/image.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\">\n\t<h2>This background image will be sized to 100px and repeated.</h2>\n</section>\n<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\" data-background-video-loop>\n\t<h2>Video. Multiple sources can be defined using a comma separated list. Video will loop when the data-background-video-loop attribute is provided.</h2>\n</section>\n<section data-background-iframe=\"https://slides.com\">\n\t<h2>Embeds a web page as a background. Note that the page won't be interactive.</h2>\n</section>\n```\n\nBackgrounds transition using a fade animation by default. This can be changed to a linear sliding transition by passing ```backgroundTransition: 'slide'``` to the ```Reveal.initialize()``` call. Alternatively you can set ```data-background-transition``` on any section with a background to override that specific transition.\n\n\n### Parallax Background\n\nIf you want to use a parallax scrolling background, set the first two config properties below when initializing reveal.js (the other two are optional).\n\n```javascript\nReveal.initialize({\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\" - currently only pixels are supported (don't use % or auto)\n\n\t// Amount of pixels to move the parallax background per slide step,\n\t// a value of 0 disables movement along the given axis\n\t// These are optional, if they aren't specified they'll be calculated automatically\n\tparallaxBackgroundHorizontal: 200,\n\tparallaxBackgroundVertical: 50\n\n});\n```\n\nMake sure that the background size is much bigger than screen size to allow for some scrolling. [View example](http://lab.hakim.se/reveal-js/?parallaxBackgroundImage=https%3A%2F%2Fs3.amazonaws.com%2Fhakim-static%2Freveal-js%2Freveal-parallax-1.jpg&parallaxBackgroundSize=2100px%20900px).\n\n\n\n### Slide Transitions\nThe global presentation transition is set using the ```transition``` config value. You can override the global transition for a specific slide by using the ```data-transition``` attribute:\n\n```html\n<section data-transition=\"zoom\">\n\t<h2>This slide will override the presentation transition and zoom!</h2>\n</section>\n\n<section data-transition-speed=\"fast\">\n\t<h2>Choose from three transition speeds: default, fast or slow!</h2>\n</section>\n```\n\nYou can also use different in and out transitions for the same slide:\n\n```html\n<section data-transition=\"slide\">\n    The train goes on … \n</section>\n<section data-transition=\"slide\"> \n    and on … \n</section>\n<section data-transition=\"slide-in fade-out\"> \n    and stops.\n</section>\n<section data-transition=\"fade-in slide-out\"> \n    (Passengers entering and leaving)\n</section>\n<section data-transition=\"slide\">\n    And it starts again.\n</section>\n```\n\n\n### Internal links\n\nIt's easy to link between slides. The first example below targets the index of another slide whereas the second targets a slide with an ID attribute (```<section id=\"some-slide\">```):\n\n```html\n<a href=\"#/2/2\">Link</a>\n<a href=\"#/some-slide\">Link</a>\n```\n\nYou can also add relative navigation links, similar to the built in reveal.js controls, by appending one of the following classes on any element. Note that each element is automatically given an ```enabled``` class when it's a valid navigation route based on the current slide.\n\n```html\n<a href=\"#\" class=\"navigate-left\">\n<a href=\"#\" class=\"navigate-right\">\n<a href=\"#\" class=\"navigate-up\">\n<a href=\"#\" class=\"navigate-down\">\n<a href=\"#\" class=\"navigate-prev\"> <!-- Previous vertical or horizontal slide -->\n<a href=\"#\" class=\"navigate-next\"> <!-- Next vertical or horizontal slide -->\n```\n\n\n### Fragments\nFragments are used to highlight individual elements on a slide. Every element with the class ```fragment``` will be stepped through before moving on to the next slide. Here's an example: http://lab.hakim.se/reveal-js/#/fragments\n\nThe default fragment style is to start out invisible and fade in. This style can be changed by appending a different class to the fragment:\n\n```html\n<section>\n\t<p class=\"fragment grow\">grow</p>\n\t<p class=\"fragment shrink\">shrink</p>\n\t<p class=\"fragment fade-out\">fade-out</p>\n\t<p class=\"fragment current-visible\">visible only once</p>\n\t<p class=\"fragment highlight-current-blue\">blue only once</p>\n\t<p class=\"fragment highlight-red\">highlight-red</p>\n\t<p class=\"fragment highlight-green\">highlight-green</p>\n\t<p class=\"fragment highlight-blue\">highlight-blue</p>\n</section>\n```\n\nMultiple fragments can be applied to the same element sequentially by wrapping it, this will fade in the text on the first step and fade it back out on the second.\n\n```html\n<section>\n\t<span class=\"fragment fade-in\">\n\t\t<span class=\"fragment fade-out\">I'll fade in, then out</span>\n\t</span>\n</section>\n```\n\nThe display order of fragments can be controlled using the ```data-fragment-index``` attribute.\n\n```html\n<section>\n\t<p class=\"fragment\" data-fragment-index=\"3\">Appears last</p>\n\t<p class=\"fragment\" data-fragment-index=\"1\">Appears first</p>\n\t<p class=\"fragment\" data-fragment-index=\"2\">Appears second</p>\n</section>\n```\n\n### Fragment events\n\nWhen a slide fragment is either shown or hidden reveal.js will dispatch an event.\n\nSome libraries, like MathJax (see #505), get confused by the initially hidden fragment elements. Often times this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'fragmentshown', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\nReveal.addEventListener( 'fragmenthidden', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\n```\n\n### Code syntax highlighting\n\nBy default, Reveal is configured with [highlight.js](https://highlightjs.org/) for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted. When the `data-trim` attribute is present surrounding whitespace is automatically removed.\n\n```html\n<section>\n\t<pre><code data-trim>\n(def lazy-fib\n  (concat\n   [0 1]\n   ((fn rfib [a b]\n        (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))\n\t</code></pre>\n</section>\n```\n\n### Slide number\nIf you would like to display the page number of the current slide you can do so using the ```slideNumber``` configuration value.\n\n```javascript\n// Shows the slide number using default formatting\nReveal.configure({ slideNumber: true });\n\n// Slide number formatting can be configured using these variables:\n//  \"h.v\": \thorizontal . vertical slide number (default)\n//  \"h/v\": \thorizontal / vertical slide number\n//    \"c\": \tflattened slide number\n//  \"c/t\": \tflattened slide number / total slides\nReveal.configure({ slideNumber: 'c/t' });\n\n```\n\n\n### Overview mode\n\nPress \"Esc\" or \"o\" keys to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides,\nas if you were at 1,000 feet above your presentation. The overview mode comes with a few API hooks:\n\n```javascript\nReveal.addEventListener( 'overviewshown', function( event ) { /* ... */ } );\nReveal.addEventListener( 'overviewhidden', function( event ) { /* ... */ } );\n\n// Toggle the overview mode programmatically\nReveal.toggleOverview();\n```\n\n### Fullscreen mode\nJust press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode.\n\n\n### Embedded media\nEmbedded HTML5 `<video>`/`<audio>` and YouTube iframes are automatically paused when you navigate away from a slide. This can be disabled by decorating your element with a `data-ignore` attribute.\n\nAdd `data-autoplay` to your media element if you want it to automatically start playing when the slide is shown:\n\n```html\n<video data-autoplay src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n```\n\nAdditionally the framework automatically pushes two [post messages](https://developer.mozilla.org/en-US/docs/Web/API/Window.postMessage) to all iframes, ```slide:start``` when the slide containing the iframe is made visible and ```slide:stop``` when it is hidden.\n\n\n### Stretching elements\nSometimes it's desirable to have an element, like an image or video, stretch to consume as much space as possible within a given slide. This can be done by adding the ```.stretch``` class to an element as seen below:\n\n```html\n<section>\n\t<h2>This video will use up the remaining space on the slide</h2>\n    <video class=\"stretch\" src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n</section>\n```\n\nLimitations:\n- Only direct descendants of a slide section can be stretched\n- Only one descendant per slide section can be stretched\n\n\n### postMessage API\nThe framework has a built-in postMessage API that can be used when communicating with a presentation inside of another window. Here's an example showing how you'd make a reveal.js instance in the given window proceed to slide 2:\n\n```javascript\n<window>.postMessage( JSON.stringify({ method: 'slide', args: [ 2 ] }), '*' );\n```\n\nWhen reveal.js runs inside of an iframe it can optionally bubble all of its events to the parent. Bubbled events are stringified JSON with three fields: namespace, eventName and state. Here's how you subscribe to them from the parent window:\n\n```javascript\nwindow.addEventListener( 'message', function( event ) {\n\tvar data = JSON.parse( event.data );\n\tif( data.namespace === 'reveal' && data.eventName ==='slidechanged' ) {\n\t\t// Slide changed, see data.state for slide number\n\t}\n} );\n```\n\nThis cross-window messaging can be toggled on or off using configuration flags.\n\n```javascript\nReveal.initialize({\n\t...,\n\n\t// Exposes the reveal.js API through window.postMessage\n\tpostMessage: true,\n\n\t// Dispatches all reveal.js events to the parent window through postMessage\n\tpostMessageEvents: false\n});\n```\n\n\n## PDF Export\n\nPresentations can be exported to PDF via a special print stylesheet. This feature requires that you use [Google Chrome](http://google.com/chrome) or [Chromium](https://www.chromium.org/Home).\nHere's an example of an exported presentation that's been uploaded to SlideShare: http://www.slideshare.net/hakimel/revealjs-300.\n\n1. Open your presentation with `print-pdf` included anywhere in the query string. This triggers the default index HTML to load the PDF print stylesheet ([css/print/pdf.css](https://github.com/hakimel/reveal.js/blob/master/css/print/pdf.css)). You can test this with [lab.hakim.se/reveal-js?print-pdf](http://lab.hakim.se/reveal-js?print-pdf).\n2. Open the in-browser print dialog (CMD+P).\n3. Change the **Destination** setting to **Save as PDF**.\n4. Change the **Layout** to **Landscape**.\n5. Change the **Margins** to **None**.\n6. Click **Save**.\n\n![Chrome Print Settings](https://s3.amazonaws.com/hakim-static/reveal-js/pdf-print-settings.png)\n\nAlternatively you can use the [decktape](https://github.com/astefanutti/decktape) project.\n\n## Theming\n\nThe framework comes with a few different themes included:\n\n- black: Black background, white text, blue links (default theme)\n- white: White background, black text, blue links\n- league: Gray background, white text, blue links (default theme for reveal.js < 3.0.0)\n- beige: Beige background, dark text, brown links\n- sky: Blue background, thin dark text, blue links\n- night: Black background, thick white text, orange links\n- serif: Cappuccino background, gray text, brown links\n- simple: White background, black text, blue links\n- solarized: Cream-colored background, dark green text, blue links\n\nEach theme is available as a separate stylesheet. To change theme you will need to replace **black** below with your desired theme name in index.html:\n\n```html\n<link rel=\"stylesheet\" href=\"css/theme/black.css\" id=\"theme\">\n```\n\nIf you want to add a theme of your own see the instructions here: [/css/theme/README.md](https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md).\n\n\n## Speaker Notes\n\nreveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Press the 's' key on your keyboard to open the notes window.\n\nNotes are defined by appending an ```<aside>``` element to a slide as seen below. You can add the ```data-markdown``` attribute to the aside element if you prefer writing notes using Markdown.\n\nAlternatively you can add your notes in a `data-notes` attribute on the slide. Like `<section data-notes=\"Something important\"></section>`.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section>\n\t<h2>Some Slide</h2>\n\n\t<aside class=\"notes\">\n\t\tOh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).\n\t</aside>\n</section>\n```\n\nNotes are only visible to you in the speaker view. If you wish to share your notes with the audience initialize reveal.js with the `showNotes` config value set to `true`.\n\nIf you're using the external Markdown plugin, you can add notes with the help of a special delimiter:\n\n```html\n<section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\" data-separator-notes=\"^Note:\"></section>\n\n# Title\n## Sub-title\n\nHere is some content...\n\nNote:\nThis will only display in the notes window.\n```\n\n## Server Side Speaker Notes\n\nIn some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the required scripts by adding the following dependencies:\n\n```javascript\nReveal.initialize({\n\t...\n\n\tdependencies: [\n\t\t{ src: 'socket.io/socket.io.js', async: true },\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\t]\n});\n```\n\nThen:\n\n1. Install [Node.js](http://nodejs.org/)\n2. Run ```npm install```\n3. Run ```node plugin/notes-server```\n\n\n## Multiplexing\n\nThe multiplex plugin allows your audience to view the slides of the presentation you are controlling on their own phone, tablet or laptop. As the master presentation navigates the slides, all client presentations will update in real time. See a demo at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nThe multiplex plugin needs the following 3 things to operate:\n\n1. Master presentation that has control\n2. Client presentations that follow the master\n3. Socket.io server to broadcast events from the master to the clients\n\nMore details:\n\n#### Master presentation\nServed from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation: \n\n1. ```npm install node-static```\n2. ```static```\n\nIf you want to use the speaker notes plugin with your master presentation then make sure you have the speaker notes plugin configured correctly along with the configuration shown below, then execute ```node plugin/notes-server``` in the directory of your master presentation. The configuration below will cause it to connect to the socket.io server as a master, as well as launch your speaker-notes/static-file server.\n\nYou can then access your master presentation at ```http://localhost:1947```\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\n\t\t// and if you want speaker notes\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Client presentation\nServed from a publicly accessible static file server. Examples include: GitHub Pages, Amazon S3, Dreamhost, Akamai, etc. The more reliable, the better. Your audience can then access the client presentation via ```http://example.com/path/to/presentation/client/index.html```, with the configuration below causing them to connect to the socket.io server as clients.\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Socket.io server\nServer that receives the slideChanged events from the master presentation and broadcasts them out to the connected client presentations. This needs to be publicly accessible. You can run your own socket.io server with the commands:\n\n1. ```npm install```\n2. ```node plugin/multiplex```\n\nOr you use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nYou'll need to generate a unique secret and token pair for your master and client presentations. To do so, visit ```http://example.com/token```, where ```http://example.com``` is the location of your socket.io server. Or if you're going to use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), visit [http://revealjs-51546.onmodulus.net/token](http://revealjs-51546.onmodulus.net/token).\n\nYou are very welcome to point your presentations at the Socket.io server running at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), but availability and stability are not guaranteed. For anything mission critical I recommend you run your own server. It is simple to deploy to nodejitsu, heroku, your own environment, etc.\n\n##### socket.io server as file static server\n\nThe socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match.)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n```\n\nIt can also play the role of static file server for your master presentation and client presentations at the same time (as long as you don't want to use speaker notes). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match. Navigate through the slides on the second, and the first will update to match.) This is probably not desirable, because you don't want your audience to mess with your slides while you're presenting. ;)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n## MathJax\n\nIf you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies).\n\nThe plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value. \n\nBelow is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all.\n\n```js\nReveal.initialize({\n\n\t// other options ...\n\n\tmath: {\n\t\tmathjax: 'https://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\tconfig: 'TeX-AMS_HTML-full'  // See http://docs.mathjax.org/en/latest/config-files.html\n\t},\n\t\n\tdependencies: [\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n\n});\n```\n\nRead MathJax's documentation if you need [HTTPS delivery](http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn) or serving of [specific versions](http://docs.mathjax.org/en/latest/configuration.html#loading-mathjax-from-the-cdn) for stability.\n\n\n## Installation\n\nThe **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features and plugins such as speaker notes as well as the development tasks needed to make changes to the source.\n\n### Basic setup\n\nThe core of reveal.js is very easy to install. You'll simply need to download a copy of this repository and open the index.html file directly in your browser.\n\n1. Download the latest version of reveal.js from <https://github.com/hakimel/reveal.js/releases>\n\n2. Unzip and replace the example contents in index.html with your own\n\n3. Open index.html in a browser to view it\n\n\n### Full setup\n\nSome reveal.js features, like external Markdown and speaker notes, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code.\n\n1. Install [Node.js](http://nodejs.org/)\n\n2. Install [Grunt](http://gruntjs.com/getting-started#installing-the-cli)\n\n4. Clone the reveal.js repository\n   ```sh\n   $ git clone https://github.com/hakimel/reveal.js.git\n   ```\n\n5. Navigate to the reveal.js folder\n   ```sh\n   $ cd reveal.js\n   ```\n\n6. Install dependencies\n   ```sh\n   $ npm install\n   ```\n\n7. Serve the presentation and monitor source files for changes\n   ```sh\n   $ grunt serve\n   ```\n\n8. Open <http://localhost:8000> to view your presentation\n\n   You can change the port by using `grunt serve --port 8001`.\n\n\n### Folder Structure\n- **css/** Core styles without which the project does not function\n- **js/** Like above but for JavaScript\n- **plugin/** Components that have been developed as extensions to reveal.js\n- **lib/** All other third party assets (JavaScript, CSS, fonts)\n\n\n## License\n\nMIT licensed\n\nCopyright (C) 2015 Hakim El Hattab, http://hakim.se\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/bower.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"main\": [\n    \"js/reveal.js\",\n    \"css/reveal.css\"\n  ],\n  \"homepage\": \"http://lab.hakim.se/reveal-js/\",\n  \"license\": \"MIT\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"authors\": [\n    \"Hakim El Hattab <hakim.elhattab@gmail.com>\"\n  ],\n  \"dependencies\": {\n    \"headjs\": \"~1.0.3\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"ignore\": [\n    \"**/.*\",\n    \"node_modules\",\n    \"bower_components\",\n    \"test\"\n  ]\n}"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/print/paper.css",
    "content": "/* Default Print Stylesheet Template\n   by Rob Glazebrook of CSSnewbie.com\n   Last Updated: June 4, 2008\n\n   Feel free (nay, compelled) to edit, append, and\n   manipulate this file as you see fit. */\n\n\n@media print {\n\n\t/* SECTION 1: Set default width, margin, float, and\n\t   background. This prevents elements from extending\n\t   beyond the edge of the printed page, and prevents\n\t   unnecessary background images from printing */\n\thtml {\n\t\tbackground: #fff;\n\t\twidth: auto;\n\t\theight: auto;\n\t\toverflow: visible;\n\t}\n\tbody {\n\t\tbackground: #fff;\n\t\tfont-size: 20pt;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tborder: 0;\n\t\tmargin: 0 5%;\n\t\tpadding: 0;\n\t\toverflow: visible;\n\t\tfloat: none !important;\n\t}\n\n\t/* SECTION 2: Remove any elements not needed in print.\n\t   This would include navigation, ads, sidebars, etc. */\n\t.nestedarrow,\n\t.controls,\n\t.fork-reveal,\n\t.share-reveal,\n\t.state-background,\n\t.reveal .progress,\n\t.reveal .backgrounds {\n\t\tdisplay: none !important;\n\t}\n\n\t/* SECTION 3: Set body font face, size, and color.\n\t   Consider using a serif font for readability. */\n\tbody, p, td, li, div {\n\t\tfont-size: 20pt!important;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\tcolor: #000;\n\t}\n\n\t/* SECTION 4: Set heading font face, sizes, and color.\n\t   Differentiate your headings from your body text.\n\t   Perhaps use a large sans-serif for distinction. */\n\th1,h2,h3,h4,h5,h6 {\n\t\tcolor: #000!important;\n\t\theight: auto;\n\t\tline-height: normal;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\ttext-shadow: 0 0 0 #000 !important;\n\t\ttext-align: left;\n\t\tletter-spacing: normal;\n\t}\n\t/* Need to reduce the size of the fonts for printing */\n\th1 { font-size: 28pt !important;  }\n\th2 { font-size: 24pt !important; }\n\th3 { font-size: 22pt !important; }\n\th4 { font-size: 22pt !important; font-variant: small-caps; }\n\th5 { font-size: 21pt !important; }\n\th6 { font-size: 20pt !important; font-style: italic; }\n\n\t/* SECTION 5: Make hyperlinks more usable.\n\t   Ensure links are underlined, and consider appending\n\t   the URL to the end of the link for usability. */\n\ta:link,\n\ta:visited {\n\t\tcolor: #000 !important;\n\t\tfont-weight: bold;\n\t\ttext-decoration: underline;\n\t}\n\t/*\n\t.reveal a:link:after,\n\t.reveal a:visited:after {\n\t\tcontent: \" (\" attr(href) \") \";\n\t\tcolor: #222 !important;\n\t\tfont-size: 90%;\n\t}\n\t*/\n\n\n\t/* SECTION 6: more reveal.js specific additions by @skypanther */\n\tul, ol, div, p {\n\t\tvisibility: visible;\n\t\tposition: static;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tdisplay: block;\n\t\toverflow: visible;\n\t\tmargin: 0;\n\t\ttext-align: left !important;\n\t}\n\t.reveal pre,\n\t.reveal table {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n\t.reveal pre code {\n\t\tpadding: 20px;\n\t\tborder: 1px solid #ddd;\n\t}\n\t.reveal blockquote {\n\t\tmargin: 20px 0;\n\t}\n\t.reveal .slides {\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 0 !important;\n\t\tzoom: 1 !important;\n\n\t\toverflow: visible !important;\n\t\tdisplay: block !important;\n\n\t\ttext-align: left !important;\n\t\t-webkit-perspective: none;\n\t\t   -moz-perspective: none;\n\t\t    -ms-perspective: none;\n\t\t        perspective: none;\n\n\t\t-webkit-perspective-origin: 50% 50%;\n\t\t   -moz-perspective-origin: 50% 50%;\n\t\t    -ms-perspective-origin: 50% 50%;\n\t\t        perspective-origin: 50% 50%;\n\t}\n\t.reveal .slides section {\n\t\tvisibility: visible !important;\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\t\tdisplay: block !important;\n\t\toverflow: visible !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 60px 20px !important;\n\t\tz-index: auto !important;\n\n\t\topacity: 1 !important;\n\n\t\tpage-break-after: always !important;\n\n\t\t-webkit-transform-style: flat !important;\n\t\t   -moz-transform-style: flat !important;\n\t\t    -ms-transform-style: flat !important;\n\t\t        transform-style: flat !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\n\t\t-webkit-transition: none !important;\n\t\t   -moz-transition: none !important;\n\t\t    -ms-transition: none !important;\n\t\t        transition: none !important;\n\t}\n\t.reveal .slides section.stack {\n\t\tpadding: 0 !important;\n\t}\n\t.reveal section:last-of-type {\n\t\tpage-break-after: avoid !important;\n\t}\n\t.reveal section .fragment {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\t}\n\t.reveal section img {\n\t\tdisplay: block;\n\t\tmargin: 15px 0px;\n\t\tbackground: rgba(255,255,255,1);\n\t\tborder: 1px solid #666;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal section small {\n\t\tfont-size: 0.8em;\n\t}\n\n}"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/print/pdf.css",
    "content": "/**\n * This stylesheet is used to print reveal.js\n * presentations to PDF.\n *\n * https://github.com/hakimel/reveal.js#pdf-export\n */\n\n* {\n\t-webkit-print-color-adjust: exact;\n}\n\nbody {\n\tmargin: 0 auto !important;\n\tborder: 0;\n\tpadding: 0;\n\tfloat: none !important;\n\toverflow: visible;\n}\n\nhtml {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: visible;\n}\n\n/* Remove any elements not needed in print. */\n.nestedarrow,\n.reveal .controls,\n.reveal .progress,\n.reveal .playback,\n.reveal.overview,\n.fork-reveal,\n.share-reveal,\n.state-background {\n\tdisplay: none !important;\n}\n\nh1, h2, h3, h4, h5, h6 {\n\ttext-shadow: 0 0 0 #000 !important;\n}\n\n.reveal pre code {\n\toverflow: hidden !important;\n\tfont-family: Courier, 'Courier New', monospace !important;\n}\n\nul, ol, div, p {\n\tvisibility: visible;\n\tposition: static;\n\twidth: auto;\n\theight: auto;\n\tdisplay: block;\n\toverflow: visible;\n\tmargin: auto;\n}\n.reveal {\n\twidth: auto !important;\n\theight: auto !important;\n\toverflow: hidden !important;\n}\n.reveal .slides {\n\tposition: static;\n\twidth: 100%;\n\theight: auto;\n\n\tleft: auto;\n\ttop: auto;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\n\toverflow: visible;\n\tdisplay: block;\n\n\t-webkit-perspective: none;\n\t   -moz-perspective: none;\n\t    -ms-perspective: none;\n\t        perspective: none;\n\n\t-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */\n\t   -moz-perspective-origin: 50% 50%;\n\t    -ms-perspective-origin: 50% 50%;\n\t        perspective-origin: 50% 50%;\n}\n\n.reveal .slides section {\n\tpage-break-after: always !important;\n\n\tvisibility: visible !important;\n\tposition: relative !important;\n\tdisplay: block !important;\n\tposition: relative !important;\n\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tbox-sizing: border-box !important;\n\tmin-height: 1px;\n\n\topacity: 1 !important;\n\n\t-webkit-transform-style: flat !important;\n\t   -moz-transform-style: flat !important;\n\t    -ms-transform-style: flat !important;\n\t        transform-style: flat !important;\n\n\t-webkit-transform: none !important;\n\t   -moz-transform: none !important;\n\t    -ms-transform: none !important;\n\t        transform: none !important;\n}\n\n.reveal section.stack {\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tpage-break-after: avoid !important;\n\theight: auto !important;\n\tmin-height: auto !important;\n}\n\n.reveal img {\n\tbox-shadow: none;\n}\n\n.reveal .roll {\n\toverflow: visible;\n\tline-height: 1em;\n}\n\n/* Slide backgrounds are placed inside of their slide when exporting to PDF */\n.reveal section .slide-background {\n\tdisplay: block !important;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\tz-index: -1;\n}\n\n/* All elements should be above the slide-background */\n.reveal section>* {\n\tposition: relative;\n\tz-index: 1;\n}\n\n/* Display slide speaker notes when 'showNotes' is enabled */\n.reveal .speaker-notes-pdf {\n\tdisplay: block;\n\twidth: 100%;\n\tmax-height: none;\n\tleft: auto;\n\ttop: auto;\n\tz-index: 100;\n}\n\n/* Display slide numbers when 'slideNumber' is enabled */\n.reveal .slide-number-pdf {\n\tdisplay: block;\n\tposition: absolute;\n\tfont-size: 14px;\n}\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/reveal.css",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n/*********************************************\n * RESET STYLES\n *********************************************/\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n  margin: 0;\n  padding: 0;\n  border: 0;\n  font-size: 100%;\n  font: inherit;\n  vertical-align: baseline; }\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n  display: block; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n  overflow: hidden; }\n\nbody {\n  position: relative;\n  line-height: 1;\n  background-color: #fff;\n  color: #000; }\n\nhtml:-webkit-full-screen-ancestor {\n  background-color: inherit; }\n\nhtml:-moz-full-screen-ancestor {\n  background-color: inherit; }\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n.reveal .slides section .fragment {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease; }\n  .reveal .slides section .fragment.visible {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.grow {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.grow.visible {\n    -webkit-transform: scale(1.3);\n        -ms-transform: scale(1.3);\n            transform: scale(1.3); }\n\n.reveal .slides section .fragment.shrink {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.shrink.visible {\n    -webkit-transform: scale(0.7);\n        -ms-transform: scale(0.7);\n            transform: scale(0.7); }\n\n.reveal .slides section .fragment.zoom-in {\n  -webkit-transform: scale(0.1);\n      -ms-transform: scale(0.1);\n          transform: scale(0.1); }\n  .reveal .slides section .fragment.zoom-in.visible {\n    -webkit-transform: none;\n        -ms-transform: none;\n            transform: none; }\n\n.reveal .slides section .fragment.fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.fade-out.visible {\n    opacity: 0;\n    visibility: hidden; }\n\n.reveal .slides section .fragment.semi-fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.semi-fade-out.visible {\n    opacity: 0.5;\n    visibility: visible; }\n\n.reveal .slides section .fragment.strike {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.strike.visible {\n    text-decoration: line-through; }\n\n.reveal .slides section .fragment.current-visible {\n  opacity: 0;\n  visibility: hidden; }\n  .reveal .slides section .fragment.current-visible.current-fragment {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red.visible {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-green.visible {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-blue.visible {\n  color: #1b91ff; }\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n  color: #1b91ff; }\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic; }\n\n.reveal iframe {\n  z-index: 1; }\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n  position: relative; }\n\n.reveal .stretch {\n  max-width: none;\n  max-height: none; }\n\n.reveal pre.stretch code {\n  height: 100%;\n  max-height: 100%;\n  box-sizing: border-box; }\n\n/*********************************************\n * CONTROLS\n *********************************************/\n.reveal .controls {\n  display: none;\n  position: fixed;\n  width: 110px;\n  height: 110px;\n  z-index: 30;\n  right: 10px;\n  bottom: 10px;\n  -webkit-user-select: none; }\n\n.reveal .controls button {\n  padding: 0;\n  position: absolute;\n  opacity: 0.05;\n  width: 0;\n  height: 0;\n  background-color: transparent;\n  border: 12px solid transparent;\n  -webkit-transform: scale(0.9999);\n      -ms-transform: scale(0.9999);\n          transform: scale(0.9999);\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease;\n  -webkit-appearance: none;\n  -webkit-tap-highlight-color: transparent; }\n\n.reveal .controls .enabled {\n  opacity: 0.7;\n  cursor: pointer; }\n\n.reveal .controls .enabled:active {\n  margin-top: 1px; }\n\n.reveal .controls .navigate-left {\n  top: 42px;\n  border-right-width: 22px;\n  border-right-color: #000; }\n\n.reveal .controls .navigate-left.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-right {\n  left: 74px;\n  top: 42px;\n  border-left-width: 22px;\n  border-left-color: #000; }\n\n.reveal .controls .navigate-right.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-up {\n  left: 42px;\n  border-bottom-width: 22px;\n  border-bottom-color: #000; }\n\n.reveal .controls .navigate-up.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-down {\n  left: 42px;\n  top: 74px;\n  border-top-width: 22px;\n  border-top-color: #000; }\n\n.reveal .controls .navigate-down.fragmented {\n  opacity: 0.3; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  position: fixed;\n  display: none;\n  height: 3px;\n  width: 100%;\n  bottom: 0;\n  left: 0;\n  z-index: 10;\n  background-color: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress:after {\n  content: '';\n  display: block;\n  position: absolute;\n  height: 20px;\n  width: 100%;\n  top: -20px; }\n\n.reveal .progress span {\n  display: block;\n  height: 100%;\n  width: 0px;\n  background-color: #000;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n.reveal .slide-number {\n  position: fixed;\n  display: block;\n  right: 8px;\n  bottom: 8px;\n  z-index: 31;\n  font-family: Helvetica, sans-serif;\n  font-size: 12px;\n  line-height: 1;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.4);\n  padding: 5px; }\n\n.reveal .slide-number-delimiter {\n  margin: 0 3px; }\n\n/*********************************************\n * SLIDES\n *********************************************/\n.reveal {\n  position: relative;\n  width: 100%;\n  height: 100%;\n  overflow: hidden;\n  -ms-touch-action: none;\n      touch-action: none; }\n\n.reveal .slides {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  overflow: visible;\n  z-index: 1;\n  text-align: center;\n  -webkit-perspective: 600px;\n          perspective: 600px;\n  -webkit-perspective-origin: 50% 40%;\n          perspective-origin: 50% 40%; }\n\n.reveal .slides > section {\n  -ms-perspective: 600px; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  display: none;\n  position: absolute;\n  width: 100%;\n  padding: 20px 0px;\n  z-index: 10;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: -ms-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] .slides section {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal .slides section[data-transition-speed=\"slow\"] {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n.reveal .slides > section.stack {\n  padding-top: 0;\n  padding-bottom: 0; }\n\n.reveal .slides > section.present,\n.reveal .slides > section > section.present {\n  display: block;\n  z-index: 11;\n  opacity: 1; }\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n  min-height: 0 !important; }\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides > section.future,\n.reveal .slides > section > section.future,\n.reveal .slides > section.past,\n.reveal .slides > section > section.past {\n  pointer-events: none; }\n\n.reveal.overview .slides > section,\n.reveal.overview .slides > section > section {\n  pointer-events: auto; }\n\n.reveal .slides > section.past,\n.reveal .slides > section.future,\n.reveal .slides > section > section.past,\n.reveal .slides > section > section.future {\n  opacity: 0; }\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n.reveal.slide section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=slide].past,\n.reveal .slides > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=slide].future,\n.reveal .slides > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=slide].past,\n.reveal .slides > section > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=slide].future,\n.reveal .slides > section > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n.reveal.linear section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=linear].past,\n.reveal .slides > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=linear].future,\n.reveal .slides > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=linear].past,\n.reveal .slides > section > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=linear].future,\n.reveal .slides > section > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n.reveal .slides > section[data-transition=default].past,\n.reveal .slides > section[data-transition~=default-out].past,\n.reveal.default .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=default].future,\n.reveal .slides > section[data-transition~=default-in].future,\n.reveal.default .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=default].past,\n.reveal .slides > section > section[data-transition~=default-out].past,\n.reveal.default .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=default].future,\n.reveal .slides > section > section[data-transition~=default-in].future,\n.reveal.default .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n.reveal .slides > section[data-transition=convex].past,\n.reveal .slides > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=convex].future,\n.reveal .slides > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=convex].past,\n.reveal .slides > section > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=convex].future,\n.reveal .slides > section > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n.reveal .slides > section[data-transition=concave].past,\n.reveal .slides > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=concave].future,\n.reveal .slides > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=concave].past,\n.reveal .slides > section > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n          transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); }\n\n.reveal .slides > section > section[data-transition=concave].future,\n.reveal .slides > section > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n          transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); }\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=zoom],\n.reveal.zoom .slides section:not([data-transition]) {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal .slides > section[data-transition=zoom].past,\n.reveal .slides > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section:not([data-transition]).past {\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal .slides > section[data-transition=zoom].future,\n.reveal .slides > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section:not([data-transition]).future {\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .slides > section > section[data-transition=zoom].past,\n.reveal .slides > section > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=zoom].future,\n.reveal .slides > section > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n.reveal.cube .slides {\n  -webkit-perspective: 1300px;\n          perspective: 1300px; }\n\n.reveal.cube .slides section {\n  padding: 30px;\n  min-height: 700px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  box-sizing: border-box; }\n\n.reveal.center.cube .slides section {\n  min-height: 0; }\n\n.reveal.cube .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  border-radius: 4px;\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.cube .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg);\n          transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.cube .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.cube .slides > section.past {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg); }\n\n.reveal.cube .slides > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);\n          transform: translate3d(100%, 0, 0) rotateY(90deg); }\n\n.reveal.cube .slides > section > section.past {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);\n          transform: translate3d(0, -100%, 0) rotateX(90deg); }\n\n.reveal.cube .slides > section > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg); }\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n.reveal.page .slides {\n  -webkit-perspective-origin: 0% 50%;\n          perspective-origin: 0% 50%;\n  -webkit-perspective: 3000px;\n          perspective: 3000px; }\n\n.reveal.page .slides section {\n  padding: 30px;\n  min-height: 700px;\n  box-sizing: border-box; }\n\n.reveal.page .slides section.past {\n  z-index: 12; }\n\n.reveal.page .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.page .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.page .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.page .slides > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);\n          transform: translate3d(-40%, 0, 0) rotateY(-80deg); }\n\n.reveal.page .slides > section.future {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n.reveal.page .slides > section > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);\n          transform: translate3d(0, -40%, 0) rotateX(80deg); }\n\n.reveal.page .slides > section > section.future {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides > section > section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: opacity 0.5s;\n          transition: opacity 0.5s; }\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides > section > section {\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=none],\n.reveal.none .slides section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n.reveal .pause-overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  background: black;\n  visibility: hidden;\n  opacity: 0;\n  z-index: 100;\n  -webkit-transition: all 1s ease;\n          transition: all 1s ease; }\n\n.reveal.paused .pause-overlay {\n  visibility: visible;\n  opacity: 1; }\n\n/*********************************************\n * FALLBACK\n *********************************************/\n.no-transforms {\n  overflow-y: auto; }\n\n.no-transforms .reveal .slides {\n  position: relative;\n  width: 80%;\n  height: auto !important;\n  top: 0;\n  left: 50%;\n  margin: 0;\n  text-align: center; }\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n  display: none !important; }\n\n.no-transforms .reveal .slides section {\n  display: block !important;\n  opacity: 1 !important;\n  position: relative !important;\n  height: auto;\n  min-height: 0;\n  top: 0;\n  left: -50%;\n  margin: 70px 0;\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none; }\n\n.no-transforms .reveal .slides section section {\n  left: 0; }\n\n.reveal .no-transition,\n.reveal .no-transition * {\n  -webkit-transition: none !important;\n          transition: none !important; }\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n.reveal .backgrounds {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  -webkit-perspective: 600px;\n          perspective: 600px; }\n\n.reveal .slide-background {\n  display: none;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  opacity: 0;\n  visibility: hidden;\n  background-color: transparent;\n  background-position: 50% 50%;\n  background-repeat: no-repeat;\n  background-size: cover;\n  -webkit-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal .slide-background.stack {\n  display: block; }\n\n.reveal .slide-background.present {\n  opacity: 1;\n  visibility: visible; }\n\n.print-pdf .reveal .slide-background {\n  opacity: 1 !important;\n  visibility: visible !important; }\n\n/* Video backgrounds */\n.reveal .slide-background video {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  max-width: none;\n  max-height: none;\n  top: 0;\n  left: 0; }\n\n/* Immediate transition style */\n.reveal[data-background-transition=none] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=none] {\n  -webkit-transition: none;\n          transition: none; }\n\n/* Slide */\n.reveal[data-background-transition=slide] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=slide] {\n  opacity: 1;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(-100%, 0);\n      -ms-transform: translate(-100%, 0);\n          transform: translate(-100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(100%, 0);\n      -ms-transform: translate(100%, 0);\n          transform: translate(100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(0, -100%);\n      -ms-transform: translate(0, -100%);\n          transform: translate(0, -100%); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(0, 100%);\n      -ms-transform: translate(0, 100%);\n          transform: translate(0, 100%); }\n\n/* Convex */\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); }\n\n/* Concave */\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); }\n\n/* Zoom */\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=zoom] {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n.reveal.overview {\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%;\n  -webkit-perspective: 700px;\n          perspective: 700px; }\n  .reveal.overview .slides section {\n    height: 700px;\n    opacity: 1 !important;\n    overflow: hidden;\n    visibility: visible !important;\n    cursor: pointer;\n    box-sizing: border-box; }\n  .reveal.overview .slides section:hover,\n  .reveal.overview .slides section.present {\n    outline: 10px solid rgba(150, 150, 150, 0.4);\n    outline-offset: 10px; }\n  .reveal.overview .slides section .fragment {\n    opacity: 1;\n    -webkit-transition: none;\n            transition: none; }\n  .reveal.overview .slides section:after,\n  .reveal.overview .slides section:before {\n    display: none !important; }\n  .reveal.overview .slides > section.stack {\n    padding: 0;\n    top: 0 !important;\n    background: none;\n    outline: none;\n    overflow: visible; }\n  .reveal.overview .backgrounds {\n    -webkit-perspective: inherit;\n            perspective: inherit; }\n  .reveal.overview .backgrounds .slide-background {\n    opacity: 1;\n    visibility: visible;\n    outline: 10px solid rgba(150, 150, 150, 0.1);\n    outline-offset: 10px; }\n\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview-animated .slides {\n  -webkit-transition: -webkit-transform 0.4s ease;\n          transition: transform 0.4s ease; }\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n  direction: rtl;\n  font-family: sans-serif; }\n\n.reveal.rtl pre,\n.reveal.rtl code {\n  direction: ltr; }\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n  text-align: right; }\n\n.reveal.rtl .progress span {\n  float: right; }\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n.reveal.has-parallax-background .backgrounds {\n  -webkit-transition: all 0.8s ease;\n          transition: all 0.8s ease; }\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n.reveal .overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1000;\n  background: rgba(0, 0, 0, 0.9);\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.visible {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay .spinner {\n  position: absolute;\n  display: block;\n  top: 50%;\n  left: 50%;\n  width: 32px;\n  height: 32px;\n  margin: -16px 0 0 -16px;\n  z-index: 10;\n  background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n  visibility: visible;\n  opacity: 0.6;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay header {\n  position: absolute;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 40px;\n  z-index: 2;\n  border-bottom: 1px solid #222; }\n\n.reveal .overlay header a {\n  display: inline-block;\n  width: 40px;\n  height: 40px;\n  padding: 0 10px;\n  float: right;\n  opacity: 0.6;\n  box-sizing: border-box; }\n\n.reveal .overlay header a:hover {\n  opacity: 1; }\n\n.reveal .overlay header a .icon {\n  display: inline-block;\n  width: 20px;\n  height: 20px;\n  background-position: 50% 50%;\n  background-size: 100%;\n  background-repeat: no-repeat; }\n\n.reveal .overlay header a.close .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); }\n\n.reveal .overlay header a.external .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); }\n\n.reveal .overlay .viewport {\n  position: absolute;\n  top: 40px;\n  right: 0;\n  bottom: 0;\n  left: 0; }\n\n.reveal .overlay.overlay-preview .viewport iframe {\n  width: 100%;\n  height: 100%;\n  max-width: 100%;\n  max-height: 100%;\n  border: 0;\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.overlay-preview.loaded .viewport iframe {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay.overlay-preview.loaded .spinner {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .overlay.overlay-help .viewport {\n  overflow: auto;\n  color: #fff; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner {\n  width: 600px;\n  margin: 0 auto;\n  padding: 60px;\n  text-align: center;\n  letter-spacing: normal; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n  font-size: 20px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table {\n  border: 1px solid #fff;\n  border-collapse: collapse;\n  font-size: 14px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n  width: 200px;\n  padding: 10px;\n  border: 1px solid #fff;\n  vertical-align: middle; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n  padding-top: 20px;\n  padding-bottom: 20px; }\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n.reveal .playback {\n  position: fixed;\n  left: 15px;\n  bottom: 20px;\n  z-index: 30;\n  cursor: pointer;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease; }\n\n.reveal.overview .playback {\n  opacity: 0;\n  visibility: hidden; }\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n.reveal .roll {\n  display: inline-block;\n  line-height: 1.2;\n  overflow: hidden;\n  vertical-align: top;\n  -webkit-perspective: 400px;\n          perspective: 400px;\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%; }\n\n.reveal .roll:hover {\n  background: none;\n  text-shadow: none; }\n\n.reveal .roll span {\n  display: block;\n  position: relative;\n  padding: 0 2px;\n  pointer-events: none;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .roll:hover span {\n  background: rgba(0, 0, 0, 0.5);\n  -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg);\n          transform: translate3d(0px, 0px, -45px) rotateX(90deg); }\n\n.reveal .roll span:after {\n  content: attr(data-title);\n  display: block;\n  position: absolute;\n  left: 0;\n  top: 0;\n  padding: 0 2px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg);\n          transform: translate3d(0px, 110%, 0px) rotateX(-90deg); }\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n.reveal aside.notes {\n  display: none; }\n\n.reveal .speaker-notes {\n  display: none;\n  position: absolute;\n  width: 70%;\n  max-height: 15%;\n  left: 15%;\n  bottom: 26px;\n  padding: 10px;\n  z-index: 1;\n  font-size: 18px;\n  line-height: 1.4;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.5);\n  overflow: auto;\n  box-sizing: border-box;\n  text-align: left;\n  font-family: Helvetica, sans-serif;\n  -webkit-overflow-scrolling: touch; }\n\n.reveal .speaker-notes.visible:not(:empty) {\n  display: block; }\n\n@media screen and (max-width: 1024px) {\n  .reveal .speaker-notes {\n    font-size: 14px; } }\n\n@media screen and (max-width: 600px) {\n  .reveal .speaker-notes {\n    width: 90%;\n    left: 5%; } }\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n  -webkit-backface-visibility: visible !important;\n          backface-visibility: visible !important; }\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n  opacity: 0; }\n\n.zoomed .reveal .roll span {\n  background: none; }\n\n.zoomed .reveal .roll span:after {\n  visibility: hidden; }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/reveal.scss",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n/*********************************************\n * RESET STYLES\n *********************************************/\n\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\tfont-size: 100%;\n\tfont: inherit;\n\tvertical-align: baseline;\n}\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n\tdisplay: block;\n}\n\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nhtml,\nbody {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n}\n\nbody {\n\tposition: relative;\n\tline-height: 1;\n\n\tbackground-color: #fff;\n\tcolor: #000;\n}\n\n// Ensures that the main background color matches the\n// theme in fullscreen mode\nhtml:-webkit-full-screen-ancestor {\n\tbackground-color: inherit;\n}\nhtml:-moz-full-screen-ancestor {\n\tbackground-color: inherit;\n}\n\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n\n.reveal .slides section .fragment {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all .2s ease;\n\n\t&.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.grow {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 1.3 );\n\t}\n}\n\n.reveal .slides section .fragment.shrink {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 0.7 );\n\t}\n}\n\n.reveal .slides section .fragment.zoom-in {\n\ttransform: scale( 0.1 );\n\n\t&.visible {\n\t\ttransform: none;\n\t}\n}\n\n.reveal .slides section .fragment.fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t}\n}\n\n.reveal .slides section .fragment.semi-fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0.5;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.strike {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttext-decoration: line-through;\n\t}\n}\n\n.reveal .slides section .fragment.current-visible {\n\topacity: 0;\n\tvisibility: hidden;\n\n\t&.current-fragment {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n\topacity: 1;\n\tvisibility: visible;\n}\n\t.reveal .slides section .fragment.highlight-red.visible {\n\t\tcolor: #ff2c2d\n\t}\n\t.reveal .slides section .fragment.highlight-green.visible {\n\t\tcolor: #17ff2e;\n\t}\n\t.reveal .slides section .fragment.highlight-blue.visible {\n\t\tcolor: #1b91ff;\n\t}\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n\tcolor: #ff2c2d\n}\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n\tcolor: #17ff2e;\n}\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n\tcolor: #1b91ff;\n}\n\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic;\n}\n\n.reveal iframe {\n\tz-index: 1;\n}\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n\tposition: relative;\n}\n\n.reveal .stretch {\n\tmax-width: none;\n\tmax-height: none;\n}\n\n.reveal pre.stretch code {\n\theight: 100%;\n\tmax-height: 100%;\n\tbox-sizing: border-box;\n}\n\n\n/*********************************************\n * CONTROLS\n *********************************************/\n\n.reveal .controls {\n\tdisplay: none;\n\tposition: fixed;\n\twidth: 110px;\n\theight: 110px;\n\tz-index: 30;\n\tright: 10px;\n\tbottom: 10px;\n\n\t-webkit-user-select: none;\n}\n\n.reveal .controls button {\n\tpadding: 0;\n\tposition: absolute;\n\topacity: 0.05;\n\twidth: 0;\n\theight: 0;\n\tbackground-color: transparent;\n\tborder: 12px solid transparent;\n\ttransform: scale(.9999);\n\ttransition: all 0.2s ease;\n\t-webkit-appearance: none;\n\t-webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );\n}\n\n.reveal .controls .enabled {\n\topacity: 0.7;\n\tcursor: pointer;\n}\n\n.reveal .controls .enabled:active {\n\tmargin-top: 1px;\n}\n\n\t.reveal .controls .navigate-left {\n\t\ttop: 42px;\n\n\t\tborder-right-width: 22px;\n\t\tborder-right-color: #000;\n\t}\n\t\t.reveal .controls .navigate-left.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-right {\n\t\tleft: 74px;\n\t\ttop: 42px;\n\n\t\tborder-left-width: 22px;\n\t\tborder-left-color: #000;\n\t}\n\t\t.reveal .controls .navigate-right.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-up {\n\t\tleft: 42px;\n\n\t\tborder-bottom-width: 22px;\n\t\tborder-bottom-color: #000;\n\t}\n\t\t.reveal .controls .navigate-up.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-down {\n\t\tleft: 42px;\n\t\ttop: 74px;\n\n\t\tborder-top-width: 22px;\n\t\tborder-top-color: #000;\n\t}\n\t\t.reveal .controls .navigate-down.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tposition: fixed;\n\tdisplay: none;\n\theight: 3px;\n\twidth: 100%;\n\tbottom: 0;\n\tleft: 0;\n\tz-index: 10;\n\n\tbackground-color: rgba( 0, 0, 0, 0.2 );\n}\n\t.reveal .progress:after {\n\t\tcontent: '';\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\theight: 20px;\n\t\twidth: 100%;\n\t\ttop: -20px;\n\t}\n\t.reveal .progress span {\n\t\tdisplay: block;\n\t\theight: 100%;\n\t\twidth: 0px;\n\n\t\tbackground-color: #000;\n\t\ttransition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n\n.reveal .slide-number {\n\tposition: fixed;\n\tdisplay: block;\n\tright: 8px;\n\tbottom: 8px;\n\tz-index: 31;\n\tfont-family: Helvetica, sans-serif;\n\tfont-size: 12px;\n\tline-height: 1;\n\tcolor: #fff;\n\tbackground-color: rgba( 0, 0, 0, 0.4 );\n\tpadding: 5px;\n}\n\n.reveal .slide-number-delimiter {\n\tmargin: 0 3px;\n}\n\n/*********************************************\n * SLIDES\n *********************************************/\n\n.reveal {\n\tposition: relative;\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n\ttouch-action: none;\n}\n\n.reveal .slides {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tmargin: auto;\n\n\toverflow: visible;\n\tz-index: 1;\n\ttext-align: center;\n\tperspective: 600px;\n\tperspective-origin: 50% 40%;\n}\n\n.reveal .slides>section {\n\t-ms-perspective: 600px;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 100%;\n\tpadding: 20px 0px;\n\n\tz-index: 10;\n\ttransform-style: preserve-3d;\n\ttransition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\ttransform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\tvisibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\topacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n}\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"] .slides section {\n\ttransition-duration: 1200ms;\n}\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n\ttransition-duration: 400ms;\n}\n.reveal .slides section[data-transition-speed=\"slow\"] {\n\ttransition-duration: 1200ms;\n}\n\n.reveal .slides>section.stack {\n\tpadding-top: 0;\n\tpadding-bottom: 0;\n}\n\n.reveal .slides>section.present,\n.reveal .slides>section>section.present {\n\tdisplay: block;\n\tz-index: 11;\n\topacity: 1;\n}\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n\tmin-height: 0 !important;\n}\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides>section.future,\n.reveal .slides>section>section.future,\n.reveal .slides>section.past,\n.reveal .slides>section>section.past {\n\tpointer-events: none;\n}\n\n.reveal.overview .slides>section,\n.reveal.overview .slides>section>section {\n\tpointer-events: auto;\n}\n\n.reveal .slides>section.past,\n.reveal .slides>section.future,\n.reveal .slides>section>section.past,\n.reveal .slides>section>section.future {\n\topacity: 0;\n}\n\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n\n@mixin transition-global($style) {\n\t.reveal .slides section[data-transition=#{$style}],\n\t.reveal.#{$style} .slides section:not([data-transition]) {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-past($style) {\n\t.reveal .slides>section[data-transition=#{$style}].past,\n\t.reveal .slides>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-future($style) {\n\t.reveal .slides>section[data-transition=#{$style}].future,\n\t.reveal .slides>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n@mixin transition-vertical-past($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].past,\n\t.reveal .slides>section>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-vertical-future($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].future,\n\t.reveal .slides>section>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n\n@each $stylename in slide, linear {\n\t.reveal.#{$stylename} section {\n\t\tbackface-visibility: hidden;\n\t}\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate(-150%, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate(150%, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate(0, -150%);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate(0, 150%);\n\t}\n}\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n\n@each $stylename in default, convex {\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n\t}\n}\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n\n@include transition-horizontal-past(concave) {\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n@include transition-horizontal-future(concave) {\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n@include transition-vertical-past(concave) {\n\ttransform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n}\n@include transition-vertical-future(concave) {\n\ttransform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n}\n\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n\n@include transition-global(zoom) {\n\ttransition-timing-function: ease;\n}\n@include transition-horizontal-past(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n@include transition-horizontal-future(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n@include transition-vertical-past(zoom) {\n\ttransform: translate(0, -150%);\n}\n@include transition-vertical-future(zoom) {\n\ttransform: translate(0, 150%);\n}\n\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n\n.reveal.cube .slides {\n\tperspective: 1300px;\n}\n\n.reveal.cube .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbackface-visibility: hidden;\n\tbox-sizing: border-box;\n}\n\t.reveal.center.cube .slides section {\n\t\tmin-height: 0;\n\t}\n\t.reveal.cube .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\tborder-radius: 4px;\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.cube .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\t\ttransform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.cube .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.cube .slides>section.past {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg);\n}\n\n.reveal.cube .slides>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg);\n}\n\n.reveal.cube .slides>section>section.past {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg);\n}\n\n.reveal.cube .slides>section>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg);\n}\n\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n\n.reveal.page .slides {\n\tperspective-origin: 0% 50%;\n\tperspective: 3000px;\n}\n\n.reveal.page .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbox-sizing: border-box;\n}\n\t.reveal.page .slides section.past {\n\t\tz-index: 12;\n\t}\n\t.reveal.page .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.page .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\n\t\t-webkit-transform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.page .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.page .slides>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(-40%, 0, 0) rotateY(-80deg);\n}\n\n.reveal.page .slides>section.future {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n.reveal.page .slides>section>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, -40%, 0) rotateX(80deg);\n}\n\n.reveal.page .slides>section>section.future {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides>section>section:not([data-transition]) {\n\ttransform: none;\n\ttransition: opacity 0.5s;\n}\n\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides>section>section {\n\ttransition: none;\n}\n\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n\n@include transition-global(none) {\n\ttransform: none;\n\ttransition: none;\n}\n\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n\n.reveal .pause-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tbackground: black;\n\tvisibility: hidden;\n\topacity: 0;\n\tz-index: 100;\n\ttransition: all 1s ease;\n}\n.reveal.paused .pause-overlay {\n\tvisibility: visible;\n\topacity: 1;\n}\n\n\n/*********************************************\n * FALLBACK\n *********************************************/\n\n.no-transforms {\n\toverflow-y: auto;\n}\n\n.no-transforms .reveal .slides {\n\tposition: relative;\n\twidth: 80%;\n\theight: auto !important;\n\ttop: 0;\n\tleft: 50%;\n\tmargin: 0;\n\ttext-align: center;\n}\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n\tdisplay: none !important;\n}\n\n.no-transforms .reveal .slides section {\n\tdisplay: block !important;\n\topacity: 1 !important;\n\tposition: relative !important;\n\theight: auto;\n\tmin-height: 0;\n\ttop: 0;\n\tleft: -50%;\n\tmargin: 70px 0;\n\ttransform: none;\n}\n\n.no-transforms .reveal .slides section section {\n\tleft: 0;\n}\n\n.reveal .no-transition,\n.reveal .no-transition * {\n\ttransition: none !important;\n}\n\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n\n.reveal .backgrounds {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tperspective: 600px;\n}\n\t.reveal .slide-background {\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\n\t\tbackground-color: rgba( 0, 0, 0, 0 );\n\t\tbackground-position: 50% 50%;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: cover;\n\n\t\ttransition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\t.reveal .slide-background.stack {\n\t\tdisplay: block;\n\t}\n\n\t.reveal .slide-background.present {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.print-pdf .reveal .slide-background {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\t}\n\n/* Video backgrounds */\n.reveal .slide-background video {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\tmax-width: none;\n\tmax-height: none;\n\ttop: 0;\n\tleft: 0;\n}\n\n/* Immediate transition style */\n.reveal[data-background-transition=none]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=none] {\n\ttransition: none;\n}\n\n/* Slide */\n.reveal[data-background-transition=slide]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=slide] {\n\topacity: 1;\n\tbackface-visibility: hidden;\n}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.past,\n\t.reveal>.backgrounds .slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(-100%, 0);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.future,\n\t.reveal>.backgrounds .slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(100%, 0);\n\t}\n\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past,\n\t.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(0, -100%);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future,\n\t.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(0, 100%);\n\t}\n\n\n/* Convex */\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n}\n\n\n/* Concave */\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n}\n\n/* Zoom */\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=zoom] {\n\ttransition-timing-function: ease;\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"]>.backgrounds .slide-background {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"]>.backgrounds .slide-background {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n\n.reveal.overview {\n\tperspective-origin: 50% 50%;\n\tperspective: 700px;\n\n\t.slides section {\n\t\theight: 700px;\n\t\topacity: 1 !important;\n\t\toverflow: hidden;\n\t\tvisibility: visible !important;\n\t\tcursor: pointer;\n\t\tbox-sizing: border-box;\n\t}\n\t.slides section:hover,\n\t.slides section.present {\n\t\toutline: 10px solid rgba(150,150,150,0.4);\n\t\toutline-offset: 10px;\n\t}\n\t.slides section .fragment {\n\t\topacity: 1;\n\t\ttransition: none;\n\t}\n\t.slides section:after,\n\t.slides section:before {\n\t\tdisplay: none !important;\n\t}\n\t.slides>section.stack {\n\t\tpadding: 0;\n\t\ttop: 0 !important;\n\t\tbackground: none;\n\t\toutline: none;\n\t\toverflow: visible;\n\t}\n\n\t.backgrounds {\n\t\tperspective: inherit;\n\t}\n\n\t.backgrounds .slide-background {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\n\t\t// This can't be applied to the slide itself in Safari\n\t\toutline: 10px solid rgba(150,150,150,0.1);\n\t\toutline-offset: 10px;\n\t}\n}\n\n// Disable transitions transitions while we're activating\n// or deactivating the overview mode.\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n\ttransition: none;\n}\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n\ttransition: none;\n}\n\n.reveal.overview-animated .slides {\n\ttransition: transform 0.4s ease;\n}\n\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n\tdirection: rtl;\n\tfont-family: sans-serif;\n}\n\n.reveal.rtl pre,\n.reveal.rtl code {\n\tdirection: ltr;\n}\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n\ttext-align: right;\n}\n\n.reveal.rtl .progress span {\n\tfloat: right\n}\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n\n.reveal.has-parallax-background .backgrounds {\n\ttransition: all 0.8s ease;\n}\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n\ttransition-duration: 400ms;\n}\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n\n.reveal .overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1000;\n\tbackground: rgba( 0, 0, 0, 0.9 );\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all 0.3s ease;\n}\n\t.reveal .overlay.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay .spinner {\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\ttop: 50%;\n\t\tleft: 50%;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tmargin: -16px 0 0 -16px;\n\t\tz-index: 10;\n\t\tbackground-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n\n\t\tvisibility: visible;\n\t\topacity: 0.6;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay header {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\twidth: 100%;\n\t\theight: 40px;\n\t\tz-index: 2;\n\t\tborder-bottom: 1px solid #222;\n\t}\n\t\t.reveal .overlay header a {\n\t\t\tdisplay: inline-block;\n\t\t\twidth: 40px;\n\t\t\theight: 40px;\n\t\t\tpadding: 0 10px;\n\t\t\tfloat: right;\n\t\t\topacity: 0.6;\n\n\t\t\tbox-sizing: border-box;\n\t\t}\n\t\t\t.reveal .overlay header a:hover {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t\t.reveal .overlay header a .icon {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: 20px;\n\t\t\t\theight: 20px;\n\n\t\t\t\tbackground-position: 50% 50%;\n\t\t\t\tbackground-size: 100%;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t}\n\t\t\t.reveal .overlay header a.close .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC);\n\t\t\t}\n\t\t\t.reveal .overlay header a.external .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==);\n\t\t\t}\n\n\t.reveal .overlay .viewport {\n\t\tposition: absolute;\n\t\ttop: 40px;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\n\t.reveal .overlay.overlay-preview .viewport iframe {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tmax-width: 100%;\n\t\tmax-height: 100%;\n\t\tborder: 0;\n\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .viewport iframe {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .spinner {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(0.2);\n\t}\n\n\t.reveal .overlay.overlay-help .viewport {\n\t\toverflow: auto;\n\t\tcolor: #fff;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner {\n\t\twidth: 600px;\n\t\tmargin: 0 auto;\n\t\tpadding: 60px;\n\t\ttext-align: center;\n\t\tletter-spacing: normal;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n\t\tfont-size: 20px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table {\n\t\tborder: 1px solid #fff;\n\t\tborder-collapse: collapse;\n\t\tfont-size: 14px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n\t\twidth: 200px;\n\t\tpadding: 10px;\n\t\tborder: 1px solid #fff;\n\t\tvertical-align: middle;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n\t\tpadding-top: 20px;\n\t\tpadding-bottom: 20px;\n\t}\n\n\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n\n.reveal .playback {\n\tposition: fixed;\n\tleft: 15px;\n\tbottom: 20px;\n\tz-index: 30;\n\tcursor: pointer;\n\ttransition: all 400ms ease;\n}\n\n.reveal.overview .playback {\n\topacity: 0;\n\tvisibility: hidden;\n}\n\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n\n.reveal .roll {\n\tdisplay: inline-block;\n\tline-height: 1.2;\n\toverflow: hidden;\n\n\tvertical-align: top;\n\tperspective: 400px;\n\tperspective-origin: 50% 50%;\n}\n\t.reveal .roll:hover {\n\t\tbackground: none;\n\t\ttext-shadow: none;\n\t}\n.reveal .roll span {\n\tdisplay: block;\n\tposition: relative;\n\tpadding: 0 2px;\n\n\tpointer-events: none;\n\ttransition: all 400ms ease;\n\ttransform-origin: 50% 0%;\n\ttransform-style: preserve-3d;\n\tbackface-visibility: hidden;\n}\n\t.reveal .roll:hover span {\n\t    background: rgba(0,0,0,0.5);\n\t    transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );\n\t}\n.reveal .roll span:after {\n\tcontent: attr(data-title);\n\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 0;\n\ttop: 0;\n\tpadding: 0 2px;\n\tbackface-visibility: hidden;\n\ttransform-origin: 50% 0%;\n\ttransform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );\n}\n\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n\n// Hide on-page notes\n.reveal aside.notes {\n\tdisplay: none;\n}\n\n// An interface element that can optionally be used to show the\n// speaker notes to all viewers, on top of the presentation\n.reveal .speaker-notes {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 70%;\n\tmax-height: 15%;\n\tleft: 15%;\n\tbottom: 26px;\n\tpadding: 10px;\n\tz-index: 1;\n\tfont-size: 18px;\n\tline-height: 1.4;\n\tcolor: #fff;\n\tbackground-color: rgba(0,0,0,0.5);\n\toverflow: auto;\n\tbox-sizing: border-box;\n\ttext-align: left;\n\tfont-family: Helvetica, sans-serif;\n\t-webkit-overflow-scrolling: touch;\n}\n\n.reveal .speaker-notes.visible:not(:empty) {\n\tdisplay: block;\n}\n\n@media screen and (max-width: 1024px) {\n\t.reveal .speaker-notes {\n\t\tfont-size: 14px;\n\t}\n}\n\n@media screen and (max-width: 600px) {\n\t.reveal .speaker-notes {\n\t\twidth: 90%;\n\t\tleft: 5%;\n\t}\n}\n\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n\tbackface-visibility: visible !important;\n}\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n\topacity: 0;\n}\n\n.zoomed .reveal .roll span {\n\tbackground: none;\n}\n\n.zoomed .reveal .roll span:after {\n\tvisibility: hidden;\n}\n\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/README.md",
    "content": "## Dependencies\n\nThemes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup\n\n## Creating a Theme\n\nTo create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`.\n\nEach theme file does four things in the following order:\n\n1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**\nShared utility functions.\n\n2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**\nDeclares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.\n\n3. **Override**\nThis is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.\n\n4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**\nThe template theme file which will generate final CSS output based on the currently defined variables.\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/beige.css",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #f7f2d3;\n  background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));\n  background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background-color: #f7f3de; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: rgba(79, 64, 28, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #8b743d;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #c0a86e;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #564826; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #8b743d;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #8b743d; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #8b743d; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #8b743d; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #8b743d; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #c0a86e; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #c0a86e; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #c0a86e; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #c0a86e; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #8b743d;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/black.css",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {\n  color: #222; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: black; }\n\n::selection {\n  color: #fff;\n  background: #bee4fd;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #ff6a00;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #42affa;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8dcffc;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #068de9; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #fff;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #42affa;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #42affa; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #42affa; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #42affa; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #42affa; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8dcffc; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8dcffc; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8dcffc; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8dcffc; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #42affa;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/blood.css",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: Ubuntu, \"sans-serif\";\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #a23;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: Ubuntu, \"sans-serif\";\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 2px 2px 2px #222;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #a23;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #dd5566;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #6a1520; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #a23;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #a23; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #a23; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #a23; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #a23; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #dd5566; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #dd5566; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #dd5566; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #dd5566; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #a23;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal p {\n  font-weight: 300;\n  text-shadow: 1px 1px #222; }\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  font-weight: 700; }\n\n.reveal p code {\n  background-color: #23241f;\n  display: inline-block;\n  border-radius: 7px; }\n\n.reveal small code {\n  vertical-align: baseline; }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/league.css",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #1c1e20;\n  background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));\n  background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background-color: #2b2b2b; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #FF5E99;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #13DAEC;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #71e9f4;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #0d99a5; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #13DAEC;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #13DAEC; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #13DAEC; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #13DAEC; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #13DAEC; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #71e9f4; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #71e9f4; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #71e9f4; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #71e9f4; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #13DAEC;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/moon.css",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #002b36;\n  background-color: #002b36; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #93a1a1; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee8d5;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #93a1a1;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/night.css",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #111;\n  background-color: #111; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 30px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #e7ad52;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"Montserrat\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.03em;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #e7ad52;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #f3d7ac;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #d08a1d; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #e7ad52;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #e7ad52; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #e7ad52; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #e7ad52; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #e7ad52; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #f3d7ac; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #f3d7ac; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #f3d7ac; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #f3d7ac; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #e7ad52;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/serif.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #F0F1EB;\n  background-color: #F0F1EB; }\n\n.reveal {\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: #26351C;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #383D3D;\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #51483D;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8b7c69;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #25211c; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #51483D;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #51483D; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #51483D; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #51483D; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #51483D; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8b7c69; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8b7c69; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8b7c69; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8b7c69; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #51483D;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/simple.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: rgba(0, 0, 0, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #000;\n  font-family: \"News Cycle\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #00008B;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #0000f1;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #00003f; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #00008B;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #00008B; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #00008B; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #00008B; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #00008B; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #0000f1; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #0000f1; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #0000f1; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #0000f1; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #00008B;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/sky.css",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #add9e4;\n  background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));\n  background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background-color: #f7fbfc; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: #134674;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"Quicksand\", sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.08em;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #3b759e;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #74a7cb;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #264c66; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #3b759e;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #3b759e; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #3b759e; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #3b759e; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #3b759e; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #74a7cb; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #74a7cb; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #74a7cb; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #74a7cb; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #3b759e;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/solarized.css",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fdf6e3;\n  background-color: #fdf6e3; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #657b83; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #586e75;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #657b83;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/beige.scss",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: #333;\n$headingColor: #333;\n$headingTextShadow: none;\n$backgroundColor: #f7f3de;\n$linkColor: #8b743d;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(79, 64, 28, 0.99);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/black.scss",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #222;\n\n$mainColor: #fff;\n$headingColor: #fff;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #42affa;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-light-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #222;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/blood.scss",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n\n // Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n// Include theme-specific fonts\n\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n\n// Colors used in the theme\n$blood: #a23;\n$coal: #222;\n$codeBackground: #23241f;\n\n$backgroundColor: $coal;\n\n// Main text\n$mainFont: Ubuntu, 'sans-serif';\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Headings\n$headingFont: Ubuntu, 'sans-serif';\n$headingTextShadow: 2px 2px 2px $coal;\n\n// h1 shadow, borrowed humbly from \n// (c) Default theme by Hakim El Hattab\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Links\n$linkColor: $blood;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: $blood;\n$selectionColor: #fff;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n\n// some overrides after theme template import\n\n.reveal p {\n    font-weight: 300;\n    text-shadow: 1px 1px $coal;\n}\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n    font-weight: 700;\n}\n\n.reveal p code {\n    background-color: $codeBackground;\n    display: inline-block;\n    border-radius: 7px;\n}\n\n.reveal small code {\n    vertical-align: baseline;\n}"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/league.scss",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n// Override theme settings (see ../template/settings.scss)\n$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/moon.scss",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base1;\n$headingColor: $base2;\n$headingTextShadow: none;\n$backgroundColor: $base03;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/night.scss",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #111;\n\n$mainFont: 'Open Sans', sans-serif;\n$linkColor: #e7ad52;\n$linkColorHover: lighten( $linkColor, 20% );\n$headingFont: 'Montserrat', Impact, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: -0.03em;\n$headingTextTransform: none;\n$selectionBackgroundColor: #e7ad52;\n$mainFontSize: 30px;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/serif.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$mainColor: #000;\n$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$headingColor: #383D3D;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #F0F1EB;\n$linkColor: #51483D;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #26351C;\n\n.reveal a {\n  line-height: 1.3em;\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/simple.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Lato', sans-serif;\n$mainColor: #000;\n$headingFont: 'News Cycle', Impact, sans-serif;\n$headingColor: #000;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #fff;\n$linkColor: #00008B;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(0, 0, 0, 0.99);\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/sky.scss",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Open Sans', sans-serif;\n$mainColor: #333;\n$headingFont: 'Quicksand', sans-serif;\n$headingColor: #333;\n$headingLetterSpacing: -0.08em;\n$headingTextShadow: none;\n$backgroundColor: #f7fbfc;\n$linkColor: #3b759e;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #134674;\n\n// Fix links so they are not cut off\n.reveal a {\n\tline-height: 1.3em;\n}\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( #add9e4, #f7fbfc );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/solarized.scss",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base00;\n$headingColor: $base01;\n$headingTextShadow: none;\n$backgroundColor: $base3;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n// Background generator\n// @mixin bodyBackground() {\n// \t@include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );\n// }\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/source/white.scss",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #fff;\n\n$mainColor: #222;\n$headingColor: #222;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #2a76dd;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-dark-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #fff;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/template/mixins.scss",
    "content": "@mixin vertical-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( top, $top 0%, $bottom 100% );\n}\n\n@mixin horizontal-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( left, $top 0%, $bottom 100% );\n}\n\n@mixin radial-gradient( $outer, $inner, $type: circle ) {\n\tbackground: $outer;\n\tbackground: -moz-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );\n\tbackground: -webkit-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -o-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -ms-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n}"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/template/settings.scss",
    "content": "// Base settings for all themes that can optionally be\n// overridden by the super-theme\n\n// Background of the presentation\n$backgroundColor: #2b2b2b;\n\n// Primary/body text\n$mainFont: 'Lato', sans-serif;\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Vertical spacing between blocks of text\n$blockMargin: 20px;\n\n// Headings\n$headingMargin: 0 0 $blockMargin 0;\n$headingFont: 'League Gothic', Impact, sans-serif;\n$headingColor: #eee;\n$headingLineHeight: 1.2;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingTextShadow: none;\n$headingFontWeight: normal;\n$heading1TextShadow: $headingTextShadow;\n\n$heading1Size: 3.77em;\n$heading2Size: 2.11em;\n$heading3Size: 1.55em;\n$heading4Size: 1.00em;\n\n// Links and actions\n$linkColor: #13DAEC;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: #FF5E99;\n$selectionColor: #fff;\n\n// Generates the presentation background, can be overridden\n// to return a background image or gradient\n@mixin bodyBackground() {\n\tbackground: $backgroundColor;\n}"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/template/theme.scss",
    "content": "// Base theme template for reveal.js\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nbody {\n\t@include bodyBackground();\n\tbackground-color: $backgroundColor;\n}\n\n.reveal {\n\tfont-family: $mainFont;\n\tfont-size: $mainFontSize;\n\tfont-weight: normal;\n\tcolor: $mainColor;\n}\n\n::selection {\n\tcolor: $selectionColor;\n\tbackground: $selectionBackgroundColor;\n\ttext-shadow: none;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tline-height: 1.3;\n\tfont-weight: inherit;\n}\n\n/*********************************************\n * HEADERS\n *********************************************/\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n\tmargin: $headingMargin;\n\tcolor: $headingColor;\n\n\tfont-family: $headingFont;\n\tfont-weight: $headingFontWeight;\n\tline-height: $headingLineHeight;\n\tletter-spacing: $headingLetterSpacing;\n\n\ttext-transform: $headingTextTransform;\n\ttext-shadow: $headingTextShadow;\n\n\tword-wrap: break-word;\n}\n\n.reveal h1 {font-size: $heading1Size; }\n.reveal h2 {font-size: $heading2Size; }\n.reveal h3 {font-size: $heading3Size; }\n.reveal h4 {font-size: $heading4Size; }\n\n.reveal h1 {\n\ttext-shadow: $heading1TextShadow;\n}\n\n\n/*********************************************\n * OTHER\n *********************************************/\n\n.reveal p {\n\tmargin: $blockMargin 0;\n\tline-height: 1.3;\n}\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n\tmax-width: 95%;\n\tmax-height: 95%;\n}\n.reveal strong,\n.reveal b {\n\tfont-weight: bold;\n}\n\n.reveal em {\n\tfont-style: italic;\n}\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n\tdisplay: inline-block;\n\n\ttext-align: left;\n\tmargin: 0 0 0 1em;\n}\n\n.reveal ol {\n\tlist-style-type: decimal;\n}\n\n.reveal ul {\n\tlist-style-type: disc;\n}\n\n.reveal ul ul {\n\tlist-style-type: square;\n}\n\n.reveal ul ul ul {\n\tlist-style-type: circle;\n}\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n\tdisplay: block;\n\tmargin-left: 40px;\n}\n\n.reveal dt {\n\tfont-weight: bold;\n}\n\n.reveal dd {\n\tmargin-left: 40px;\n}\n\n.reveal q,\n.reveal blockquote {\n\tquotes: none;\n}\n\n.reveal blockquote {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 70%;\n\tmargin: $blockMargin auto;\n\tpadding: 5px;\n\n\tfont-style: italic;\n\tbackground: rgba(255, 255, 255, 0.05);\n\tbox-shadow: 0px 0px 2px rgba(0,0,0,0.2);\n}\n\t.reveal blockquote p:first-child,\n\t.reveal blockquote p:last-child {\n\t\tdisplay: inline-block;\n\t}\n\n.reveal q {\n\tfont-style: italic;\n}\n\n.reveal pre {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 90%;\n\tmargin: $blockMargin auto;\n\n\ttext-align: left;\n\tfont-size: 0.55em;\n\tfont-family: monospace;\n\tline-height: 1.2em;\n\n\tword-wrap: break-word;\n\n\tbox-shadow: 0px 0px 6px rgba(0,0,0,0.3);\n}\n.reveal code {\n\tfont-family: monospace;\n}\n\n.reveal pre code {\n\tdisplay: block;\n\tpadding: 5px;\n\toverflow: auto;\n\tmax-height: 400px;\n\tword-wrap: normal;\n}\n\n.reveal table {\n\tmargin: auto;\n\tborder-collapse: collapse;\n\tborder-spacing: 0;\n}\n\n.reveal table th {\n\tfont-weight: bold;\n}\n\n.reveal table th,\n.reveal table td {\n\ttext-align: left;\n\tpadding: 0.2em 0.5em 0.2em 0.5em;\n\tborder-bottom: 1px solid;\n}\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n\ttext-align: center;\n}\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n\ttext-align: right;\n}\n\n.reveal table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.reveal sup {\n\tvertical-align: super;\n}\n.reveal sub {\n\tvertical-align: sub;\n}\n\n.reveal small {\n\tdisplay: inline-block;\n\tfont-size: 0.6em;\n\tline-height: 1.2em;\n\tvertical-align: top;\n}\n\n.reveal small * {\n\tvertical-align: top;\n}\n\n\n/*********************************************\n * LINKS\n *********************************************/\n\n.reveal a {\n\tcolor: $linkColor;\n\ttext-decoration: none;\n\n\t-webkit-transition: color .15s ease;\n\t   -moz-transition: color .15s ease;\n\t        transition: color .15s ease;\n}\n\t.reveal a:hover {\n\t\tcolor: $linkColorHover;\n\n\t\ttext-shadow: none;\n\t\tborder: none;\n\t}\n\n.reveal .roll span:after {\n\tcolor: #fff;\n\tbackground: darken( $linkColor, 15% );\n}\n\n\n/*********************************************\n * IMAGES\n *********************************************/\n\n.reveal section img {\n\tmargin: 15px 0px;\n\tbackground: rgba(255,255,255,0.12);\n\tborder: 4px solid $mainColor;\n\n\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.15);\n}\n\n\t.reveal section img.plain {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal a img {\n\t\t-webkit-transition: all .15s linear;\n\t\t   -moz-transition: all .15s linear;\n\t\t        transition: all .15s linear;\n\t}\n\n\t.reveal a:hover img {\n\t\tbackground: rgba(255,255,255,0.2);\n\t\tborder-color: $linkColor;\n\n\t\tbox-shadow: 0 0 20px rgba(0, 0, 0, 0.55);\n\t}\n\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n\tborder-right-color: $linkColor;\n}\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n\tborder-left-color: $linkColor;\n}\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n\tborder-bottom-color: $linkColor;\n}\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n\tborder-top-color: $linkColor;\n}\n\n.reveal .controls .navigate-left.enabled:hover {\n\tborder-right-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-right.enabled:hover {\n\tborder-left-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-up.enabled:hover {\n\tborder-bottom-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-down.enabled:hover {\n\tborder-top-color: $linkColorHover;\n}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tbackground: rgba(0,0,0,0.2);\n}\n\t.reveal .progress span {\n\t\tbackground: $linkColor;\n\n\t\t-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t   -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t        transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/css/theme/white.css",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {\n  color: #fff; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: #222; }\n\n::selection {\n  color: #fff;\n  background: #98bdef;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #222;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #2a76dd;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #6ca0e8;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a53a1; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #222;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #2a76dd;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #2a76dd; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #2a76dd; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #2a76dd; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #2a76dd; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #6ca0e8; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #6ca0e8; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #6ca0e8; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #6ca0e8; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #2a76dd;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/example/god_object.cpp",
    "content": "#include <fstream>\n#include <iostream>\n\nint main() {\n  auto value = 0;\n  {\n    std::fstream file{\"input.txt\"};\n    file >> value;\n  }\n  std::cout << value << '\\n';\n}\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/example/static_polymorphism.cpp",
    "content": "#include <cassert>\n#include <fstream>\n#include <iostream>\n\ntemplate <class T>\nstruct Reader {\n  int read() { return static_cast<T*>(this)->read_impl(); }\n  int read_impl() { return 0; }\n};\n\nstruct FileReader : Reader<FileReader> {\n  explicit FileReader(const std::string& str) : file(str) { assert(file.good()); }\n\n  int read_impl() {\n    auto value = 0;\n    file >> value;\n    return value;\n  }\n\n  std::fstream file;\n};\n\ntemplate <class T>\nstruct Viewer {\n  void show(int value) { static_cast<T*>(this)->show_impl(value); }\n  void show_impl(int) {}\n};\n\nstruct ConsoleViewer : Viewer<ConsoleViewer> {\n  void show_impl(int value) { std::cout << value << std::endl; }\n};\n\ntemplate <class TReader, class TViewer>\nstruct App {\n  TReader& reader;\n  TViewer& viewer;\n\n  App(TReader& reader, TViewer& viewer) : reader(reader), viewer(viewer) {}\n\n  void run() { viewer.show(reader.read()); }\n};\n\nint main() {\n  FileReader reader{\"input.txt\"};\n  ConsoleViewer viewer{};\n  App<FileReader, ConsoleViewer>{reader, viewer}.run();\n  // App{reader, viewer}.run();\n}\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/example/type_erasure.cpp",
    "content": "#include <boost/type_erasure/any.hpp>\n#include <boost/type_erasure/builtin.hpp>\n#include <boost/type_erasure/free.hpp>\n#include <boost/type_erasure/member.hpp>\n#include <cassert>\n#include <fstream>\n#include <iostream>\n\nBOOST_TYPE_ERASURE_MEMBER((has_read), read, 0)\nBOOST_TYPE_ERASURE_MEMBER((has_show), show, 1)\n\nusing Reader = boost::mpl::vector<has_read<int()>, boost::type_erasure::copy_constructible<>>;\nusing Viewer = boost::mpl::vector<has_show<void(int)>, boost::type_erasure::copy_constructible<>>;\n\nclass FileReader {\n  std::fstream file;\n\n public:\n  explicit FileReader(const std::string& str) : file(path) { assert(file.good()); }\n\n  int read() {\n    auto value = 12;\n    file >> value;\n    return value;\n  }\n};\n\nclass ConsoleViewer {\n public:\n  void show(int value) { std::cout << value << std::endl; }\n};\n\nclass App {\n  boost::type_erasure::any<Reader> reader;\n  boost::type_erasure::any<Viewer> viewer;\n\n public:\n  App(boost::type_erasure::any<Reader> reader, boost::type_erasure::any<Viewer> viewer) : reader(reader), viewer(viewer) {}\n\n  void run() { viewer.show(reader.read()); }\n};\n\nint main() {\n  FileReader reader{\"input.txt\"};\n  ConsoleViewer viewer{};\n  App{reader, viewer}.run();\n}\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>Concepts driven design with dependency injection</title>\n\n\t\t<meta name=\"description\" content=\"Boost your design with C++14 dependency injection\">\n\t\t<meta name=\"author\" content=\"Kris Jusiak\">\n\n\t\t<meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n\t\t<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\">\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui\">\n\n\t\t<link rel=\"stylesheet\" href=\"css/reveal.css\">\n        <link rel=\"stylesheet\" href=\"css/theme/league.css\" id=\"theme\">\n\n            <!-- Code syntax highlighting -->\n        <link rel=\"stylesheet\" href=\"lib/css/zenburn.css\">\n\n\t\t<!-- Printing and PDF exports -->\n\t\t<script>\n\t\t\tvar link = document.createElement( 'link' );\n\t\t\tlink.rel = 'stylesheet';\n\t\t\tlink.type = 'text/css';\n\t\t\tlink.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';\n\t\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( link );\n\t\t</script>\n\n\t\t<!--[if lt IE 9]>\n\t\t<script src=\"lib/js/html5shiv.js\"></script>\n\t\t<![endif]-->\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\t\t\t<div class=\"slides\">\n\n          <section data-markdown=\"\"\n                   data-separator=\"^====+$\"\n                   data-separator-vertical=\"^----+$\"\n                   data-notes=\"^Note:\">\n\t\t\t\t\t<script type=\"text/template\">\n#Concepts driven design with dependency injection\n\nKris Jusiak, Quantlab, 2017\n\n---\n\n[kris@jusiak.net](mailto:kris@jusiak.net) | [@krisjusiak](https://twitter.com/krisjusiak) | [linkedin.com/in/kris-jusiak](https://www.linkedin.com/in/kris-jusiak)\n\n==============================================================================\n\n##Agenda\n\n* In search of the best design\n    * Injection at compile-time\n      * Constructor injection\n      * Templates (Policy design)\n      * Concepts\n    * Injection at run-time\n      * Virtual functions\n      * Functional design\n      * Type erasure\n* [Boost].DI\n  * Concepts driven design\n* Summary\n\n==============================================================================\n\n##In search of the best design!\n\n* Loosely coupled code (easy to extend, maintain, reause)\n* Testable code (TDD, BDD)\n    * Easy/Automatic mocking\n\n  > \"If you liked it then you should have put a test on it\" Beyonce rule\n\n* ...\n      There is much more!\n\n----\n\n###STUPID vs SOLID (Object Oriented design)\n\n<table><tr>\n <td>\n  <table>\n    <tr><td><b>S</b></td><td>Singleton</td></tr>\n    <tr><td><b>T</b></td><td>Tight Coupling</td></tr>\n    <tr><td><b>U</b></td><td>Untestability</td></tr>\n    <tr><td><b>P</b></td><td>Premature Optimization</td></tr>\n    <tr><td><b>I</b></td><td>Indescriptive Naming</td></tr>\n    <tr><td><b>D</b></td><td>Duplication</td></tr>\n  </table>\n </td>\n\n <td>\n  <table>\n    <tr><td><b>S</b></td><td><b>Single Responsibility</b></td></tr>\n    <tr><td><b>O</b></td><td>Open-close</td></tr>\n    <tr><td><b>L</b></td><td>Liskov substitution</td></tr>\n    <tr><td><b>I</b></td><td>Interface segregation</td></tr>\n    <tr><td><b>D</b></td><td><b>Dependency inversion</b></td></tr>\n  </table>\n </td>\n\n </tr>\n</table>\n> \"Clean Code\" Uncle Bob\n\n==============================================================================\n\n###Story: Print a value from a file (BDD Style)\n\n```\nScenario 1: Value from a file is displayed\n Given an 'input.txt' file with an integer value in it\n   And console terminal is ready\n When the App runs\n Then the integer value from 'input.txt'\n   should be printed on the terminal console\n```\n\n----\n\n## KISS - ~~Keep it simple~~, STUPID (V0)\n\n```cpp\nclass App { // God object - does too much!\n  void run() {\n    auto value = 0;\n    {\n      std::ifstream file{\"input.txt\"};\n      assert(file.good());\n      file >> value;\n    }\n    std::cout << value << '\\n';\n  }\n};\n```\n\n```cpp\nint main() {\n    App{}.run();\n}\n```\n\n> We read code more often than we write it!\n\n----\n\n## God object (V0)\n\n![app](images/app0.png)\n\n* (+) Does the job?\n* (-) Tightly coupled (hard to extend/maintain)\n* (-) Hard to test (TDD/BDD)\n\n----\n\n###Composition Root\n\n> Unique location in an application where modules are composed together\n\n```cpp\nint main() {\n  App{}.run();\n}\n```\n\n* Simplifies writing integration tests\n\n----\n\n##Injection\n\n> Compile-time options\n\n* Dependencies are ONLY known at compile-time\n  * Most of them!\n\n----\n\n###Constructor injection (V1)\n\n```cpp\nclass App {\n Reader reader;\n Printer printer;\n\n public:\n  App(Reader&& reader, Printer&& printer)\n    : reader(std::move(reader))\n    , printer(std::move(printer))\n  { }\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  Reader reader;                                  // wiring\n  Printer printer;                                // wiring\n  App app{std::move(reader), std::move(printer)}; // wiring\n}\n```\n\n----\n\n###Single responsibility principle\n\n> \"A class should have only one reason to change\" Uncle Bob\n\n----\n\n###Constructor injection (V1)\n\n![app](images/app1.png)\n\n* (+) We can test it in isolation (including App) but it's hard\n* (+) Reader/Printer are not tightly coupled to the App\n* (-) Can't inject different Readers/Printers\n* (-) We introduced a wiring mess\n\n----\n\n###There we have it - Dependency Injection (DI)\n\n> \"Don't call us, we'll call you\", Hollywood principle\n\n####Wiring - Create and pass required dependencies\n```cpp\nReader reader{...};   // wiring\nPrinter printer{...}; // wiring\n...                   // ...\nApp app{...};         // wiring\n```\n\n> Separates creation logic from business logic\n\n----\n\n###Templates / Policy Design / Duck Typing (V2)\n\n```cpp\ntemplate<class TReader, class TPrinter>\nclass App {\n  TReader reader;\n  TPrinter printer;\n\npublic:\n  App(TReader reader, TPrinter printer)\n    : reader(reader), printer(printer)\n  { }\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  Reader reader;                                // wiring\n  Printer printer;                              // wiring\n  App<Reader, Printer>{reader, printer}.run();  // wiring\n}\n```\n\n----\n\n###Templates / Policy Design / Duck Typing (V2)\n\n* (+) Reader/Printer/App migt be tested in isolation\n  * hand written mocks\n* (+) Reader/Printer are not tightly coupled to the App\n* (+) Different Readers/Printers can be injected\n* (-) Header files only\n* (-) Slower compilation times (Point of instantiation - POI)\n* (-) Code bloat (executable size)\n* (-) Templates are contagious and give bad error messages\n\n---\n\nSTL example: `std::vector`\n\n----\n\n###Template argument deduction for class templates (C++17)\n\n####C++14\n```cpp\n  App<Reader, Printer>{reader, printer}.run();\n```\n\n####C++17\n```cpp\n  App{reader, printer}.run(); // templates are still there\n                              // just deduced from parameters\n```\n\n----\n\n###Concepts/C++2X?\n\n####API\n```cpp\ntemplate<class... Ts>\nconcept bool Concept = requires(Ts..., args...) {\n  expressions...\n};\n```\n\n####Example\n```cpp\ntemplate <class T>\nconcept bool Concept =\n  requires(T t, std::ostream& os) {\n    { os << t } -> std::ostream&; // printable\n  } &&\n  requires(T t, int p1, double p2) {\n    { t.foo(p1, p2) } -> void // foo callable with void(T::*)(int, double)\n  }\n};\n```\n\n----\n\n###Concepts/C++2X? (V3)\n\n```cpp\ntemplate <class T>\nconcept bool Readable = requires(T reader) {\n  { reader.read() } -> int;\n};\n```\n\n```cpp\ntemplate <class T>\nconcept bool Printable = requires(T printer) {\n  { printer.print() } -> void;\n};\n```\n\n----\n\n###Concepts/C++2X? (V3)\n\n```cpp\ntemplate<Readable TReader, Printable TPrinter> // concepts\nclass App {\n  Readable reader;\n  Printable printer;\n\npublic:\n  // Same as template<Readable, Printable>\n  App(Readable reader, Printable printer)\n    : reader(reader), printer(printer) {}\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  Readable reader = FileReader{\"input.txt\"}; // wiring\n  Printable printer = ConsolePrinter();      // wiring\n  App{reader, printer}.run();                // wiring\n}\n```\n\n----\n\n###Concepts/C++2X? (V3)\n\n* (+) We can test it in isolation\n  * Generate mocks from type constraints using static reflection\n* (+) Reader/Printer are not tightly coupled to the App\n* (+) Different Readers/Printers can be injected\n* (+) Short error messages\n  * Constraint not satisfied (POI)\n* (-) Header files only\n\n-\n\n| | |\n|-|-|\n|[ (SG8) Concepts lite](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3580.pdf) | Constrating templates |\n|[ (SG7) Static reflection](www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0194r0.pdf) | Fakes/Stubs/Mocks generation |\n\n----\n\n##Injection\n\n> Run-time options\n\n* Dependencies AREN'T known at compile-time\n  * For example - type depends on some configuration from xml file\n\n----\n\n###Virtual functions/interfaces (V4)\n\n```cpp\nclass IReader {\npublic:\n  virtual ~IReader() noexcept = default;\n  virtual int read() = 0;\n};\n```\n\n```cpp\nclass FileReader final : public IReader {\n  std::istream& input;\n\npublic:\n  explicit FileReader(std::istream&);\n  void read() override;\n};\n```\n\n----\n\n###Virtual functions/interfaces (V4)\n\n```cpp\nclass IPrinter {\npublic:\n  virtual ~IPrinter() noexcept = default;\n  virtual void print(int) = 0;\n};\n```\n\n```cpp\nclass ConsolePrinter final : public IPrinter {\n  std::ostream& output;\n\npublic:\n  explicit ConsolePrinter(std::ostream&);\n  void print(int) override;\n};\n```\n\n----\n\n###Virtual functions/interfaces (V4)\n\n```cpp\nclass App {\n  IReader& reader;\n  IPrinter& printer;\n\npublic:\n  App(IReader& reader, IPrinter& printer)\n    : reader(reader), printer(printer) {}\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  auto file = std::fstream{\"input.txt\"}; // wiring!\n  auto reader = FileReader{file};        // wiring!\n  auto& out = std::cout;                 // wiring!\n  auto printer = ConsolePrinter{out};    // wiring!\n  App{reader, printer}.run();            // wiring!\n}\n```\n\n----\n\n###Virtual functions/interfaces (V4)\n\n![app](images/app3.png)\n\n* (+) Easy to test and mock (TDD/BDD)\n* (-) Requires heap (possible cache misses) and inheritance\n* (-) Performance hit due to virtual dispatch\n* (-) Wiring mess!\n\n----\n\n###Virtual functions/interfaces - performance\n####final keyword and devirtualization\n\n![final](images/final.png)\nhttps://godbolt.org/g/e8olYN\n\n----\n\n###Virtual functions/interfaces - inheritance\n\n> \"Inheritance Is The Base Class of Evil\" Sean Parent\n\n-\n\nhttps://channel9.msdn.com/Events/GoingNative/2013/Inheritance-Is-The-Base-Class-of-Evil\n\n----\n\n###Functional design (V5)\n\n```cpp\nusing fprinter = std::function<void(int)>;\nusing fread    = std::function<int()>;\n```\n\n```cpp\nconst auto fileReader = [](std::string_view path) {\n  return [=] {\n    auto value = 0;\n    {\n      std::ifstream file{path};\n      file >> value;\n    }\n    return value;\n  };\n};\n```\n\n```cpp\nconst auto consolePrinter = [](int value) {\n  std::cout << value << '\\n';\n};\n```\n\n----\n\n###Functional design (V5)\n\n```cpp\nclass App {\n  fprinter printer;\n  fread read;\n\n public:\n   App(const fprinter& printer, const fread& read)\n     : printer(printer), read(read)\n   { }\n\n   void run() {\n     printer(read());\n   }\n};\n```\n\n----\n\n###Functional design (V5)\n\n```cpp\nint main() {\n  App{fileReader, consolePrinter}.run();\n}\n```\n\n* (+) Powerful design\n* (+) Easy to mock\n* (-) std::function may allocate and causes code bloat\n* (-) Requires totally different approach\n* (-) Code bloat\n\n----\n\n###Type erasure/Virtual Concepts/C++2X (V6)\n\n```cpp\nclass FileReader final { // no inhertiance\n  std::ifstream file;\n\npublic:\n  explicit FileReader(std::string_view path) : file{path} {\n    assert(file.good());\n  }\n\n  int read() {\n    auto value = 0;\n    file >> value;\n    return value;\n  }\n};\n```\n\n```cpp\nclass ConsolePrinter final { // no inhertiance\npublic:\n  void print(int value) { std::cout << value << '\\n'; }\n};\n```\n\n----\n\n###Type erasure/Virtual Concepts/C++2X (V6)\n\n```cpp\nclass App {\n  virtual Readable reader; // type erasure (concept from V3)\n  virtual Printable printer; // type erasure (concept from V3)\n\npublic:\n  // Same as template<Readable, Printable>\n  App(Readable reader, Printable printer)\n    : reader(reader), printer(printer)\n  { }\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  Readable reader = FileReader{\"input.txt\"}; // wiring\n  Printable printer = ConsolePrinter();      // wiring\n  App{reader, printer}.run();                // wiring\n}\n```\n\n----\n\n###Type erasure/Virtual Concepts/C++2X (V6)\n\n* (+) Inheritance is not required\n* (+) Value semantics (no heap usage required)\n* (+) Based on the same concepts as for type constraints\n* (+) Performance (worst case - function call)\n* (-) May allocate\n  * Possible Small Buffer Optimization (SBO)\n\n---\n\n* STL example: `std::shared_ptr deleter`\n* [(SG8) Virtual concepts](https://github.com/andyprowl/virtual-concepts/blob/master/draft/Dynamic%20Generic%20Programming%20with%20Virtual%20Concepts.pdf)\n\n----\n\n###Doesn't matter which option will be chosen the wiring will have to happen either way!\n\n----\n\n###Manual DI - Wiring\n\n* ####Single Responsibility Principle\n  =>\n    * ####A lot of classes\n    =>\n      * ####Wiring Mess\n      =>\n        * ####Hard to maintain + Lazy programmers (99%)\n        =>\n          * ####Hacks/Workarounds (~~Single Responsibility~~)\n\n-----\n\n###Solution\n\n####Simplify/Remove the wiring mess\n  ####By Automating dependency injection?\n=>\n### [[Boost].DI](https://github.com/boost-experimental/di)\n\n==============================================================================\n\n###[[Boost].DI](https://github.com/boost-experimental/di)\n\n* One header - 3k LOC - (boost/di.hpp) / generated\n* Neither Boost nor STL is required\n* No 'if's, 'virtual's, 'exception's (-fno-rtti, -fno-exceptions)\n* Non-intrusive (constructor/templates parameters deduction)\n* Compile-time creation guarantee (no run-time errors)\n* Supported compilers (C++14)\n  * [Clang-3.4+](https://travis-ci.org/boost-experimental/di), [XCode-6.1+](https://travis-ci.org/boost-experimental/di), [GCC-5.2+](https://travis-ci.org/boost-experimental/di), [MSVC-2015+](https://ci.appveyor.com/project/krzysztof-jusiak/di)\n\n> [Boost].DI is not an official Boost library, yet!\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - API\n\n####Injector\n```cpp\ntemplate<class... TDeps> requires boundable<TDeps...>()\nclass injector {\npublic:\n  explicit injector(TDeps&&...) noexcept;\n  injector(injector&&) = default;\n  injector& operator=(injector&&) = default;\n\n  template<class T> requires creatable<T>()\n  constexpr T create() const;\n};\n```\n\n```cpp\ntemplate<class TConfig = di::config, class... TDeps>\n  requires configurable<TConfig>() && boundable<TDeps...>()\nconstexpr auto make_injector(TDeps&&...) noexcept;\n```\n\n####Bind\n```cpp\ntemplate<class... Interfaces>\n  requires is_convertible<Interfaces..., Implementation>()\ndi::bind<Interfaces...>.to<Implementation>()\n                       .to(Implementation&& value)\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Hello World\n\n```cpp\n#include <boost/di.hpp>\nnamespace di = boost::di;\n```\n\n```cpp\ntemplate<class TReader = class Readable>\nclass App {\n public:\n  App(TReader&, const IPrinter&); // DI handles\n};        ^                 ^     // order and types\n          |                 \\-------------------------\\\n          \\---------------------------------------\\   |\nint main() {                                      |   |\n  const auto injector = di::make_injector(        |   |\n     di::bind<class Readable>.to<FileReader>(), --/   |\n     di::bind<IPrinter>.to<ConsolePrinter>() ---------/\n  );\n\n  injector.create<std::unique_ptr<App>>()->run();\n}\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Performance\n\n```sh\ntime $CXX -std=c++14 app.cpp # 0.092s\n```\n\n#####ASM x86-64\n\n```\npush   %rbx\nmov    %rdi,%rbx\nmov    $0x8,%edi\ncallq  0x4009f0 <_Znwm@plt>\nmovq   $0x400e78,(%rax)\nmov    %rax,(%rbx)\nmov    %rbx,%rax\npop    %rbx\nretq\n```\n\n#####Same as\n\n```cpp\nreturn make_unique<App>(...);\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Benchmarks (GCC-7/Java8)\n\n| 64 types, 1-4 ctor params, 1024 iterations | **[Boost].DI** | **Guice** | **Dagger2** |\n| --------------------- | ------------ | ---------------- | ------------- |\n| Compilation time    | 0.376s       |  0.570s            | 1.411s        |\n| Execution time      | 0.002s       |  0.528s            | 0.157s        |\n\n---\n\n| 256 types, 1-4 ctor params, 1024 iterations | **[Boost].DI** | **Guice** | **Dagger2** |\n| --------------------- | ------------ | ---------------- | ------------- |\n| Compilation time    | 0.706s       | 0.642s             | 1.903s        |\n| Execution time      | 0.002s       | 0.544s             | 0.210s        |\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Compile-time errors\n\n```cpp\nconst auto injector = di::make_injector(\n// di::bind<IPrinter>.to<ConsolePrinter>(), // missing wiring\n   di::bind<class Readable>.to<FileReader>()\n);\nauto app = injector.create<App>();\n```\n\n#####Full Compilation-Time Error Message\n\n```cpp\nerror: 'create<App>' is deprecated: creatable constraint\n  injector.create<App>();           not satisfied\n           ^\nnote 'create<App>' has been explicitly marked deprecated here\n  create\n  ^\nerror: inline function 'abstract_type<IPrinter>::is_not_bound::error'\n error(_ = \"type is not bound, did you forget to add:\n           'di::bind<interface>.to<implementation>()'?\");\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Let's come back to our example (V1)\n\n####Automatic Injection\n\n```cpp\nclass App {\n Reader reader;\n Printer printer;\n\npublic:\n  App(Reader&& reader, Printer&& printer)\n    : reader(std::move(reader))\n    , printer(std::move(printer))\n  {}\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Automatic Injection\n\n#####Manual DI - Wiring mess\n```cpp\nint main() {\n  auto reader = Reader{};                                // wiring\n  auto printer = Printer{std::cout};                     // wiring\n  auto app = App{std::move(reader), std::move(printer)}; // wiring\n  app.run();\n}\n```\n\n#####[Boost].DI\n```cpp\nint main() {\n  di::make_injector().create<App>().run();\n}\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Refactoring for free!\n\n####Let's change `App` constructor\n\n######Before\n```cpp\nApp(Reader&& reader, Printer&& printer)\n  : reader(std::move(reader))\n  , printer(std::move(printer))\n{ }\n```\n\n######After\n```cpp\nApp(Printer& printer, std::unique_ptr<Reader> reader)\n : printer(printer)\n , reader(std::move(reader))\n{}\n\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Refactoring for free!\n\n#####Manual DI - Wiring mess\n```cpp\nint main() {\n  auto reader = std::make_unique<Reader>{};   // diff wiring!\n  auto printer = Printer{std::cout};          // wiring\n  auto app = App{printer, std::move(reader)}; // diff wiring!\n  app.run();\n}\n```\n\n#####[Boost].DI - No changes!\n```cpp\nint main() {\n  di::make_injector().create<App>().run(); // same as before!\n}\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Automatic Mocks Injector\n\n####[GUnit.GMock](https://github.com/cpp-testing/GUnit)\n```cpp\nGMock<IReader> readerMock; // no more MOCK_CONST_METHOD7(...), etc.\nEXPECT_CALL(readerMock, read(_)).WillOnce(Return(42));\n```\n\n####Test\n```cpp\n\"should print read text\"_test = [] {\n  constexpr auto value = 42;\n\n  auto [sut, mocks] = make<App>(); // creates System Under Test\n                                   // and mocks\n\n  InSequence sequence;\n  EXPECT_CALL(mocks<IReader)>(), read()).WillOnce(Return(value));\n  EXPECT_CALL(mocks<IPrinter>(), print(value));\n\n  sut.run();\n};\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Behaviour Driven Development (BDD)\n\n####Acceptance Tests\n\n```cpp\n\"Given an input file\n When App is running\n Then value from input file should be printed\"_test = [] {\n  mocks_t mocks;\n  {\n    std::ofstream file{\"input.txt\"};\n    file << 42;\n  }\n  const auto injector = di::make_injector(\n    config(), // production wiring\n    di::bind<IPrinter>.to(GMock<IPrinter>(mocks)) [di::override]\n  );\n\n  EXPECT_CALL(mocks<IPrinter>(), print(42));\n  injector.create<App>().run();\n};\n```\n\n----\n\n##The story so far - Virtual functions/interfaces\n\n>[[Boost].DI](https://github.com/boost-experimental/di)\n```\nAutomatic constructor injection\n```\n\n> [GUnit.GMock](https://github.com/cpp-testing/GUnit)\n```\nEasy mocking\n```\n```\nAutomatic mocking injection\n```\n\n----\n\n##Concepts driven design with [[Boost].DI](https://github.com/boost-experimental/di)\n\n###Idea\n\n* Concepts checking (type constraints for templates)\n    * no more horrible error messages\n* Type erasure based on concepts (dynamic dispatch)\n    * 100% value semantics (no heap)\n* Mocking (automatic generation from concepts)\n    * Goal - write tests once, it shouldn't matter what and how is injected\n\n----\n\n##Concepts driven design / C++14\n\n####API (much more powerful than interfaces)\n```cpp\nconst auto Concept = $requires(args...)(\n  expressions...\n);\n```\n\n####Example\n```cpp\nconst auto Fooable =\n  $requires(auto&& t, std::ostream& os) (\n    T(t), // copy constructible\n    os << t // printable\n  ) &&\n  $(foo)<void(int, double)>();\n```\n\nhttp://ericniebler.com/2013/11/23/concept-checking-in-c11/\n\n----\n\n##Concepts driven design / C++14 (V7)\n\n>Short `decltype` notation\n```cpp\n#define $ decltype\n```\n\n>Alternative\n```cpp\nusing Concept_t = decltype(Concept);\n```\n\n----\n\n##Concepts driven design / C++14\n\n####Concept checking (used when wiring)\n```cpp\nstatic_assert(requiers<Foo>(Fooable), \"\");\nstatic_assert(requires<Bar>(Fooable), \"bar requires to be Fooable!\");\n```\n\n####Concepts mocking\n```cpp\nGMock<$(Fooable)> mock;\nEXPECT_CALL(mock, (foo)(42));\nmock.read(42);\n```\n\n####Type erasure\n```cpp\nany<$(Fooable)> foo = Foo{}; // holds anything\nfoo.foo(42, 77.0);           // Fooable (stack!)\n```\n\n####Type erasure mocking\n```cpp\nany<$(Fooable)> foo = GMock<$(Fooable)>();\nEXPECT_CALL(mock, (foo)(42, 77.0));\nfoo.foo(42, 77.0);\n```\n\n----\n\n##Concepts driven design / C++14 (V7)\n\n```cpp\nconst auto Readable =\n  $requires(auto&& t, std::ostream& os) (\n    T(t),    // copy constructible\n    os << t  // printable\n  ) &&\n  $(read)<int()>();\n```\n\n```cpp\nconst auto Printable =\n  $requires(auto&& t, std::ostream& os) (\n    T(t),    // copy constructible\n    os << t  // printable\n  ) &&\n  $(print)<void(int)>();\n```\n\n----\n\n##Concepts driven design / C++14 (V7)\n\n```cpp\ntemplate<class TReader  = $(Readable)   // TReader  = 'Concept'\n       , class TPrinter = $(Printable)> // TPrinter = 'Concept'\nclass App {\n  TReader reader;\n  TPrinter printer;\n\npublic:\n  App(TReader reader, TPrinter printer)\n    : reader(reader), printer(printer)\n  { }\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  const auto injector = di::make_injector(\n    di::bind<$(Readable)>.to<FileReader>(),\n    di::bind<$(Printable)>.to<ConsolePrinter>()\n  );\n\n  injector.create<App>().run();\n}\n```\n\n----\n\n##Concepts driven design / C++14 (V7)\n\n* (+) We can test it in isolation\n* (+) Short error messages (type constraints verification)\n* (+) Automatic mocks generation (GMock)\n* (+) Dynamic dispatch via type erasure supported out of the box\n* (+) Reader/Printer are not tightly coupled to the App\n* (+) Different Readers/Printers can be injected\n* (-) Header files only\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Concepts driven design - Compile-time errors\n\n```cpp\nconst auto injector = di::make_injector(\n  di::bind<$(Readable)>.to<Logger>(), // Logger isn't Readable!\n  di::bind<$(Printable)>.to<ConsolePrinter>()\n);\n```\n\n#####Full Compilation-Time Error Message\n\n```cpp\ndi.hpp: error: static_assert failed \"constraint not satisfied\"\n\ndi.hpp: note: in instantiation of template class\n  'concept_check<Readable>::is_not_satisfied_by<Logger>'\n\napp.cpp:: note: while substituting template 'to'\n  di::bind<Readable>.to<Logger>()\n\napp.cpp: error: 'class Logger' has no member named 'read'\n```\n\n----\n\n###Concepts driven design - Easy/Automatic Mocking\n\n####[GUnit.GMock](https://github.com/cpp-testing/GUnit)\n```cpp\nGMock<$(Readable)> readableMock;\nEXPECT_CALL(readableMock, read(_)).WillOnce(Return(42));\n```\n\n####Test (same as with interfaces)\n```cpp\n\"should print read text\"_test = [] {\n  constexpr auto value = 42;\n\n  auto [sut, mocks] = make<App>(); // creates System Under Test\n                                   // and mocks\n\n  InSequence sequence;\n  EXPECT_CALL(mocks<$(Readable)>(), read()).WillOnce(Return(value));\n  EXPECT_CALL(mocks<$(Printable)>(), print(value));\n\n  sut.run();\n};\n```\n\n----\n\n###Concepts driven design - switching to run-time - type erasure\n\n```cpp\ntemplate<class TReader = $(Readable)>\nclass App {\n  TReader reader;\n  any<$(Printable)> printer; // type erasure based on concepts\n\npublic:\n  App(TReader reader, any<$(Printable)> printer)\n    : reader(reader), printer(printer)\n  { }\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n* ####Wiring - NO CHANGES REQUIRED\n* ####Test - NO CHANGES REQUIRED ([GUnit.GMock](https://github.com/cpp-testing/GUnit))\n\n----\n\n###Concepts driven design - switching to run-time - type erasure\n\n####Implementing features by wiring\n\n```\nScenario 2: Value from an input file is displayed on the QtWindow\n Given an 'input.txt' file with an integer value in it\n   And the first command line argument equals to \"QtPrinter\"\n When the App runs\n Then the integer value from 'input.txt' should\n      be printed on the QtWindow\n```\n\n----\n\n###Concepts driven design - switching to run-time - type erasure\n\n####Implementing features by wiring\n\n```cpp\nconst auto config = [](std::string_view printer) {\n  return di::make_injector(\n     di::bind<$(Readable)>.to<FileReader>(),\n     di::bind<$(Printable)>.to([&](const auto& injector) {\n       return printer == \"QtPrinter\"\n         ? injector.create<QtPrinter>()\n         : injector.create<ConsolePrinter>();\n     })\n  );\n};\n```\n\n#####Usage\n```cpp\nint main(int argc, char** argv) {\n  config(argc == 2 ? argv[1] : nullptr).create<App>().run();\n}\n```\n\n----\n\n###Concepts driven design together with interfaces\n\n```cpp\ntemplate<class TSynchronizer = $(Synchronizable)>\nclass FileReader final {\npublic:\n  FileReader(std::string_view path\n           , const std::shared_ptr<ILegacyInterface>&); // virtual\n  ...\n};\n```\n\n```cpp\ntemplate<class TWriter = $(Writable)>\nclass LegacyImplementation final : public ILegacyInterface {\n  LegacyImplementation(IFactory* factory      // interface\n                     , TWriter writer         // template/concept\n                     , any<$(Loggable)> logger); // type erasure\n  ...\n};\n```\n\n----\n\n###Concepts driven design together with interfaces\n\n```cpp\nint main() {\n  const auto injector = di::make_injector(\n    di::bind<$(Readable)>.to<FileReader>(),         // concept -> template class\n    di::bind<$(Synchronizable)>.to<Synchronizer>(), // concept -> class\n    di::bind<$(Loggable)>.to<Logger>(),             // concept -> type erasure\n    di::bind<ILegacyInterface>.\n          to<LegacyImplementation>()                // interface -> template class\n  );\n\n  injector.create<App>().run();\n}\n```\n<!-- .element: style=\"margin-left:-3%; width:105%\" -->\n\n----\n\n###Concepts driven design with [[Boost].DI](https://github.com/boost-experimental/di)\n\n|  |  |\n| ------- | ------------- |\n| Try it online! | http://melpon.org/wandbox/permlink/UGaFDy2jaSCeksa1 |\n\n==============================================================================\n\n###Summary\n\n----\n\n###Good practises are good practices for a reason!\n\n----\n\n###Concepts and static reflection will be a game changer!\n\n----\n\n###Dependency Injection\n\n* A powerful design pattern helping with producing\n  * Loosely coupled code\n  * Easy to test code (TDD/BDD)\n\n* [[Boost].DI](https://github.com/boost-experimental/di)\n  * Removes/Cleanup the wiring mess (boilerplate code)\n  * Simplify refactoring (constructor parameters deduction)\n  * Make testing easier (automatic mocks injection)\n  * Supports templates/concepts injection\n\n----\n\n###Dependency Injection - guideline\n\n![guideline](images/guideline.png)\n\n==============================================================================\n\n##Questions?\n\n| [Boost].DI |  |\n| ------- | ------------- |\n| Documentation | http://boost-experimental.github.io/di |\n| Source Code | https://github.com/boost-experimental/di |\n| Try it online! | http://boost-experimental.github.io/di/try_it |\n|                | https://godbolt.org/g/dvjJFI |\n<!-- .element: style=\"margin-left:-13%; width:125%\" -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"lib/js/head.min.js\"></script>\n\t\t<script src=\"js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available at:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\n        // Display controls in the bottom right corner\n        controls: true,\n\n        // Display a presentation progress bar\n        progress: true,\n\n        // Display the page number of the current slide\n        slideNumber: true,\n\n        // Push each slide change to the browser history\n        history: true,\n\n        // Enable keyboard shortcuts for navigation\n        keyboard: true,\n\n        // Enable the slide overview mode\n        overview: true,\n\n        // Vertical centering of slides\n        center: true,\n\n        // Enables touch navigation on devices with touch input\n        touch: true,\n\n        // Loop the presentation\n        loop: false,\n\n        // Change the presentation direction to be RTL\n        rtl: false,\n\n        // Turns fragments on and off globally\n        fragments: false,\n\n        // Flags if the presentation is running in an embedded mode,\n        // i.e. contained within a limited portion of the screen\n        embedded: false,\n\n        // Flags if we should show a help overlay when the questionmark\n        // key is pressed\n        help: true,\n\n        // Flags if speaker notes should be visible to all viewers\n        showNotes: false,\n\n        // Number of milliseconds between automatically proceeding to the\n        // next slide, disabled when set to 0, this value can be overwritten\n        // by using a data-autoslide attribute on your slides\n        autoSlide: 0,\n\n        // Stop auto-sliding after user input\n        autoSlideStoppable: true,\n\n        // Enable slide navigation via mouse wheel\n        mouseWheel: true,\n\n        // Hides the address bar on mobile devices\n        hideAddressBar: true,\n\n        // Opens links in an iframe preview overlay\n        previewLinks: false,\n\n        // Transition style\n        transition: 'convex', // none/fade/slide/convex/concave/zoom\n\n        // Transition speed\n        transitionSpeed: 'default', // default/fast/slow\n\n        // Transition style for full page slide backgrounds\n        backgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n        // Number of slides away from the current that are visible\n        viewDistance: 3,\n\n        // Parallax background image\n        parallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n        // Parallax background size\n        parallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n        // Number of pixels to move the parallax background per slide\n        // - Calculated automatically unless specified\n        // - Set to 0 to disable movement along an axis\n        parallaxBackgroundHorizontal: null,\n        parallaxBackgroundVertical: null,\n\n\t\t\t\t// Optional reveal.js plugins\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\t\t\t\t\t{ src: 'plugin/notes/notes.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/js/reveal.js",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n(function( root, factory ) {\n\tif( typeof define === 'function' && define.amd ) {\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine( function() {\n\t\t\troot.Reveal = factory();\n\t\t\treturn root.Reveal;\n\t\t} );\n\t} else if( typeof exports === 'object' ) {\n\t\t// Node. Does not work with strict CommonJS.\n\t\tmodule.exports = factory();\n\t} else {\n\t\t// Browser globals.\n\t\troot.Reveal = factory();\n\t}\n}( this, function() {\n\n\t'use strict';\n\n\tvar Reveal;\n\n\tvar SLIDES_SELECTOR = '.slides section',\n\t\tHORIZONTAL_SLIDES_SELECTOR = '.slides>section',\n\t\tVERTICAL_SLIDES_SELECTOR = '.slides>section.present>section',\n\t\tHOME_SLIDE_SELECTOR = '.slides>section:first-of-type',\n\n\t\t// Configuration defaults, can be overridden at initialization time\n\t\tconfig = {\n\n\t\t\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t\t\t// when the presentation is scaled to fit different resolutions\n\t\t\twidth: 960,\n\t\t\theight: 700,\n\n\t\t\t// Factor of the display size that should remain empty around the content\n\t\t\tmargin: 0.1,\n\n\t\t\t// Bounds for smallest/largest possible scale to apply to content\n\t\t\tminScale: 0.2,\n\t\t\tmaxScale: 1.5,\n\n\t\t\t// Display controls in the bottom right corner\n\t\t\tcontrols: true,\n\n\t\t\t// Display a presentation progress bar\n\t\t\tprogress: true,\n\n\t\t\t// Display the page number of the current slide\n\t\t\tslideNumber: false,\n\n\t\t\t// Push each slide change to the browser history\n\t\t\thistory: false,\n\n\t\t\t// Enable keyboard shortcuts for navigation\n\t\t\tkeyboard: true,\n\n\t\t\t// Optional function that blocks keyboard events when retuning false\n\t\t\tkeyboardCondition: null,\n\n\t\t\t// Enable the slide overview mode\n\t\t\toverview: true,\n\n\t\t\t// Vertical centering of slides\n\t\t\tcenter: true,\n\n\t\t\t// Enables touch navigation on devices with touch input\n\t\t\ttouch: true,\n\n\t\t\t// Loop the presentation\n\t\t\tloop: false,\n\n\t\t\t// Change the presentation direction to be RTL\n\t\t\trtl: false,\n\n\t\t\t// Turns fragments on and off globally\n\t\t\tfragments: true,\n\n\t\t\t// Flags if the presentation is running in an embedded mode,\n\t\t\t// i.e. contained within a limited portion of the screen\n\t\t\tembedded: false,\n\n\t\t\t// Flags if we should show a help overlay when the questionmark\n\t\t\t// key is pressed\n\t\t\thelp: true,\n\n\t\t\t// Flags if it should be possible to pause the presentation (blackout)\n\t\t\tpause: true,\n\n\t\t\t// Flags if speaker notes should be visible to all viewers\n\t\t\tshowNotes: false,\n\n\t\t\t// Number of milliseconds between automatically proceeding to the\n\t\t\t// next slide, disabled when set to 0, this value can be overwritten\n\t\t\t// by using a data-autoslide attribute on your slides\n\t\t\tautoSlide: 0,\n\n\t\t\t// Stop auto-sliding after user input\n\t\t\tautoSlideStoppable: true,\n\n\t\t\t// Enable slide navigation via mouse wheel\n\t\t\tmouseWheel: false,\n\n\t\t\t// Apply a 3D roll to links on hover\n\t\t\trollingLinks: false,\n\n\t\t\t// Hides the address bar on mobile devices\n\t\t\thideAddressBar: true,\n\n\t\t\t// Opens links in an iframe preview overlay\n\t\t\tpreviewLinks: false,\n\n\t\t\t// Exposes the reveal.js API through window.postMessage\n\t\t\tpostMessage: true,\n\n\t\t\t// Dispatches all reveal.js events to the parent window through postMessage\n\t\t\tpostMessageEvents: false,\n\n\t\t\t// Focuses body when page changes visiblity to ensure keyboard shortcuts work\n\t\t\tfocusBodyOnPageVisibilityChange: true,\n\n\t\t\t// Transition style\n\t\t\ttransition: 'slide', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Transition speed\n\t\t\ttransitionSpeed: 'default', // default/fast/slow\n\n\t\t\t// Transition style for full page slide backgrounds\n\t\t\tbackgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Parallax background image\n\t\t\tparallaxBackgroundImage: '', // CSS syntax, e.g. \"a.jpg\"\n\n\t\t\t// Parallax background size\n\t\t\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"3000px 2000px\"\n\n\t\t\t// Amount of pixels to move the parallax background per slide step\n\t\t\tparallaxBackgroundHorizontal: null,\n\t\t\tparallaxBackgroundVertical: null,\n\n\t\t\t// Number of slides away from the current that are visible\n\t\t\tviewDistance: 3,\n\n\t\t\t// Script dependencies to load\n\t\t\tdependencies: []\n\n\t\t},\n\n\t\t// Flags if reveal.js is loaded (has dispatched the 'ready' event)\n\t\tloaded = false,\n\n\t\t// Flags if the overview mode is currently active\n\t\toverview = false,\n\n\t\t// The horizontal and vertical index of the currently active slide\n\t\tindexh,\n\t\tindexv,\n\n\t\t// The previous and current slide HTML elements\n\t\tpreviousSlide,\n\t\tcurrentSlide,\n\n\t\tpreviousBackground,\n\n\t\t// Slides may hold a data-state attribute which we pick up and apply\n\t\t// as a class to the body. This list contains the combined state of\n\t\t// all current slides.\n\t\tstate = [],\n\n\t\t// The current scale of the presentation (see width/height config)\n\t\tscale = 1,\n\n\t\t// CSS transform that is currently applied to the slides container,\n\t\t// split into two groups\n\t\tslidesTransform = { layout: '', overview: '' },\n\n\t\t// Cached references to DOM elements\n\t\tdom = {},\n\n\t\t// Features supported by the browser, see #checkCapabilities()\n\t\tfeatures = {},\n\n\t\t// Client is a mobile device, see #checkCapabilities()\n\t\tisMobileDevice,\n\n\t\t// Throttles mouse wheel navigation\n\t\tlastMouseWheelStep = 0,\n\n\t\t// Delays updates to the URL due to a Chrome thumbnailer bug\n\t\twriteURLTimeout = 0,\n\n\t\t// Flags if the interaction event listeners are bound\n\t\teventsAreBound = false,\n\n\t\t// The current auto-slide duration\n\t\tautoSlide = 0,\n\n\t\t// Auto slide properties\n\t\tautoSlidePlayer,\n\t\tautoSlideTimeout = 0,\n\t\tautoSlideStartTime = -1,\n\t\tautoSlidePaused = false,\n\n\t\t// Holds information about the currently ongoing touch input\n\t\ttouch = {\n\t\t\tstartX: 0,\n\t\t\tstartY: 0,\n\t\t\tstartSpan: 0,\n\t\t\tstartCount: 0,\n\t\t\tcaptured: false,\n\t\t\tthreshold: 40\n\t\t},\n\n\t\t// Holds information about the keyboard shortcuts\n\t\tkeyboardShortcuts = {\n\t\t\t'N  ,  SPACE':\t\t\t'Next slide',\n\t\t\t'P':\t\t\t\t\t'Previous slide',\n\t\t\t'&#8592;  ,  H':\t\t'Navigate left',\n\t\t\t'&#8594;  ,  L':\t\t'Navigate right',\n\t\t\t'&#8593;  ,  K':\t\t'Navigate up',\n\t\t\t'&#8595;  ,  J':\t\t'Navigate down',\n\t\t\t'Home':\t\t\t\t\t'First slide',\n\t\t\t'End':\t\t\t\t\t'Last slide',\n\t\t\t'B  ,  .':\t\t\t\t'Pause',\n\t\t\t'F':\t\t\t\t\t'Fullscreen',\n\t\t\t'ESC, O':\t\t\t\t'Slide overview'\n\t\t};\n\n\t/**\n\t * Starts up the presentation if the client is capable.\n\t */\n\tfunction initialize( options ) {\n\n\t\tcheckCapabilities();\n\n\t\tif( !features.transforms2d && !features.transforms3d ) {\n\t\t\tdocument.body.setAttribute( 'class', 'no-transforms' );\n\n\t\t\t// Since JS won't be running any further, we load all lazy\n\t\t\t// loading elements upfront\n\t\t\tvar images = toArray( document.getElementsByTagName( 'img' ) ),\n\t\t\t\tiframes = toArray( document.getElementsByTagName( 'iframe' ) );\n\n\t\t\tvar lazyLoadable = images.concat( iframes );\n\n\t\t\tfor( var i = 0, len = lazyLoadable.length; i < len; i++ ) {\n\t\t\t\tvar element = lazyLoadable[i];\n\t\t\t\tif( element.getAttribute( 'data-src' ) ) {\n\t\t\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\t\t\telement.removeAttribute( 'data-src' );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If the browser doesn't support core features we won't be\n\t\t\t// using JavaScript to control the presentation\n\t\t\treturn;\n\t\t}\n\n\t\t// Cache references to key DOM elements\n\t\tdom.wrapper = document.querySelector( '.reveal' );\n\t\tdom.slides = document.querySelector( '.reveal .slides' );\n\n\t\t// Force a layout when the whole page, incl fonts, has loaded\n\t\twindow.addEventListener( 'load', layout, false );\n\n\t\tvar query = Reveal.getQueryHash();\n\n\t\t// Do not accept new dependencies via query config to avoid\n\t\t// the potential of malicious script injection\n\t\tif( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies'];\n\n\t\t// Copy options over to our config object\n\t\textend( config, options );\n\t\textend( config, query );\n\n\t\t// Hide the address bar in mobile browsers\n\t\thideAddressBar();\n\n\t\t// Loads the dependencies and continues to #start() once done\n\t\tload();\n\n\t}\n\n\t/**\n\t * Inspect the client to see what it's capable of, this\n\t * should only happens once per runtime.\n\t */\n\tfunction checkCapabilities() {\n\n\t\tfeatures.transforms3d = 'WebkitPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'msPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'OPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'perspective' in document.body.style;\n\n\t\tfeatures.transforms2d = 'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\t\tfeatures.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;\n\t\tfeatures.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function';\n\n\t\tfeatures.canvas = !!document.createElement( 'canvas' ).getContext;\n\n\t\tfeatures.touch = !!( 'ontouchstart' in window );\n\n\t\t// Transitions in the overview are disabled in desktop and\n\t\t// mobile Safari due to lag\n\t\tfeatures.overviewTransitions = !/Version\\/[\\d\\.]+.*Safari/.test( navigator.userAgent );\n\n\t\tisMobileDevice = /(iphone|ipod|ipad|android)/gi.test( navigator.userAgent );\n\n\t}\n\n    /**\n     * Loads the dependencies of reveal.js. Dependencies are\n     * defined via the configuration option 'dependencies'\n     * and will be loaded prior to starting/binding reveal.js.\n     * Some dependencies may have an 'async' flag, if so they\n     * will load after reveal.js has been started up.\n     */\n\tfunction load() {\n\n\t\tvar scripts = [],\n\t\t\tscriptsAsync = [],\n\t\t\tscriptsToPreload = 0;\n\n\t\t// Called once synchronous scripts finish loading\n\t\tfunction proceed() {\n\t\t\tif( scriptsAsync.length ) {\n\t\t\t\t// Load asynchronous scripts\n\t\t\t\thead.js.apply( null, scriptsAsync );\n\t\t\t}\n\n\t\t\tstart();\n\t\t}\n\n\t\tfunction loadScript( s ) {\n\t\t\thead.ready( s.src.match( /([\\w\\d_\\-]*)\\.?js$|[^\\\\\\/]*$/i )[0], function() {\n\t\t\t\t// Extension may contain callback functions\n\t\t\t\tif( typeof s.callback === 'function' ) {\n\t\t\t\t\ts.callback.apply( this );\n\t\t\t\t}\n\n\t\t\t\tif( --scriptsToPreload === 0 ) {\n\t\t\t\t\tproceed();\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfor( var i = 0, len = config.dependencies.length; i < len; i++ ) {\n\t\t\tvar s = config.dependencies[i];\n\n\t\t\t// Load if there's no condition or the condition is truthy\n\t\t\tif( !s.condition || s.condition() ) {\n\t\t\t\tif( s.async ) {\n\t\t\t\t\tscriptsAsync.push( s.src );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tscripts.push( s.src );\n\t\t\t\t}\n\n\t\t\t\tloadScript( s );\n\t\t\t}\n\t\t}\n\n\t\tif( scripts.length ) {\n\t\t\tscriptsToPreload = scripts.length;\n\n\t\t\t// Load synchronous scripts\n\t\t\thead.js.apply( null, scripts );\n\t\t}\n\t\telse {\n\t\t\tproceed();\n\t\t}\n\n\t}\n\n\t/**\n\t * Starts up reveal.js by binding input events and navigating\n\t * to the current URL deeplink if there is one.\n\t */\n\tfunction start() {\n\n\t\t// Make sure we've got all the DOM elements we need\n\t\tsetupDOM();\n\n\t\t// Listen to messages posted to this window\n\t\tsetupPostMessage();\n\n\t\t// Prevent iframes from scrolling the slides out of view\n\t\tsetupIframeScrollPrevention();\n\n\t\t// Resets all vertical slides so that only the first is visible\n\t\tresetVerticalSlides();\n\n\t\t// Updates the presentation to match the current configuration values\n\t\tconfigure();\n\n\t\t// Read the initial hash\n\t\treadURL();\n\n\t\t// Update all backgrounds\n\t\tupdateBackground( true );\n\n\t\t// Notify listeners that the presentation is ready but use a 1ms\n\t\t// timeout to ensure it's not fired synchronously after #initialize()\n\t\tsetTimeout( function() {\n\t\t\t// Enable transitions now that we're loaded\n\t\t\tdom.slides.classList.remove( 'no-transition' );\n\n\t\t\tloaded = true;\n\n\t\t\tdispatchEvent( 'ready', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\t\t}, 1 );\n\n\t\t// Special setup and config is required when printing to PDF\n\t\tif( isPrintingPDF() ) {\n\t\t\tremoveEventListeners();\n\n\t\t\t// The document needs to have loaded for the PDF layout\n\t\t\t// measurements to be accurate\n\t\t\tif( document.readyState === 'complete' ) {\n\t\t\t\tsetupPDF();\n\t\t\t}\n\t\t\telse {\n\t\t\t\twindow.addEventListener( 'load', setupPDF );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Finds and stores references to DOM elements which are\n\t * required by the presentation. If a required element is\n\t * not found, it is created.\n\t */\n\tfunction setupDOM() {\n\n\t\t// Prevent transitions while we're loading\n\t\tdom.slides.classList.add( 'no-transition' );\n\n\t\t// Background element\n\t\tdom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null );\n\n\t\t// Progress bar\n\t\tdom.progress = createSingletonNode( dom.wrapper, 'div', 'progress', '<span></span>' );\n\t\tdom.progressbar = dom.progress.querySelector( 'span' );\n\n\t\t// Arrow controls\n\t\tcreateSingletonNode( dom.wrapper, 'aside', 'controls',\n\t\t\t'<button class=\"navigate-left\" aria-label=\"previous slide\"></button>' +\n\t\t\t'<button class=\"navigate-right\" aria-label=\"next slide\"></button>' +\n\t\t\t'<button class=\"navigate-up\" aria-label=\"above slide\"></button>' +\n\t\t\t'<button class=\"navigate-down\" aria-label=\"below slide\"></button>' );\n\n\t\t// Slide number\n\t\tdom.slideNumber = createSingletonNode( dom.wrapper, 'div', 'slide-number', '' );\n\n\t\t// Element containing notes that are visible to the audience\n\t\tdom.speakerNotes = createSingletonNode( dom.wrapper, 'div', 'speaker-notes', null );\n\t\tdom.speakerNotes.setAttribute( 'data-prevent-swipe', '' );\n\n\t\t// Overlay graphic which is displayed during the paused mode\n\t\tcreateSingletonNode( dom.wrapper, 'div', 'pause-overlay', null );\n\n\t\t// Cache references to elements\n\t\tdom.controls = document.querySelector( '.reveal .controls' );\n\t\tdom.theme = document.querySelector( '#theme' );\n\n\t\tdom.wrapper.setAttribute( 'role', 'application' );\n\n\t\t// There can be multiple instances of controls throughout the page\n\t\tdom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );\n\t\tdom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) );\n\t\tdom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );\n\t\tdom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) );\n\t\tdom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) );\n\t\tdom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );\n\n\t\tdom.statusDiv = createStatusDiv();\n\t}\n\n\t/**\n\t * Creates a hidden div with role aria-live to announce the\n\t * current slide content. Hide the div off-screen to make it\n\t * available only to Assistive Technologies.\n\t */\n\tfunction createStatusDiv() {\n\n\t\tvar statusDiv = document.getElementById( 'aria-status-div' );\n\t\tif( !statusDiv ) {\n\t\t\tstatusDiv = document.createElement( 'div' );\n\t\t\tstatusDiv.style.position = 'absolute';\n\t\t\tstatusDiv.style.height = '1px';\n\t\t\tstatusDiv.style.width = '1px';\n\t\t\tstatusDiv.style.overflow ='hidden';\n\t\t\tstatusDiv.style.clip = 'rect( 1px, 1px, 1px, 1px )';\n\t\t\tstatusDiv.setAttribute( 'id', 'aria-status-div' );\n\t\t\tstatusDiv.setAttribute( 'aria-live', 'polite' );\n\t\t\tstatusDiv.setAttribute( 'aria-atomic','true' );\n\t\t\tdom.wrapper.appendChild( statusDiv );\n\t\t}\n\t\treturn statusDiv;\n\n\t}\n\n\t/**\n\t * Configures the presentation for printing to a static\n\t * PDF.\n\t */\n\tfunction setupPDF() {\n\n\t\tvar slideSize = getComputedSlideSize( window.innerWidth, window.innerHeight );\n\n\t\t// Dimensions of the PDF pages\n\t\tvar pageWidth = Math.floor( slideSize.width * ( 1 + config.margin ) ),\n\t\t\tpageHeight = Math.floor( slideSize.height * ( 1 + config.margin  ) );\n\n\t\t// Dimensions of slides within the pages\n\t\tvar slideWidth = slideSize.width,\n\t\t\tslideHeight = slideSize.height;\n\n\t\t// Let the browser know what page size we want to print\n\t\tinjectStyleSheet( '@page{size:'+ pageWidth +'px '+ pageHeight +'px; margin: 0;}' );\n\n\t\t// Limit the size of certain elements to the dimensions of the slide\n\t\tinjectStyleSheet( '.reveal section>img, .reveal section>video, .reveal section>iframe{max-width: '+ slideWidth +'px; max-height:'+ slideHeight +'px}' );\n\n\t\tdocument.body.classList.add( 'print-pdf' );\n\t\tdocument.body.style.width = pageWidth + 'px';\n\t\tdocument.body.style.height = pageHeight + 'px';\n\n\t\t// Add each slide's index as attributes on itself, we need these\n\t\t// indices to generate slide numbers below\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\n\t\t// Slide and slide background layout\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\n\t\t\t// Vertical stacks are not centred since their section\n\t\t\t// children will be\n\t\t\tif( slide.classList.contains( 'stack' ) === false ) {\n\t\t\t\t// Center the slide inside of the page, giving the slide some margin\n\t\t\t\tvar left = ( pageWidth - slideWidth ) / 2,\n\t\t\t\t\ttop = ( pageHeight - slideHeight ) / 2;\n\n\t\t\t\tvar contentHeight = getAbsoluteHeight( slide );\n\t\t\t\tvar numberOfPages = Math.max( Math.ceil( contentHeight / pageHeight ), 1 );\n\n\t\t\t\t// Center slides vertically\n\t\t\t\tif( numberOfPages === 1 && config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\ttop = Math.max( ( pageHeight - contentHeight ) / 2, 0 );\n\t\t\t\t}\n\n\t\t\t\t// Position the slide inside of the page\n\t\t\t\tslide.style.left = left + 'px';\n\t\t\t\tslide.style.top = top + 'px';\n\t\t\t\tslide.style.width = slideWidth + 'px';\n\n\t\t\t\t// TODO Backgrounds need to be multiplied when the slide\n\t\t\t\t// stretches over multiple pages\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background ) {\n\t\t\t\t\tbackground.style.width = pageWidth + 'px';\n\t\t\t\t\tbackground.style.height = ( pageHeight * numberOfPages ) + 'px';\n\t\t\t\t\tbackground.style.top = -top + 'px';\n\t\t\t\t\tbackground.style.left = -left + 'px';\n\t\t\t\t}\n\n\t\t\t\t// Inject notes if `showNotes` is enabled\n\t\t\t\tif( config.showNotes ) {\n\t\t\t\t\tvar notes = getSlideNotes( slide );\n\t\t\t\t\tif( notes ) {\n\t\t\t\t\t\tvar notesSpacing = 8;\n\t\t\t\t\t\tvar notesElement = document.createElement( 'div' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes-pdf' );\n\t\t\t\t\t\tnotesElement.innerHTML = notes;\n\t\t\t\t\t\tnotesElement.style.left = ( notesSpacing - left ) + 'px';\n\t\t\t\t\t\tnotesElement.style.bottom = ( notesSpacing - top ) + 'px';\n\t\t\t\t\t\tnotesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px';\n\t\t\t\t\t\tslide.appendChild( notesElement );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Inject slide numbers if `slideNumbers` are enabled\n\t\t\t\tif( config.slideNumber ) {\n\t\t\t\t\tvar slideNumberH = parseInt( slide.getAttribute( 'data-index-h' ), 10 ) + 1,\n\t\t\t\t\t\tslideNumberV = parseInt( slide.getAttribute( 'data-index-v' ), 10 ) + 1;\n\n\t\t\t\t\tvar numberElement = document.createElement( 'div' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number-pdf' );\n\t\t\t\t\tnumberElement.innerHTML = formatSlideNumber( slideNumberH, '.', slideNumberV );\n\t\t\t\t\tbackground.appendChild( numberElement );\n\t\t\t\t}\n\t\t\t}\n\n\t\t} );\n\n\t\t// Show all fragments\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' .fragment' ) ).forEach( function( fragment ) {\n\t\t\tfragment.classList.add( 'visible' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * This is an unfortunate necessity. Iframes can trigger the\n\t * parent window to scroll, for example by focusing an input.\n\t * This scrolling can not be prevented by hiding overflow in\n\t * CSS so we have to resort to repeatedly checking if the\n\t * browser has decided to offset our slides :(\n\t */\n\tfunction setupIframeScrollPrevention() {\n\n\t\tif( dom.slides.querySelector( 'iframe' ) ) {\n\t\t\tsetInterval( function() {\n\t\t\t\tif( dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) {\n\t\t\t\t\tdom.wrapper.scrollTop = 0;\n\t\t\t\t\tdom.wrapper.scrollLeft = 0;\n\t\t\t\t}\n\t\t\t}, 500 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates an HTML element and returns a reference to it.\n\t * If the element already exists the existing instance will\n\t * be returned.\n\t */\n\tfunction createSingletonNode( container, tagname, classname, innerHTML ) {\n\n\t\t// Find all nodes matching the description\n\t\tvar nodes = container.querySelectorAll( '.' + classname );\n\n\t\t// Check all matches to find one which is a direct child of\n\t\t// the specified container\n\t\tfor( var i = 0; i < nodes.length; i++ ) {\n\t\t\tvar testNode = nodes[i];\n\t\t\tif( testNode.parentNode === container ) {\n\t\t\t\treturn testNode;\n\t\t\t}\n\t\t}\n\n\t\t// If no node was found, create it now\n\t\tvar node = document.createElement( tagname );\n\t\tnode.classList.add( classname );\n\t\tif( typeof innerHTML === 'string' ) {\n\t\t\tnode.innerHTML = innerHTML;\n\t\t}\n\t\tcontainer.appendChild( node );\n\n\t\treturn node;\n\n\t}\n\n\t/**\n\t * Creates the slide background elements and appends them\n\t * to the background container. One element is created per\n\t * slide no matter if the given slide has visible background.\n\t */\n\tfunction createBackgrounds() {\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\t// Clear prior backgrounds\n\t\tdom.background.innerHTML = '';\n\t\tdom.background.classList.add( 'no-transition' );\n\n\t\t// Iterate over all horizontal slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( slideh ) {\n\n\t\t\tvar backgroundStack;\n\n\t\t\tif( printMode ) {\n\t\t\t\tbackgroundStack = createBackground( slideh, slideh );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundStack = createBackground( slideh, dom.background );\n\t\t\t}\n\n\t\t\t// Iterate over all vertical slides\n\t\t\ttoArray( slideh.querySelectorAll( 'section' ) ).forEach( function( slidev ) {\n\n\t\t\t\tif( printMode ) {\n\t\t\t\t\tcreateBackground( slidev, slidev );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tcreateBackground( slidev, backgroundStack );\n\t\t\t\t}\n\n\t\t\t\tbackgroundStack.classList.add( 'stack' );\n\n\t\t\t} );\n\n\t\t} );\n\n\t\t// Add parallax background if specified\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tdom.background.style.backgroundImage = 'url(\"' + config.parallaxBackgroundImage + '\")';\n\t\t\tdom.background.style.backgroundSize = config.parallaxBackgroundSize;\n\n\t\t\t// Make sure the below properties are set on the element - these properties are\n\t\t\t// needed for proper transitions to be set on the element via CSS. To remove\n\t\t\t// annoying background slide-in effect when the presentation starts, apply\n\t\t\t// these properties after short time delay\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.wrapper.classList.add( 'has-parallax-background' );\n\t\t\t}, 1 );\n\n\t\t}\n\t\telse {\n\n\t\t\tdom.background.style.backgroundImage = '';\n\t\t\tdom.wrapper.classList.remove( 'has-parallax-background' );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates a background for the given slide.\n\t *\n\t * @param {HTMLElement} slide\n\t * @param {HTMLElement} container The element that the background\n\t * should be appended to\n\t */\n\tfunction createBackground( slide, container ) {\n\n\t\tvar data = {\n\t\t\tbackground: slide.getAttribute( 'data-background' ),\n\t\t\tbackgroundSize: slide.getAttribute( 'data-background-size' ),\n\t\t\tbackgroundImage: slide.getAttribute( 'data-background-image' ),\n\t\t\tbackgroundVideo: slide.getAttribute( 'data-background-video' ),\n\t\t\tbackgroundIframe: slide.getAttribute( 'data-background-iframe' ),\n\t\t\tbackgroundColor: slide.getAttribute( 'data-background-color' ),\n\t\t\tbackgroundRepeat: slide.getAttribute( 'data-background-repeat' ),\n\t\t\tbackgroundPosition: slide.getAttribute( 'data-background-position' ),\n\t\t\tbackgroundTransition: slide.getAttribute( 'data-background-transition' )\n\t\t};\n\n\t\tvar element = document.createElement( 'div' );\n\n\t\t// Carry over custom classes from the slide to the background\n\t\telement.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' );\n\n\t\tif( data.background ) {\n\t\t\t// Auto-wrap image urls in url(...)\n\t\t\tif( /^(http|file|\\/\\/)/gi.test( data.background ) || /\\.(svg|png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) {\n\t\t\t\tslide.setAttribute( 'data-background-image', data.background );\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.background = data.background;\n\t\t\t}\n\t\t}\n\n\t\t// Create a hash for this combination of background settings.\n\t\t// This is used to determine when two slide backgrounds are\n\t\t// the same.\n\t\tif( data.background || data.backgroundColor || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) {\n\t\t\telement.setAttribute( 'data-background-hash', data.background +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundSize +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundImage +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundVideo +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundIframe +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundColor +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundRepeat +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundPosition +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundTransition );\n\t\t}\n\n\t\t// Additional and optional background properties\n\t\tif( data.backgroundSize ) element.style.backgroundSize = data.backgroundSize;\n\t\tif( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;\n\t\tif( data.backgroundRepeat ) element.style.backgroundRepeat = data.backgroundRepeat;\n\t\tif( data.backgroundPosition ) element.style.backgroundPosition = data.backgroundPosition;\n\t\tif( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );\n\n\t\tcontainer.appendChild( element );\n\n\t\t// If backgrounds are being recreated, clear old classes\n\t\tslide.classList.remove( 'has-dark-background' );\n\t\tslide.classList.remove( 'has-light-background' );\n\n\t\t// If this slide has a background color, add a class that\n\t\t// signals if it is light or dark. If the slide has no background\n\t\t// color, no class will be set\n\t\tvar computedBackgroundColor = window.getComputedStyle( element ).backgroundColor;\n\t\tif( computedBackgroundColor ) {\n\t\t\tvar rgb = colorToRgb( computedBackgroundColor );\n\n\t\t\t// Ignore fully transparent backgrounds. Some browsers return\n\t\t\t// rgba(0,0,0,0) when reading the computed background color of\n\t\t\t// an element with no background\n\t\t\tif( rgb && rgb.a !== 0 ) {\n\t\t\t\tif( colorBrightness( computedBackgroundColor ) < 128 ) {\n\t\t\t\t\tslide.classList.add( 'has-dark-background' );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.classList.add( 'has-light-background' );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn element;\n\n\t}\n\n\t/**\n\t * Registers a listener to postMessage events, this makes it\n\t * possible to call all reveal.js API methods from another\n\t * window. For example:\n\t *\n\t * revealWindow.postMessage( JSON.stringify({\n\t *   method: 'slide',\n\t *   args: [ 2 ]\n\t * }), '*' );\n\t */\n\tfunction setupPostMessage() {\n\n\t\tif( config.postMessage ) {\n\t\t\twindow.addEventListener( 'message', function ( event ) {\n\t\t\t\tvar data = event.data;\n\n\t\t\t\t// Make sure we're dealing with JSON\n\t\t\t\tif( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) {\n\t\t\t\t\tdata = JSON.parse( data );\n\n\t\t\t\t\t// Check if the requested method can be found\n\t\t\t\t\tif( data.method && typeof Reveal[data.method] === 'function' ) {\n\t\t\t\t\t\tReveal[data.method].apply( Reveal, data.args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies the configuration settings from the config\n\t * object. May be called multiple times.\n\t */\n\tfunction configure( options ) {\n\n\t\tvar numberOfSlides = dom.wrapper.querySelectorAll( SLIDES_SELECTOR ).length;\n\n\t\tdom.wrapper.classList.remove( config.transition );\n\n\t\t// New config options may be passed when this method\n\t\t// is invoked through the API after initialization\n\t\tif( typeof options === 'object' ) extend( config, options );\n\n\t\t// Force linear transition based on browser capabilities\n\t\tif( features.transforms3d === false ) config.transition = 'linear';\n\n\t\tdom.wrapper.classList.add( config.transition );\n\n\t\tdom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );\n\t\tdom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition );\n\n\t\tdom.controls.style.display = config.controls ? 'block' : 'none';\n\t\tdom.progress.style.display = config.progress ? 'block' : 'none';\n\t\tdom.slideNumber.style.display = config.slideNumber && !isPrintingPDF() ? 'block' : 'none';\n\n\t\tif( config.rtl ) {\n\t\t\tdom.wrapper.classList.add( 'rtl' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'rtl' );\n\t\t}\n\n\t\tif( config.center ) {\n\t\t\tdom.wrapper.classList.add( 'center' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'center' );\n\t\t}\n\n\t\t// Exit the paused mode if it was configured off\n\t\tif( config.pause === false ) {\n\t\t\tresume();\n\t\t}\n\n\t\tif( config.showNotes ) {\n\t\t\tdom.speakerNotes.classList.add( 'visible' );\n\t\t}\n\t\telse {\n\t\t\tdom.speakerNotes.classList.remove( 'visible' );\n\t\t}\n\n\t\tif( config.mouseWheel ) {\n\t\t\tdocument.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.addEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\t\telse {\n\t\t\tdocument.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\n\t\t// Rolling 3D links\n\t\tif( config.rollingLinks ) {\n\t\t\tenableRollingLinks();\n\t\t}\n\t\telse {\n\t\t\tdisableRollingLinks();\n\t\t}\n\n\t\t// Iframe link previews\n\t\tif( config.previewLinks ) {\n\t\t\tenablePreviewLinks();\n\t\t}\n\t\telse {\n\t\t\tdisablePreviewLinks();\n\t\t\tenablePreviewLinks( '[data-preview-link]' );\n\t\t}\n\n\t\t// Remove existing auto-slide controls\n\t\tif( autoSlidePlayer ) {\n\t\t\tautoSlidePlayer.destroy();\n\t\t\tautoSlidePlayer = null;\n\t\t}\n\n\t\t// Generate auto-slide controls if needed\n\t\tif( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) {\n\t\t\tautoSlidePlayer = new Playback( dom.wrapper, function() {\n\t\t\t\treturn Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 );\n\t\t\t} );\n\n\t\t\tautoSlidePlayer.on( 'click', onAutoSlidePlayerClick );\n\t\t\tautoSlidePaused = false;\n\t\t}\n\n\t\t// When fragments are turned off they should be visible\n\t\tif( config.fragments === false ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( '.fragment' ) ).forEach( function( element ) {\n\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t} );\n\t\t}\n\n\t\tsync();\n\n\t}\n\n\t/**\n\t * Binds all event listeners.\n\t */\n\tfunction addEventListeners() {\n\n\t\teventsAreBound = true;\n\n\t\twindow.addEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.addEventListener( 'resize', onWindowResize, false );\n\n\t\tif( config.touch ) {\n\t\t\tdom.wrapper.addEventListener( 'touchstart', onTouchStart, false );\n\t\t\tdom.wrapper.addEventListener( 'touchmove', onTouchMove, false );\n\t\t\tdom.wrapper.addEventListener( 'touchend', onTouchEnd, false );\n\n\t\t\t// Support pointer-style touch interaction as well\n\t\t\tif( window.navigator.pointerEnabled ) {\n\t\t\t\t// IE 11 uses un-prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'pointerdown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointermove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointerup', onPointerUp, false );\n\t\t\t}\n\t\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\t\t// IE 10 uses prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t\t}\n\t\t}\n\n\t\tif( config.keyboard ) {\n\t\t\tdocument.addEventListener( 'keydown', onDocumentKeyDown, false );\n\t\t\tdocument.addEventListener( 'keypress', onDocumentKeyPress, false );\n\t\t}\n\n\t\tif( config.progress && dom.progress ) {\n\t\t\tdom.progress.addEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\tif( config.focusBodyOnPageVisibilityChange ) {\n\t\t\tvar visibilityChange;\n\n\t\t\tif( 'hidden' in document ) {\n\t\t\t\tvisibilityChange = 'visibilitychange';\n\t\t\t}\n\t\t\telse if( 'msHidden' in document ) {\n\t\t\t\tvisibilityChange = 'msvisibilitychange';\n\t\t\t}\n\t\t\telse if( 'webkitHidden' in document ) {\n\t\t\t\tvisibilityChange = 'webkitvisibilitychange';\n\t\t\t}\n\n\t\t\tif( visibilityChange ) {\n\t\t\t\tdocument.addEventListener( visibilityChange, onPageVisibilityChange, false );\n\t\t\t}\n\t\t}\n\n\t\t// Listen to both touch and click events, in case the device\n\t\t// supports both\n\t\tvar pointerEvents = [ 'touchstart', 'click' ];\n\n\t\t// Only support touch for Android, fixes double navigations in\n\t\t// stock browser\n\t\tif( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tpointerEvents = [ 'touchstart' ];\n\t\t}\n\n\t\tpointerEvents.forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbinds all event listeners.\n\t */\n\tfunction removeEventListeners() {\n\n\t\teventsAreBound = false;\n\n\t\tdocument.removeEventListener( 'keydown', onDocumentKeyDown, false );\n\t\tdocument.removeEventListener( 'keypress', onDocumentKeyPress, false );\n\t\twindow.removeEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.removeEventListener( 'resize', onWindowResize, false );\n\n\t\tdom.wrapper.removeEventListener( 'touchstart', onTouchStart, false );\n\t\tdom.wrapper.removeEventListener( 'touchmove', onTouchMove, false );\n\t\tdom.wrapper.removeEventListener( 'touchend', onTouchEnd, false );\n\n\t\t// IE11\n\t\tif( window.navigator.pointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'pointerdown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointermove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointerup', onPointerUp, false );\n\t\t}\n\t\t// IE10\n\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t}\n\n\t\tif ( config.progress && dom.progress ) {\n\t\t\tdom.progress.removeEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\t[ 'touchstart', 'click' ].forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Extend object a with the properties of object b.\n\t * If there's a conflict, object b takes precedence.\n\t */\n\tfunction extend( a, b ) {\n\n\t\tfor( var i in b ) {\n\t\t\ta[ i ] = b[ i ];\n\t\t}\n\n\t}\n\n\t/**\n\t * Converts the target object to an array.\n\t */\n\tfunction toArray( o ) {\n\n\t\treturn Array.prototype.slice.call( o );\n\n\t}\n\n\t/**\n\t * Utility for deserializing a value.\n\t */\n\tfunction deserialize( value ) {\n\n\t\tif( typeof value === 'string' ) {\n\t\t\tif( value === 'null' ) return null;\n\t\t\telse if( value === 'true' ) return true;\n\t\t\telse if( value === 'false' ) return false;\n\t\t\telse if( value.match( /^\\d+$/ ) ) return parseFloat( value );\n\t\t}\n\n\t\treturn value;\n\n\t}\n\n\t/**\n\t * Measures the distance in pixels between point a\n\t * and point b.\n\t *\n\t * @param {Object} a point with x/y properties\n\t * @param {Object} b point with x/y properties\n\t */\n\tfunction distanceBetween( a, b ) {\n\n\t\tvar dx = a.x - b.x,\n\t\t\tdy = a.y - b.y;\n\n\t\treturn Math.sqrt( dx*dx + dy*dy );\n\n\t}\n\n\t/**\n\t * Applies a CSS transform to the target element.\n\t */\n\tfunction transformElement( element, transform ) {\n\n\t\telement.style.WebkitTransform = transform;\n\t\telement.style.MozTransform = transform;\n\t\telement.style.msTransform = transform;\n\t\telement.style.transform = transform;\n\n\t}\n\n\t/**\n\t * Applies CSS transforms to the slides container. The container\n\t * is transformed from two separate sources: layout and the overview\n\t * mode.\n\t */\n\tfunction transformSlides( transforms ) {\n\n\t\t// Pick up new transforms from arguments\n\t\tif( typeof transforms.layout === 'string' ) slidesTransform.layout = transforms.layout;\n\t\tif( typeof transforms.overview === 'string' ) slidesTransform.overview = transforms.overview;\n\n\t\t// Apply the transforms to the slides container\n\t\tif( slidesTransform.layout ) {\n\t\t\ttransformElement( dom.slides, slidesTransform.layout + ' ' + slidesTransform.overview );\n\t\t}\n\t\telse {\n\t\t\ttransformElement( dom.slides, slidesTransform.overview );\n\t\t}\n\n\t}\n\n\t/**\n\t * Injects the given CSS styles into the DOM.\n\t */\n\tfunction injectStyleSheet( value ) {\n\n\t\tvar tag = document.createElement( 'style' );\n\t\ttag.type = 'text/css';\n\t\tif( tag.styleSheet ) {\n\t\t\ttag.styleSheet.cssText = value;\n\t\t}\n\t\telse {\n\t\t\ttag.appendChild( document.createTextNode( value ) );\n\t\t}\n\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( tag );\n\n\t}\n\n\t/**\n\t * Converts various color input formats to an {r:0,g:0,b:0} object.\n\t *\n\t * @param {String} color The string representation of a color,\n\t * the following formats are supported:\n\t * - #000\n\t * - #000000\n\t * - rgb(0,0,0)\n\t */\n\tfunction colorToRgb( color ) {\n\n\t\tvar hex3 = color.match( /^#([0-9a-f]{3})$/i );\n\t\tif( hex3 && hex3[1] ) {\n\t\t\thex3 = hex3[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex3.charAt( 0 ), 16 ) * 0x11,\n\t\t\t\tg: parseInt( hex3.charAt( 1 ), 16 ) * 0x11,\n\t\t\t\tb: parseInt( hex3.charAt( 2 ), 16 ) * 0x11\n\t\t\t};\n\t\t}\n\n\t\tvar hex6 = color.match( /^#([0-9a-f]{6})$/i );\n\t\tif( hex6 && hex6[1] ) {\n\t\t\thex6 = hex6[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex6.substr( 0, 2 ), 16 ),\n\t\t\t\tg: parseInt( hex6.substr( 2, 2 ), 16 ),\n\t\t\t\tb: parseInt( hex6.substr( 4, 2 ), 16 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgb = color.match( /^rgb\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\)$/i );\n\t\tif( rgb ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgb[1], 10 ),\n\t\t\t\tg: parseInt( rgb[2], 10 ),\n\t\t\t\tb: parseInt( rgb[3], 10 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgba = color.match( /^rgba\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\,\\s*([\\d]+|[\\d]*.[\\d]+)\\s*\\)$/i );\n\t\tif( rgba ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgba[1], 10 ),\n\t\t\t\tg: parseInt( rgba[2], 10 ),\n\t\t\t\tb: parseInt( rgba[3], 10 ),\n\t\t\t\ta: parseFloat( rgba[4] )\n\t\t\t};\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Calculates brightness on a scale of 0-255.\n\t *\n\t * @param color See colorStringToRgb for supported formats.\n\t */\n\tfunction colorBrightness( color ) {\n\n\t\tif( typeof color === 'string' ) color = colorToRgb( color );\n\n\t\tif( color ) {\n\t\t\treturn ( color.r * 299 + color.g * 587 + color.b * 114 ) / 1000;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the height of the given element by looking\n\t * at the position and height of its immediate children.\n\t */\n\tfunction getAbsoluteHeight( element ) {\n\n\t\tvar height = 0;\n\n\t\tif( element ) {\n\t\t\tvar absoluteChildren = 0;\n\n\t\t\ttoArray( element.childNodes ).forEach( function( child ) {\n\n\t\t\t\tif( typeof child.offsetTop === 'number' && child.style ) {\n\t\t\t\t\t// Count # of abs children\n\t\t\t\t\tif( window.getComputedStyle( child ).position === 'absolute' ) {\n\t\t\t\t\t\tabsoluteChildren += 1;\n\t\t\t\t\t}\n\n\t\t\t\t\theight = Math.max( height, child.offsetTop + child.offsetHeight );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t// If there are no absolute children, use offsetHeight\n\t\t\tif( absoluteChildren === 0 ) {\n\t\t\t\theight = element.offsetHeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Returns the remaining height within the parent of the\n\t * target element.\n\t *\n\t * remaining height = [ configured parent height ] - [ current parent height ]\n\t */\n\tfunction getRemainingHeight( element, height ) {\n\n\t\theight = height || 0;\n\n\t\tif( element ) {\n\t\t\tvar newHeight, oldHeight = element.style.height;\n\n\t\t\t// Change the .stretch element height to 0 in order find the height of all\n\t\t\t// the other elements\n\t\t\telement.style.height = '0px';\n\t\t\tnewHeight = height - element.parentNode.offsetHeight;\n\n\t\t\t// Restore the old height, just in case\n\t\t\telement.style.height = oldHeight + 'px';\n\n\t\t\treturn newHeight;\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Checks if this instance is being used to print a PDF.\n\t */\n\tfunction isPrintingPDF() {\n\n\t\treturn ( /print-pdf/gi ).test( window.location.search );\n\n\t}\n\n\t/**\n\t * Hides the address bar if we're on a mobile device.\n\t */\n\tfunction hideAddressBar() {\n\n\t\tif( config.hideAddressBar && isMobileDevice ) {\n\t\t\t// Events that should trigger the address bar to hide\n\t\t\twindow.addEventListener( 'load', removeAddressBar, false );\n\t\t\twindow.addEventListener( 'orientationchange', removeAddressBar, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Causes the address bar to hide on mobile devices,\n\t * more vertical space ftw.\n\t */\n\tfunction removeAddressBar() {\n\n\t\tsetTimeout( function() {\n\t\t\twindow.scrollTo( 0, 1 );\n\t\t}, 10 );\n\n\t}\n\n\t/**\n\t * Dispatches an event of the specified type from the\n\t * reveal DOM element.\n\t */\n\tfunction dispatchEvent( type, args ) {\n\n\t\tvar event = document.createEvent( 'HTMLEvents', 1, 2 );\n\t\tevent.initEvent( type, true, true );\n\t\textend( event, args );\n\t\tdom.wrapper.dispatchEvent( event );\n\n\t\t// If we're in an iframe, post each reveal.js event to the\n\t\t// parent window. Used by the notes plugin\n\t\tif( config.postMessageEvents && window.parent !== window.self ) {\n\t\t\twindow.parent.postMessage( JSON.stringify({ namespace: 'reveal', eventName: type, state: getState() }), '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Wrap all links in 3D goodness.\n\t */\n\tfunction enableRollingLinks() {\n\n\t\tif( features.transforms3d && !( 'msPerspective' in document.body.style ) ) {\n\t\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a' );\n\n\t\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\t\tvar anchor = anchors[i];\n\n\t\t\t\tif( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {\n\t\t\t\t\tvar span = document.createElement('span');\n\t\t\t\t\tspan.setAttribute('data-title', anchor.text);\n\t\t\t\t\tspan.innerHTML = anchor.innerHTML;\n\n\t\t\t\t\tanchor.classList.add( 'roll' );\n\t\t\t\t\tanchor.innerHTML = '';\n\t\t\t\t\tanchor.appendChild(span);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Unwrap all 3D links.\n\t */\n\tfunction disableRollingLinks() {\n\n\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );\n\n\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\tvar anchor = anchors[i];\n\t\t\tvar span = anchor.querySelector( 'span' );\n\n\t\t\tif( span ) {\n\t\t\t\tanchor.classList.remove( 'roll' );\n\t\t\t\tanchor.innerHTML = span.innerHTML;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Bind preview frame links.\n\t */\n\tfunction enablePreviewLinks( selector ) {\n\n\t\tvar anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.addEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbind preview frame links.\n\t */\n\tfunction disablePreviewLinks() {\n\n\t\tvar anchors = toArray( document.querySelectorAll( 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.removeEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Opens a preview window for the target URL.\n\t */\n\tfunction showPreview( url ) {\n\n\t\tcloseOverlay();\n\n\t\tdom.overlay = document.createElement( 'div' );\n\t\tdom.overlay.classList.add( 'overlay' );\n\t\tdom.overlay.classList.add( 'overlay-preview' );\n\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\tdom.overlay.innerHTML = [\n\t\t\t'<header>',\n\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'<a class=\"external\" href=\"'+ url +'\" target=\"_blank\"><span class=\"icon\"></span></a>',\n\t\t\t'</header>',\n\t\t\t'<div class=\"spinner\"></div>',\n\t\t\t'<div class=\"viewport\">',\n\t\t\t\t'<iframe src=\"'+ url +'\"></iframe>',\n\t\t\t'</div>'\n\t\t].join('');\n\n\t\tdom.overlay.querySelector( 'iframe' ).addEventListener( 'load', function( event ) {\n\t\t\tdom.overlay.classList.add( 'loaded' );\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t\tevent.preventDefault();\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.external' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t}, false );\n\n\t\tsetTimeout( function() {\n\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Opens a overlay window with help material.\n\t */\n\tfunction showHelp() {\n\n\t\tif( config.help ) {\n\n\t\t\tcloseOverlay();\n\n\t\t\tdom.overlay = document.createElement( 'div' );\n\t\t\tdom.overlay.classList.add( 'overlay' );\n\t\t\tdom.overlay.classList.add( 'overlay-help' );\n\t\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\t\tvar html = '<p class=\"title\">Keyboard Shortcuts</p><br/>';\n\n\t\t\thtml += '<table><th>KEY</th><th>ACTION</th>';\n\t\t\tfor( var key in keyboardShortcuts ) {\n\t\t\t\thtml += '<tr><td>' + key + '</td><td>' + keyboardShortcuts[ key ] + '</td></tr>';\n\t\t\t}\n\n\t\t\thtml += '</table>';\n\n\t\t\tdom.overlay.innerHTML = [\n\t\t\t\t'<header>',\n\t\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'</header>',\n\t\t\t\t'<div class=\"viewport\">',\n\t\t\t\t\t'<div class=\"viewport-inner\">'+ html +'</div>',\n\t\t\t\t'</div>'\n\t\t\t].join('');\n\n\t\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\t\tcloseOverlay();\n\t\t\t\tevent.preventDefault();\n\t\t\t}, false );\n\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t\t}, 1 );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Closes any currently open overlay.\n\t */\n\tfunction closeOverlay() {\n\n\t\tif( dom.overlay ) {\n\t\t\tdom.overlay.parentNode.removeChild( dom.overlay );\n\t\t\tdom.overlay = null;\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies JavaScript-controlled layout rules to the\n\t * presentation.\n\t */\n\tfunction layout() {\n\n\t\tif( dom.wrapper && !isPrintingPDF() ) {\n\n\t\t\tvar size = getComputedSlideSize();\n\n\t\t\tvar slidePadding = 20; // TODO Dig this out of DOM\n\n\t\t\t// Layout the contents of the slides\n\t\t\tlayoutSlideContents( config.width, config.height, slidePadding );\n\n\t\t\tdom.slides.style.width = size.width + 'px';\n\t\t\tdom.slides.style.height = size.height + 'px';\n\n\t\t\t// Determine scale of content to fit within available space\n\t\t\tscale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height );\n\n\t\t\t// Respect max/min scale settings\n\t\t\tscale = Math.max( scale, config.minScale );\n\t\t\tscale = Math.min( scale, config.maxScale );\n\n\t\t\t// Don't apply any scaling styles if scale is 1\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\tdom.slides.style.left = '';\n\t\t\t\tdom.slides.style.top = '';\n\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\tdom.slides.style.right = '';\n\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Use zoom to scale up in desktop Chrome so that content\n\t\t\t\t// remains crisp. We don't use zoom to scale down since that\n\t\t\t\t// can lead to shifts in text layout/line breaks.\n\t\t\t\tif( scale > 1 && !isMobileDevice && /chrome/i.test( navigator.userAgent ) && typeof dom.slides.style.zoom !== 'undefined' ) {\n\t\t\t\t\tdom.slides.style.zoom = scale;\n\t\t\t\t\tdom.slides.style.left = '';\n\t\t\t\t\tdom.slides.style.top = '';\n\t\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\t\tdom.slides.style.right = '';\n\t\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t\t}\n\t\t\t\t// Apply scale transform as a fallback\n\t\t\t\telse {\n\t\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\t\tdom.slides.style.left = '50%';\n\t\t\t\t\tdom.slides.style.top = '50%';\n\t\t\t\t\tdom.slides.style.bottom = 'auto';\n\t\t\t\t\tdom.slides.style.right = 'auto';\n\t\t\t\t\ttransformSlides( { layout: 'translate(-50%, -50%) scale('+ scale +')' } );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Select all slides, vertical and horizontal\n\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) );\n\n\t\t\tfor( var i = 0, len = slides.length; i < len; i++ ) {\n\t\t\t\tvar slide = slides[ i ];\n\n\t\t\t\t// Don't bother updating invisible slides\n\t\t\t\tif( slide.style.display === 'none' ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\t// Vertical stacks are not centred since their section\n\t\t\t\t\t// children will be\n\t\t\t\t\tif( slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\t\tslide.style.top = 0;\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tslide.style.top = Math.max( ( ( size.height - getAbsoluteHeight( slide ) ) / 2 ) - slidePadding, 0 ) + 'px';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.style.top = '';\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tupdateProgress();\n\t\t\tupdateParallax();\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies layout logic to the contents of all slides in\n\t * the presentation.\n\t */\n\tfunction layoutSlideContents( width, height, padding ) {\n\n\t\t// Handle sizing of elements with the 'stretch' class\n\t\ttoArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) {\n\n\t\t\t// Determine how much vertical space we can use\n\t\t\tvar remainingHeight = getRemainingHeight( element, height );\n\n\t\t\t// Consider the aspect ratio of media elements\n\t\t\tif( /(img|video)/gi.test( element.nodeName ) ) {\n\t\t\t\tvar nw = element.naturalWidth || element.videoWidth,\n\t\t\t\t\tnh = element.naturalHeight || element.videoHeight;\n\n\t\t\t\tvar es = Math.min( width / nw, remainingHeight / nh );\n\n\t\t\t\telement.style.width = ( nw * es ) + 'px';\n\t\t\t\telement.style.height = ( nh * es ) + 'px';\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.width = width + 'px';\n\t\t\t\telement.style.height = remainingHeight + 'px';\n\t\t\t}\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Calculates the computed pixel size of our slides. These\n\t * values are based on the width and height configuration\n\t * options.\n\t */\n\tfunction getComputedSlideSize( presentationWidth, presentationHeight ) {\n\n\t\tvar size = {\n\t\t\t// Slide size\n\t\t\twidth: config.width,\n\t\t\theight: config.height,\n\n\t\t\t// Presentation size\n\t\t\tpresentationWidth: presentationWidth || dom.wrapper.offsetWidth,\n\t\t\tpresentationHeight: presentationHeight || dom.wrapper.offsetHeight\n\t\t};\n\n\t\t// Reduce available space by margin\n\t\tsize.presentationWidth -= ( size.presentationWidth * config.margin );\n\t\tsize.presentationHeight -= ( size.presentationHeight * config.margin );\n\n\t\t// Slide width may be a percentage of available width\n\t\tif( typeof size.width === 'string' && /%$/.test( size.width ) ) {\n\t\t\tsize.width = parseInt( size.width, 10 ) / 100 * size.presentationWidth;\n\t\t}\n\n\t\t// Slide height may be a percentage of available height\n\t\tif( typeof size.height === 'string' && /%$/.test( size.height ) ) {\n\t\t\tsize.height = parseInt( size.height, 10 ) / 100 * size.presentationHeight;\n\t\t}\n\n\t\treturn size;\n\n\t}\n\n\t/**\n\t * Stores the vertical index of a stack so that the same\n\t * vertical slide can be selected when navigating to and\n\t * from the stack.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t * @param {int} v Index to memorize\n\t */\n\tfunction setPreviousVerticalIndex( stack, v ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {\n\t\t\tstack.setAttribute( 'data-previous-indexv', v || 0 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the vertical index which was stored using\n\t * #setPreviousVerticalIndex() or 0 if no previous index\n\t * exists.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t */\n\tfunction getPreviousVerticalIndex( stack ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {\n\t\t\t// Prefer manually defined start-indexv\n\t\t\tvar attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv';\n\n\t\t\treturn parseInt( stack.getAttribute( attributeName ) || 0, 10 );\n\t\t}\n\n\t\treturn 0;\n\n\t}\n\n\t/**\n\t * Displays the overview of slides (quick nav) by scaling\n\t * down and arranging all slide elements.\n\t */\n\tfunction activateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview && !isOverview() ) {\n\n\t\t\toverview = true;\n\n\t\t\tdom.wrapper.classList.add( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\n\t\t\tif( features.overviewTransitions ) {\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tdom.wrapper.classList.add( 'overview-animated' );\n\t\t\t\t}, 1 );\n\t\t\t}\n\n\t\t\t// Don't auto-slide while in overview mode\n\t\t\tcancelAutoSlide();\n\n\t\t\t// Move the backgrounds element into the slide container to\n\t\t\t// that the same scaling is applied\n\t\t\tdom.slides.appendChild( dom.background );\n\n\t\t\t// Clicking on an overview slide navigates to it\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\tif( !slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\tslide.addEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tupdateSlidesVisibility();\n\t\t\tlayoutOverview();\n\t\t\tupdateOverview();\n\n\t\t\tlayout();\n\n\t\t\t// Notify observers of the overview showing\n\t\t\tdispatchEvent( 'overviewshown', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Uses CSS transforms to position all slides in a grid for\n\t * display inside of the overview mode.\n\t */\n\tfunction layoutOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\t// Layout slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\t\t\ttransformElement( hslide, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\n\t\t\t\t\ttransformElement( vslide, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t\t} );\n\n\t\t\t}\n\t\t} );\n\n\t\t// Layout slide backgrounds\n\t\ttoArray( dom.background.childNodes ).forEach( function( hbackground, h ) {\n\t\t\ttransformElement( hbackground, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\ttoArray( hbackground.querySelectorAll( '.slide-background' ) ).forEach( function( vbackground, v ) {\n\t\t\t\ttransformElement( vbackground, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Moves the overview viewport to the current slides.\n\t * Called each time the current slide changes.\n\t */\n\tfunction updateOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\ttransformSlides( {\n\t\t\toverview: [\n\t\t\t\t'translateX('+ ( -indexh * slideWidth ) +'px)',\n\t\t\t\t'translateY('+ ( -indexv * slideHeight ) +'px)',\n\t\t\t\t'translateZ('+ ( window.innerWidth < 400 ? -1000 : -2500 ) +'px)'\n\t\t\t].join( ' ' )\n\t\t} );\n\n\t}\n\n\t/**\n\t * Exits the slide overview and enters the currently\n\t * active slide.\n\t */\n\tfunction deactivateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview ) {\n\n\t\t\toverview = false;\n\n\t\t\tdom.wrapper.classList.remove( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-animated' );\n\n\t\t\t// Temporarily add a class so that transitions can do different things\n\t\t\t// depending on whether they are exiting/entering overview, or just\n\t\t\t// moving from slide to slide\n\t\t\tdom.wrapper.classList.add( 'overview-deactivating' );\n\n\t\t\tsetTimeout( function () {\n\t\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\t\t\t}, 1 );\n\n\t\t\t// Move the background element back out\n\t\t\tdom.wrapper.appendChild( dom.background );\n\n\t\t\t// Clean up changes made to slides\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\ttransformElement( slide, '' );\n\n\t\t\t\tslide.removeEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t} );\n\n\t\t\t// Clean up changes made to backgrounds\n\t\t\ttoArray( dom.background.querySelectorAll( '.slide-background' ) ).forEach( function( background ) {\n\t\t\t\ttransformElement( background, '' );\n\t\t\t} );\n\n\t\t\ttransformSlides( { overview: '' } );\n\n\t\t\tslide( indexh, indexv );\n\n\t\t\tlayout();\n\n\t\t\tcueAutoSlide();\n\n\t\t\t// Notify observers of the overview hiding\n\t\t\tdispatchEvent( 'overviewhidden', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\t}\n\n\t/**\n\t * Toggles the slide overview mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which overrides the\n\t * toggle logic and forcibly sets the desired state. True means\n\t * overview is open, false means it's closed.\n\t */\n\tfunction toggleOverview( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? activateOverview() : deactivateOverview();\n\t\t}\n\t\telse {\n\t\t\tisOverview() ? deactivateOverview() : activateOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the overview is currently active.\n\t *\n\t * @return {Boolean} true if the overview is active,\n\t * false otherwise\n\t */\n\tfunction isOverview() {\n\n\t\treturn overview;\n\n\t}\n\n\t/**\n\t * Checks if the current or specified slide is vertical\n\t * (nested within another slide).\n\t *\n\t * @param {HTMLElement} slide [optional] The slide to check\n\t * orientation of\n\t */\n\tfunction isVerticalSlide( slide ) {\n\n\t\t// Prefer slide argument, otherwise use current slide\n\t\tslide = slide ? slide : currentSlide;\n\n\t\treturn slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i );\n\n\t}\n\n\t/**\n\t * Handling the fullscreen functionality via the fullscreen API\n\t *\n\t * @see http://fullscreen.spec.whatwg.org/\n\t * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode\n\t */\n\tfunction enterFullscreen() {\n\n\t\tvar element = document.body;\n\n\t\t// Check which implementation is available\n\t\tvar requestMethod = element.requestFullScreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullscreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullScreen ||\n\t\t\t\t\t\t\telement.mozRequestFullScreen ||\n\t\t\t\t\t\t\telement.msRequestFullscreen;\n\n\t\tif( requestMethod ) {\n\t\t\trequestMethod.apply( element );\n\t\t}\n\n\t}\n\n\t/**\n\t * Enters the paused mode which fades everything on screen to\n\t * black.\n\t */\n\tfunction pause() {\n\n\t\tif( config.pause ) {\n\t\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\n\t\t\tcancelAutoSlide();\n\t\t\tdom.wrapper.classList.add( 'paused' );\n\n\t\t\tif( wasPaused === false ) {\n\t\t\t\tdispatchEvent( 'paused' );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Exits from the paused mode.\n\t */\n\tfunction resume() {\n\n\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\t\tdom.wrapper.classList.remove( 'paused' );\n\n\t\tcueAutoSlide();\n\n\t\tif( wasPaused ) {\n\t\t\tdispatchEvent( 'resumed' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Toggles the paused mode on and off.\n\t */\n\tfunction togglePause( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? pause() : resume();\n\t\t}\n\t\telse {\n\t\t\tisPaused() ? resume() : pause();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if we are currently in the paused mode.\n\t */\n\tfunction isPaused() {\n\n\t\treturn dom.wrapper.classList.contains( 'paused' );\n\n\t}\n\n\t/**\n\t * Toggles the auto slide mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which sets the desired state.\n\t * True means autoplay starts, false means it stops.\n\t */\n\n\tfunction toggleAutoSlide( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t\telse {\n\t\t\tautoSlidePaused ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the auto slide mode is currently on.\n\t */\n\tfunction isAutoSliding() {\n\n\t\treturn !!( autoSlide && !autoSlidePaused );\n\n\t}\n\n\t/**\n\t * Steps from the current point in the presentation to the\n\t * slide which matches the specified horizontal and vertical\n\t * indices.\n\t *\n\t * @param {int} h Horizontal index of the target slide\n\t * @param {int} v Vertical index of the target slide\n\t * @param {int} f Optional index of a fragment within the\n\t * target slide to activate\n\t * @param {int} o Optional origin for use in multimaster environments\n\t */\n\tfunction slide( h, v, f, o ) {\n\n\t\t// Remember where we were at before\n\t\tpreviousSlide = currentSlide;\n\n\t\t// Query all horizontal slides in the deck\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );\n\n\t\t// If no vertical index is specified and the upcoming slide is a\n\t\t// stack, resume at its previous vertical index\n\t\tif( v === undefined && !isOverview() ) {\n\t\t\tv = getPreviousVerticalIndex( horizontalSlides[ h ] );\n\t\t}\n\n\t\t// If we were on a vertical stack, remember what vertical index\n\t\t// it was on so we can resume at the same position when returning\n\t\tif( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {\n\t\t\tsetPreviousVerticalIndex( previousSlide.parentNode, indexv );\n\t\t}\n\n\t\t// Remember the state before this slide\n\t\tvar stateBefore = state.concat();\n\n\t\t// Reset the state array\n\t\tstate.length = 0;\n\n\t\tvar indexhBefore = indexh || 0,\n\t\t\tindexvBefore = indexv || 0;\n\n\t\t// Activate and transition to the new slide\n\t\tindexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );\n\t\tindexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );\n\n\t\t// Update the visibility of slides now that the indices have changed\n\t\tupdateSlidesVisibility();\n\n\t\tlayout();\n\n\t\t// Apply the new state\n\t\tstateLoop: for( var i = 0, len = state.length; i < len; i++ ) {\n\t\t\t// Check if this state existed on the previous slide. If it\n\t\t\t// did, we will avoid adding it repeatedly\n\t\t\tfor( var j = 0; j < stateBefore.length; j++ ) {\n\t\t\t\tif( stateBefore[j] === state[i] ) {\n\t\t\t\t\tstateBefore.splice( j, 1 );\n\t\t\t\t\tcontinue stateLoop;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdocument.documentElement.classList.add( state[i] );\n\n\t\t\t// Dispatch custom event matching the state's name\n\t\t\tdispatchEvent( state[i] );\n\t\t}\n\n\t\t// Clean up the remains of the previous state\n\t\twhile( stateBefore.length ) {\n\t\t\tdocument.documentElement.classList.remove( stateBefore.pop() );\n\t\t}\n\n\t\t// Update the overview if it's currently active\n\t\tif( isOverview() ) {\n\t\t\tupdateOverview();\n\t\t}\n\n\t\t// Find the current horizontal slide and any possible vertical slides\n\t\t// within it\n\t\tvar currentHorizontalSlide = horizontalSlides[ indexh ],\n\t\t\tcurrentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );\n\n\t\t// Store references to the previous and current slides\n\t\tcurrentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;\n\n\t\t// Show fragment, if specified\n\t\tif( typeof f !== 'undefined' ) {\n\t\t\tnavigateFragment( f );\n\t\t}\n\n\t\t// Dispatch an event if the slide changed\n\t\tvar slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore );\n\t\tif( slideChanged ) {\n\t\t\tdispatchEvent( 'slidechanged', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'previousSlide': previousSlide,\n\t\t\t\t'currentSlide': currentSlide,\n\t\t\t\t'origin': o\n\t\t\t} );\n\t\t}\n\t\telse {\n\t\t\t// Ensure that the previous slide is never the same as the current\n\t\t\tpreviousSlide = null;\n\t\t}\n\n\t\t// Solves an edge case where the previous slide maintains the\n\t\t// 'present' class when navigating between adjacent vertical\n\t\t// stacks\n\t\tif( previousSlide ) {\n\t\t\tpreviousSlide.classList.remove( 'present' );\n\t\t\tpreviousSlide.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t// Reset all slides upon navigate to home\n\t\t\t// Issue: #285\n\t\t\tif ( dom.wrapper.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) {\n\t\t\t\t// Launch async task\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i;\n\t\t\t\t\tfor( i in slides ) {\n\t\t\t\t\t\tif( slides[i] ) {\n\t\t\t\t\t\t\t// Reset stack\n\t\t\t\t\t\t\tsetPreviousVerticalIndex( slides[i], 0 );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}, 0 );\n\t\t\t}\n\t\t}\n\n\t\t// Handle embedded content\n\t\tif( slideChanged || !previousSlide ) {\n\t\t\tstopEmbeddedContent( previousSlide );\n\t\t\tstartEmbeddedContent( currentSlide );\n\t\t}\n\n\t\t// Announce the current slide contents, for screen readers\n\t\tdom.statusDiv.textContent = currentSlide.textContent;\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground();\n\t\tupdateParallax();\n\t\tupdateSlideNumber();\n\t\tupdateNotes();\n\n\t\t// Update the URL hash\n\t\twriteURL();\n\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Syncs the presentation with the current DOM. Useful\n\t * when new slides or control elements are added or when\n\t * the configuration has changed.\n\t */\n\tfunction sync() {\n\n\t\t// Subscribe to input\n\t\tremoveEventListeners();\n\t\taddEventListeners();\n\n\t\t// Force a layout to make sure the current config is accounted for\n\t\tlayout();\n\n\t\t// Reflect the current autoSlide value\n\t\tautoSlide = config.autoSlide;\n\n\t\t// Start auto-sliding if it's enabled\n\t\tcueAutoSlide();\n\n\t\t// Re-create the slide backgrounds\n\t\tcreateBackgrounds();\n\n\t\t// Write the current hash to the URL\n\t\twriteURL();\n\n\t\tsortAllFragments();\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground( true );\n\t\tupdateSlideNumber();\n\t\tupdateSlidesVisibility();\n\t\tupdateNotes();\n\n\t\tformatEmbeddedContent();\n\t\tstartEmbeddedContent( currentSlide );\n\n\t\tif( isOverview() ) {\n\t\t\tlayoutOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Resets all vertical slides so that only the first\n\t * is visible.\n\t */\n\tfunction resetVerticalSlides() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tif( y > 0 ) {\n\t\t\t\t\tverticalSlide.classList.remove( 'present' );\n\t\t\t\t\tverticalSlide.classList.remove( 'past' );\n\t\t\t\t\tverticalSlide.classList.add( 'future' );\n\t\t\t\t\tverticalSlide.setAttribute( 'aria-hidden', 'true' );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Sorts and formats all of fragments in the\n\t * presentation.\n\t */\n\tfunction sortAllFragments() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tsortFragments( verticalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t\t} );\n\n\t\t\tif( verticalSlides.length === 0 ) sortFragments( horizontalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Updates one dimension of slides by showing the slide\n\t * with the specified index.\n\t *\n\t * @param {String} selector A CSS selector that will fetch\n\t * the group of slides we are working with\n\t * @param {Number} index The index of the slide that should be\n\t * shown\n\t *\n\t * @return {Number} The index of the slide that is now shown,\n\t * might differ from the passed in index if it was out of\n\t * bounds.\n\t */\n\tfunction updateSlides( selector, index ) {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar slides = toArray( dom.wrapper.querySelectorAll( selector ) ),\n\t\t\tslidesLength = slides.length;\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\tif( slidesLength ) {\n\n\t\t\t// Should the index loop?\n\t\t\tif( config.loop ) {\n\t\t\t\tindex %= slidesLength;\n\n\t\t\t\tif( index < 0 ) {\n\t\t\t\t\tindex = slidesLength + index;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Enforce max and minimum index bounds\n\t\t\tindex = Math.max( Math.min( index, slidesLength - 1 ), 0 );\n\n\t\t\tfor( var i = 0; i < slidesLength; i++ ) {\n\t\t\t\tvar element = slides[i];\n\n\t\t\t\tvar reverse = config.rtl && !isVerticalSlide( element );\n\n\t\t\t\telement.classList.remove( 'past' );\n\t\t\t\telement.classList.remove( 'present' );\n\t\t\t\telement.classList.remove( 'future' );\n\n\t\t\t\t// http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute\n\t\t\t\telement.setAttribute( 'hidden', '' );\n\t\t\t\telement.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t\t// If this element contains vertical slides\n\t\t\t\tif( element.querySelector( 'section' ) ) {\n\t\t\t\t\telement.classList.add( 'stack' );\n\t\t\t\t}\n\n\t\t\t\t// If we're printing static slides, all slides are \"present\"\n\t\t\t\tif( printMode ) {\n\t\t\t\t\telement.classList.add( 'present' );\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( i < index ) {\n\t\t\t\t\t// Any element previous to index is given the 'past' class\n\t\t\t\t\telement.classList.add( reverse ? 'future' : 'past' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar pastFragments = toArray( element.querySelectorAll( '.fragment' ) );\n\n\t\t\t\t\t\t// Show all fragments on prior slides\n\t\t\t\t\t\twhile( pastFragments.length ) {\n\t\t\t\t\t\t\tvar pastFragment = pastFragments.pop();\n\t\t\t\t\t\t\tpastFragment.classList.add( 'visible' );\n\t\t\t\t\t\t\tpastFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( i > index ) {\n\t\t\t\t\t// Any element subsequent to index is given the 'future' class\n\t\t\t\t\telement.classList.add( reverse ? 'past' : 'future' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar futureFragments = toArray( element.querySelectorAll( '.fragment.visible' ) );\n\n\t\t\t\t\t\t// No fragments in future slides should be visible ahead of time\n\t\t\t\t\t\twhile( futureFragments.length ) {\n\t\t\t\t\t\t\tvar futureFragment = futureFragments.pop();\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'visible' );\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Mark the current slide as present\n\t\t\tslides[index].classList.add( 'present' );\n\t\t\tslides[index].removeAttribute( 'hidden' );\n\t\t\tslides[index].removeAttribute( 'aria-hidden' );\n\n\t\t\t// If this slide has a state associated with it, add it\n\t\t\t// onto the current state of the deck\n\t\t\tvar slideState = slides[index].getAttribute( 'data-state' );\n\t\t\tif( slideState ) {\n\t\t\t\tstate = state.concat( slideState.split( ' ' ) );\n\t\t\t}\n\n\t\t}\n\t\telse {\n\t\t\t// Since there are no slides we can't be anywhere beyond the\n\t\t\t// zeroth index\n\t\t\tindex = 0;\n\t\t}\n\n\t\treturn index;\n\n\t}\n\n\t/**\n\t * Optimization method; hide all slides that are far away\n\t * from the present slide.\n\t */\n\tfunction updateSlidesVisibility() {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ),\n\t\t\thorizontalSlidesLength = horizontalSlides.length,\n\t\t\tdistanceX,\n\t\t\tdistanceY;\n\n\t\tif( horizontalSlidesLength && typeof indexh !== 'undefined' ) {\n\n\t\t\t// The number of steps away from the present slide that will\n\t\t\t// be visible\n\t\t\tvar viewDistance = isOverview() ? 10 : config.viewDistance;\n\n\t\t\t// Limit view distance on weaker devices\n\t\t\tif( isMobileDevice ) {\n\t\t\t\tviewDistance = isOverview() ? 6 : 2;\n\t\t\t}\n\n\t\t\t// All slides need to be visible when exporting to PDF\n\t\t\tif( isPrintingPDF() ) {\n\t\t\t\tviewDistance = Number.MAX_VALUE;\n\t\t\t}\n\n\t\t\tfor( var x = 0; x < horizontalSlidesLength; x++ ) {\n\t\t\t\tvar horizontalSlide = horizontalSlides[x];\n\n\t\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ),\n\t\t\t\t\tverticalSlidesLength = verticalSlides.length;\n\n\t\t\t\t// Determine how far away this slide is from the present\n\t\t\t\tdistanceX = Math.abs( ( indexh || 0 ) - x ) || 0;\n\n\t\t\t\t// If the presentation is looped, distance should measure\n\t\t\t\t// 1 between the first and last slides\n\t\t\t\tif( config.loop ) {\n\t\t\t\t\tdistanceX = Math.abs( ( ( indexh || 0 ) - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0;\n\t\t\t\t}\n\n\t\t\t\t// Show the horizontal slide if it's within the view distance\n\t\t\t\tif( distanceX < viewDistance ) {\n\t\t\t\t\tshowSlide( horizontalSlide );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\thideSlide( horizontalSlide );\n\t\t\t\t}\n\n\t\t\t\tif( verticalSlidesLength ) {\n\n\t\t\t\t\tvar oy = getPreviousVerticalIndex( horizontalSlide );\n\n\t\t\t\t\tfor( var y = 0; y < verticalSlidesLength; y++ ) {\n\t\t\t\t\t\tvar verticalSlide = verticalSlides[y];\n\n\t\t\t\t\t\tdistanceY = x === ( indexh || 0 ) ? Math.abs( ( indexv || 0 ) - y ) : Math.abs( y - oy );\n\n\t\t\t\t\t\tif( distanceX + distanceY < viewDistance ) {\n\t\t\t\t\t\t\tshowSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\thideSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Pick up notes from the current slide and display tham\n\t * to the viewer.\n\t *\n\t * @see `showNotes` config value\n\t */\n\tfunction updateNotes() {\n\n\t\tif( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) {\n\n\t\t\tdom.speakerNotes.innerHTML = getSlideNotes() || '';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the progress bar to reflect the current slide.\n\t */\n\tfunction updateProgress() {\n\n\t\t// Update progress if enabled\n\t\tif( config.progress && dom.progressbar ) {\n\n\t\t\tdom.progressbar.style.width = getProgress() * dom.wrapper.offsetWidth + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the slide number div to reflect the current slide.\n\t *\n\t * The following slide number formats are available:\n\t *  \"h.v\": \thorizontal . vertical slide number (default)\n\t *  \"h/v\": \thorizontal / vertical slide number\n\t *    \"c\": \tflattened slide number\n\t *  \"c/t\": \tflattened slide number / total slides\n\t */\n\tfunction updateSlideNumber() {\n\n\t\t// Update slide number if enabled\n\t\tif( config.slideNumber && dom.slideNumber ) {\n\n\t\t\tvar value = [];\n\t\t\tvar format = 'h.v';\n\n\t\t\t// Check if a custom number format is available\n\t\t\tif( typeof config.slideNumber === 'string' ) {\n\t\t\t\tformat = config.slideNumber;\n\t\t\t}\n\n\t\t\tswitch( format ) {\n\t\t\t\tcase 'c':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'c/t':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1, '/', getTotalSlides() );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'h/v':\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '/', indexv + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '.', indexv + 1 );\n\t\t\t}\n\n\t\t\tdom.slideNumber.innerHTML = formatSlideNumber( value[0], value[1], value[2] );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies HTML formatting to a slide number before it's\n\t * written to the DOM.\n\t */\n\tfunction formatSlideNumber( a, delimiter, b ) {\n\n\t\tif( typeof b === 'number' && !isNaN( b ) ) {\n\t\t\treturn  '<span class=\"slide-number-a\">'+ a +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-delimiter\">'+ delimiter +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-b\">'+ b +'</span>';\n\t\t}\n\t\telse {\n\t\t\treturn '<span class=\"slide-number-a\">'+ a +'</span>';\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the state of all control/navigation arrows.\n\t */\n\tfunction updateControls() {\n\n\t\tvar routes = availableRoutes();\n\t\tvar fragments = availableFragments();\n\n\t\t// Remove the 'enabled' class from all directions\n\t\tdom.controlsLeft.concat( dom.controlsRight )\n\t\t\t\t\t\t.concat( dom.controlsUp )\n\t\t\t\t\t\t.concat( dom.controlsDown )\n\t\t\t\t\t\t.concat( dom.controlsPrev )\n\t\t\t\t\t\t.concat( dom.controlsNext ).forEach( function( node ) {\n\t\t\tnode.classList.remove( 'enabled' );\n\t\t\tnode.classList.remove( 'fragmented' );\n\t\t} );\n\n\t\t// Add the 'enabled' class to the available routes\n\t\tif( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Prev/next buttons\n\t\tif( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Highlight fragment directions\n\t\tif( currentSlide ) {\n\n\t\t\t// Always apply fragment decorator to prev/next buttons\n\t\t\tif( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\tif( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\n\t\t\t// Apply fragment decorators to directional buttons based on\n\t\t\t// what slide axis they are in\n\t\t\tif( isVerticalSlide( currentSlide ) ) {\n\t\t\t\tif( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the background elements to reflect the current\n\t * slide.\n\t *\n\t * @param {Boolean} includeAll If true, the backgrounds of\n\t * all vertical slides (not just the present) will be updated.\n\t */\n\tfunction updateBackground( includeAll ) {\n\n\t\tvar currentBackground = null;\n\n\t\t// Reverse past/future classes when in RTL mode\n\t\tvar horizontalPast = config.rtl ? 'future' : 'past',\n\t\t\thorizontalFuture = config.rtl ? 'past' : 'future';\n\n\t\t// Update the classes of all backgrounds to match the\n\t\t// states of their slides (past/present/future)\n\t\ttoArray( dom.background.childNodes ).forEach( function( backgroundh, h ) {\n\n\t\t\tbackgroundh.classList.remove( 'past' );\n\t\t\tbackgroundh.classList.remove( 'present' );\n\t\t\tbackgroundh.classList.remove( 'future' );\n\n\t\t\tif( h < indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalPast );\n\t\t\t}\n\t\t\telse if ( h > indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalFuture );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundh.classList.add( 'present' );\n\n\t\t\t\t// Store a reference to the current background element\n\t\t\t\tcurrentBackground = backgroundh;\n\t\t\t}\n\n\t\t\tif( includeAll || h === indexh ) {\n\t\t\t\ttoArray( backgroundh.querySelectorAll( '.slide-background' ) ).forEach( function( backgroundv, v ) {\n\n\t\t\t\t\tbackgroundv.classList.remove( 'past' );\n\t\t\t\t\tbackgroundv.classList.remove( 'present' );\n\t\t\t\t\tbackgroundv.classList.remove( 'future' );\n\n\t\t\t\t\tif( v < indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'past' );\n\t\t\t\t\t}\n\t\t\t\t\telse if ( v > indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'future' );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tbackgroundv.classList.add( 'present' );\n\n\t\t\t\t\t\t// Only if this is the present horizontal and vertical slide\n\t\t\t\t\t\tif( h === indexh ) currentBackground = backgroundv;\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\t\t\t}\n\n\t\t} );\n\n\t\t// Stop any currently playing video background\n\t\tif( previousBackground ) {\n\n\t\t\tvar previousVideo = previousBackground.querySelector( 'video' );\n\t\t\tif( previousVideo ) previousVideo.pause();\n\n\t\t}\n\n\t\tif( currentBackground ) {\n\n\t\t\t// Start video playback\n\t\t\tvar currentVideo = currentBackground.querySelector( 'video' );\n\t\t\tif( currentVideo ) {\n\t\t\t\tif( currentVideo.currentTime > 0 ) currentVideo.currentTime = 0;\n\t\t\t\tcurrentVideo.play();\n\t\t\t}\n\n\t\t\tvar backgroundImageURL = currentBackground.style.backgroundImage || '';\n\n\t\t\t// Restart GIFs (doesn't work in Firefox)\n\t\t\tif( /\\.gif/i.test( backgroundImageURL ) ) {\n\t\t\t\tcurrentBackground.style.backgroundImage = '';\n\t\t\t\twindow.getComputedStyle( currentBackground ).opacity;\n\t\t\t\tcurrentBackground.style.backgroundImage = backgroundImageURL;\n\t\t\t}\n\n\t\t\t// Don't transition between identical backgrounds. This\n\t\t\t// prevents unwanted flicker.\n\t\t\tvar previousBackgroundHash = previousBackground ? previousBackground.getAttribute( 'data-background-hash' ) : null;\n\t\t\tvar currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' );\n\t\t\tif( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== previousBackground ) {\n\t\t\t\tdom.background.classList.add( 'no-transition' );\n\t\t\t}\n\n\t\t\tpreviousBackground = currentBackground;\n\n\t\t}\n\n\t\t// If there's a background brightness flag for this slide,\n\t\t// bubble it to the .reveal container\n\t\tif( currentSlide ) {\n\t\t\t[ 'has-light-background', 'has-dark-background' ].forEach( function( classToBubble ) {\n\t\t\t\tif( currentSlide.classList.contains( classToBubble ) ) {\n\t\t\t\t\tdom.wrapper.classList.add( classToBubble );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tdom.wrapper.classList.remove( classToBubble );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Allow the first background to apply without transition\n\t\tsetTimeout( function() {\n\t\t\tdom.background.classList.remove( 'no-transition' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Updates the position of the parallax background based\n\t * on the current slide index.\n\t */\n\tfunction updateParallax() {\n\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\t\tvar backgroundSize = dom.background.style.backgroundSize.split( ' ' ),\n\t\t\t\tbackgroundWidth, backgroundHeight;\n\n\t\t\tif( backgroundSize.length === 1 ) {\n\t\t\t\tbackgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundWidth = parseInt( backgroundSize[0], 10 );\n\t\t\t\tbackgroundHeight = parseInt( backgroundSize[1], 10 );\n\t\t\t}\n\n\t\t\tvar slideWidth = dom.background.offsetWidth,\n\t\t\t\thorizontalSlideCount = horizontalSlides.length,\n\t\t\t\thorizontalOffsetMultiplier,\n\t\t\t\thorizontalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundHorizontal === 'number' ) {\n\t\t\t\thorizontalOffsetMultiplier = config.parallaxBackgroundHorizontal;\n\t\t\t}\n\t\t\telse {\n\t\t\t\thorizontalOffsetMultiplier = ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 );\n\t\t\t}\n\n\t\t\thorizontalOffset = horizontalOffsetMultiplier * indexh * -1;\n\n\t\t\tvar slideHeight = dom.background.offsetHeight,\n\t\t\t\tverticalSlideCount = verticalSlides.length,\n\t\t\t\tverticalOffsetMultiplier,\n\t\t\t\tverticalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundVertical === 'number' ) {\n\t\t\t\tverticalOffsetMultiplier = config.parallaxBackgroundVertical;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tverticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 );\n\t\t\t}\n\n\t\t\tverticalOffset = verticalSlideCount > 0 ?  verticalOffsetMultiplier * indexv * 1 : 0;\n\n\t\t\tdom.background.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is within the configured view\n\t * distance. Shows the slide element and loads any content\n\t * that is set to load lazily (data-src).\n\t */\n\tfunction showSlide( slide ) {\n\n\t\t// Show the slide element\n\t\tslide.style.display = 'block';\n\n\t\t// Media elements with data-src attributes\n\t\ttoArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src]' ) ).forEach( function( element ) {\n\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\telement.removeAttribute( 'data-src' );\n\t\t} );\n\n\t\t// Media elements with <source> children\n\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( media ) {\n\t\t\tvar sources = 0;\n\n\t\t\ttoArray( media.querySelectorAll( 'source[data-src]' ) ).forEach( function( source ) {\n\t\t\t\tsource.setAttribute( 'src', source.getAttribute( 'data-src' ) );\n\t\t\t\tsource.removeAttribute( 'data-src' );\n\t\t\t\tsources += 1;\n\t\t\t} );\n\n\t\t\t// If we rewrote sources for this video/audio element, we need\n\t\t\t// to manually tell it to load from its new origin\n\t\t\tif( sources > 0 ) {\n\t\t\t\tmedia.load();\n\t\t\t}\n\t\t} );\n\n\n\t\t// Show the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'block';\n\n\t\t\t// If the background contains media, load it\n\t\t\tif( background.hasAttribute( 'data-loaded' ) === false ) {\n\t\t\t\tbackground.setAttribute( 'data-loaded', 'true' );\n\n\t\t\t\tvar backgroundImage = slide.getAttribute( 'data-background-image' ),\n\t\t\t\t\tbackgroundVideo = slide.getAttribute( 'data-background-video' ),\n\t\t\t\t\tbackgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ),\n\t\t\t\t\tbackgroundIframe = slide.getAttribute( 'data-background-iframe' );\n\n\t\t\t\t// Images\n\t\t\t\tif( backgroundImage ) {\n\t\t\t\t\tbackground.style.backgroundImage = 'url('+ backgroundImage +')';\n\t\t\t\t}\n\t\t\t\t// Videos\n\t\t\t\telse if ( backgroundVideo && !isSpeakerNotes() ) {\n\t\t\t\t\tvar video = document.createElement( 'video' );\n\n\t\t\t\t\tif( backgroundVideoLoop ) {\n\t\t\t\t\t\tvideo.setAttribute( 'loop', '' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support comma separated lists of video sources\n\t\t\t\t\tbackgroundVideo.split( ',' ).forEach( function( source ) {\n\t\t\t\t\t\tvideo.innerHTML += '<source src=\"'+ source +'\">';\n\t\t\t\t\t} );\n\n\t\t\t\t\tbackground.appendChild( video );\n\t\t\t\t}\n\t\t\t\t// Iframes\n\t\t\t\telse if( backgroundIframe ) {\n\t\t\t\t\tvar iframe = document.createElement( 'iframe' );\n\t\t\t\t\t\tiframe.setAttribute( 'src', backgroundIframe );\n\t\t\t\t\t\tiframe.style.width  = '100%';\n\t\t\t\t\t\tiframe.style.height = '100%';\n\t\t\t\t\t\tiframe.style.maxHeight = '100%';\n\t\t\t\t\t\tiframe.style.maxWidth = '100%';\n\n\t\t\t\t\tbackground.appendChild( iframe );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is moved outside of the\n\t * configured view distance.\n\t */\n\tfunction hideSlide( slide ) {\n\n\t\t// Hide the slide element\n\t\tslide.style.display = 'none';\n\n\t\t// Hide the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'none';\n\t\t}\n\n\t}\n\n\t/**\n\t * Determine what available routes there are for navigation.\n\t *\n\t * @return {Object} containing four booleans: left/right/up/down\n\t */\n\tfunction availableRoutes() {\n\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\tvar routes = {\n\t\t\tleft: indexh > 0 || config.loop,\n\t\t\tright: indexh < horizontalSlides.length - 1 || config.loop,\n\t\t\tup: indexv > 0,\n\t\t\tdown: indexv < verticalSlides.length - 1\n\t\t};\n\n\t\t// reverse horizontal controls for rtl\n\t\tif( config.rtl ) {\n\t\t\tvar left = routes.left;\n\t\t\troutes.left = routes.right;\n\t\t\troutes.right = left;\n\t\t}\n\n\t\treturn routes;\n\n\t}\n\n\t/**\n\t * Returns an object describing the available fragment\n\t * directions.\n\t *\n\t * @return {Object} two boolean properties: prev/next\n\t */\n\tfunction availableFragments() {\n\n\t\tif( currentSlide && config.fragments ) {\n\t\t\tvar fragments = currentSlide.querySelectorAll( '.fragment' );\n\t\t\tvar hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' );\n\n\t\t\treturn {\n\t\t\t\tprev: fragments.length - hiddenFragments.length > 0,\n\t\t\t\tnext: !!hiddenFragments.length\n\t\t\t};\n\t\t}\n\t\telse {\n\t\t\treturn { prev: false, next: false };\n\t\t}\n\n\t}\n\n\t/**\n\t * Enforces origin-specific format rules for embedded media.\n\t */\n\tfunction formatEmbeddedContent() {\n\n\t\tvar _appendParamToIframeSource = function( sourceAttribute, sourceURL, param ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( 'iframe['+ sourceAttribute +'*=\"'+ sourceURL +'\"]' ) ).forEach( function( el ) {\n\t\t\t\tvar src = el.getAttribute( sourceAttribute );\n\t\t\t\tif( src && src.indexOf( param ) === -1 ) {\n\t\t\t\t\tel.setAttribute( sourceAttribute, src + ( !/\\?/.test( src ) ? '?' : '&' ) + param );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\t// YouTube frames must include \"?enablejsapi=1\"\n\t\t_appendParamToIframeSource( 'src', 'youtube.com/embed/', 'enablejsapi=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'youtube.com/embed/', 'enablejsapi=1' );\n\n\t\t// Vimeo frames must include \"?api=1\"\n\t\t_appendParamToIframeSource( 'src', 'player.vimeo.com/', 'api=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'player.vimeo.com/', 'api=1' );\n\n\t}\n\n\t/**\n\t * Start playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction startEmbeddedContent( slide ) {\n\n\t\tif( slide && !isSpeakerNotes() ) {\n\t\t\t// Restart GIFs\n\t\t\ttoArray( slide.querySelectorAll( 'img[src$=\".gif\"]' ) ).forEach( function( el ) {\n\t\t\t\t// Setting the same unchanged source like this was confirmed\n\t\t\t\t// to work in Chrome, FF & Safari\n\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'src' ) );\n\t\t\t} );\n\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) && typeof el.play === 'function' ) {\n\t\t\t\t\tel.play();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Normal iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src]' ) ).forEach( function( el ) {\n\t\t\t\tstartEmbeddedIframe( { target: el } );\n\t\t\t} );\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\tif( el.getAttribute( 'src' ) !== el.getAttribute( 'data-src' ) ) {\n\t\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe ); // remove first to avoid dupes\n\t\t\t\t\tel.addEventListener( 'load', startEmbeddedIframe );\n\t\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'data-src' ) );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * \"Starts\" the content of an embedded iframe using the\n\t * postmessage API.\n\t */\n\tfunction startEmbeddedIframe( event ) {\n\n\t\tvar iframe = event.target;\n\n\t\t// YouTube postMessage API\n\t\tif( /youtube\\.com\\/embed\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"playVideo\",\"args\":\"\"}', '*' );\n\t\t}\n\t\t// Vimeo postMessage API\n\t\telse if( /player\\.vimeo\\.com\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"method\":\"play\"}', '*' );\n\t\t}\n\t\t// Generic postMessage API\n\t\telse {\n\t\t\tiframe.contentWindow.postMessage( 'slide:start', '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Stop playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction stopEmbeddedContent( slide ) {\n\n\t\tif( slide && slide.parentNode ) {\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) {\n\t\t\t\t\tel.pause();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Generic postMessage API for non-lazy loaded iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe' ) ).forEach( function( el ) {\n\t\t\t\tel.contentWindow.postMessage( 'slide:stop', '*' );\n\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe );\n\t\t\t});\n\n\t\t\t// YouTube postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"youtube.com/embed/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"pauseVideo\",\"args\":\"\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Vimeo postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"player.vimeo.com/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"method\":\"pause\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\t// Only removing the src doesn't actually unload the frame\n\t\t\t\t// in all browsers (Firefox) so we set it to blank first\n\t\t\t\tel.setAttribute( 'src', 'about:blank' );\n\t\t\t\tel.removeAttribute( 'src' );\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Returns the number of past slides. This can be used as a global\n\t * flattened index for slides.\n\t */\n\tfunction getSlidePastCount() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t// The number of past slides\n\t\tvar pastCount = 0;\n\n\t\t// Step through all slides and count the past ones\n\t\tmainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) {\n\n\t\t\tvar horizontalSlide = horizontalSlides[i];\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\n\t\t\tfor( var j = 0; j < verticalSlides.length; j++ ) {\n\n\t\t\t\t// Stop as soon as we arrive at the present\n\t\t\t\tif( verticalSlides[j].classList.contains( 'present' ) ) {\n\t\t\t\t\tbreak mainLoop;\n\t\t\t\t}\n\n\t\t\t\tpastCount++;\n\n\t\t\t}\n\n\t\t\t// Stop as soon as we arrive at the present\n\t\t\tif( horizontalSlide.classList.contains( 'present' ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// Don't count the wrapping section for vertical slides\n\t\t\tif( horizontalSlide.classList.contains( 'stack' ) === false ) {\n\t\t\t\tpastCount++;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount;\n\n\t}\n\n\t/**\n\t * Returns a value ranging from 0-1 that represents\n\t * how far into the presentation we have navigated.\n\t */\n\tfunction getProgress() {\n\n\t\t// The number of past and total slides\n\t\tvar totalCount = getTotalSlides();\n\t\tvar pastCount = getSlidePastCount();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar allFragments = currentSlide.querySelectorAll( '.fragment' );\n\n\t\t\t// If there are fragments in the current slide those should be\n\t\t\t// accounted for in the progress.\n\t\t\tif( allFragments.length > 0 ) {\n\t\t\t\tvar visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );\n\n\t\t\t\t// This value represents how big a portion of the slide progress\n\t\t\t\t// that is made up by its fragments (0-1)\n\t\t\t\tvar fragmentWeight = 0.9;\n\n\t\t\t\t// Add fragment progress to the past slide count\n\t\t\t\tpastCount += ( visibleFragments.length / allFragments.length ) * fragmentWeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount / ( totalCount - 1 );\n\n\t}\n\n\t/**\n\t * Checks if this presentation is running inside of the\n\t * speaker notes window.\n\t */\n\tfunction isSpeakerNotes() {\n\n\t\treturn !!window.location.search.match( /receiver/gi );\n\n\t}\n\n\t/**\n\t * Reads the current URL (hash) and navigates accordingly.\n\t */\n\tfunction readURL() {\n\n\t\tvar hash = window.location.hash;\n\n\t\t// Attempt to parse the hash as either an index or name\n\t\tvar bits = hash.slice( 2 ).split( '/' ),\n\t\t\tname = hash.replace( /#|\\//gi, '' );\n\n\t\t// If the first bit is invalid and there is a name we can\n\t\t// assume that this is a named link\n\t\tif( isNaN( parseInt( bits[0], 10 ) ) && name.length ) {\n\t\t\tvar element;\n\n\t\t\t// Ensure the named link is a valid HTML ID attribute\n\t\t\tif( /^[a-zA-Z][\\w:.-]*$/.test( name ) ) {\n\t\t\t\t// Find the slide with the specified ID\n\t\t\t\telement = document.getElementById( name );\n\t\t\t}\n\n\t\t\tif( element ) {\n\t\t\t\t// Find the position of the named slide and navigate to it\n\t\t\t\tvar indices = Reveal.getIndices( element );\n\t\t\t\tslide( indices.h, indices.v );\n\t\t\t}\n\t\t\t// If the slide doesn't exist, navigate to the current slide\n\t\t\telse {\n\t\t\t\tslide( indexh || 0, indexv || 0 );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Read the index components of the hash\n\t\t\tvar h = parseInt( bits[0], 10 ) || 0,\n\t\t\t\tv = parseInt( bits[1], 10 ) || 0;\n\n\t\t\tif( h !== indexh || v !== indexv ) {\n\t\t\t\tslide( h, v );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the page URL (hash) to reflect the current\n\t * state.\n\t *\n\t * @param {Number} delay The time in ms to wait before\n\t * writing the hash\n\t */\n\tfunction writeURL( delay ) {\n\n\t\tif( config.history ) {\n\n\t\t\t// Make sure there's never more than one timeout running\n\t\t\tclearTimeout( writeURLTimeout );\n\n\t\t\t// If a delay is specified, timeout this call\n\t\t\tif( typeof delay === 'number' ) {\n\t\t\t\twriteURLTimeout = setTimeout( writeURL, delay );\n\t\t\t}\n\t\t\telse if( currentSlide ) {\n\t\t\t\tvar url = '/';\n\n\t\t\t\t// Attempt to create a named link based on the slide's ID\n\t\t\t\tvar id = currentSlide.getAttribute( 'id' );\n\t\t\t\tif( id ) {\n\t\t\t\t\tid = id.replace( /[^a-zA-Z0-9\\-\\_\\:\\.]/g, '' );\n\t\t\t\t}\n\n\t\t\t\t// If the current slide has an ID, use that as a named link\n\t\t\t\tif( typeof id === 'string' && id.length ) {\n\t\t\t\t\turl = '/' + id;\n\t\t\t\t}\n\t\t\t\t// Otherwise use the /h/v index\n\t\t\t\telse {\n\t\t\t\t\tif( indexh > 0 || indexv > 0 ) url += indexh;\n\t\t\t\t\tif( indexv > 0 ) url += '/' + indexv;\n\t\t\t\t}\n\n\t\t\t\twindow.location.hash = url;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the h/v location of the current, or specified,\n\t * slide.\n\t *\n\t * @param {HTMLElement} slide If specified, the returned\n\t * index will be for this slide rather than the currently\n\t * active one\n\t *\n\t * @return {Object} { h: <int>, v: <int>, f: <int> }\n\t */\n\tfunction getIndices( slide ) {\n\n\t\t// By default, return the current indices\n\t\tvar h = indexh,\n\t\t\tv = indexv,\n\t\t\tf;\n\n\t\t// If a slide is specified, return the indices of that slide\n\t\tif( slide ) {\n\t\t\tvar isVertical = isVerticalSlide( slide );\n\t\t\tvar slideh = isVertical ? slide.parentNode : slide;\n\n\t\t\t// Select all horizontal slides\n\t\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t\t// Now that we know which the horizontal slide is, get its index\n\t\t\th = Math.max( horizontalSlides.indexOf( slideh ), 0 );\n\n\t\t\t// Assume we're not vertical\n\t\t\tv = undefined;\n\n\t\t\t// If this is a vertical slide, grab the vertical index\n\t\t\tif( isVertical ) {\n\t\t\t\tv = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 );\n\t\t\t}\n\t\t}\n\n\t\tif( !slide && currentSlide ) {\n\t\t\tvar hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0;\n\t\t\tif( hasFragments ) {\n\t\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\t\t\t\tif( currentFragment && currentFragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\tf = parseInt( currentFragment.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tf = currentSlide.querySelectorAll( '.fragment.visible' ).length - 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn { h: h, v: v, f: f };\n\n\t}\n\n\t/**\n\t * Retrieves the total number of slides in this presentation.\n\t */\n\tfunction getTotalSlides() {\n\n\t\treturn dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;\n\n\t}\n\n\t/**\n\t * Returns the slide element matching the specified index.\n\t */\n\tfunction getSlide( x, y ) {\n\n\t\tvar horizontalSlide = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];\n\t\tvar verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );\n\n\t\tif( verticalSlides && verticalSlides.length && typeof y === 'number' ) {\n\t\t\treturn verticalSlides ? verticalSlides[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalSlide;\n\n\t}\n\n\t/**\n\t * Returns the background element for the given slide.\n\t * All slides, even the ones with no background properties\n\t * defined, have a background element so as long as the\n\t * index is valid an element will be returned.\n\t */\n\tfunction getSlideBackground( x, y ) {\n\n\t\t// When printing to PDF the slide backgrounds are nested\n\t\t// inside of the slides\n\t\tif( isPrintingPDF() ) {\n\t\t\tvar slide = getSlide( x, y );\n\t\t\tif( slide ) {\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background && background.parentNode === slide ) {\n\t\t\t\t\treturn background;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn undefined;\n\t\t}\n\n\t\tvar horizontalBackground = dom.wrapper.querySelectorAll( '.backgrounds>.slide-background' )[ x ];\n\t\tvar verticalBackgrounds = horizontalBackground && horizontalBackground.querySelectorAll( '.slide-background' );\n\n\t\tif( verticalBackgrounds && verticalBackgrounds.length && typeof y === 'number' ) {\n\t\t\treturn verticalBackgrounds ? verticalBackgrounds[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalBackground;\n\n\t}\n\n\t/**\n\t * Retrieves the speaker notes from a slide. Notes can be\n\t * defined in two ways:\n\t * 1. As a data-notes attribute on the slide <section>\n\t * 2. As an <aside class=\"notes\"> inside of the slide\n\t */\n\tfunction getSlideNotes( slide ) {\n\n\t\t// Default to the current slide\n\t\tslide = slide || currentSlide;\n\n\t\t// Notes can be specified via the data-notes attribute...\n\t\tif( slide.hasAttribute( 'data-notes' ) ) {\n\t\t\treturn slide.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// ... or using an <aside class=\"notes\"> element\n\t\tvar notesElement = slide.querySelector( 'aside.notes' );\n\t\tif( notesElement ) {\n\t\t\treturn notesElement.innerHTML;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the current state of the presentation as\n\t * an object. This state can then be restored at any\n\t * time.\n\t */\n\tfunction getState() {\n\n\t\tvar indices = getIndices();\n\n\t\treturn {\n\t\t\tindexh: indices.h,\n\t\t\tindexv: indices.v,\n\t\t\tindexf: indices.f,\n\t\t\tpaused: isPaused(),\n\t\t\toverview: isOverview()\n\t\t};\n\n\t}\n\n\t/**\n\t * Restores the presentation to the given state.\n\t *\n\t * @param {Object} state As generated by getState()\n\t */\n\tfunction setState( state ) {\n\n\t\tif( typeof state === 'object' ) {\n\t\t\tslide( deserialize( state.indexh ), deserialize( state.indexv ), deserialize( state.indexf ) );\n\n\t\t\tvar pausedFlag = deserialize( state.paused ),\n\t\t\t\toverviewFlag = deserialize( state.overview );\n\n\t\t\tif( typeof pausedFlag === 'boolean' && pausedFlag !== isPaused() ) {\n\t\t\t\ttogglePause( pausedFlag );\n\t\t\t}\n\n\t\t\tif( typeof overviewFlag === 'boolean' && overviewFlag !== isOverview() ) {\n\t\t\t\ttoggleOverview( overviewFlag );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Return a sorted fragments list, ordered by an increasing\n\t * \"data-fragment-index\" attribute.\n\t *\n\t * Fragments will be revealed in the order that they are returned by\n\t * this function, so you can use the index attributes to control the\n\t * order of fragment appearance.\n\t *\n\t * To maintain a sensible default fragment order, fragments are presumed\n\t * to be passed in document order. This function adds a \"fragment-index\"\n\t * attribute to each node if such an attribute is not already present,\n\t * and sets that attribute to an integer value which is the position of\n\t * the fragment within the fragments list.\n\t */\n\tfunction sortFragments( fragments ) {\n\n\t\tfragments = toArray( fragments );\n\n\t\tvar ordered = [],\n\t\t\tunordered = [],\n\t\t\tsorted = [];\n\n\t\t// Group ordered and unordered elements\n\t\tfragments.forEach( function( fragment, i ) {\n\t\t\tif( fragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\tvar index = parseInt( fragment.getAttribute( 'data-fragment-index' ), 10 );\n\n\t\t\t\tif( !ordered[index] ) {\n\t\t\t\t\tordered[index] = [];\n\t\t\t\t}\n\n\t\t\t\tordered[index].push( fragment );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tunordered.push( [ fragment ] );\n\t\t\t}\n\t\t} );\n\n\t\t// Append fragments without explicit indices in their\n\t\t// DOM order\n\t\tordered = ordered.concat( unordered );\n\n\t\t// Manually count the index up per group to ensure there\n\t\t// are no gaps\n\t\tvar index = 0;\n\n\t\t// Push all fragments in their sorted order to an array,\n\t\t// this flattens the groups\n\t\tordered.forEach( function( group ) {\n\t\t\tgroup.forEach( function( fragment ) {\n\t\t\t\tsorted.push( fragment );\n\t\t\t\tfragment.setAttribute( 'data-fragment-index', index );\n\t\t\t} );\n\n\t\t\tindex ++;\n\t\t} );\n\n\t\treturn sorted;\n\n\t}\n\n\t/**\n\t * Navigate to the specified slide fragment.\n\t *\n\t * @param {Number} index The index of the fragment that\n\t * should be shown, -1 means all are invisible\n\t * @param {Number} offset Integer offset to apply to the\n\t * fragment index\n\t *\n\t * @return {Boolean} true if a change was made in any\n\t * fragments visibility as part of this call\n\t */\n\tfunction navigateFragment( index, offset ) {\n\n\t\tif( currentSlide && config.fragments ) {\n\n\t\t\tvar fragments = sortFragments( currentSlide.querySelectorAll( '.fragment' ) );\n\t\t\tif( fragments.length ) {\n\n\t\t\t\t// If no index is specified, find the current\n\t\t\t\tif( typeof index !== 'number' ) {\n\t\t\t\t\tvar lastVisibleFragment = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) ).pop();\n\n\t\t\t\t\tif( lastVisibleFragment ) {\n\t\t\t\t\t\tindex = parseInt( lastVisibleFragment.getAttribute( 'data-fragment-index' ) || 0, 10 );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tindex = -1;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If an offset is specified, apply it to the index\n\t\t\t\tif( typeof offset === 'number' ) {\n\t\t\t\t\tindex += offset;\n\t\t\t\t}\n\n\t\t\t\tvar fragmentsShown = [],\n\t\t\t\t\tfragmentsHidden = [];\n\n\t\t\t\ttoArray( fragments ).forEach( function( element, i ) {\n\n\t\t\t\t\tif( element.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\t\ti = parseInt( element.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Visible fragments\n\t\t\t\t\tif( i <= index ) {\n\t\t\t\t\t\tif( !element.classList.contains( 'visible' ) ) fragmentsShown.push( element );\n\t\t\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\n\t\t\t\t\t\t// Announce the fragments one by one to the Screen Reader\n\t\t\t\t\t\tdom.statusDiv.textContent = element.textContent;\n\n\t\t\t\t\t\tif( i === index ) {\n\t\t\t\t\t\t\telement.classList.add( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Hidden fragments\n\t\t\t\t\telse {\n\t\t\t\t\t\tif( element.classList.contains( 'visible' ) ) fragmentsHidden.push( element );\n\t\t\t\t\t\telement.classList.remove( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t\t\t}\n\n\n\t\t\t\t} );\n\n\t\t\t\tif( fragmentsHidden.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmenthidden', { fragment: fragmentsHidden[0], fragments: fragmentsHidden } );\n\t\t\t\t}\n\n\t\t\t\tif( fragmentsShown.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmentshown', { fragment: fragmentsShown[0], fragments: fragmentsShown } );\n\t\t\t\t}\n\n\t\t\t\tupdateControls();\n\t\t\t\tupdateProgress();\n\n\t\t\t\treturn !!( fragmentsShown.length || fragmentsHidden.length );\n\n\t\t\t}\n\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Navigate to the next slide fragment.\n\t *\n\t * @return {Boolean} true if there was a next fragment,\n\t * false otherwise\n\t */\n\tfunction nextFragment() {\n\n\t\treturn navigateFragment( null, 1 );\n\n\t}\n\n\t/**\n\t * Navigate to the previous slide fragment.\n\t *\n\t * @return {Boolean} true if there was a previous fragment,\n\t * false otherwise\n\t */\n\tfunction previousFragment() {\n\n\t\treturn navigateFragment( null, -1 );\n\n\t}\n\n\t/**\n\t * Cues a new automated slide if enabled in the config.\n\t */\n\tfunction cueAutoSlide() {\n\n\t\tcancelAutoSlide();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\n\t\t\tvar fragmentAutoSlide = currentFragment ? currentFragment.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar parentAutoSlide = currentSlide.parentNode ? currentSlide.parentNode.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar slideAutoSlide = currentSlide.getAttribute( 'data-autoslide' );\n\n\t\t\t// Pick value in the following priority order:\n\t\t\t// 1. Current fragment's data-autoslide\n\t\t\t// 2. Current slide's data-autoslide\n\t\t\t// 3. Parent slide's data-autoslide\n\t\t\t// 4. Global autoSlide setting\n\t\t\tif( fragmentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( fragmentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( slideAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( slideAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( parentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( parentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tautoSlide = config.autoSlide;\n\t\t\t}\n\n\t\t\t// If there are media elements with data-autoplay,\n\t\t\t// automatically set the autoSlide duration to the\n\t\t\t// length of that media. Not applicable if the slide\n\t\t\t// is divided up into fragments.\n\t\t\tif( currentSlide.querySelectorAll( '.fragment' ).length === 0 ) {\n\t\t\t\ttoArray( currentSlide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) ) {\n\t\t\t\t\t\tif( autoSlide && el.duration * 1000 > autoSlide ) {\n\t\t\t\t\t\t\tautoSlide = ( el.duration * 1000 ) + 1000;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Cue the next auto-slide if:\n\t\t\t// - There is an autoSlide value\n\t\t\t// - Auto-sliding isn't paused by the user\n\t\t\t// - The presentation isn't paused\n\t\t\t// - The overview isn't active\n\t\t\t// - The presentation isn't over\n\t\t\tif( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || availableFragments().next || config.loop === true ) ) {\n\t\t\t\tautoSlideTimeout = setTimeout( navigateNext, autoSlide );\n\t\t\t\tautoSlideStartTime = Date.now();\n\t\t\t}\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( autoSlideTimeout !== -1 );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Cancels any ongoing request to auto-slide.\n\t */\n\tfunction cancelAutoSlide() {\n\n\t\tclearTimeout( autoSlideTimeout );\n\t\tautoSlideTimeout = -1;\n\n\t}\n\n\tfunction pauseAutoSlide() {\n\n\t\tif( autoSlide && !autoSlidePaused ) {\n\t\t\tautoSlidePaused = true;\n\t\t\tdispatchEvent( 'autoslidepaused' );\n\t\t\tclearTimeout( autoSlideTimeout );\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( false );\n\t\t\t}\n\t\t}\n\n\t}\n\n\tfunction resumeAutoSlide() {\n\n\t\tif( autoSlide && autoSlidePaused ) {\n\t\t\tautoSlidePaused = false;\n\t\t\tdispatchEvent( 'autoslideresumed' );\n\t\t\tcueAutoSlide();\n\t\t}\n\n\t}\n\n\tfunction navigateLeft() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().left ) {\n\t\t\t\tslide( indexh + 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || previousFragment() === false ) && availableRoutes().left ) {\n\t\t\tslide( indexh - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateRight() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().right ) {\n\t\t\t\tslide( indexh - 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || nextFragment() === false ) && availableRoutes().right ) {\n\t\t\tslide( indexh + 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateUp() {\n\n\t\t// Prioritize hiding fragments\n\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().up ) {\n\t\t\tslide( indexh, indexv - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateDown() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().down ) {\n\t\t\tslide( indexh, indexv + 1 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Navigates backwards, prioritized in the following order:\n\t * 1) Previous fragment\n\t * 2) Previous vertical slide\n\t * 3) Previous horizontal slide\n\t */\n\tfunction navigatePrev() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( previousFragment() === false ) {\n\t\t\tif( availableRoutes().up ) {\n\t\t\t\tnavigateUp();\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Fetch the previous horizontal slide, if there is one\n\t\t\t\tvar previousSlide;\n\n\t\t\t\tif( config.rtl ) {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.future' ) ).pop();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.past' ) ).pop();\n\t\t\t\t}\n\n\t\t\t\tif( previousSlide ) {\n\t\t\t\t\tvar v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;\n\t\t\t\t\tvar h = indexh - 1;\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * The reverse of #navigatePrev().\n\t */\n\tfunction navigateNext() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( nextFragment() === false ) {\n\t\t\tif( availableRoutes().down ) {\n\t\t\t\tnavigateDown();\n\t\t\t}\n\t\t\telse if( config.rtl ) {\n\t\t\t\tnavigateLeft();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigateRight();\n\t\t\t}\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Checks if the target element prevents the triggering of\n\t * swipe navigation.\n\t */\n\tfunction isSwipePrevented( target ) {\n\n\t\twhile( target && typeof target.hasAttribute === 'function' ) {\n\t\t\tif( target.hasAttribute( 'data-prevent-swipe' ) ) return true;\n\t\t\ttarget = target.parentNode;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ----------------------------- EVENTS -------------------------------//\n\t// --------------------------------------------------------------------//\n\n\t/**\n\t * Called by all event handlers that are based on user\n\t * input.\n\t */\n\tfunction onUserInput( event ) {\n\n\t\tif( config.autoSlideStoppable ) {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keypress' event.\n\t */\n\tfunction onDocumentKeyPress( event ) {\n\n\t\t// Check if the pressed key is question mark\n\t\tif( event.shiftKey && event.charCode === 63 ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tshowHelp( true );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keydown' event.\n\t */\n\tfunction onDocumentKeyDown( event ) {\n\n\t\t// If there's a condition specified and it returns false,\n\t\t// ignore this event\n\t\tif( typeof config.keyboardCondition === 'function' && config.keyboardCondition() === false ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Remember if auto-sliding was paused so we can toggle it\n\t\tvar autoSlideWasPaused = autoSlidePaused;\n\n\t\tonUserInput( event );\n\n\t\t// Check if there's a focused element that could be using\n\t\t// the keyboard\n\t\tvar activeElementIsCE = document.activeElement && document.activeElement.contentEditable !== 'inherit';\n\t\tvar activeElementIsInput = document.activeElement && document.activeElement.tagName && /input|textarea/i.test( document.activeElement.tagName );\n\n\t\t// Disregard the event if there's a focused element or a\n\t\t// keyboard modifier key is present\n\t\tif( activeElementIsCE || activeElementIsInput || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t// While paused only allow resume keyboard events; 'b', '.''\n\t\tvar resumeKeyCodes = [66,190,191];\n\t\tvar key;\n\n\t\t// Custom key bindings for togglePause should be able to resume\n\t\tif( typeof config.keyboard === 'object' ) {\n\t\t\tfor( key in config.keyboard ) {\n\t\t\t\tif( config.keyboard[key] === 'togglePause' ) {\n\t\t\t\t\tresumeKeyCodes.push( parseInt( key, 10 ) );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif( isPaused() && resumeKeyCodes.indexOf( event.keyCode ) === -1 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar triggered = false;\n\n\t\t// 1. User defined key bindings\n\t\tif( typeof config.keyboard === 'object' ) {\n\n\t\t\tfor( key in config.keyboard ) {\n\n\t\t\t\t// Check if this binding matches the pressed key\n\t\t\t\tif( parseInt( key, 10 ) === event.keyCode ) {\n\n\t\t\t\t\tvar value = config.keyboard[ key ];\n\n\t\t\t\t\t// Callback function\n\t\t\t\t\tif( typeof value === 'function' ) {\n\t\t\t\t\t\tvalue.apply( null, [ event ] );\n\t\t\t\t\t}\n\t\t\t\t\t// String shortcuts to reveal.js API\n\t\t\t\t\telse if( typeof value === 'string' && typeof Reveal[ value ] === 'function' ) {\n\t\t\t\t\t\tReveal[ value ].call();\n\t\t\t\t\t}\n\n\t\t\t\t\ttriggered = true;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// 2. System defined key bindings\n\t\tif( triggered === false ) {\n\n\t\t\t// Assume true and try to prove false\n\t\t\ttriggered = true;\n\n\t\t\tswitch( event.keyCode ) {\n\t\t\t\t// p, page up\n\t\t\t\tcase 80: case 33: navigatePrev(); break;\n\t\t\t\t// n, page down\n\t\t\t\tcase 78: case 34: navigateNext(); break;\n\t\t\t\t// h, left\n\t\t\t\tcase 72: case 37: navigateLeft(); break;\n\t\t\t\t// l, right\n\t\t\t\tcase 76: case 39: navigateRight(); break;\n\t\t\t\t// k, up\n\t\t\t\tcase 75: case 38: navigateUp(); break;\n\t\t\t\t// j, down\n\t\t\t\tcase 74: case 40: navigateDown(); break;\n\t\t\t\t// home\n\t\t\t\tcase 36: slide( 0 ); break;\n\t\t\t\t// end\n\t\t\t\tcase 35: slide( Number.MAX_VALUE ); break;\n\t\t\t\t// space\n\t\t\t\tcase 32: isOverview() ? deactivateOverview() : event.shiftKey ? navigatePrev() : navigateNext(); break;\n\t\t\t\t// return\n\t\t\t\tcase 13: isOverview() ? deactivateOverview() : triggered = false; break;\n\t\t\t\t// two-spot, semicolon, b, period, Logitech presenter tools \"black screen\" button\n\t\t\t\tcase 58: case 59: case 66: case 190: case 191: togglePause(); break;\n\t\t\t\t// f\n\t\t\t\tcase 70: enterFullscreen(); break;\n\t\t\t\t// a\n\t\t\t\tcase 65: if ( config.autoSlideStoppable ) toggleAutoSlide( autoSlideWasPaused ); break;\n\t\t\t\tdefault:\n\t\t\t\t\ttriggered = false;\n\t\t\t}\n\n\t\t}\n\n\t\t// If the input resulted in a triggered action we should prevent\n\t\t// the browsers default behavior\n\t\tif( triggered ) {\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\t\t// ESC or O key\n\t\telse if ( ( event.keyCode === 27 || event.keyCode === 79 ) && features.transforms3d ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\ttoggleOverview();\n\t\t\t}\n\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Handler for the 'touchstart' event, enables support for\n\t * swipe and pinch gestures.\n\t */\n\tfunction onTouchStart( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\ttouch.startX = event.touches[0].clientX;\n\t\ttouch.startY = event.touches[0].clientY;\n\t\ttouch.startCount = event.touches.length;\n\n\t\t// If there's two touches we need to memorize the distance\n\t\t// between those two points to detect pinching\n\t\tif( event.touches.length === 2 && config.overview ) {\n\t\t\ttouch.startSpan = distanceBetween( {\n\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\ty: event.touches[1].clientY\n\t\t\t}, {\n\t\t\t\tx: touch.startX,\n\t\t\t\ty: touch.startY\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchmove' event.\n\t */\n\tfunction onTouchMove( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\t// Each touch should only trigger one action\n\t\tif( !touch.captured ) {\n\t\t\tonUserInput( event );\n\n\t\t\tvar currentX = event.touches[0].clientX;\n\t\t\tvar currentY = event.touches[0].clientY;\n\n\t\t\t// If the touch started with two points and still has\n\t\t\t// two active touches; test for the pinch gesture\n\t\t\tif( event.touches.length === 2 && touch.startCount === 2 && config.overview ) {\n\n\t\t\t\t// The current distance in pixels between the two touch points\n\t\t\t\tvar currentSpan = distanceBetween( {\n\t\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\t\ty: event.touches[1].clientY\n\t\t\t\t}, {\n\t\t\t\t\tx: touch.startX,\n\t\t\t\t\ty: touch.startY\n\t\t\t\t} );\n\n\t\t\t\t// If the span is larger than the desire amount we've got\n\t\t\t\t// ourselves a pinch\n\t\t\t\tif( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\n\t\t\t\t\tif( currentSpan < touch.startSpan ) {\n\t\t\t\t\t\tactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tdeactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tevent.preventDefault();\n\n\t\t\t}\n\t\t\t// There was only one touch point, look for a swipe\n\t\t\telse if( event.touches.length === 1 && touch.startCount !== 2 ) {\n\n\t\t\t\tvar deltaX = currentX - touch.startX,\n\t\t\t\t\tdeltaY = currentY - touch.startY;\n\n\t\t\t\tif( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateLeft();\n\t\t\t\t}\n\t\t\t\telse if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateRight();\n\t\t\t\t}\n\t\t\t\telse if( deltaY > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateUp();\n\t\t\t\t}\n\t\t\t\telse if( deltaY < -touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateDown();\n\t\t\t\t}\n\n\t\t\t\t// If we're embedded, only block touch events if they have\n\t\t\t\t// triggered an action\n\t\t\t\tif( config.embedded ) {\n\t\t\t\t\tif( touch.captured || isVerticalSlide( currentSlide ) ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Not embedded? Block them all to avoid needless tossing\n\t\t\t\t// around of the viewport in iOS\n\t\t\t\telse {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t\t// There's a bug with swiping on some Android devices unless\n\t\t// the default action is always prevented\n\t\telse if( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchend' event.\n\t */\n\tfunction onTouchEnd( event ) {\n\n\t\ttouch.captured = false;\n\n\t}\n\n\t/**\n\t * Convert pointer down to touch start.\n\t */\n\tfunction onPointerDown( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" ) {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchStart( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer move to touch move.\n\t */\n\tfunction onPointerMove( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchMove( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer up to touch end.\n\t */\n\tfunction onPointerUp( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchEnd( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles mouse wheel scrolling, throttled to avoid skipping\n\t * multiple slides.\n\t */\n\tfunction onDocumentMouseScroll( event ) {\n\n\t\tif( Date.now() - lastMouseWheelStep > 600 ) {\n\n\t\t\tlastMouseWheelStep = Date.now();\n\n\t\t\tvar delta = event.detail || -event.wheelDelta;\n\t\t\tif( delta > 0 ) {\n\t\t\t\tnavigateNext();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigatePrev();\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Clicking on the progress bar results in a navigation to the\n\t * closest approximate horizontal slide using this equation:\n\t *\n\t * ( clickX / presentationWidth ) * numberOfSlides\n\t */\n\tfunction onProgressClicked( event ) {\n\n\t\tonUserInput( event );\n\n\t\tevent.preventDefault();\n\n\t\tvar slidesTotal = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length;\n\t\tvar slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal );\n\n\t\tif( config.rtl ) {\n\t\t\tslideIndex = slidesTotal - slideIndex;\n\t\t}\n\n\t\tslide( slideIndex );\n\n\t}\n\n\t/**\n\t * Event handler for navigation control buttons.\n\t */\n\tfunction onNavigateLeftClicked( event ) { event.preventDefault(); onUserInput(); navigateLeft(); }\n\tfunction onNavigateRightClicked( event ) { event.preventDefault(); onUserInput(); navigateRight(); }\n\tfunction onNavigateUpClicked( event ) { event.preventDefault(); onUserInput(); navigateUp(); }\n\tfunction onNavigateDownClicked( event ) { event.preventDefault(); onUserInput(); navigateDown(); }\n\tfunction onNavigatePrevClicked( event ) { event.preventDefault(); onUserInput(); navigatePrev(); }\n\tfunction onNavigateNextClicked( event ) { event.preventDefault(); onUserInput(); navigateNext(); }\n\n\t/**\n\t * Handler for the window level 'hashchange' event.\n\t */\n\tfunction onWindowHashChange( event ) {\n\n\t\treadURL();\n\n\t}\n\n\t/**\n\t * Handler for the window level 'resize' event.\n\t */\n\tfunction onWindowResize( event ) {\n\n\t\tlayout();\n\n\t}\n\n\t/**\n\t * Handle for the window level 'visibilitychange' event.\n\t */\n\tfunction onPageVisibilityChange( event ) {\n\n\t\tvar isHidden =  document.webkitHidden ||\n\t\t\t\t\t\tdocument.msHidden ||\n\t\t\t\t\t\tdocument.hidden;\n\n\t\t// If, after clicking a link or similar and we're coming back,\n\t\t// focus the document.body to ensure we can use keyboard shortcuts\n\t\tif( isHidden === false && document.activeElement !== document.body ) {\n\t\t\t// Not all elements support .blur() - SVGs among them.\n\t\t\tif( typeof document.activeElement.blur === 'function' ) {\n\t\t\t\tdocument.activeElement.blur();\n\t\t\t}\n\t\t\tdocument.body.focus();\n\t\t}\n\n\t}\n\n\t/**\n\t * Invoked when a slide is and we're in the overview.\n\t */\n\tfunction onOverviewSlideClicked( event ) {\n\n\t\t// TODO There's a bug here where the event listeners are not\n\t\t// removed after deactivating the overview.\n\t\tif( eventsAreBound && isOverview() ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar element = event.target;\n\n\t\t\twhile( element && !element.nodeName.match( /section/gi ) ) {\n\t\t\t\telement = element.parentNode;\n\t\t\t}\n\n\t\t\tif( element && !element.classList.contains( 'disabled' ) ) {\n\n\t\t\t\tdeactivateOverview();\n\n\t\t\t\tif( element.nodeName.match( /section/gi ) ) {\n\t\t\t\t\tvar h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),\n\t\t\t\t\t\tv = parseInt( element.getAttribute( 'data-index-v' ), 10 );\n\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles clicks on links that are set to preview in the\n\t * iframe overlay.\n\t */\n\tfunction onPreviewLinkClicked( event ) {\n\n\t\tif( event.currentTarget && event.currentTarget.hasAttribute( 'href' ) ) {\n\t\t\tvar url = event.currentTarget.getAttribute( 'href' );\n\t\t\tif( url ) {\n\t\t\t\tshowPreview( url );\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles click on the auto-sliding controls element.\n\t */\n\tfunction onAutoSlidePlayerClick( event ) {\n\n\t\t// Replay\n\t\tif( Reveal.isLastSlide() && config.loop === false ) {\n\t\t\tslide( 0, 0 );\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Resume\n\t\telse if( autoSlidePaused ) {\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Pause\n\t\telse {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------ PLAYBACK COMPONENT ------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\t/**\n\t * Constructor for the playback component, which displays\n\t * play/pause/progress controls.\n\t *\n\t * @param {HTMLElement} container The component will append\n\t * itself to this\n\t * @param {Function} progressCheck A method which will be\n\t * called frequently to get the current progress on a range\n\t * of 0-1\n\t */\n\tfunction Playback( container, progressCheck ) {\n\n\t\t// Cosmetics\n\t\tthis.diameter = 50;\n\t\tthis.thickness = 3;\n\n\t\t// Flags if we are currently playing\n\t\tthis.playing = false;\n\n\t\t// Current progress on a 0-1 range\n\t\tthis.progress = 0;\n\n\t\t// Used to loop the animation smoothly\n\t\tthis.progressOffset = 1;\n\n\t\tthis.container = container;\n\t\tthis.progressCheck = progressCheck;\n\n\t\tthis.canvas = document.createElement( 'canvas' );\n\t\tthis.canvas.className = 'playback';\n\t\tthis.canvas.width = this.diameter;\n\t\tthis.canvas.height = this.diameter;\n\t\tthis.context = this.canvas.getContext( '2d' );\n\n\t\tthis.container.appendChild( this.canvas );\n\n\t\tthis.render();\n\n\t}\n\n\tPlayback.prototype.setPlaying = function( value ) {\n\n\t\tvar wasPlaying = this.playing;\n\n\t\tthis.playing = value;\n\n\t\t// Start repainting if we weren't already\n\t\tif( !wasPlaying && this.playing ) {\n\t\t\tthis.animate();\n\t\t}\n\t\telse {\n\t\t\tthis.render();\n\t\t}\n\n\t};\n\n\tPlayback.prototype.animate = function() {\n\n\t\tvar progressBefore = this.progress;\n\n\t\tthis.progress = this.progressCheck();\n\n\t\t// When we loop, offset the progress so that it eases\n\t\t// smoothly rather than immediately resetting\n\t\tif( progressBefore > 0.8 && this.progress < 0.2 ) {\n\t\t\tthis.progressOffset = this.progress;\n\t\t}\n\n\t\tthis.render();\n\n\t\tif( this.playing ) {\n\t\t\tfeatures.requestAnimationFrameMethod.call( window, this.animate.bind( this ) );\n\t\t}\n\n\t};\n\n\t/**\n\t * Renders the current progress and playback state.\n\t */\n\tPlayback.prototype.render = function() {\n\n\t\tvar progress = this.playing ? this.progress : 0,\n\t\t\tradius = ( this.diameter / 2 ) - this.thickness,\n\t\t\tx = this.diameter / 2,\n\t\t\ty = this.diameter / 2,\n\t\t\ticonSize = 14;\n\n\t\t// Ease towards 1\n\t\tthis.progressOffset += ( 1 - this.progressOffset ) * 0.1;\n\n\t\tvar endAngle = ( - Math.PI / 2 ) + ( progress * ( Math.PI * 2 ) );\n\t\tvar startAngle = ( - Math.PI / 2 ) + ( this.progressOffset * ( Math.PI * 2 ) );\n\n\t\tthis.context.save();\n\t\tthis.context.clearRect( 0, 0, this.diameter, this.diameter );\n\n\t\t// Solid background color\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius + 2, 0, Math.PI * 2, false );\n\t\tthis.context.fillStyle = 'rgba( 0, 0, 0, 0.4 )';\n\t\tthis.context.fill();\n\n\t\t// Draw progress track\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius, 0, Math.PI * 2, false );\n\t\tthis.context.lineWidth = this.thickness;\n\t\tthis.context.strokeStyle = '#666';\n\t\tthis.context.stroke();\n\n\t\tif( this.playing ) {\n\t\t\t// Draw progress on top of track\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.arc( x, y, radius, startAngle, endAngle, false );\n\t\t\tthis.context.lineWidth = this.thickness;\n\t\t\tthis.context.strokeStyle = '#fff';\n\t\t\tthis.context.stroke();\n\t\t}\n\n\t\tthis.context.translate( x - ( iconSize / 2 ), y - ( iconSize / 2 ) );\n\n\t\t// Draw play/pause icons\n\t\tif( this.playing ) {\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fillRect( 0, 0, iconSize / 2 - 2, iconSize );\n\t\t\tthis.context.fillRect( iconSize / 2 + 2, 0, iconSize / 2 - 2, iconSize );\n\t\t}\n\t\telse {\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.translate( 2, 0 );\n\t\t\tthis.context.moveTo( 0, 0 );\n\t\t\tthis.context.lineTo( iconSize - 2, iconSize / 2 );\n\t\t\tthis.context.lineTo( 0, iconSize );\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fill();\n\t\t}\n\n\t\tthis.context.restore();\n\n\t};\n\n\tPlayback.prototype.on = function( type, listener ) {\n\t\tthis.canvas.addEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.off = function( type, listener ) {\n\t\tthis.canvas.removeEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.destroy = function() {\n\n\t\tthis.playing = false;\n\n\t\tif( this.canvas.parentNode ) {\n\t\t\tthis.container.removeChild( this.canvas );\n\t\t}\n\n\t};\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------------- API --------------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\tReveal = {\n\t\tinitialize: initialize,\n\t\tconfigure: configure,\n\t\tsync: sync,\n\n\t\t// Navigation methods\n\t\tslide: slide,\n\t\tleft: navigateLeft,\n\t\tright: navigateRight,\n\t\tup: navigateUp,\n\t\tdown: navigateDown,\n\t\tprev: navigatePrev,\n\t\tnext: navigateNext,\n\n\t\t// Fragment methods\n\t\tnavigateFragment: navigateFragment,\n\t\tprevFragment: previousFragment,\n\t\tnextFragment: nextFragment,\n\n\t\t// Deprecated aliases\n\t\tnavigateTo: slide,\n\t\tnavigateLeft: navigateLeft,\n\t\tnavigateRight: navigateRight,\n\t\tnavigateUp: navigateUp,\n\t\tnavigateDown: navigateDown,\n\t\tnavigatePrev: navigatePrev,\n\t\tnavigateNext: navigateNext,\n\n\t\t// Forces an update in slide layout\n\t\tlayout: layout,\n\n\t\t// Returns an object with the available routes as booleans (left/right/top/bottom)\n\t\tavailableRoutes: availableRoutes,\n\n\t\t// Returns an object with the available fragments as booleans (prev/next)\n\t\tavailableFragments: availableFragments,\n\n\t\t// Toggles the overview mode on/off\n\t\ttoggleOverview: toggleOverview,\n\n\t\t// Toggles the \"black screen\" mode on/off\n\t\ttogglePause: togglePause,\n\n\t\t// Toggles the auto slide mode on/off\n\t\ttoggleAutoSlide: toggleAutoSlide,\n\n\t\t// State checks\n\t\tisOverview: isOverview,\n\t\tisPaused: isPaused,\n\t\tisAutoSliding: isAutoSliding,\n\n\t\t// Adds or removes all internal event listeners (such as keyboard)\n\t\taddEventListeners: addEventListeners,\n\t\tremoveEventListeners: removeEventListeners,\n\n\t\t// Facility for persisting and restoring the presentation state\n\t\tgetState: getState,\n\t\tsetState: setState,\n\n\t\t// Presentation progress on range of 0-1\n\t\tgetProgress: getProgress,\n\n\t\t// Returns the indices of the current, or specified, slide\n\t\tgetIndices: getIndices,\n\n\t\tgetTotalSlides: getTotalSlides,\n\n\t\t// Returns the slide element at the specified index\n\t\tgetSlide: getSlide,\n\n\t\t// Returns the slide background element at the specified index\n\t\tgetSlideBackground: getSlideBackground,\n\n\t\t// Returns the speaker notes string for a slide, or null\n\t\tgetSlideNotes: getSlideNotes,\n\n\t\t// Returns the previous slide element, may be null\n\t\tgetPreviousSlide: function() {\n\t\t\treturn previousSlide;\n\t\t},\n\n\t\t// Returns the current slide element\n\t\tgetCurrentSlide: function() {\n\t\t\treturn currentSlide;\n\t\t},\n\n\t\t// Returns the current scale of the presentation content\n\t\tgetScale: function() {\n\t\t\treturn scale;\n\t\t},\n\n\t\t// Returns the current configuration object\n\t\tgetConfig: function() {\n\t\t\treturn config;\n\t\t},\n\n\t\t// Helper method, retrieves query string as a key/value hash\n\t\tgetQueryHash: function() {\n\t\t\tvar query = {};\n\n\t\t\tlocation.search.replace( /[A-Z0-9]+?=([\\w\\.%-]*)/gi, function(a) {\n\t\t\t\tquery[ a.split( '=' ).shift() ] = a.split( '=' ).pop();\n\t\t\t} );\n\n\t\t\t// Basic deserialization\n\t\t\tfor( var i in query ) {\n\t\t\t\tvar value = query[ i ];\n\n\t\t\t\tquery[ i ] = deserialize( unescape( value ) );\n\t\t\t}\n\n\t\t\treturn query;\n\t\t},\n\n\t\t// Returns true if we're currently on the first slide\n\t\tisFirstSlide: function() {\n\t\t\treturn ( indexh === 0 && indexv === 0 );\n\t\t},\n\n\t\t// Returns true if we're currently on the last slide\n\t\tisLastSlide: function() {\n\t\t\tif( currentSlide ) {\n\t\t\t\t// Does this slide has next a sibling?\n\t\t\t\tif( currentSlide.nextElementSibling ) return false;\n\n\t\t\t\t// If it's vertical, does its parent have a next sibling?\n\t\t\t\tif( isVerticalSlide( currentSlide ) && currentSlide.parentNode.nextElementSibling ) return false;\n\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\n\t\t// Checks if reveal.js has been loaded and is ready for use\n\t\tisReady: function() {\n\t\t\treturn loaded;\n\t\t},\n\n\t\t// Forward event binding to the reveal DOM element\n\t\taddEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\t\tremoveEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\n\t\t// Programatically triggers a keyboard event\n\t\ttriggerKey: function( keyCode ) {\n\t\t\tonDocumentKeyDown( { keyCode: keyCode } );\n\t\t}\n\t};\n\n\treturn Reveal;\n\n}));\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/lib/css/zenburn.css",
    "content": "/*\nZenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>\nbased on dark.css by Ivan Sagalaev\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #3f3f3f;\n  color: #dcdcdc;\n  -webkit-text-size-adjust: none;\n}\n\n.hljs-keyword,\n.hljs-tag,\n.css .hljs-class,\n.css .hljs-id,\n.lisp .hljs-title,\n.nginx .hljs-title,\n.hljs-request,\n.hljs-status,\n.clojure .hljs-attribute {\n  color: #e3ceab;\n}\n\n.django .hljs-template_tag,\n.django .hljs-variable,\n.django .hljs-filter .hljs-argument {\n  color: #dcdcdc;\n}\n\n.hljs-number,\n.hljs-date {\n  color: #8cd0d3;\n}\n\n.dos .hljs-envvar,\n.dos .hljs-stream,\n.hljs-variable,\n.apache .hljs-sqbracket,\n.hljs-name {\n  color: #efdcbc;\n}\n\n.dos .hljs-flow,\n.diff .hljs-change,\n.python .exception,\n.python .hljs-built_in,\n.hljs-literal,\n.tex .hljs-special {\n  color: #efefaf;\n}\n\n.diff .hljs-chunk,\n.hljs-subst {\n  color: #8f8f8f;\n}\n\n.dos .hljs-keyword,\n.hljs-decorator,\n.hljs-title,\n.hljs-type,\n.diff .hljs-header,\n.ruby .hljs-class .hljs-parent,\n.apache .hljs-tag,\n.nginx .hljs-built_in,\n.tex .hljs-command,\n.hljs-prompt {\n  color: #efef8f;\n}\n\n.dos .hljs-winutils,\n.ruby .hljs-symbol,\n.ruby .hljs-symbol .hljs-string,\n.ruby .hljs-string {\n  color: #dca3a3;\n}\n\n.diff .hljs-deletion,\n.hljs-string,\n.hljs-tag .hljs-value,\n.hljs-preprocessor,\n.hljs-pragma,\n.hljs-built_in,\n.smalltalk .hljs-class,\n.smalltalk .hljs-localvars,\n.smalltalk .hljs-array,\n.css .hljs-rule .hljs-value,\n.hljs-attr_selector,\n.hljs-pseudo,\n.apache .hljs-cbracket,\n.tex .hljs-formula,\n.coffeescript .hljs-attribute {\n  color: #cc9393;\n}\n\n.hljs-shebang,\n.diff .hljs-addition,\n.hljs-comment,\n.hljs-annotation,\n.hljs-pi,\n.hljs-doctype {\n  color: #7f9f7f;\n}\n\n.coffeescript .javascript,\n.javascript .xml,\n.tex .hljs-formula,\n.xml .javascript,\n.xml .vbscript,\n.xml .css,\n.xml .hljs-cdata {\n  opacity: 0.5;\n}"
  },
  {
    "path": "doc/concepts-driven-design-with-di/lib/font/league-gothic/LICENSE",
    "content": "SIL Open Font License (OFL)\nhttp://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/lib/font/league-gothic/league-gothic.css",
    "content": "@font-face {\n    font-family: 'League Gothic';\n    src: url('league-gothic.eot');\n    src: url('league-gothic.eot?#iefix') format('embedded-opentype'),\n         url('league-gothic.woff') format('woff'),\n         url('league-gothic.ttf') format('truetype');\n\n    font-weight: normal;\n    font-style: normal;\n}"
  },
  {
    "path": "doc/concepts-driven-design-with-di/lib/font/source-sans-pro/LICENSE",
    "content": "SIL Open Font License\n\nCopyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL\n\n—————————————————————————————-\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n—————————————————————————————-\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.\n\nDEFINITIONS\n“Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.\n\n“Reserved Font Name” refers to any names specified as such after the copyright statement(s).\n\n“Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).\n\n“Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.\n\n“Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.\n\n5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are not met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE."
  },
  {
    "path": "doc/concepts-driven-design-with-di/lib/font/source-sans-pro/source-sans-pro.css",
    "content": "@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-regular.eot');\n    src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-regular.woff') format('woff'),\n         url('source-sans-pro-regular.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-italic.eot');\n    src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-italic.woff') format('woff'),\n         url('source-sans-pro-italic.ttf') format('truetype');\n    font-weight: normal;\n    font-style: italic;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibold.eot');\n    src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibold.woff') format('woff'),\n         url('source-sans-pro-semibold.ttf') format('truetype');\n    font-weight: 600;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibolditalic.eot');\n    src: url('source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibolditalic.woff') format('woff'),\n         url('source-sans-pro-semibolditalic.ttf') format('truetype');\n    font-weight: 600;\n    font-style: italic;\n}"
  },
  {
    "path": "doc/concepts-driven-design-with-di/lib/js/classList.js",
    "content": "/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/\nif(typeof document!==\"undefined\"&&!(\"classList\" in document.createElement(\"a\"))){(function(j){var a=\"classList\",f=\"prototype\",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\\s+|\\s+$/g,\"\")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p<o;p++){if(p in this&&this[p]===q){return p}}return -1},n=function(o,p){this.name=o;this.code=DOMException[o];this.message=p},g=function(p,o){if(o===\"\"){throw new n(\"SYNTAX_ERR\",\"An invalid or illegal string was specified\")}if(/\\s/.test(o)){throw new n(\"INVALID_CHARACTER_ERR\",\"String contains an invalid character\")}return c.call(p,o)},d=function(s){var r=k.call(s.className),q=r?r.split(/\\s+/):[],p=0,o=q.length;for(;p<o;p++){this.push(q[p])}this._updateClassName=function(){s.className=this.toString()}},e=d[f]=[],i=function(){return new d(this)};n[f]=Error[f];e.item=function(o){return this[o]||null};e.contains=function(o){o+=\"\";return g(this,o)!==-1};e.add=function(o){o+=\"\";if(g(this,o)===-1){this.push(o);this._updateClassName()}};e.remove=function(p){p+=\"\";var o=g(this,p);if(o!==-1){this.splice(o,1);this._updateClassName()}};e.toggle=function(o){o+=\"\";if(g(this,o)===-1){this.add(o)}else{this.remove(o)}};e.toString=function(){return this.join(\" \")};if(b.defineProperty){var l={get:i,enumerable:true,configurable:true};try{b.defineProperty(m,a,l)}catch(h){if(h.number===-2146823252){l.enumerable=false;b.defineProperty(m,a,l)}}}else{if(b[f].__defineGetter__){m.__defineGetter__(a,i)}}}(self))};"
  },
  {
    "path": "doc/concepts-driven-design-with-di/lib/js/html5shiv.js",
    "content": "document.createElement('header');\ndocument.createElement('nav');\ndocument.createElement('section');\ndocument.createElement('article');\ndocument.createElement('aside');\ndocument.createElement('footer');\ndocument.createElement('hgroup');"
  },
  {
    "path": "doc/concepts-driven-design-with-di/package.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"homepage\": \"http://lab.hakim.se/reveal-js\",\n  \"subdomain\": \"revealjs\",\n  \"main\": \"js/reveal.js\",\n  \"scripts\": {\n    \"test\": \"grunt test\",\n    \"start\": \"grunt serve\"\n  },\n  \"author\": {\n    \"name\": \"Hakim El Hattab\",\n    \"email\": \"hakim.elhattab@gmail.com\",\n    \"web\": \"http://hakim.se\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"engines\": {\n    \"node\": \"~4.1.1\"\n  },\n  \"dependencies\": {\n    \"underscore\": \"~1.8.3\",\n    \"express\": \"~4.13.3\",\n    \"mustache\": \"~2.1.3\",\n    \"socket.io\": \"~1.3.7\"\n  },\n  \"devDependencies\": {\n    \"grunt-contrib-qunit\": \"~0.7.0\",\n    \"grunt-contrib-jshint\": \"~0.11.3\",\n    \"grunt-contrib-cssmin\": \"~0.14.0\",\n    \"grunt-contrib-uglify\": \"~0.9.2\",\n    \"grunt-contrib-watch\": \"~0.6.1\",\n    \"grunt-sass\": \"~1.1.0-beta\",\n    \"grunt-contrib-connect\": \"~0.11.2\",\n    \"grunt-autoprefixer\": \"~3.0.3\",\n    \"grunt-zip\": \"~0.17.1\",\n    \"grunt\": \"~0.4.5\",\n    \"node-sass\": \"~3.3.3\"\n  },\n  \n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/highlight/highlight.js",
    "content": "// START CUSTOM REVEAL.JS INTEGRATION\n(function() {\n\tif( typeof window.addEventListener === 'function' ) {\n\t\tvar hljs_nodes = document.querySelectorAll( 'pre code' );\n\n\t\tfor( var i = 0, len = hljs_nodes.length; i < len; i++ ) {\n\t\t\tvar element = hljs_nodes[i];\n\n\t\t\t// trim whitespace if data-trim attribute is present\n\t\t\tif( element.hasAttribute( 'data-trim' ) && typeof element.innerHTML.trim === 'function' ) {\n\t\t\t\telement.innerHTML = element.innerHTML.trim();\n\t\t\t}\n\n\t\t\t// Now escape html unless prevented by author\n\t\t\tif( ! element.hasAttribute( 'data-noescape' )) {\n\t\t\t\telement.innerHTML = element.innerHTML.replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\");\n\t\t\t}\n\n\t\t\t// re-highlight when focus is lost (for edited code)\n\t\t\telement.addEventListener( 'focusout', function( event ) {\n\t\t\t\thljs.highlightBlock( event.currentTarget );\n\t\t\t}, false );\n\t\t}\n\t}\n})();\n// END CUSTOM REVEAL.JS INTEGRATION\n\n// highlight.js v8.9.1 with support for all available languages\n\n!function(e){\"undefined\"!=typeof exports?e(exports):(window.hljs=e({}),\"function\"==typeof define&&define.amd&&define(\"hljs\",[],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var n,t,r,i=e.className+\" \";if(i+=e.parentNode?e.parentNode.className:\"\",t=/\\blang(?:uage)?-([\\w-]+)\\b/i.exec(i))return w(t[1])?t[1]:\"no-highlight\";for(i=i.split(/\\s+/),n=0,r=i.length;r>n;n++)if(w(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+Array.prototype.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"==e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else\"start\"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\b\\w+\\b/,!0),i&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&i.tE&&(a.tE+=(a.e?\"|\":\"\")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push(\"self\"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?\"\":E.classPrefix,i='<span class=\"'+a,o=t?\"\":\"</span>\";return i+=e+'\">',i+n+o}function p(){if(!L.k)return n(M);var e=\"\",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(M);r;){e+=n(M.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=h(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(M)}return e+n(M.substr(t))}function d(){var e=\"string\"==typeof L.sL;if(e&&!x[L.sL])return n(M);var t=e?l(L.sL,M,!0,y[L.sL]):f(M,L.sL.length?L.sL:void 0);return L.r>0&&(B+=t.r),e&&(y[L.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){return void 0!==L.sL?d():p()}function v(e,t){var r=e.cN?h(e.cN,\"\",!0):\"\";e.rB?(k+=r,M=\"\"):e.eB?(k+=n(t)+r,M=\"\"):(k+=r,M=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(M+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(M+=t),k+=b();do L.cN&&(k+=\"</span>\"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),M=\"\",a.starts&&v(a.starts,\"\"),i.rE?0:t.length}if(c(t,L))throw new Error('Illegal lexeme \"'+t+'\" for mode \"'+(L.cN||\"<unnamed>\")+'\"');return M+=t,t.length||1}var N=w(e);if(!N)throw new Error('Unknown language: \"'+e+'\"');s(N);var R,L=i||N,y={},k=\"\";for(R=L;R!=N;R=R.parent)R.cN&&(k=h(R.cN,\"\",!0)+k);var M=\"\",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+=\"</span>\");return{r:B,value:k,language:e,top:L}}catch(O){if(-1!=O.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw O}}function f(e,t){t=t||E.languages||Object.keys(x);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(w(n)){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return E.tabReplace&&(e=e.replace(/^((<[^>]+>|\\t)+)/gm,function(e,n){return n.replace(/\\t/g,E.tabReplace)})),E.useBR&&(e=e.replace(/\\n/g,\"<br>\")),e}function h(e,n,t){var r=n?R[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n=i(e);if(!a(n)){var t;E.useBR?(t=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),t.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):t=e;var r=t.textContent,o=n?l(n,r,!0):f(r),s=u(t);if(s.length){var p=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\");p.innerHTML=o.value,o.value=c(s,u(p),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=h(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){E=o(E,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll(\"pre code\");Array.prototype.forEach.call(e,p)}}function v(){addEventListener(\"DOMContentLoaded\",b,!1),addEventListener(\"load\",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){R[e]=n})}function N(){return Object.keys(x)}function w(e){return e=(e||\"\").toLowerCase(),x[e]||x[R[e]]}var E={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},x={},R={};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=w,e.inherit=o,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:\"doctag\",b:\"(?:TODO|FIXME|NOTE|BUG|XXX):\",r:0}),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e});hljs.registerLanguage(\"cs\",function(e){var r=\"abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield\",t=e.IR+\"(<\"+e.IR+\">)?\";return{aliases:[\"csharp\"],k:r,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line region endregion pragma checksum\"},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},e.ASM,e.QSM,e.CNM,{bK:\"class interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"namespace\",e:/[{;=]/,i:/[^\\s:]/,c:[{cN:\"title\",b:\"[a-zA-Z](\\\\.?\\\\w)*\",r:0},e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage(\"tp\",function(O){var R={cN:\"number\",b:\"[1-9][0-9]*\",r:0},E={cN:\"comment\",b:\":[^\\\\]]+\"},T={cN:\"built_in\",b:\"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|    TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\\\[\",e:\"\\\\]\",c:[\"self\",R,E]},N={cN:\"built_in\",b:\"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\\\[\",e:\"\\\\]\",c:[\"self\",R,O.QSM,E]};return{k:{keyword:\"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET\",constant:\"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET\"},c:[T,N,{cN:\"keyword\",b:\"/(PROG|ATTR|MN|POS|END)\\\\b\"},{cN:\"keyword\",b:\"(CALL|RUN|POINT_LOGIC|LBL)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)\"},{cN:\"number\",b:\"\\\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\\\b\",r:0},O.C(\"//\",\"[;$]\"),O.C(\"!\",\"[;$]\"),O.C(\"--eg:\",\"$\"),O.QSM,{cN:\"string\",b:\"'\",e:\"'\"},O.CNM,{cN:\"variable\",b:\"\\\\$[A-Za-z0-9_]+\"}]}});hljs.registerLanguage(\"irpf90\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here\"};return{cI:!0,k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),e.C(\"begin_doc\",\"end_doc\",{r:10}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"groovy\",function(e){return{k:{typename:\"byte short char int long boolean float double void\",literal:\"true false null\",keyword:\"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},{cN:\"string\",b:\"'''\",e:\"'''\"},{cN:\"string\",b:\"\\\\$/\",e:\"/\\\\$\",r:10},e.ASM,{cN:\"regexp\",b:/~?\\/[^\\/\\n]+\\//,c:[e.BE]},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.BNM,{cN:\"class\",bK:\"class interface trait enum\",e:\"{\",i:\":\",c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{cN:\"string\",b:/[^\\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\\?/,e:/\\:/},{cN:\"label\",b:\"^\\\\s*[A-Za-z0-9_$]+:\",r:0}],i:/#/}});hljs.registerLanguage(\"stata\",function(e){return{aliases:[\"do\",\"ado\"],cI:!0,k:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",c:[{cN:\"label\",v:[{b:\"\\\\$\\\\{?[a-zA-Z0-9_]+\\\\}?\"},{b:\"`[a-zA-Z0-9_]+'\"}]},{cN:\"string\",v:[{b:'`\"[^\\r\\n]*?\"\\''},{b:'\"[^\\r\\n\"]*\"'}]},{cN:\"literal\",v:[{b:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\(|$)\"}]},e.C(\"^[ \t]*\\\\*.*$\",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\.]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",operator:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"shebang\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage(\"handlebars\",function(e){var a=\"each in with if else unless bindattr action collection debugger log outlet template unbound view yield\";return{aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{{\",e:\"}}\",c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a}]}]}});hljs.registerLanguage(\"elm\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],i={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"}].concat(c)},t={cN:\"container\",b:\"{\",e:\"}\",c:n.c};return{k:\"let in if then else case of where module import exposing type alias as infix infixl infixr port\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 as exposing\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"typedef\",b:\"\\\\btype\\\\b\",e:\"$\",k:\"type alias\",c:[i,n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bport\\\\b\",e:\"$\",k:\"port\",c:c},e.QSM,e.CNM,i,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"javascript\",function(e){return{aliases:[\"js\"],k:{keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},c:[{cN:\"pi\",r:10,b:/^\\s*['\"]use (strict|asm)['\"]/},e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,{cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\"}]},e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\\s*[);\\]]/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\\[|%/},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0},{bK:\"import\",e:\"[;$]\",k:\"import from as\",c:[e.ASM,e.QSM]},{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]}],i:/#/}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"tag\",b:\"</?\",e:\">\"},{cN:\"keyword\",b:/\\w+/,r:0,k:{common:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"sqbracket\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"cbracket\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"vhdl\",function(e){var t=\"\\\\d(_|\\\\d)*\",r=\"[eE][-+]?\"+t,n=t+\"(\\\\.\"+t+\")?(\"+r+\")?\",o=\"\\\\w+\",i=t+\"#\"+o+\"(\\\\.\"+o+\")?#(\"+r+\")?\",a=\"\\\\b(\"+i+\"|\"+n+\")\";return{cI:!0,k:{keyword:\"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor\",typename:\"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector\"},i:\"{\",c:[e.CBCM,e.C(\"--\",\"$\"),e.QSM,{cN:\"number\",b:a,r:0},{cN:\"literal\",b:\"'(U|X|0|1|Z|W|L|H|-)'\",c:[e.BE]},{cN:\"attribute\",b:\"'[A-Za-z](_?[A-Za-z0-9])*\",c:[e.BE]}]}});hljs.registerLanguage(\"typescript\",function(e){var r={keyword:\"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void\"};return{aliases:[\"ts\"],k:r,c:[{cN:\"pi\",b:/^\\s*['\"]use strict['\"]/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM],r:0},{cN:\"function\",b:\"function\",e:/[\\{;]/,eE:!0,k:r,c:[\"self\",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/,r:0},{cN:\"constructor\",bK:\"constructor\",e:/\\{/,eE:!0,r:10},{cN:\"module\",bK:\"module\",e:/\\{/,eE:!0},{cN:\"interface\",bK:\"interface\",e:/\\{/,eE:!0,k:\"interface extends\"},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0}]}});hljs.registerLanguage(\"x86asm\",function(s){return{cI:!0,l:\"\\\\.?\"+s.IR,k:{keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",literal:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0  xmm1  xmm2  xmm3  xmm4  xmm5  xmm6  xmm7  xmm8  xmm9 xmm10  xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0  ymm1  ymm2  ymm3  ymm4  ymm5  ymm6  ymm7  ymm8  ymm9 ymm10  ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0  zmm1  zmm2  zmm3  zmm4  zmm5  zmm6  zmm7  zmm8  zmm9 zmm10  zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l\",pseudo:\"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times\",preprocessor:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__  __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__  __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public \",built_in:\"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},c:[s.C(\";\",\"$\",{r:0}),{cN:\"number\",v:[{b:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",r:0},{b:\"\\\\$[0-9][0-9A-Fa-f]*\",r:0},{b:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{b:\"\\\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"}]},s.QSM,{cN:\"string\",v:[{b:\"'\",e:\"[^\\\\\\\\]'\"},{b:\"`\",e:\"[^\\\\\\\\]`\"},{b:\"\\\\.[A-Za-z0-9]+\"}],r:0},{cN:\"label\",v:[{b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\"},{b:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\"}],r:0},{cN:\"argument\",b:\"%[0-9]+\",r:0},{cN:\"built_in\",b:\"%!S+\",r:0}]}});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{cN:\"constant\",e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"title\",b:/^[\\w]+:\\s*$/},{cN:\"phony\",b:/^\\.PHONY:/,e:/$/,k:\".PHONY\",l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"delphi\",function(e){var r=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure\",t=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],i={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:\"string\",b:/(#\\d+)+/},o={b:e.IR+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",rB:!0,c:[e.TM]},n={cN:\"function\",bK:\"function constructor destructor procedure\",e:/[:;]/,k:\"function constructor|10 destructor|10 procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage(\"erb\",function(e){return{sL:\"xml\",c:[e.C(\"<%#\",\"%>\"),{b:\"<%[%=-]?\",e:\"[%-]?%>\",sL:\"ruby\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\\\w+\"},i={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n=\"@interface @class @protocol @implementation\";return{aliases:[\"mm\",\"objc\",\"obj-c\"],k:i,l:o,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"preprocessor\",b:\"#\",e:\"$\",c:[{cN:\"title\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+n.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:n,l:o,c:[e.UTM]},{cN:\"variable\",b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"fortran\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image\"};return{cI:!0,aliases:[\"f90\",\"f95\"],k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"swift\",function(e){var i={keyword:\"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet\",literal:\"true false nil\",built_in:\"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip\"},t={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n=e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),r={cN:\"subst\",b:/\\\\\\(/,e:\"\\\\)\",k:i,c:[]},a={cN:\"number\",b:\"\\\\b([\\\\d_]+(\\\\.[\\\\deE_]+)?|0x[a-fA-F0-9_]+(\\\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\\\b\",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[a],{k:i,c:[o,e.CLCM,n,t,a,{cN:\"func\",bK:\"func\",e:\"{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\\(/}),{cN:\"generics\",b:/</,e:/>/,i:/>/},{cN:\"params\",b:/\\(/,e:/\\)/,endsParent:!0,k:i,c:[\"self\",a,o,e.CBCM,{b:\":\"}],i:/[\"']/}],i:/\\[|%/},{cN:\"class\",bK:\"struct protocol class extension enum\",k:i,e:\"\\\\{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:\"preprocessor\",b:\"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)\"},{bK:\"import\",e:/$/,c:[e.CLCM,n]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",r={cN:\"subst\",b:/#\\{/,e:/}/,k:c},t=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,r]},{b:/\"/,e:/\"/,c:[e.BE,r]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[r,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];r.c=t;var s=e.inherit(e.TM,{b:n}),i=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(t)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:t.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+i,e:\"[-=]>\",rB:!0,c:[s,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:i,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[s]},s]},{cN:\"attribute\",b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"puppet\",function(e){var s={keyword:\"and case default else elsif false if in import enherits node or true undef unless main settings $string \",literal:\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},r=e.C(\"#\",\"$\"),a=\"([A-Za-z_]|::)(\\\\w|::)*\",i=e.inherit(e.TM,{b:a}),o={cN:\"variable\",b:\"\\\\$\"+a},t={cN:\"string\",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]};return{aliases:[\"pp\"],c:[r,o,t,{bK:\"class\",e:\"\\\\{|;\",i:/=/,c:[i,r]},{bK:\"define\",e:/\\{/,c:[{cN:\"title\",b:e.IR,endsParent:!0}]},{b:e.IR+\"\\\\s+\\\\{\",rB:!0,e:/\\S/,c:[{cN:\"name\",b:e.IR},{b:/\\{/,e:/\\}/,k:s,r:0,c:[t,r,{b:\"[a-zA-Z_]+\\\\s*=>\"},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},o]}],r:0}]}});hljs.registerLanguage(\"tex\",function(c){var e={cN:\"command\",b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]?\"},m={cN:\"command\",b:\"\\\\\\\\[^a-zA-Zа-яА-я0-9]\"},r={cN:\"special\",b:\"[{}\\\\[\\\\]\\\\&#~]\",r:0};return{c:[{b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]? *= *-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",rB:!0,c:[e,m,{cN:\"number\",b:\" *=\",e:\"-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",eB:!0}],r:10},e,m,r,{cN:\"formula\",b:\"\\\\$\\\\$\",e:\"\\\\$\\\\$\",c:[e,m,r],r:0},{cN:\"formula\",b:\"\\\\$\",e:\"\\\\$\",c:[e,m,r],r:0},c.C(\"%\",\"$\",{r:0})]}});hljs.registerLanguage(\"glsl\",function(e){return{k:{keyword:\"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly\",built_in:\"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse\",literal:\"true false\"},i:'\"',c:[e.CLCM,e.CBCM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"}]}});hljs.registerLanguage(\"1c\",function(c){var e=\"[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*\",r=\"возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт\",t=\"ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку  стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон\",i={cN:\"dquote\",b:'\"\"'},n={cN:\"string\",b:'\"',e:'\"|$',c:[i]},a={cN:\"string\",b:\"\\\\|\",e:'\"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:\"function\",b:\"(процедура|функция)\",e:\"$\",l:e,k:\"процедура функция\",c:[c.inherit(c.TM,{b:e}),{cN:\"tail\",eW:!0,c:[{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:e,k:\"знач\",c:[n,a]},{cN:\"export\",b:\"экспорт\",eW:!0,l:e,k:\"экспорт\",c:[c.CLCM]}]},c.CLCM]},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"date\",b:\"'\\\\d{2}\\\\.\\\\d{2}\\\\.(\\\\d{2}|\\\\d{4})'\"}]}});hljs.registerLanguage(\"nsis\",function(e){var t={cN:\"symbol\",b:\"\\\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)\"},n={cN:\"constant\",b:\"\\\\$+{[a-zA-Z0-9_]+}\"},i={cN:\"variable\",b:\"\\\\$+[a-zA-Z0-9_]+\",i:\"\\\\(\\\\){}\"},r={cN:\"constant\",b:\"\\\\$+\\\\([a-zA-Z0-9_]+\\\\)\"},o={cN:\"params\",b:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},l={cN:\"constant\",b:\"\\\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)\"};return{cI:!1,k:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user \"},c:[e.HCM,e.CBCM,{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[{cN:\"symbol\",b:\"\\\\$(\\\\\\\\(n|r|t)|\\\\$)\"},t,n,i,r]},e.C(\";\",\"$\",{r:0}),{cN:\"function\",bK:\"Function PageEx Section SectionGroup SubSection\",e:\"$\"},l,n,i,r,o,e.NM,{cN:\"literal\",b:e.IR+\"::\"+e.IR}]}});hljs.registerLanguage(\"axapta\",function(e){return{k:\"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod\",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:\":\",c:[{bK:\"extends implements\"},e.UTM]}]}});hljs.registerLanguage(\"php\",function(e){var c={cN:\"variable\",b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},a={cN:\"preprocessor\",b:/<\\?(php)?|\\?>/},i={cN:\"string\",c:[e.BE,a],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},t={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"},a]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:/<<<['\"]?\\w+['\"]?$/,e:/^\\w+;?$/,c:[e.BE,{cN:\"subst\",v:[{b:/\\$\\w+/},{b:/\\{\\$/,e:/\\}/}]}]},a,c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,i,t]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,t]}});hljs.registerLanguage(\"go\",function(e){var t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer\",constant:\"true false iota nil\",typename:\"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{aliases:[\"golang\"],k:t,i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\"},{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"number\",b:e.CNR+\"[dflsi]?\",r:0},e.CNM]}});hljs.registerLanguage(\"dust\",function(e){var t=\"if eq ne lt lte gt gte select default math sep\";return{aliases:[\"dst\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{\",e:\"}\",r:0,c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:t},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:t},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:t,r:0}]}]}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"chunk\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"header\",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\\-\\-\\-/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+\\+\\+/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"haskell\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],a={cN:\"pragma\",b:\"{-#\",e:\"#-}\"},i={cN:\"preprocessor\",b:\"^#\",e:\"$\"},n={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},t={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[a,i,{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TM,{b:\"[_a-z][\\\\w']*\"})].concat(c)},l={cN:\"container\",b:\"{\",e:\"}\",c:t.c};return{aliases:[\"hs\"],k:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 qualified as hiding\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"class\",b:\"^(\\\\s*)?(class|instance)\\\\b\",e:\"where\",k:\"class family instance where\",c:[n,t].concat(c)},{cN:\"typedef\",b:\"\\\\b(data|(new)?type)\\\\b\",e:\"$\",k:\"data family type newtype deriving\",c:[a,n,t,l].concat(c)},{cN:\"default\",bK:\"default\",e:\"$\",c:[n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bforeign\\\\b\",e:\"$\",k:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",c:[n,e.QSM].concat(c)},{cN:\"shebang\",b:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",e:\"$\"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"erlang-repl\",function(r){return{k:{special_functions:\"spawn spawn_link self\",reserved:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},c:[{cN:\"prompt\",b:\"^[0-9]+> \",r:10},r.C(\"%\",\"$\"),{cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},r.ASM,r.QSM,{cN:\"constant\",b:\"\\\\?(::)?([A-Z]\\\\w*(::)?)+\"},{cN:\"arrow\",b:\"->\"},{cN:\"ok\",b:\"ok\"},{cN:\"exclamation_mark\",b:\"!\"},{cN:\"function_or_atom\",b:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",r:0},{cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_']*\",r:0}]}});hljs.registerLanguage(\"haxe\",function(e){var r=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\";return{aliases:[\"hx\"],k:{keyword:\"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while\",literal:\"true false null\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end error\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:\"type\",b:\":\",e:r,r:10}]}]}});hljs.registerLanguage(\"stylus\",function(t){var e={cN:\"variable\",b:\"\\\\$\"+t.IR},o={cN:\"hexcolor\",b:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\",r:10},i=[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"],r=[\"after\",\"before\",\"first-letter\",\"first-line\",\"active\",\"first-child\",\"focus\",\"hover\",\"lang\",\"link\",\"visited\"],n=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],a=\"[\\\\.\\\\s\\\\n\\\\[\\\\:,]\",l=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"],d=[\"\\\\{\",\"\\\\}\",\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"];return{aliases:[\"styl\"],cI:!1,i:\"(\"+d.join(\"|\")+\")\",k:\"if else for in\",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"class\",b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"id\",b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\b(\"+n.join(\"|\")+\")\"+a,rB:!0,c:[{cN:\"tag\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"}]},{cN:\"pseudo\",b:\"&?:?:\\\\b(\"+r.join(\"|\")+\")\"+a},{cN:\"at_rule\",b:\"@(\"+i.join(\"|\")+\")\\\\b\"},e,t.CSSNM,t.NM,{cN:\"function\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",i:\"[\\\\n]\",rB:!0,c:[{cN:\"title\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{cN:\"params\",b:/\\(/,e:/\\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:\"attribute\",b:\"\\\\b(\"+l.reverse().join(\"|\")+\")\\\\b\"}]}});hljs.registerLanguage(\"inform7\",function(e){var r=\"\\\\[\",o=\"\\\\]\";return{aliases:[\"i7\"],cI:!0,k:{keyword:\"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule\"},c:[{cN:\"string\",b:'\"',e:'\"',r:0,c:[{cN:\"subst\",b:r,e:o}]},{cN:\"title\",b:/^(Volume|Book|Part|Chapter|Section|Table)\\b/,e:\"$\"},{b:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b/,e:\":\",c:[{b:\"\\\\b\\\\(This\",e:\"\\\\)\"}]},{cN:\"comment\",b:r,e:o,c:[\"self\"]}]}});hljs.registerLanguage(\"ini\",function(e){var c={cN:\"string\",c:[e.BE],v:[{b:\"'''\",e:\"'''\",r:10},{b:'\"\"\"',e:'\"\"\"',r:10},{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]};return{aliases:[\"toml\"],cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),e.HCM,{cN:\"title\",b:/^\\s*\\[+/,e:/\\]+/},{cN:\"setting\",b:/^[a-z0-9\\[\\]_-]+\\s*=\\s*/,e:\"$\",c:[{cN:\"value\",eW:!0,k:\"on off true false yes no\",c:[{cN:\"variable\",v:[{b:/\\$[\\w\\d\"][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},c,{cN:\"number\",b:/([\\+\\-]+)?[\\d]+_[\\d_]+/},e.NM],r:0}]}]}});hljs.registerLanguage(\"sqf\",function(e){var t=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"or\",\"plus\",\"^\",\":\",\">>\",\"abs\",\"accTime\",\"acos\",\"action\",\"actionKeys\",\"actionKeysImages\",\"actionKeysNames\",\"actionKeysNamesArray\",\"actionName\",\"activateAddons\",\"activatedAddons\",\"activateKey\",\"addAction\",\"addBackpack\",\"addBackpackCargo\",\"addBackpackCargoGlobal\",\"addBackpackGlobal\",\"addCamShake\",\"addCuratorAddons\",\"addCuratorCameraArea\",\"addCuratorEditableObjects\",\"addCuratorEditingArea\",\"addCuratorPoints\",\"addEditorObject\",\"addEventHandler\",\"addGoggles\",\"addGroupIcon\",\"addHandgunItem\",\"addHeadgear\",\"addItem\",\"addItemCargo\",\"addItemCargoGlobal\",\"addItemPool\",\"addItemToBackpack\",\"addItemToUniform\",\"addItemToVest\",\"addLiveStats\",\"addMagazine\",\"addMagazine array\",\"addMagazineAmmoCargo\",\"addMagazineCargo\",\"addMagazineCargoGlobal\",\"addMagazineGlobal\",\"addMagazinePool\",\"addMagazines\",\"addMagazineTurret\",\"addMenu\",\"addMenuItem\",\"addMissionEventHandler\",\"addMPEventHandler\",\"addMusicEventHandler\",\"addPrimaryWeaponItem\",\"addPublicVariableEventHandler\",\"addRating\",\"addResources\",\"addScore\",\"addScoreSide\",\"addSecondaryWeaponItem\",\"addSwitchableUnit\",\"addTeamMember\",\"addToRemainsCollector\",\"addUniform\",\"addVehicle\",\"addVest\",\"addWaypoint\",\"addWeapon\",\"addWeaponCargo\",\"addWeaponCargoGlobal\",\"addWeaponGlobal\",\"addWeaponPool\",\"addWeaponTurret\",\"agent\",\"agents\",\"AGLToASL\",\"aimedAtTarget\",\"aimPos\",\"airDensityRTD\",\"airportSide\",\"AISFinishHeal\",\"alive\",\"allControls\",\"allCurators\",\"allDead\",\"allDeadMen\",\"allDisplays\",\"allGroups\",\"allMapMarkers\",\"allMines\",\"allMissionObjects\",\"allow3DMode\",\"allowCrewInImmobile\",\"allowCuratorLogicIgnoreAreas\",\"allowDamage\",\"allowDammage\",\"allowFileOperations\",\"allowFleeing\",\"allowGetIn\",\"allPlayers\",\"allSites\",\"allTurrets\",\"allUnits\",\"allUnitsUAV\",\"allVariables\",\"ammo\",\"and\",\"animate\",\"animateDoor\",\"animationPhase\",\"animationState\",\"append\",\"armoryPoints\",\"arrayIntersect\",\"asin\",\"ASLToAGL\",\"ASLToATL\",\"assert\",\"assignAsCargo\",\"assignAsCargoIndex\",\"assignAsCommander\",\"assignAsDriver\",\"assignAsGunner\",\"assignAsTurret\",\"assignCurator\",\"assignedCargo\",\"assignedCommander\",\"assignedDriver\",\"assignedGunner\",\"assignedItems\",\"assignedTarget\",\"assignedTeam\",\"assignedVehicle\",\"assignedVehicleRole\",\"assignItem\",\"assignTeam\",\"assignToAirport\",\"atan\",\"atan2\",\"atg\",\"ATLToASL\",\"attachedObject\",\"attachedObjects\",\"attachedTo\",\"attachObject\",\"attachTo\",\"attackEnabled\",\"backpack\",\"backpackCargo\",\"backpackContainer\",\"backpackItems\",\"backpackMagazines\",\"backpackSpaceFor\",\"behaviour\",\"benchmark\",\"binocular\",\"blufor\",\"boundingBox\",\"boundingBoxReal\",\"boundingCenter\",\"breakOut\",\"breakTo\",\"briefingName\",\"buildingExit\",\"buildingPos\",\"buttonAction\",\"buttonSetAction\",\"cadetMode\",\"call\",\"callExtension\",\"camCommand\",\"camCommit\",\"camCommitPrepared\",\"camCommitted\",\"camConstuctionSetParams\",\"camCreate\",\"camDestroy\",\"cameraEffect\",\"cameraEffectEnableHUD\",\"cameraInterest\",\"cameraOn\",\"cameraView\",\"campaignConfigFile\",\"camPreload\",\"camPreloaded\",\"camPrepareBank\",\"camPrepareDir\",\"camPrepareDive\",\"camPrepareFocus\",\"camPrepareFov\",\"camPrepareFovRange\",\"camPreparePos\",\"camPrepareRelPos\",\"camPrepareTarget\",\"camSetBank\",\"camSetDir\",\"camSetDive\",\"camSetFocus\",\"camSetFov\",\"camSetFovRange\",\"camSetPos\",\"camSetRelPos\",\"camSetTarget\",\"camTarget\",\"camUseNVG\",\"canAdd\",\"canAddItemToBackpack\",\"canAddItemToUniform\",\"canAddItemToVest\",\"cancelSimpleTaskDestination\",\"canFire\",\"canMove\",\"canSlingLoad\",\"canStand\",\"canUnloadInCombat\",\"captive\",\"captiveNum\",\"case\",\"catch\",\"cbChecked\",\"cbSetChecked\",\"ceil\",\"cheatsEnabled\",\"checkAIFeature\",\"civilian\",\"className\",\"clearAllItemsFromBackpack\",\"clearBackpackCargo\",\"clearBackpackCargoGlobal\",\"clearGroupIcons\",\"clearItemCargo\",\"clearItemCargoGlobal\",\"clearItemPool\",\"clearMagazineCargo\",\"clearMagazineCargoGlobal\",\"clearMagazinePool\",\"clearOverlay\",\"clearRadio\",\"clearWeaponCargo\",\"clearWeaponCargoGlobal\",\"clearWeaponPool\",\"closeDialog\",\"closeDisplay\",\"closeOverlay\",\"collapseObjectTree\",\"combatMode\",\"commandArtilleryFire\",\"commandChat\",\"commander\",\"commandFire\",\"commandFollow\",\"commandFSM\",\"commandGetOut\",\"commandingMenu\",\"commandMove\",\"commandRadio\",\"commandStop\",\"commandTarget\",\"commandWatch\",\"comment\",\"commitOverlay\",\"compile\",\"compileFinal\",\"completedFSM\",\"composeText\",\"configClasses\",\"configFile\",\"configHierarchy\",\"configName\",\"configProperties\",\"configSourceMod\",\"configSourceModList\",\"connectTerminalToUAV\",\"controlNull\",\"controlsGroupCtrl\",\"copyFromClipboard\",\"copyToClipboard\",\"copyWaypoints\",\"cos\",\"count\",\"countEnemy\",\"countFriendly\",\"countSide\",\"countType\",\"countUnknown\",\"createAgent\",\"createCenter\",\"createDialog\",\"createDiaryLink\",\"createDiaryRecord\",\"createDiarySubject\",\"createDisplay\",\"createGearDialog\",\"createGroup\",\"createGuardedPoint\",\"createLocation\",\"createMarker\",\"createMarkerLocal\",\"createMenu\",\"createMine\",\"createMissionDisplay\",\"createSimpleTask\",\"createSite\",\"createSoundSource\",\"createTask\",\"createTeam\",\"createTrigger\",\"createUnit\",\"createUnit array\",\"createVehicle\",\"createVehicle array\",\"createVehicleCrew\",\"createVehicleLocal\",\"crew\",\"ctrlActivate\",\"ctrlAddEventHandler\",\"ctrlAutoScrollDelay\",\"ctrlAutoScrollRewind\",\"ctrlAutoScrollSpeed\",\"ctrlChecked\",\"ctrlClassName\",\"ctrlCommit\",\"ctrlCommitted\",\"ctrlCreate\",\"ctrlDelete\",\"ctrlEnable\",\"ctrlEnabled\",\"ctrlFade\",\"ctrlHTMLLoaded\",\"ctrlIDC\",\"ctrlIDD\",\"ctrlMapAnimAdd\",\"ctrlMapAnimClear\",\"ctrlMapAnimCommit\",\"ctrlMapAnimDone\",\"ctrlMapCursor\",\"ctrlMapMouseOver\",\"ctrlMapScale\",\"ctrlMapScreenToWorld\",\"ctrlMapWorldToScreen\",\"ctrlModel\",\"ctrlModelDirAndUp\",\"ctrlModelScale\",\"ctrlParent\",\"ctrlPosition\",\"ctrlRemoveAllEventHandlers\",\"ctrlRemoveEventHandler\",\"ctrlScale\",\"ctrlSetActiveColor\",\"ctrlSetAutoScrollDelay\",\"ctrlSetAutoScrollRewind\",\"ctrlSetAutoScrollSpeed\",\"ctrlSetBackgroundColor\",\"ctrlSetChecked\",\"ctrlSetEventHandler\",\"ctrlSetFade\",\"ctrlSetFocus\",\"ctrlSetFont\",\"ctrlSetFontH1\",\"ctrlSetFontH1B\",\"ctrlSetFontH2\",\"ctrlSetFontH2B\",\"ctrlSetFontH3\",\"ctrlSetFontH3B\",\"ctrlSetFontH4\",\"ctrlSetFontH4B\",\"ctrlSetFontH5\",\"ctrlSetFontH5B\",\"ctrlSetFontH6\",\"ctrlSetFontH6B\",\"ctrlSetFontHeight\",\"ctrlSetFontHeightH1\",\"ctrlSetFontHeightH2\",\"ctrlSetFontHeightH3\",\"ctrlSetFontHeightH4\",\"ctrlSetFontHeightH5\",\"ctrlSetFontHeightH6\",\"ctrlSetFontP\",\"ctrlSetFontPB\",\"ctrlSetForegroundColor\",\"ctrlSetModel\",\"ctrlSetModelDirAndUp\",\"ctrlSetModelScale\",\"ctrlSetPosition\",\"ctrlSetScale\",\"ctrlSetStructuredText\",\"ctrlSetText\",\"ctrlSetTextColor\",\"ctrlSetTooltip\",\"ctrlSetTooltipColorBox\",\"ctrlSetTooltipColorShade\",\"ctrlSetTooltipColorText\",\"ctrlShow\",\"ctrlShown\",\"ctrlText\",\"ctrlTextHeight\",\"ctrlType\",\"ctrlVisible\",\"curatorAddons\",\"curatorCamera\",\"curatorCameraArea\",\"curatorCameraAreaCeiling\",\"curatorCoef\",\"curatorEditableObjects\",\"curatorEditingArea\",\"curatorEditingAreaType\",\"curatorMouseOver\",\"curatorPoints\",\"curatorRegisteredObjects\",\"curatorSelected\",\"curatorWaypointCost\",\"currentChannel\",\"currentCommand\",\"currentMagazine\",\"currentMagazineDetail\",\"currentMagazineDetailTurret\",\"currentMagazineTurret\",\"currentMuzzle\",\"currentNamespace\",\"currentTask\",\"currentTasks\",\"currentThrowable\",\"currentVisionMode\",\"currentWaypoint\",\"currentWeapon\",\"currentWeaponMode\",\"currentWeaponTurret\",\"currentZeroing\",\"cursorTarget\",\"customChat\",\"customRadio\",\"cutFadeOut\",\"cutObj\",\"cutRsc\",\"cutText\",\"damage\",\"date\",\"dateToNumber\",\"daytime\",\"deActivateKey\",\"debriefingText\",\"debugFSM\",\"debugLog\",\"default\",\"deg\",\"deleteAt\",\"deleteCenter\",\"deleteCollection\",\"deleteEditorObject\",\"deleteGroup\",\"deleteIdentity\",\"deleteLocation\",\"deleteMarker\",\"deleteMarkerLocal\",\"deleteRange\",\"deleteResources\",\"deleteSite\",\"deleteStatus\",\"deleteTeam\",\"deleteVehicle\",\"deleteVehicleCrew\",\"deleteWaypoint\",\"detach\",\"detectedMines\",\"diag activeMissionFSMs\",\"diag activeSQFScripts\",\"diag activeSQSScripts\",\"diag captureFrame\",\"diag captureSlowFrame\",\"diag fps\",\"diag fpsMin\",\"diag frameNo\",\"diag log\",\"diag logSlowFrame\",\"diag tickTime\",\"dialog\",\"diarySubjectExists\",\"didJIP\",\"didJIPOwner\",\"difficulty\",\"difficultyEnabled\",\"difficultyEnabledRTD\",\"direction\",\"directSay\",\"disableAI\",\"disableCollisionWith\",\"disableConversation\",\"disableDebriefingStats\",\"disableSerialization\",\"disableTIEquipment\",\"disableUAVConnectability\",\"disableUserInput\",\"displayAddEventHandler\",\"displayCtrl\",\"displayNull\",\"displayRemoveAllEventHandlers\",\"displayRemoveEventHandler\",\"displaySetEventHandler\",\"dissolveTeam\",\"distance\",\"distance2D\",\"distanceSqr\",\"distributionRegion\",\"do\",\"doArtilleryFire\",\"doFire\",\"doFollow\",\"doFSM\",\"doGetOut\",\"doMove\",\"doorPhase\",\"doStop\",\"doTarget\",\"doWatch\",\"drawArrow\",\"drawEllipse\",\"drawIcon\",\"drawIcon3D\",\"drawLine\",\"drawLine3D\",\"drawLink\",\"drawLocation\",\"drawRectangle\",\"driver\",\"drop\",\"east\",\"echo\",\"editObject\",\"editorSetEventHandler\",\"effectiveCommander\",\"else\",\"emptyPositions\",\"enableAI\",\"enableAIFeature\",\"enableAttack\",\"enableCamShake\",\"enableCaustics\",\"enableCollisionWith\",\"enableCopilot\",\"enableDebriefingStats\",\"enableDiagLegend\",\"enableEndDialog\",\"enableEngineArtillery\",\"enableEnvironment\",\"enableFatigue\",\"enableGunLights\",\"enableIRLasers\",\"enableMimics\",\"enablePersonTurret\",\"enableRadio\",\"enableReload\",\"enableRopeAttach\",\"enableSatNormalOnDetail\",\"enableSaving\",\"enableSentences\",\"enableSimulation\",\"enableSimulationGlobal\",\"enableTeamSwitch\",\"enableUAVConnectability\",\"enableUAVWaypoints\",\"endLoadingScreen\",\"endMission\",\"engineOn\",\"enginesIsOnRTD\",\"enginesRpmRTD\",\"enginesTorqueRTD\",\"entities\",\"estimatedEndServerTime\",\"estimatedTimeLeft\",\"evalObjectArgument\",\"everyBackpack\",\"everyContainer\",\"exec\",\"execEditorScript\",\"execFSM\",\"execVM\",\"exit\",\"exitWith\",\"exp\",\"expectedDestination\",\"eyeDirection\",\"eyePos\",\"face\",\"faction\",\"fadeMusic\",\"fadeRadio\",\"fadeSound\",\"fadeSpeech\",\"failMission\",\"false\",\"fillWeaponsFromPool\",\"find\",\"findCover\",\"findDisplay\",\"findEditorObject\",\"findEmptyPosition\",\"findEmptyPositionReady\",\"findNearestEnemy\",\"finishMissionInit\",\"finite\",\"fire\",\"fireAtTarget\",\"firstBackpack\",\"flag\",\"flagOwner\",\"fleeing\",\"floor\",\"flyInHeight\",\"fog\",\"fogForecast\",\"fogParams\",\"for\",\"forceAddUniform\",\"forceEnd\",\"forceMap\",\"forceRespawn\",\"forceSpeed\",\"forceWalk\",\"forceWeaponFire\",\"forceWeatherChange\",\"forEach\",\"forEachMember\",\"forEachMemberAgent\",\"forEachMemberTeam\",\"format\",\"formation\",\"formationDirection\",\"formationLeader\",\"formationMembers\",\"formationPosition\",\"formationTask\",\"formatText\",\"formLeader\",\"freeLook\",\"from\",\"fromEditor\",\"fuel\",\"fullCrew\",\"gearSlotAmmoCount\",\"gearSlotData\",\"getAllHitPointsDamage\",\"getAmmoCargo\",\"getArray\",\"getArtilleryAmmo\",\"getArtilleryComputerSettings\",\"getArtilleryETA\",\"getAssignedCuratorLogic\",\"getAssignedCuratorUnit\",\"getBackpackCargo\",\"getBleedingRemaining\",\"getBurningValue\",\"getCargoIndex\",\"getCenterOfMass\",\"getClientState\",\"getConnectedUAV\",\"getDammage\",\"getDescription\",\"getDir\",\"getDirVisual\",\"getDLCs\",\"getEditorCamera\",\"getEditorMode\",\"getEditorObjectScope\",\"getElevationOffset\",\"getFatigue\",\"getFriend\",\"getFSMVariable\",\"getFuelCargo\",\"getGroupIcon\",\"getGroupIconParams\",\"getGroupIcons\",\"getHideFrom\",\"getHit\",\"getHitIndex\",\"getHitPointDamage\",\"getItemCargo\",\"getMagazineCargo\",\"getMarkerColor\",\"getMarkerPos\",\"getMarkerSize\",\"getMarkerType\",\"getMass\",\"getModelInfo\",\"getNumber\",\"getObjectArgument\",\"getObjectChildren\",\"getObjectDLC\",\"getObjectMaterials\",\"getObjectProxy\",\"getObjectTextures\",\"getObjectType\",\"getObjectViewDistance\",\"getOxygenRemaining\",\"getPersonUsedDLCs\",\"getPlayerChannel\",\"getPlayerUID\",\"getPos\",\"getPosASL\",\"getPosASLVisual\",\"getPosASLW\",\"getPosATL\",\"getPosATLVisual\",\"getPosVisual\",\"getPosWorld\",\"getRepairCargo\",\"getResolution\",\"getShadowDistance\",\"getSlingLoad\",\"getSpeed\",\"getSuppression\",\"getTerrainHeightASL\",\"getText\",\"getVariable\",\"getWeaponCargo\",\"getWPPos\",\"glanceAt\",\"globalChat\",\"globalRadio\",\"goggles\",\"goto\",\"group\",\"groupChat\",\"groupFromNetId\",\"groupIconSelectable\",\"groupIconsVisible\",\"groupId\",\"groupOwner\",\"groupRadio\",\"groupSelectedUnits\",\"groupSelectUnit\",\"grpNull\",\"gunner\",\"gusts\",\"halt\",\"handgunItems\",\"handgunMagazine\",\"handgunWeapon\",\"handsHit\",\"hasInterface\",\"hasWeapon\",\"hcAllGroups\",\"hcGroupParams\",\"hcLeader\",\"hcRemoveAllGroups\",\"hcRemoveGroup\",\"hcSelected\",\"hcSelectGroup\",\"hcSetGroup\",\"hcShowBar\",\"hcShownBar\",\"headgear\",\"hideBody\",\"hideObject\",\"hideObjectGlobal\",\"hint\",\"hintC\",\"hintCadet\",\"hintSilent\",\"hmd\",\"hostMission\",\"htmlLoad\",\"HUDMovementLevels\",\"humidity\",\"if\",\"image\",\"importAllGroups\",\"importance\",\"in\",\"incapacitatedState\",\"independent\",\"inflame\",\"inflamed\",\"inGameUISetEventHandler\",\"inheritsFrom\",\"initAmbientLife\",\"inputAction\",\"inRangeOfArtillery\",\"insertEditorObject\",\"intersect\",\"isAbleToBreathe\",\"isAgent\",\"isArray\",\"isAutoHoverOn\",\"isAutonomous\",\"isAutotest\",\"isBleeding\",\"isBurning\",\"isClass\",\"isCollisionLightOn\",\"isCopilotEnabled\",\"isDedicated\",\"isDLCAvailable\",\"isEngineOn\",\"isEqualTo\",\"isFlashlightOn\",\"isFlatEmpty\",\"isForcedWalk\",\"isFormationLeader\",\"isHidden\",\"isInRemainsCollector\",\"isInstructorFigureEnabled\",\"isIRLaserOn\",\"isKeyActive\",\"isKindOf\",\"isLightOn\",\"isLocalized\",\"isManualFire\",\"isMarkedForCollection\",\"isMultiplayer\",\"isNil\",\"isNull\",\"isNumber\",\"isObjectHidden\",\"isObjectRTD\",\"isOnRoad\",\"isPipEnabled\",\"isPlayer\",\"isRealTime\",\"isServer\",\"isShowing3DIcons\",\"isSteamMission\",\"isStreamFriendlyUIEnabled\",\"isText\",\"isTouchingGround\",\"isTurnedOut\",\"isTutHintsEnabled\",\"isUAVConnectable\",\"isUAVConnected\",\"isUniformAllowed\",\"isWalking\",\"isWeaponDeployed\",\"isWeaponRested\",\"itemCargo\",\"items\",\"itemsWithMagazines\",\"join\",\"joinAs\",\"joinAsSilent\",\"joinSilent\",\"joinString\",\"kbAddDatabase\",\"kbAddDatabaseTargets\",\"kbAddTopic\",\"kbHasTopic\",\"kbReact\",\"kbRemoveTopic\",\"kbTell\",\"kbWasSaid\",\"keyImage\",\"keyName\",\"knowsAbout\",\"land\",\"landAt\",\"landResult\",\"language\",\"laserTarget\",\"lbAdd\",\"lbClear\",\"lbColor\",\"lbCurSel\",\"lbData\",\"lbDelete\",\"lbIsSelected\",\"lbPicture\",\"lbSelection\",\"lbSetColor\",\"lbSetCurSel\",\"lbSetData\",\"lbSetPicture\",\"lbSetPictureColor\",\"lbSetPictureColorDisabled\",\"lbSetPictureColorSelected\",\"lbSetSelectColor\",\"lbSetSelectColorRight\",\"lbSetSelected\",\"lbSetTooltip\",\"lbSetValue\",\"lbSize\",\"lbSort\",\"lbSortByValue\",\"lbText\",\"lbValue\",\"leader\",\"leaderboardDeInit\",\"leaderboardGetRows\",\"leaderboardInit\",\"leaveVehicle\",\"libraryCredits\",\"libraryDisclaimers\",\"lifeState\",\"lightAttachObject\",\"lightDetachObject\",\"lightIsOn\",\"lightnings\",\"limitSpeed\",\"linearConversion\",\"lineBreak\",\"lineIntersects\",\"lineIntersectsObjs\",\"lineIntersectsSurfaces\",\"lineIntersectsWith\",\"linkItem\",\"list\",\"listObjects\",\"ln\",\"lnbAddArray\",\"lnbAddColumn\",\"lnbAddRow\",\"lnbClear\",\"lnbColor\",\"lnbCurSelRow\",\"lnbData\",\"lnbDeleteColumn\",\"lnbDeleteRow\",\"lnbGetColumnsPosition\",\"lnbPicture\",\"lnbSetColor\",\"lnbSetColumnsPos\",\"lnbSetCurSelRow\",\"lnbSetData\",\"lnbSetPicture\",\"lnbSetText\",\"lnbSetValue\",\"lnbSize\",\"lnbText\",\"lnbValue\",\"load\",\"loadAbs\",\"loadBackpack\",\"loadFile\",\"loadGame\",\"loadIdentity\",\"loadMagazine\",\"loadOverlay\",\"loadStatus\",\"loadUniform\",\"loadVest\",\"local\",\"localize\",\"locationNull\",\"locationPosition\",\"lock\",\"lockCameraTo\",\"lockCargo\",\"lockDriver\",\"locked\",\"lockedCargo\",\"lockedDriver\",\"lockedTurret\",\"lockTurret\",\"lockWP\",\"log\",\"logEntities\",\"lookAt\",\"lookAtPos\",\"magazineCargo\",\"magazines\",\"magazinesAllTurrets\",\"magazinesAmmo\",\"magazinesAmmoCargo\",\"magazinesAmmoFull\",\"magazinesDetail\",\"magazinesDetailBackpack\",\"magazinesDetailUniform\",\"magazinesDetailVest\",\"magazinesTurret\",\"magazineTurretAmmo\",\"mapAnimAdd\",\"mapAnimClear\",\"mapAnimCommit\",\"mapAnimDone\",\"mapCenterOnCamera\",\"mapGridPosition\",\"markAsFinishedOnSteam\",\"markerAlpha\",\"markerBrush\",\"markerColor\",\"markerDir\",\"markerPos\",\"markerShape\",\"markerSize\",\"markerText\",\"markerType\",\"max\",\"members\",\"min\",\"mineActive\",\"mineDetectedBy\",\"missionConfigFile\",\"missionName\",\"missionNamespace\",\"missionStart\",\"mod\",\"modelToWorld\",\"modelToWorldVisual\",\"moonIntensity\",\"morale\",\"move\",\"moveInAny\",\"moveInCargo\",\"moveInCommander\",\"moveInDriver\",\"moveInGunner\",\"moveInTurret\",\"moveObjectToEnd\",\"moveOut\",\"moveTime\",\"moveTo\",\"moveToCompleted\",\"moveToFailed\",\"musicVolume\",\"name\",\"name location\",\"nameSound\",\"nearEntities\",\"nearestBuilding\",\"nearestLocation\",\"nearestLocations\",\"nearestLocationWithDubbing\",\"nearestObject\",\"nearestObjects\",\"nearObjects\",\"nearObjectsReady\",\"nearRoads\",\"nearSupplies\",\"nearTargets\",\"needReload\",\"netId\",\"netObjNull\",\"newOverlay\",\"nextMenuItemIndex\",\"nextWeatherChange\",\"nil\",\"nMenuItems\",\"not\",\"numberToDate\",\"objectCurators\",\"objectFromNetId\",\"objectParent\",\"objNull\",\"objStatus\",\"onBriefingGroup\",\"onBriefingNotes\",\"onBriefingPlan\",\"onBriefingTeamSwitch\",\"onCommandModeChanged\",\"onDoubleClick\",\"onEachFrame\",\"onGroupIconClick\",\"onGroupIconOverEnter\",\"onGroupIconOverLeave\",\"onHCGroupSelectionChanged\",\"onMapSingleClick\",\"onPlayerConnected\",\"onPlayerDisconnected\",\"onPreloadFinished\",\"onPreloadStarted\",\"onShowNewObject\",\"onTeamSwitch\",\"openCuratorInterface\",\"openMap\",\"openYoutubeVideo\",\"opfor\",\"or\",\"orderGetIn\",\"overcast\",\"overcastForecast\",\"owner\",\"param\",\"params\",\"parseNumber\",\"parseText\",\"parsingNamespace\",\"particlesQuality\",\"pi\",\"pickWeaponPool\",\"pitch\",\"playableSlotsNumber\",\"playableUnits\",\"playAction\",\"playActionNow\",\"player\",\"playerRespawnTime\",\"playerSide\",\"playersNumber\",\"playGesture\",\"playMission\",\"playMove\",\"playMoveNow\",\"playMusic\",\"playScriptedMission\",\"playSound\",\"playSound3D\",\"position\",\"positionCameraToWorld\",\"posScreenToWorld\",\"posWorldToScreen\",\"ppEffectAdjust\",\"ppEffectCommit\",\"ppEffectCommitted\",\"ppEffectCreate\",\"ppEffectDestroy\",\"ppEffectEnable\",\"ppEffectForceInNVG\",\"precision\",\"preloadCamera\",\"preloadObject\",\"preloadSound\",\"preloadTitleObj\",\"preloadTitleRsc\",\"preprocessFile\",\"preprocessFileLineNumbers\",\"primaryWeapon\",\"primaryWeaponItems\",\"primaryWeaponMagazine\",\"priority\",\"private\",\"processDiaryLink\",\"productVersion\",\"profileName\",\"profileNamespace\",\"profileNameSteam\",\"progressLoadingScreen\",\"progressPosition\",\"progressSetPosition\",\"publicVariable\",\"publicVariableClient\",\"publicVariableServer\",\"pushBack\",\"putWeaponPool\",\"queryItemsPool\",\"queryMagazinePool\",\"queryWeaponPool\",\"rad\",\"radioChannelAdd\",\"radioChannelCreate\",\"radioChannelRemove\",\"radioChannelSetCallSign\",\"radioChannelSetLabel\",\"radioVolume\",\"rain\",\"rainbow\",\"random\",\"rank\",\"rankId\",\"rating\",\"rectangular\",\"registeredTasks\",\"registerTask\",\"reload\",\"reloadEnabled\",\"remoteControl\",\"remoteExec\",\"remoteExecCall\",\"removeAction\",\"removeAllActions\",\"removeAllAssignedItems\",\"removeAllContainers\",\"removeAllCuratorAddons\",\"removeAllCuratorCameraAreas\",\"removeAllCuratorEditingAreas\",\"removeAllEventHandlers\",\"removeAllHandgunItems\",\"removeAllItems\",\"removeAllItemsWithMagazines\",\"removeAllMissionEventHandlers\",\"removeAllMPEventHandlers\",\"removeAllMusicEventHandlers\",\"removeAllPrimaryWeaponItems\",\"removeAllWeapons\",\"removeBackpack\",\"removeBackpackGlobal\",\"removeCuratorAddons\",\"removeCuratorCameraArea\",\"removeCuratorEditableObjects\",\"removeCuratorEditingArea\",\"removeDrawIcon\",\"removeDrawLinks\",\"removeEventHandler\",\"removeFromRemainsCollector\",\"removeGoggles\",\"removeGroupIcon\",\"removeHandgunItem\",\"removeHeadgear\",\"removeItem\",\"removeItemFromBackpack\",\"removeItemFromUniform\",\"removeItemFromVest\",\"removeItems\",\"removeMagazine\",\"removeMagazineGlobal\",\"removeMagazines\",\"removeMagazinesTurret\",\"removeMagazineTurret\",\"removeMenuItem\",\"removeMissionEventHandler\",\"removeMPEventHandler\",\"removeMusicEventHandler\",\"removePrimaryWeaponItem\",\"removeSecondaryWeaponItem\",\"removeSimpleTask\",\"removeSwitchableUnit\",\"removeTeamMember\",\"removeUniform\",\"removeVest\",\"removeWeapon\",\"removeWeaponGlobal\",\"removeWeaponTurret\",\"requiredVersion\",\"resetCamShake\",\"resetSubgroupDirection\",\"resistance\",\"resize\",\"resources\",\"respawnVehicle\",\"restartEditorCamera\",\"reveal\",\"revealMine\",\"reverse\",\"reversedMouseY\",\"roadsConnectedTo\",\"roleDescription\",\"ropeAttachedObjects\",\"ropeAttachedTo\",\"ropeAttachEnabled\",\"ropeAttachTo\",\"ropeCreate\",\"ropeCut\",\"ropeEndPosition\",\"ropeLength\",\"ropes\",\"ropeUnwind\",\"ropeUnwound\",\"rotorsForcesRTD\",\"rotorsRpmRTD\",\"round\",\"runInitScript\",\"safeZoneH\",\"safeZoneW\",\"safeZoneWAbs\",\"safeZoneX\",\"safeZoneXAbs\",\"safeZoneY\",\"saveGame\",\"saveIdentity\",\"saveJoysticks\",\"saveOverlay\",\"saveProfileNamespace\",\"saveStatus\",\"saveVar\",\"savingEnabled\",\"say\",\"say2D\",\"say3D\",\"scopeName\",\"score\",\"scoreSide\",\"screenToWorld\",\"scriptDone\",\"scriptName\",\"scriptNull\",\"scudState\",\"secondaryWeapon\",\"secondaryWeaponItems\",\"secondaryWeaponMagazine\",\"select\",\"selectBestPlaces\",\"selectDiarySubject\",\"selectedEditorObjects\",\"selectEditorObject\",\"selectionPosition\",\"selectLeader\",\"selectNoPlayer\",\"selectPlayer\",\"selectWeapon\",\"selectWeaponTurret\",\"sendAUMessage\",\"sendSimpleCommand\",\"sendTask\",\"sendTaskResult\",\"sendUDPMessage\",\"serverCommand\",\"serverCommandAvailable\",\"serverCommandExecutable\",\"serverName\",\"serverTime\",\"set\",\"setAccTime\",\"setAirportSide\",\"setAmmo\",\"setAmmoCargo\",\"setAperture\",\"setApertureNew\",\"setArmoryPoints\",\"setAttributes\",\"setAutonomous\",\"setBehaviour\",\"setBleedingRemaining\",\"setCameraInterest\",\"setCamShakeDefParams\",\"setCamShakeParams\",\"setCamUseTi\",\"setCaptive\",\"setCenterOfMass\",\"setCollisionLight\",\"setCombatMode\",\"setCompassOscillation\",\"setCuratorCameraAreaCeiling\",\"setCuratorCoef\",\"setCuratorEditingAreaType\",\"setCuratorWaypointCost\",\"setCurrentChannel\",\"setCurrentTask\",\"setCurrentWaypoint\",\"setDamage\",\"setDammage\",\"setDate\",\"setDebriefingText\",\"setDefaultCamera\",\"setDestination\",\"setDetailMapBlendPars\",\"setDir\",\"setDirection\",\"setDrawIcon\",\"setDropInterval\",\"setEditorMode\",\"setEditorObjectScope\",\"setEffectCondition\",\"setFace\",\"setFaceAnimation\",\"setFatigue\",\"setFlagOwner\",\"setFlagSide\",\"setFlagTexture\",\"setFog\",\"setFog array\",\"setFormation\",\"setFormationTask\",\"setFormDir\",\"setFriend\",\"setFromEditor\",\"setFSMVariable\",\"setFuel\",\"setFuelCargo\",\"setGroupIcon\",\"setGroupIconParams\",\"setGroupIconsSelectable\",\"setGroupIconsVisible\",\"setGroupId\",\"setGroupIdGlobal\",\"setGroupOwner\",\"setGusts\",\"setHideBehind\",\"setHit\",\"setHitIndex\",\"setHitPointDamage\",\"setHorizonParallaxCoef\",\"setHUDMovementLevels\",\"setIdentity\",\"setImportance\",\"setLeader\",\"setLightAmbient\",\"setLightAttenuation\",\"setLightBrightness\",\"setLightColor\",\"setLightDayLight\",\"setLightFlareMaxDistance\",\"setLightFlareSize\",\"setLightIntensity\",\"setLightnings\",\"setLightUseFlare\",\"setLocalWindParams\",\"setMagazineTurretAmmo\",\"setMarkerAlpha\",\"setMarkerAlphaLocal\",\"setMarkerBrush\",\"setMarkerBrushLocal\",\"setMarkerColor\",\"setMarkerColorLocal\",\"setMarkerDir\",\"setMarkerDirLocal\",\"setMarkerPos\",\"setMarkerPosLocal\",\"setMarkerShape\",\"setMarkerShapeLocal\",\"setMarkerSize\",\"setMarkerSizeLocal\",\"setMarkerText\",\"setMarkerTextLocal\",\"setMarkerType\",\"setMarkerTypeLocal\",\"setMass\",\"setMimic\",\"setMousePosition\",\"setMusicEffect\",\"setMusicEventHandler\",\"setName\",\"setNameSound\",\"setObjectArguments\",\"setObjectMaterial\",\"setObjectProxy\",\"setObjectTexture\",\"setObjectTextureGlobal\",\"setObjectViewDistance\",\"setOvercast\",\"setOwner\",\"setOxygenRemaining\",\"setParticleCircle\",\"setParticleClass\",\"setParticleFire\",\"setParticleParams\",\"setParticleRandom\",\"setPilotLight\",\"setPiPEffect\",\"setPitch\",\"setPlayable\",\"setPlayerRespawnTime\",\"setPos\",\"setPosASL\",\"setPosASL2\",\"setPosASLW\",\"setPosATL\",\"setPosition\",\"setPosWorld\",\"setRadioMsg\",\"setRain\",\"setRainbow\",\"setRandomLip\",\"setRank\",\"setRectangular\",\"setRepairCargo\",\"setShadowDistance\",\"setSide\",\"setSimpleTaskDescription\",\"setSimpleTaskDestination\",\"setSimpleTaskTarget\",\"setSimulWeatherLayers\",\"setSize\",\"setSkill\",\"setSkill array\",\"setSlingLoad\",\"setSoundEffect\",\"setSpeaker\",\"setSpeech\",\"setSpeedMode\",\"setStatValue\",\"setSuppression\",\"setSystemOfUnits\",\"setTargetAge\",\"setTaskResult\",\"setTaskState\",\"setTerrainGrid\",\"setText\",\"setTimeMultiplier\",\"setTitleEffect\",\"setTriggerActivation\",\"setTriggerArea\",\"setTriggerStatements\",\"setTriggerText\",\"setTriggerTimeout\",\"setTriggerType\",\"setType\",\"setUnconscious\",\"setUnitAbility\",\"setUnitPos\",\"setUnitPosWeak\",\"setUnitRank\",\"setUnitRecoilCoefficient\",\"setUnloadInCombat\",\"setUserActionText\",\"setVariable\",\"setVectorDir\",\"setVectorDirAndUp\",\"setVectorUp\",\"setVehicleAmmo\",\"setVehicleAmmoDef\",\"setVehicleArmor\",\"setVehicleId\",\"setVehicleLock\",\"setVehiclePosition\",\"setVehicleTiPars\",\"setVehicleVarName\",\"setVelocity\",\"setVelocityTransformation\",\"setViewDistance\",\"setVisibleIfTreeCollapsed\",\"setWaves\",\"setWaypointBehaviour\",\"setWaypointCombatMode\",\"setWaypointCompletionRadius\",\"setWaypointDescription\",\"setWaypointFormation\",\"setWaypointHousePosition\",\"setWaypointLoiterRadius\",\"setWaypointLoiterType\",\"setWaypointName\",\"setWaypointPosition\",\"setWaypointScript\",\"setWaypointSpeed\",\"setWaypointStatements\",\"setWaypointTimeout\",\"setWaypointType\",\"setWaypointVisible\",\"setWeaponReloadingTime\",\"setWind\",\"setWindDir\",\"setWindForce\",\"setWindStr\",\"setWPPos\",\"show3DIcons\",\"showChat\",\"showCinemaBorder\",\"showCommandingMenu\",\"showCompass\",\"showCuratorCompass\",\"showGPS\",\"showHUD\",\"showLegend\",\"showMap\",\"shownArtilleryComputer\",\"shownChat\",\"shownCompass\",\"shownCuratorCompass\",\"showNewEditorObject\",\"shownGPS\",\"shownHUD\",\"shownMap\",\"shownPad\",\"shownRadio\",\"shownUAVFeed\",\"shownWarrant\",\"shownWatch\",\"showPad\",\"showRadio\",\"showSubtitles\",\"showUAVFeed\",\"showWarrant\",\"showWatch\",\"showWaypoint\",\"side\",\"sideChat\",\"sideEnemy\",\"sideFriendly\",\"sideLogic\",\"sideRadio\",\"sideUnknown\",\"simpleTasks\",\"simulationEnabled\",\"simulCloudDensity\",\"simulCloudOcclusion\",\"simulInClouds\",\"simulWeatherSync\",\"sin\",\"size\",\"sizeOf\",\"skill\",\"skillFinal\",\"skipTime\",\"sleep\",\"sliderPosition\",\"sliderRange\",\"sliderSetPosition\",\"sliderSetRange\",\"sliderSetSpeed\",\"sliderSpeed\",\"slingLoadAssistantShown\",\"soldierMagazines\",\"someAmmo\",\"sort\",\"soundVolume\",\"spawn\",\"speaker\",\"speed\",\"speedMode\",\"splitString\",\"sqrt\",\"squadParams\",\"stance\",\"startLoadingScreen\",\"step\",\"stop\",\"stopped\",\"str\",\"sunOrMoon\",\"supportInfo\",\"suppressFor\",\"surfaceIsWater\",\"surfaceNormal\",\"surfaceType\",\"swimInDepth\",\"switch\",\"switchableUnits\",\"switchAction\",\"switchCamera\",\"switchGesture\",\"switchLight\",\"switchMove\",\"synchronizedObjects\",\"synchronizedTriggers\",\"synchronizedWaypoints\",\"synchronizeObjectsAdd\",\"synchronizeObjectsRemove\",\"synchronizeTrigger\",\"synchronizeWaypoint\",\"synchronizeWaypoint trigger\",\"systemChat\",\"systemOfUnits\",\"tan\",\"targetKnowledge\",\"targetsAggregate\",\"targetsQuery\",\"taskChildren\",\"taskCompleted\",\"taskDescription\",\"taskDestination\",\"taskHint\",\"taskNull\",\"taskParent\",\"taskResult\",\"taskState\",\"teamMember\",\"teamMemberNull\",\"teamName\",\"teams\",\"teamSwitch\",\"teamSwitchEnabled\",\"teamType\",\"terminate\",\"terrainIntersect\",\"terrainIntersectASL\",\"text\",\"text location\",\"textLog\",\"textLogFormat\",\"tg\",\"then\",\"throw\",\"time\",\"timeMultiplier\",\"titleCut\",\"titleFadeOut\",\"titleObj\",\"titleRsc\",\"titleText\",\"to\",\"toArray\",\"toLower\",\"toString\",\"toUpper\",\"triggerActivated\",\"triggerActivation\",\"triggerArea\",\"triggerAttachedVehicle\",\"triggerAttachObject\",\"triggerAttachVehicle\",\"triggerStatements\",\"triggerText\",\"triggerTimeout\",\"triggerTimeoutCurrent\",\"triggerType\",\"true\",\"try\",\"turretLocal\",\"turretOwner\",\"turretUnit\",\"tvAdd\",\"tvClear\",\"tvCollapse\",\"tvCount\",\"tvCurSel\",\"tvData\",\"tvDelete\",\"tvExpand\",\"tvPicture\",\"tvSetCurSel\",\"tvSetData\",\"tvSetPicture\",\"tvSetPictureColor\",\"tvSetTooltip\",\"tvSetValue\",\"tvSort\",\"tvSortByValue\",\"tvText\",\"tvValue\",\"type\",\"typeName\",\"typeOf\",\"UAVControl\",\"uiNamespace\",\"uiSleep\",\"unassignCurator\",\"unassignItem\",\"unassignTeam\",\"unassignVehicle\",\"underwater\",\"uniform\",\"uniformContainer\",\"uniformItems\",\"uniformMagazines\",\"unitAddons\",\"unitBackpack\",\"unitPos\",\"unitReady\",\"unitRecoilCoefficient\",\"units\",\"unitsBelowHeight\",\"unlinkItem\",\"unlockAchievement\",\"unregisterTask\",\"updateDrawIcon\",\"updateMenuItem\",\"updateObjectTree\",\"useAudioTimeForMoves\",\"vectorAdd\",\"vectorCos\",\"vectorCrossProduct\",\"vectorDiff\",\"vectorDir\",\"vectorDirVisual\",\"vectorDistance\",\"vectorDistanceSqr\",\"vectorDotProduct\",\"vectorFromTo\",\"vectorMagnitude\",\"vectorMagnitudeSqr\",\"vectorMultiply\",\"vectorNormalized\",\"vectorUp\",\"vectorUpVisual\",\"vehicle\",\"vehicleChat\",\"vehicleRadio\",\"vehicles\",\"vehicleVarName\",\"velocity\",\"velocityModelSpace\",\"verifySignature\",\"vest\",\"vestContainer\",\"vestItems\",\"vestMagazines\",\"viewDistance\",\"visibleCompass\",\"visibleGPS\",\"visibleMap\",\"visiblePosition\",\"visiblePositionASL\",\"visibleWatch\",\"waitUntil\",\"waves\",\"waypointAttachedObject\",\"waypointAttachedVehicle\",\"waypointAttachObject\",\"waypointAttachVehicle\",\"waypointBehaviour\",\"waypointCombatMode\",\"waypointCompletionRadius\",\"waypointDescription\",\"waypointFormation\",\"waypointHousePosition\",\"waypointLoiterRadius\",\"waypointLoiterType\",\"waypointName\",\"waypointPosition\",\"waypoints\",\"waypointScript\",\"waypointsEnabledUAV\",\"waypointShow\",\"waypointSpeed\",\"waypointStatements\",\"waypointTimeout\",\"waypointTimeoutCurrent\",\"waypointType\",\"waypointVisible\",\"weaponAccessories\",\"weaponCargo\",\"weaponDirection\",\"weaponLowered\",\"weapons\",\"weaponsItems\",\"weaponsItemsCargo\",\"weaponState\",\"weaponsTurret\",\"weightRTD\",\"west\",\"WFSideText\",\"while\",\"wind\",\"windDir\",\"windStr\",\"wingsForcesRTD\",\"with\",\"worldName\",\"worldSize\",\"worldToModel\",\"worldToModelVisual\",\"worldToScreen\"],a=[\"case\",\"catch\",\"default\",\"do\",\"else\",\"exit\",\"exitWith|5\",\"for\",\"forEach\",\"from\",\"if\",\"switch\",\"then\",\"throw\",\"to\",\"try\",\"while\",\"with\"],r=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"^\",\":\",\">>\"],o=[\"_forEachIndex|10\",\"_this|10\",\"_x|10\"],i=[\"true\",\"false\",\"nil\"],n=t.filter(function(e){return-1==a.indexOf(e)&&-1==i.indexOf(e)&&-1==r.indexOf(e)});n=n.concat(o);var s={cN:\"string\",r:0,v:[{b:'\"',e:'\"',c:[{b:'\"\"'}]},{b:\"'\",e:\"'\",c:[{b:\"''\"}]}]},l={cN:\"number\",b:e.NR,r:0},c={cN:\"string\",v:[e.QSM,{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},d={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[c,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},c,l,e.CLCM,e.CBCM]};return{aliases:[\"sqf\"],cI:!0,k:{keyword:a.join(\" \"),built_in:n.join(\" \"),literal:i.join(\" \")},c:[e.CLCM,e.CBCM,l,s,d]}});hljs.registerLanguage(\"vbscript-html\",function(r){return{sL:\"xml\",c:[{b:\"<%\",e:\"%>\",sL:\"vbscript\"}]}});hljs.registerLanguage(\"cal\",function(e){var r=\"div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var\",t=\"false true\",a=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],c={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},o={cN:\"string\",b:/(#\\d+)+/},n={cN:\"date\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(DT|D|T)\",r:0},i={cN:\"variable\",b:'\"',e:'\"'},d={cN:\"function\",bK:\"procedure\",e:/[:;]/,k:\"procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[c,o]}].concat(a)},b={cN:\"class\",b:\"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\\\d+) ([^\\\\r\\\\n]+)\",rB:!0,c:[e.TM,d]};return{cI:!0,k:{keyword:r,literal:t},i:/\\/\\*/,c:[c,o,n,i,e.NM,b,d]}});hljs.registerLanguage(\"mojolicious\",function(e){return{sL:\"xml\",c:[{cN:\"preprocessor\",b:\"^__(END|DATA)__$\"},{b:\"^\\\\s*%{1,2}={0,2}\",e:\"$\",sL:\"perl\"},{b:\"<%{1,2}={0,2}\",e:\"={0,1}%>\",sL:\"perl\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"clojure\",function(e){var t={built_in:\"def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},r=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+r+\"][\"+r+\"0-9/;:]*\",a=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",o={b:n,r:0},s={cN:\"number\",b:a,r:0},c=e.inherit(e.QSM,{i:null}),i=e.C(\";\",\"$\",{r:0}),d={cN:\"literal\",b:/\\b(true|false|nil)\\b/},l={cN:\"collection\",b:\"[\\\\[\\\\{]\",e:\"[\\\\]\\\\}]\"},m={cN:\"comment\",b:\"\\\\^\"+n},p=e.C(\"\\\\^\\\\{\",\"\\\\}\"),u={cN:\"attribute\",b:\"[:]\"+n},f={cN:\"list\",b:\"\\\\(\",e:\"\\\\)\"},h={eW:!0,r:0},y={k:t,l:n,cN:\"keyword\",b:n,starts:h},b=[f,c,m,p,i,u,l,s,d,o];return f.c=[e.C(\"comment\",\"\"),y,h],h.c=b,l.c=b,{aliases:[\"clj\"],i:/\\S/,c:[f,c,m,p,i,u,l,s,d]}});hljs.registerLanguage(\"dart\",function(e){var t={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"}\",k:\"true false null this is new super\"},r={cN:\"string\",v:[{b:\"r'''\",e:\"'''\"},{b:'r\"\"\"',e:'\"\"\"'},{b:\"r'\",e:\"'\",i:\"\\\\n\"},{b:'r\"',e:'\"',i:\"\\\\n\"},{b:\"'''\",e:\"'''\",c:[e.BE,t]},{b:'\"\"\"',e:'\"\"\"',c:[e.BE,t]},{b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE,t]},{b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:\"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with\",literal:\"abstract as dynamic export external factory get implements import library operator part set static typedef\",built_in:\"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList\"};return{k:n,c:[r,e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{sL:\"markdown\"}),e.C(\"///\",\"$\",{sL:\"markdown\"}),e.CLCM,e.CBCM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{b:\"=>\"}]}});hljs.registerLanguage(\"ruleslanguage\",function(T){return{k:{keyword:\"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING\",built_in:\"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME\"},c:[T.CLCM,T.CBCM,T.ASM,T.QSM,T.CNM,{cN:\"array\",v:[{b:\"#\\\\s+[a-zA-Z\\\\ \\\\.]*\",r:0},{b:\"#[a-zA-Z\\\\ \\\\.]+\"}]}]}});hljs.registerLanguage(\"applescript\",function(e){var t=e.inherit(e.QSM,{i:\"\"}),r={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CNM,t]},o=e.C(\"--\",\"$\"),n=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\",o]}),a=[o,n,e.HCM];return{aliases:[\"osascript\"],k:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",constant:\"AppleScript false linefeed return pi quote result space tab true\",type:\"alias application boolean class constant date file integer list number real record string text\",command:\"activate beep count delay launch log offset read round run say summarize write\",property:\"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},c:[t,e.CNM,{cN:\"type\",b:\"\\\\bPOSIX file\\\\b\"},{cN:\"command\",b:\"\\\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\\\b|^\\\\s*return\\\\b\"},{cN:\"constant\",b:\"\\\\b(text item delimiters|current application|missing value)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\\\b\"},{cN:\"property\",b:\"\\\\b(POSIX path|(date|time) string|quoted form)\\\\b\"},{cN:\"function_start\",bK:\"on\",i:\"[${=;\\\\n]\",c:[e.UTM,r]}].concat(a),i:\"//|->|=>|\\\\[\\\\[\"}});hljs.registerLanguage(\"xml\",function(t){var s=\"[A-Za-z0-9\\\\._:-]+\",c={b:/<\\?(php)?(?!\\w)/,e:/\\?>/,sL:\"php\"},e={eW:!0,i:/</,r:0,c:[c,{cN:\"attribute\",b:s,r:0},{b:\"=\",r:0,c:[{cN:\"value\",c:[c],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\\/>]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},t.C(\"<!--\",\"-->\",{r:10}),{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[e],starts:{e:\"</style>\",rE:!0,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[e],starts:{e:\"</script>\",rE:!0,sL:[\"actionscript\",\"javascript\",\"handlebars\"]}},c,{cN:\"pi\",b:/<\\?\\w+/,e:/\\?>/,r:10},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:/[^ \\/><\\n\\t]+/,r:0},e]}]}});hljs.registerLanguage(\"elixir\",function(e){var n=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\",r=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",b=\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote\",c={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:n,k:b},a={cN:\"string\",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},i={cN:\"function\",bK:\"def defp defmacro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:\"class\",bK:\"defmodule defrecord\",e:/\\bdo\\b|$|;/}),l=[a,e.HCM,s,i,{cN:\"constant\",b:\"(\\\\b[A-Z_]\\\\w*(.)?)+\",r:0},{cN:\"symbol\",b:\":\",c:[a,{b:r}],r:0},{cN:\"symbol\",b:n+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"->\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[e.HCM,{cN:\"regexp\",i:\"\\\\n\",c:[e.BE,c],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage(\"autoit\",function(e){var t=\"ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With\",r=\"True False And Null Not Or\",i=\"Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Opt Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown TCPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend UDPShutdown UDPStartup VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait WinWaitActive WinWaitClose WinWaitNotActive Array1DToHistogram ArrayAdd ArrayBinarySearch ArrayColDelete ArrayColInsert ArrayCombinations ArrayConcatenate ArrayDelete ArrayDisplay ArrayExtract ArrayFindAll ArrayInsert ArrayMax ArrayMaxIndex ArrayMin ArrayMinIndex ArrayPermute ArrayPop ArrayPush ArrayReverse ArraySearch ArrayShuffle ArraySort ArraySwap ArrayToClip ArrayToString ArrayTranspose ArrayTrim ArrayUnique Assert ChooseColor ChooseFont ClipBoard_ChangeChain ClipBoard_Close ClipBoard_CountFormats ClipBoard_Empty ClipBoard_EnumFormats ClipBoard_FormatStr ClipBoard_GetData ClipBoard_GetDataEx ClipBoard_GetFormatName ClipBoard_GetOpenWindow ClipBoard_GetOwner ClipBoard_GetPriorityFormat ClipBoard_GetSequenceNumber ClipBoard_GetViewer ClipBoard_IsFormatAvailable ClipBoard_Open ClipBoard_RegisterFormat ClipBoard_SetData ClipBoard_SetDataEx ClipBoard_SetViewer ClipPutFile ColorConvertHSLtoRGB ColorConvertRGBtoHSL ColorGetBlue ColorGetCOLORREF ColorGetGreen ColorGetRed ColorGetRGB ColorSetCOLORREF ColorSetRGB Crypt_DecryptData Crypt_DecryptFile Crypt_DeriveKey Crypt_DestroyKey Crypt_EncryptData Crypt_EncryptFile Crypt_GenRandom Crypt_HashData Crypt_HashFile Crypt_Shutdown Crypt_Startup DateAdd DateDayOfWeek DateDaysInMonth DateDiff DateIsLeapYear DateIsValid DateTimeFormat DateTimeSplit DateToDayOfWeek DateToDayOfWeekISO DateToDayValue DateToMonth Date_Time_CompareFileTime Date_Time_DOSDateTimeToArray Date_Time_DOSDateTimeToFileTime Date_Time_DOSDateTimeToStr Date_Time_DOSDateToArray Date_Time_DOSDateToStr Date_Time_DOSTimeToArray Date_Time_DOSTimeToStr Date_Time_EncodeFileTime Date_Time_EncodeSystemTime Date_Time_FileTimeToArray Date_Time_FileTimeToDOSDateTime Date_Time_FileTimeToLocalFileTime Date_Time_FileTimeToStr Date_Time_FileTimeToSystemTime Date_Time_GetFileTime Date_Time_GetLocalTime Date_Time_GetSystemTime Date_Time_GetSystemTimeAdjustment Date_Time_GetSystemTimeAsFileTime Date_Time_GetSystemTimes Date_Time_GetTickCount Date_Time_GetTimeZoneInformation Date_Time_LocalFileTimeToFileTime Date_Time_SetFileTime Date_Time_SetLocalTime Date_Time_SetSystemTime Date_Time_SetSystemTimeAdjustment Date_Time_SetTimeZoneInformation Date_Time_SystemTimeToArray Date_Time_SystemTimeToDateStr Date_Time_SystemTimeToDateTimeStr Date_Time_SystemTimeToFileTime Date_Time_SystemTimeToTimeStr Date_Time_SystemTimeToTzSpecificLocalTime Date_Time_TzSpecificLocalTimeToSystemTime DayValueToDate DebugBugReportEnv DebugCOMError DebugOut DebugReport DebugReportEx DebugReportVar DebugSetup Degree EventLog__Backup EventLog__Clear EventLog__Close EventLog__Count EventLog__DeregisterSource EventLog__Full EventLog__Notify EventLog__Oldest EventLog__Open EventLog__OpenBackup EventLog__Read EventLog__RegisterSource EventLog__Report Excel_BookAttach Excel_BookClose Excel_BookList Excel_BookNew Excel_BookOpen Excel_BookOpenText Excel_BookSave Excel_BookSaveAs Excel_Close Excel_ColumnToLetter Excel_ColumnToNumber Excel_ConvertFormula Excel_Export Excel_FilterGet Excel_FilterSet Excel_Open Excel_PictureAdd Excel_Print Excel_RangeCopyPaste Excel_RangeDelete Excel_RangeFind Excel_RangeInsert Excel_RangeLinkAddRemove Excel_RangeRead Excel_RangeReplace Excel_RangeSort Excel_RangeValidate Excel_RangeWrite Excel_SheetAdd Excel_SheetCopyMove Excel_SheetDelete Excel_SheetList FileCountLines FileCreate FileListToArray FileListToArrayRec FilePrint FileReadToArray FileWriteFromArray FileWriteLog FileWriteToLine FTP_Close FTP_Command FTP_Connect FTP_DecodeInternetStatus FTP_DirCreate FTP_DirDelete FTP_DirGetCurrent FTP_DirPutContents FTP_DirSetCurrent FTP_FileClose FTP_FileDelete FTP_FileGet FTP_FileGetSize FTP_FileOpen FTP_FilePut FTP_FileRead FTP_FileRename FTP_FileTimeLoHiToStr FTP_FindFileClose FTP_FindFileFirst FTP_FindFileNext FTP_GetLastResponseInfo FTP_ListToArray FTP_ListToArray2D FTP_ListToArrayEx FTP_Open FTP_ProgressDownload FTP_ProgressUpload FTP_SetStatusCallback GDIPlus_ArrowCapCreate GDIPlus_ArrowCapDispose GDIPlus_ArrowCapGetFillState GDIPlus_ArrowCapGetHeight GDIPlus_ArrowCapGetMiddleInset GDIPlus_ArrowCapGetWidth GDIPlus_ArrowCapSetFillState GDIPlus_ArrowCapSetHeight GDIPlus_ArrowCapSetMiddleInset GDIPlus_ArrowCapSetWidth GDIPlus_BitmapApplyEffect GDIPlus_BitmapApplyEffectEx GDIPlus_BitmapCloneArea GDIPlus_BitmapConvertFormat GDIPlus_BitmapCreateApplyEffect GDIPlus_BitmapCreateApplyEffectEx GDIPlus_BitmapCreateDIBFromBitmap GDIPlus_BitmapCreateFromFile GDIPlus_BitmapCreateFromGraphics GDIPlus_BitmapCreateFromHBITMAP GDIPlus_BitmapCreateFromHICON GDIPlus_BitmapCreateFromHICON32 GDIPlus_BitmapCreateFromMemory GDIPlus_BitmapCreateFromResource GDIPlus_BitmapCreateFromScan0 GDIPlus_BitmapCreateFromStream GDIPlus_BitmapCreateHBITMAPFromBitmap GDIPlus_BitmapDispose GDIPlus_BitmapGetHistogram GDIPlus_BitmapGetHistogramEx GDIPlus_BitmapGetHistogramSize GDIPlus_BitmapGetPixel GDIPlus_BitmapLockBits GDIPlus_BitmapSetPixel GDIPlus_BitmapUnlockBits GDIPlus_BrushClone GDIPlus_BrushCreateSolid GDIPlus_BrushDispose GDIPlus_BrushGetSolidColor GDIPlus_BrushGetType GDIPlus_BrushSetSolidColor GDIPlus_ColorMatrixCreate GDIPlus_ColorMatrixCreateGrayScale GDIPlus_ColorMatrixCreateNegative GDIPlus_ColorMatrixCreateSaturation GDIPlus_ColorMatrixCreateScale GDIPlus_ColorMatrixCreateTranslate GDIPlus_CustomLineCapClone GDIPlus_CustomLineCapCreate GDIPlus_CustomLineCapDispose GDIPlus_CustomLineCapGetStrokeCaps GDIPlus_CustomLineCapSetStrokeCaps GDIPlus_Decoders GDIPlus_DecodersGetCount GDIPlus_DecodersGetSize GDIPlus_DrawImageFX GDIPlus_DrawImageFXEx GDIPlus_DrawImagePoints GDIPlus_EffectCreate GDIPlus_EffectCreateBlur GDIPlus_EffectCreateBrightnessContrast GDIPlus_EffectCreateColorBalance GDIPlus_EffectCreateColorCurve GDIPlus_EffectCreateColorLUT GDIPlus_EffectCreateColorMatrix GDIPlus_EffectCreateHueSaturationLightness GDIPlus_EffectCreateLevels GDIPlus_EffectCreateRedEyeCorrection GDIPlus_EffectCreateSharpen GDIPlus_EffectCreateTint GDIPlus_EffectDispose GDIPlus_EffectGetParameters GDIPlus_EffectSetParameters GDIPlus_Encoders GDIPlus_EncodersGetCLSID GDIPlus_EncodersGetCount GDIPlus_EncodersGetParamList GDIPlus_EncodersGetParamListSize GDIPlus_EncodersGetSize GDIPlus_FontCreate GDIPlus_FontDispose GDIPlus_FontFamilyCreate GDIPlus_FontFamilyCreateFromCollection GDIPlus_FontFamilyDispose GDIPlus_FontFamilyGetCellAscent GDIPlus_FontFamilyGetCellDescent GDIPlus_FontFamilyGetEmHeight GDIPlus_FontFamilyGetLineSpacing GDIPlus_FontGetHeight GDIPlus_FontPrivateAddFont GDIPlus_FontPrivateAddMemoryFont GDIPlus_FontPrivateCollectionDispose GDIPlus_FontPrivateCreateCollection GDIPlus_GraphicsClear GDIPlus_GraphicsCreateFromHDC GDIPlus_GraphicsCreateFromHWND GDIPlus_GraphicsDispose GDIPlus_GraphicsDrawArc GDIPlus_GraphicsDrawBezier GDIPlus_GraphicsDrawClosedCurve GDIPlus_GraphicsDrawClosedCurve2 GDIPlus_GraphicsDrawCurve GDIPlus_GraphicsDrawCurve2 GDIPlus_GraphicsDrawEllipse GDIPlus_GraphicsDrawImage GDIPlus_GraphicsDrawImagePointsRect GDIPlus_GraphicsDrawImageRect GDIPlus_GraphicsDrawImageRectRect GDIPlus_GraphicsDrawLine GDIPlus_GraphicsDrawPath GDIPlus_GraphicsDrawPie GDIPlus_GraphicsDrawPolygon GDIPlus_GraphicsDrawRect GDIPlus_GraphicsDrawString GDIPlus_GraphicsDrawStringEx GDIPlus_GraphicsFillClosedCurve GDIPlus_GraphicsFillClosedCurve2 GDIPlus_GraphicsFillEllipse GDIPlus_GraphicsFillPath GDIPlus_GraphicsFillPie GDIPlus_GraphicsFillPolygon GDIPlus_GraphicsFillRect GDIPlus_GraphicsFillRegion GDIPlus_GraphicsGetCompositingMode GDIPlus_GraphicsGetCompositingQuality GDIPlus_GraphicsGetDC GDIPlus_GraphicsGetInterpolationMode GDIPlus_GraphicsGetSmoothingMode GDIPlus_GraphicsGetTransform GDIPlus_GraphicsMeasureCharacterRanges GDIPlus_GraphicsMeasureString GDIPlus_GraphicsReleaseDC GDIPlus_GraphicsResetClip GDIPlus_GraphicsResetTransform GDIPlus_GraphicsRestore GDIPlus_GraphicsRotateTransform GDIPlus_GraphicsSave GDIPlus_GraphicsScaleTransform GDIPlus_GraphicsSetClipPath GDIPlus_GraphicsSetClipRect GDIPlus_GraphicsSetClipRegion GDIPlus_GraphicsSetCompositingMode GDIPlus_GraphicsSetCompositingQuality GDIPlus_GraphicsSetInterpolationMode GDIPlus_GraphicsSetPixelOffsetMode GDIPlus_GraphicsSetSmoothingMode GDIPlus_GraphicsSetTextRenderingHint GDIPlus_GraphicsSetTransform GDIPlus_GraphicsTransformPoints GDIPlus_GraphicsTranslateTransform GDIPlus_HatchBrushCreate GDIPlus_HICONCreateFromBitmap GDIPlus_ImageAttributesCreate GDIPlus_ImageAttributesDispose GDIPlus_ImageAttributesSetColorKeys GDIPlus_ImageAttributesSetColorMatrix GDIPlus_ImageDispose GDIPlus_ImageGetDimension GDIPlus_ImageGetFlags GDIPlus_ImageGetGraphicsContext GDIPlus_ImageGetHeight GDIPlus_ImageGetHorizontalResolution GDIPlus_ImageGetPixelFormat GDIPlus_ImageGetRawFormat GDIPlus_ImageGetThumbnail GDIPlus_ImageGetType GDIPlus_ImageGetVerticalResolution GDIPlus_ImageGetWidth GDIPlus_ImageLoadFromFile GDIPlus_ImageLoadFromStream GDIPlus_ImageResize GDIPlus_ImageRotateFlip GDIPlus_ImageSaveToFile GDIPlus_ImageSaveToFileEx GDIPlus_ImageSaveToStream GDIPlus_ImageScale GDIPlus_LineBrushCreate GDIPlus_LineBrushCreateFromRect GDIPlus_LineBrushCreateFromRectWithAngle GDIPlus_LineBrushGetColors GDIPlus_LineBrushGetRect GDIPlus_LineBrushMultiplyTransform GDIPlus_LineBrushResetTransform GDIPlus_LineBrushSetBlend GDIPlus_LineBrushSetColors GDIPlus_LineBrushSetGammaCorrection GDIPlus_LineBrushSetLinearBlend GDIPlus_LineBrushSetPresetBlend GDIPlus_LineBrushSetSigmaBlend GDIPlus_LineBrushSetTransform GDIPlus_MatrixClone GDIPlus_MatrixCreate GDIPlus_MatrixDispose GDIPlus_MatrixGetElements GDIPlus_MatrixInvert GDIPlus_MatrixMultiply GDIPlus_MatrixRotate GDIPlus_MatrixScale GDIPlus_MatrixSetElements GDIPlus_MatrixShear GDIPlus_MatrixTransformPoints GDIPlus_MatrixTranslate GDIPlus_PaletteInitialize GDIPlus_ParamAdd GDIPlus_ParamInit GDIPlus_ParamSize GDIPlus_PathAddArc GDIPlus_PathAddBezier GDIPlus_PathAddClosedCurve GDIPlus_PathAddClosedCurve2 GDIPlus_PathAddCurve GDIPlus_PathAddCurve2 GDIPlus_PathAddCurve3 GDIPlus_PathAddEllipse GDIPlus_PathAddLine GDIPlus_PathAddLine2 GDIPlus_PathAddPath GDIPlus_PathAddPie GDIPlus_PathAddPolygon GDIPlus_PathAddRectangle GDIPlus_PathAddString GDIPlus_PathBrushCreate GDIPlus_PathBrushCreateFromPath GDIPlus_PathBrushGetCenterPoint GDIPlus_PathBrushGetFocusScales GDIPlus_PathBrushGetPointCount GDIPlus_PathBrushGetRect GDIPlus_PathBrushGetWrapMode GDIPlus_PathBrushMultiplyTransform GDIPlus_PathBrushResetTransform GDIPlus_PathBrushSetBlend GDIPlus_PathBrushSetCenterColor GDIPlus_PathBrushSetCenterPoint GDIPlus_PathBrushSetFocusScales GDIPlus_PathBrushSetGammaCorrection GDIPlus_PathBrushSetLinearBlend GDIPlus_PathBrushSetPresetBlend GDIPlus_PathBrushSetSigmaBlend GDIPlus_PathBrushSetSurroundColor GDIPlus_PathBrushSetSurroundColorsWithCount GDIPlus_PathBrushSetTransform GDIPlus_PathBrushSetWrapMode GDIPlus_PathClone GDIPlus_PathCloseFigure GDIPlus_PathCreate GDIPlus_PathCreate2 GDIPlus_PathDispose GDIPlus_PathFlatten GDIPlus_PathGetData GDIPlus_PathGetFillMode GDIPlus_PathGetLastPoint GDIPlus_PathGetPointCount GDIPlus_PathGetPoints GDIPlus_PathGetWorldBounds GDIPlus_PathIsOutlineVisiblePoint GDIPlus_PathIsVisiblePoint GDIPlus_PathIterCreate GDIPlus_PathIterDispose GDIPlus_PathIterGetSubpathCount GDIPlus_PathIterNextMarkerPath GDIPlus_PathIterNextSubpathPath GDIPlus_PathIterRewind GDIPlus_PathReset GDIPlus_PathReverse GDIPlus_PathSetFillMode GDIPlus_PathSetMarker GDIPlus_PathStartFigure GDIPlus_PathTransform GDIPlus_PathWarp GDIPlus_PathWiden GDIPlus_PathWindingModeOutline GDIPlus_PenCreate GDIPlus_PenCreate2 GDIPlus_PenDispose GDIPlus_PenGetAlignment GDIPlus_PenGetColor GDIPlus_PenGetCustomEndCap GDIPlus_PenGetDashCap GDIPlus_PenGetDashStyle GDIPlus_PenGetEndCap GDIPlus_PenGetMiterLimit GDIPlus_PenGetWidth GDIPlus_PenSetAlignment GDIPlus_PenSetColor GDIPlus_PenSetCustomEndCap GDIPlus_PenSetDashCap GDIPlus_PenSetDashStyle GDIPlus_PenSetEndCap GDIPlus_PenSetLineCap GDIPlus_PenSetLineJoin GDIPlus_PenSetMiterLimit GDIPlus_PenSetStartCap GDIPlus_PenSetWidth GDIPlus_RectFCreate GDIPlus_RegionClone GDIPlus_RegionCombinePath GDIPlus_RegionCombineRect GDIPlus_RegionCombineRegion GDIPlus_RegionCreate GDIPlus_RegionCreateFromPath GDIPlus_RegionCreateFromRect GDIPlus_RegionDispose GDIPlus_RegionGetBounds GDIPlus_RegionGetHRgn GDIPlus_RegionTransform GDIPlus_RegionTranslate GDIPlus_Shutdown GDIPlus_Startup GDIPlus_StringFormatCreate GDIPlus_StringFormatDispose GDIPlus_StringFormatGetMeasurableCharacterRangeCount GDIPlus_StringFormatSetAlign GDIPlus_StringFormatSetLineAlign GDIPlus_StringFormatSetMeasurableCharacterRanges GDIPlus_TextureCreate GDIPlus_TextureCreate2 GDIPlus_TextureCreateIA GetIP GUICtrlAVI_Close GUICtrlAVI_Create GUICtrlAVI_Destroy GUICtrlAVI_IsPlaying GUICtrlAVI_Open GUICtrlAVI_OpenEx GUICtrlAVI_Play GUICtrlAVI_Seek GUICtrlAVI_Show GUICtrlAVI_Stop GUICtrlButton_Click GUICtrlButton_Create GUICtrlButton_Destroy GUICtrlButton_Enable GUICtrlButton_GetCheck GUICtrlButton_GetFocus GUICtrlButton_GetIdealSize GUICtrlButton_GetImage GUICtrlButton_GetImageList GUICtrlButton_GetNote GUICtrlButton_GetNoteLength GUICtrlButton_GetSplitInfo GUICtrlButton_GetState GUICtrlButton_GetText GUICtrlButton_GetTextMargin GUICtrlButton_SetCheck GUICtrlButton_SetDontClick GUICtrlButton_SetFocus GUICtrlButton_SetImage GUICtrlButton_SetImageList GUICtrlButton_SetNote GUICtrlButton_SetShield GUICtrlButton_SetSize GUICtrlButton_SetSplitInfo GUICtrlButton_SetState GUICtrlButton_SetStyle GUICtrlButton_SetText GUICtrlButton_SetTextMargin GUICtrlButton_Show GUICtrlComboBoxEx_AddDir GUICtrlComboBoxEx_AddString GUICtrlComboBoxEx_BeginUpdate GUICtrlComboBoxEx_Create GUICtrlComboBoxEx_CreateSolidBitMap GUICtrlComboBoxEx_DeleteString GUICtrlComboBoxEx_Destroy GUICtrlComboBoxEx_EndUpdate GUICtrlComboBoxEx_FindStringExact GUICtrlComboBoxEx_GetComboBoxInfo GUICtrlComboBoxEx_GetComboControl GUICtrlComboBoxEx_GetCount GUICtrlComboBoxEx_GetCurSel GUICtrlComboBoxEx_GetDroppedControlRect GUICtrlComboBoxEx_GetDroppedControlRectEx GUICtrlComboBoxEx_GetDroppedState GUICtrlComboBoxEx_GetDroppedWidth GUICtrlComboBoxEx_GetEditControl GUICtrlComboBoxEx_GetEditSel GUICtrlComboBoxEx_GetEditText GUICtrlComboBoxEx_GetExtendedStyle GUICtrlComboBoxEx_GetExtendedUI GUICtrlComboBoxEx_GetImageList GUICtrlComboBoxEx_GetItem GUICtrlComboBoxEx_GetItemEx GUICtrlComboBoxEx_GetItemHeight GUICtrlComboBoxEx_GetItemImage GUICtrlComboBoxEx_GetItemIndent GUICtrlComboBoxEx_GetItemOverlayImage GUICtrlComboBoxEx_GetItemParam GUICtrlComboBoxEx_GetItemSelectedImage GUICtrlComboBoxEx_GetItemText GUICtrlComboBoxEx_GetItemTextLen GUICtrlComboBoxEx_GetList GUICtrlComboBoxEx_GetListArray GUICtrlComboBoxEx_GetLocale GUICtrlComboBoxEx_GetLocaleCountry GUICtrlComboBoxEx_GetLocaleLang GUICtrlComboBoxEx_GetLocalePrimLang GUICtrlComboBoxEx_GetLocaleSubLang GUICtrlComboBoxEx_GetMinVisible GUICtrlComboBoxEx_GetTopIndex GUICtrlComboBoxEx_GetUnicode GUICtrlComboBoxEx_InitStorage GUICtrlComboBoxEx_InsertString GUICtrlComboBoxEx_LimitText GUICtrlComboBoxEx_ReplaceEditSel GUICtrlComboBoxEx_ResetContent GUICtrlComboBoxEx_SetCurSel GUICtrlComboBoxEx_SetDroppedWidth GUICtrlComboBoxEx_SetEditSel GUICtrlComboBoxEx_SetEditText GUICtrlComboBoxEx_SetExtendedStyle GUICtrlComboBoxEx_SetExtendedUI GUICtrlComboBoxEx_SetImageList GUICtrlComboBoxEx_SetItem GUICtrlComboBoxEx_SetItemEx GUICtrlComboBoxEx_SetItemHeight GUICtrlComboBoxEx_SetItemImage GUICtrlComboBoxEx_SetItemIndent GUICtrlComboBoxEx_SetItemOverlayImage GUICtrlComboBoxEx_SetItemParam GUICtrlComboBoxEx_SetItemSelectedImage GUICtrlComboBoxEx_SetMinVisible GUICtrlComboBoxEx_SetTopIndex GUICtrlComboBoxEx_SetUnicode GUICtrlComboBoxEx_ShowDropDown GUICtrlComboBox_AddDir GUICtrlComboBox_AddString GUICtrlComboBox_AutoComplete GUICtrlComboBox_BeginUpdate GUICtrlComboBox_Create GUICtrlComboBox_DeleteString GUICtrlComboBox_Destroy GUICtrlComboBox_EndUpdate GUICtrlComboBox_FindString GUICtrlComboBox_FindStringExact GUICtrlComboBox_GetComboBoxInfo GUICtrlComboBox_GetCount GUICtrlComboBox_GetCueBanner GUICtrlComboBox_GetCurSel GUICtrlComboBox_GetDroppedControlRect GUICtrlComboBox_GetDroppedControlRectEx GUICtrlComboBox_GetDroppedState GUICtrlComboBox_GetDroppedWidth GUICtrlComboBox_GetEditSel GUICtrlComboBox_GetEditText GUICtrlComboBox_GetExtendedUI GUICtrlComboBox_GetHorizontalExtent GUICtrlComboBox_GetItemHeight GUICtrlComboBox_GetLBText GUICtrlComboBox_GetLBTextLen GUICtrlComboBox_GetList GUICtrlComboBox_GetListArray GUICtrlComboBox_GetLocale GUICtrlComboBox_GetLocaleCountry GUICtrlComboBox_GetLocaleLang GUICtrlComboBox_GetLocalePrimLang GUICtrlComboBox_GetLocaleSubLang GUICtrlComboBox_GetMinVisible GUICtrlComboBox_GetTopIndex GUICtrlComboBox_InitStorage GUICtrlComboBox_InsertString GUICtrlComboBox_LimitText GUICtrlComboBox_ReplaceEditSel GUICtrlComboBox_ResetContent GUICtrlComboBox_SelectString GUICtrlComboBox_SetCueBanner GUICtrlComboBox_SetCurSel GUICtrlComboBox_SetDroppedWidth GUICtrlComboBox_SetEditSel GUICtrlComboBox_SetEditText GUICtrlComboBox_SetExtendedUI GUICtrlComboBox_SetHorizontalExtent GUICtrlComboBox_SetItemHeight GUICtrlComboBox_SetMinVisible GUICtrlComboBox_SetTopIndex GUICtrlComboBox_ShowDropDown GUICtrlDTP_Create GUICtrlDTP_Destroy GUICtrlDTP_GetMCColor GUICtrlDTP_GetMCFont GUICtrlDTP_GetMonthCal GUICtrlDTP_GetRange GUICtrlDTP_GetRangeEx GUICtrlDTP_GetSystemTime GUICtrlDTP_GetSystemTimeEx GUICtrlDTP_SetFormat GUICtrlDTP_SetMCColor GUICtrlDTP_SetMCFont GUICtrlDTP_SetRange GUICtrlDTP_SetRangeEx GUICtrlDTP_SetSystemTime GUICtrlDTP_SetSystemTimeEx GUICtrlEdit_AppendText GUICtrlEdit_BeginUpdate GUICtrlEdit_CanUndo GUICtrlEdit_CharFromPos GUICtrlEdit_Create GUICtrlEdit_Destroy GUICtrlEdit_EmptyUndoBuffer GUICtrlEdit_EndUpdate GUICtrlEdit_Find GUICtrlEdit_FmtLines GUICtrlEdit_GetCueBanner GUICtrlEdit_GetFirstVisibleLine GUICtrlEdit_GetLimitText GUICtrlEdit_GetLine GUICtrlEdit_GetLineCount GUICtrlEdit_GetMargins GUICtrlEdit_GetModify GUICtrlEdit_GetPasswordChar GUICtrlEdit_GetRECT GUICtrlEdit_GetRECTEx GUICtrlEdit_GetSel GUICtrlEdit_GetText GUICtrlEdit_GetTextLen GUICtrlEdit_HideBalloonTip GUICtrlEdit_InsertText GUICtrlEdit_LineFromChar GUICtrlEdit_LineIndex GUICtrlEdit_LineLength GUICtrlEdit_LineScroll GUICtrlEdit_PosFromChar GUICtrlEdit_ReplaceSel GUICtrlEdit_Scroll GUICtrlEdit_SetCueBanner GUICtrlEdit_SetLimitText GUICtrlEdit_SetMargins GUICtrlEdit_SetModify GUICtrlEdit_SetPasswordChar GUICtrlEdit_SetReadOnly GUICtrlEdit_SetRECT GUICtrlEdit_SetRECTEx GUICtrlEdit_SetRECTNP GUICtrlEdit_SetRectNPEx GUICtrlEdit_SetSel GUICtrlEdit_SetTabStops GUICtrlEdit_SetText GUICtrlEdit_ShowBalloonTip GUICtrlEdit_Undo GUICtrlHeader_AddItem GUICtrlHeader_ClearFilter GUICtrlHeader_ClearFilterAll GUICtrlHeader_Create GUICtrlHeader_CreateDragImage GUICtrlHeader_DeleteItem GUICtrlHeader_Destroy GUICtrlHeader_EditFilter GUICtrlHeader_GetBitmapMargin GUICtrlHeader_GetImageList GUICtrlHeader_GetItem GUICtrlHeader_GetItemAlign GUICtrlHeader_GetItemBitmap GUICtrlHeader_GetItemCount GUICtrlHeader_GetItemDisplay GUICtrlHeader_GetItemFlags GUICtrlHeader_GetItemFormat GUICtrlHeader_GetItemImage GUICtrlHeader_GetItemOrder GUICtrlHeader_GetItemParam GUICtrlHeader_GetItemRect GUICtrlHeader_GetItemRectEx GUICtrlHeader_GetItemText GUICtrlHeader_GetItemWidth GUICtrlHeader_GetOrderArray GUICtrlHeader_GetUnicodeFormat GUICtrlHeader_HitTest GUICtrlHeader_InsertItem GUICtrlHeader_Layout GUICtrlHeader_OrderToIndex GUICtrlHeader_SetBitmapMargin GUICtrlHeader_SetFilterChangeTimeout GUICtrlHeader_SetHotDivider GUICtrlHeader_SetImageList GUICtrlHeader_SetItem GUICtrlHeader_SetItemAlign GUICtrlHeader_SetItemBitmap GUICtrlHeader_SetItemDisplay GUICtrlHeader_SetItemFlags GUICtrlHeader_SetItemFormat GUICtrlHeader_SetItemImage GUICtrlHeader_SetItemOrder GUICtrlHeader_SetItemParam GUICtrlHeader_SetItemText GUICtrlHeader_SetItemWidth GUICtrlHeader_SetOrderArray GUICtrlHeader_SetUnicodeFormat GUICtrlIpAddress_ClearAddress GUICtrlIpAddress_Create GUICtrlIpAddress_Destroy GUICtrlIpAddress_Get GUICtrlIpAddress_GetArray GUICtrlIpAddress_GetEx GUICtrlIpAddress_IsBlank GUICtrlIpAddress_Set GUICtrlIpAddress_SetArray GUICtrlIpAddress_SetEx GUICtrlIpAddress_SetFocus GUICtrlIpAddress_SetFont GUICtrlIpAddress_SetRange GUICtrlIpAddress_ShowHide GUICtrlListBox_AddFile GUICtrlListBox_AddString GUICtrlListBox_BeginUpdate GUICtrlListBox_ClickItem GUICtrlListBox_Create GUICtrlListBox_DeleteString GUICtrlListBox_Destroy GUICtrlListBox_Dir GUICtrlListBox_EndUpdate GUICtrlListBox_FindInText GUICtrlListBox_FindString GUICtrlListBox_GetAnchorIndex GUICtrlListBox_GetCaretIndex GUICtrlListBox_GetCount GUICtrlListBox_GetCurSel GUICtrlListBox_GetHorizontalExtent GUICtrlListBox_GetItemData GUICtrlListBox_GetItemHeight GUICtrlListBox_GetItemRect GUICtrlListBox_GetItemRectEx GUICtrlListBox_GetListBoxInfo GUICtrlListBox_GetLocale GUICtrlListBox_GetLocaleCountry GUICtrlListBox_GetLocaleLang GUICtrlListBox_GetLocalePrimLang GUICtrlListBox_GetLocaleSubLang GUICtrlListBox_GetSel GUICtrlListBox_GetSelCount GUICtrlListBox_GetSelItems GUICtrlListBox_GetSelItemsText GUICtrlListBox_GetText GUICtrlListBox_GetTextLen GUICtrlListBox_GetTopIndex GUICtrlListBox_InitStorage GUICtrlListBox_InsertString GUICtrlListBox_ItemFromPoint GUICtrlListBox_ReplaceString GUICtrlListBox_ResetContent GUICtrlListBox_SelectString GUICtrlListBox_SelItemRange GUICtrlListBox_SelItemRangeEx GUICtrlListBox_SetAnchorIndex GUICtrlListBox_SetCaretIndex GUICtrlListBox_SetColumnWidth GUICtrlListBox_SetCurSel GUICtrlListBox_SetHorizontalExtent GUICtrlListBox_SetItemData GUICtrlListBox_SetItemHeight GUICtrlListBox_SetLocale GUICtrlListBox_SetSel GUICtrlListBox_SetTabStops GUICtrlListBox_SetTopIndex GUICtrlListBox_Sort GUICtrlListBox_SwapString GUICtrlListBox_UpdateHScroll GUICtrlListView_AddArray GUICtrlListView_AddColumn GUICtrlListView_AddItem GUICtrlListView_AddSubItem GUICtrlListView_ApproximateViewHeight GUICtrlListView_ApproximateViewRect GUICtrlListView_ApproximateViewWidth GUICtrlListView_Arrange GUICtrlListView_BeginUpdate GUICtrlListView_CancelEditLabel GUICtrlListView_ClickItem GUICtrlListView_CopyItems GUICtrlListView_Create GUICtrlListView_CreateDragImage GUICtrlListView_CreateSolidBitMap GUICtrlListView_DeleteAllItems GUICtrlListView_DeleteColumn GUICtrlListView_DeleteItem GUICtrlListView_DeleteItemsSelected GUICtrlListView_Destroy GUICtrlListView_DrawDragImage GUICtrlListView_EditLabel GUICtrlListView_EnableGroupView GUICtrlListView_EndUpdate GUICtrlListView_EnsureVisible GUICtrlListView_FindInText GUICtrlListView_FindItem GUICtrlListView_FindNearest GUICtrlListView_FindParam GUICtrlListView_FindText GUICtrlListView_GetBkColor GUICtrlListView_GetBkImage GUICtrlListView_GetCallbackMask GUICtrlListView_GetColumn GUICtrlListView_GetColumnCount GUICtrlListView_GetColumnOrder GUICtrlListView_GetColumnOrderArray GUICtrlListView_GetColumnWidth GUICtrlListView_GetCounterPage GUICtrlListView_GetEditControl GUICtrlListView_GetExtendedListViewStyle GUICtrlListView_GetFocusedGroup GUICtrlListView_GetGroupCount GUICtrlListView_GetGroupInfo GUICtrlListView_GetGroupInfoByIndex GUICtrlListView_GetGroupRect GUICtrlListView_GetGroupViewEnabled GUICtrlListView_GetHeader GUICtrlListView_GetHotCursor GUICtrlListView_GetHotItem GUICtrlListView_GetHoverTime GUICtrlListView_GetImageList GUICtrlListView_GetISearchString GUICtrlListView_GetItem GUICtrlListView_GetItemChecked GUICtrlListView_GetItemCount GUICtrlListView_GetItemCut GUICtrlListView_GetItemDropHilited GUICtrlListView_GetItemEx GUICtrlListView_GetItemFocused GUICtrlListView_GetItemGroupID GUICtrlListView_GetItemImage GUICtrlListView_GetItemIndent GUICtrlListView_GetItemParam GUICtrlListView_GetItemPosition GUICtrlListView_GetItemPositionX GUICtrlListView_GetItemPositionY GUICtrlListView_GetItemRect GUICtrlListView_GetItemRectEx GUICtrlListView_GetItemSelected GUICtrlListView_GetItemSpacing GUICtrlListView_GetItemSpacingX GUICtrlListView_GetItemSpacingY GUICtrlListView_GetItemState GUICtrlListView_GetItemStateImage GUICtrlListView_GetItemText GUICtrlListView_GetItemTextArray GUICtrlListView_GetItemTextString GUICtrlListView_GetNextItem GUICtrlListView_GetNumberOfWorkAreas GUICtrlListView_GetOrigin GUICtrlListView_GetOriginX GUICtrlListView_GetOriginY GUICtrlListView_GetOutlineColor GUICtrlListView_GetSelectedColumn GUICtrlListView_GetSelectedCount GUICtrlListView_GetSelectedIndices GUICtrlListView_GetSelectionMark GUICtrlListView_GetStringWidth GUICtrlListView_GetSubItemRect GUICtrlListView_GetTextBkColor GUICtrlListView_GetTextColor GUICtrlListView_GetToolTips GUICtrlListView_GetTopIndex GUICtrlListView_GetUnicodeFormat GUICtrlListView_GetView GUICtrlListView_GetViewDetails GUICtrlListView_GetViewLarge GUICtrlListView_GetViewList GUICtrlListView_GetViewRect GUICtrlListView_GetViewSmall GUICtrlListView_GetViewTile GUICtrlListView_HideColumn GUICtrlListView_HitTest GUICtrlListView_InsertColumn GUICtrlListView_InsertGroup GUICtrlListView_InsertItem GUICtrlListView_JustifyColumn GUICtrlListView_MapIDToIndex GUICtrlListView_MapIndexToID GUICtrlListView_RedrawItems GUICtrlListView_RegisterSortCallBack GUICtrlListView_RemoveAllGroups GUICtrlListView_RemoveGroup GUICtrlListView_Scroll GUICtrlListView_SetBkColor GUICtrlListView_SetBkImage GUICtrlListView_SetCallBackMask GUICtrlListView_SetColumn GUICtrlListView_SetColumnOrder GUICtrlListView_SetColumnOrderArray GUICtrlListView_SetColumnWidth GUICtrlListView_SetExtendedListViewStyle GUICtrlListView_SetGroupInfo GUICtrlListView_SetHotItem GUICtrlListView_SetHoverTime GUICtrlListView_SetIconSpacing GUICtrlListView_SetImageList GUICtrlListView_SetItem GUICtrlListView_SetItemChecked GUICtrlListView_SetItemCount GUICtrlListView_SetItemCut GUICtrlListView_SetItemDropHilited GUICtrlListView_SetItemEx GUICtrlListView_SetItemFocused GUICtrlListView_SetItemGroupID GUICtrlListView_SetItemImage GUICtrlListView_SetItemIndent GUICtrlListView_SetItemParam GUICtrlListView_SetItemPosition GUICtrlListView_SetItemPosition32 GUICtrlListView_SetItemSelected GUICtrlListView_SetItemState GUICtrlListView_SetItemStateImage GUICtrlListView_SetItemText GUICtrlListView_SetOutlineColor GUICtrlListView_SetSelectedColumn GUICtrlListView_SetSelectionMark GUICtrlListView_SetTextBkColor GUICtrlListView_SetTextColor GUICtrlListView_SetToolTips GUICtrlListView_SetUnicodeFormat GUICtrlListView_SetView GUICtrlListView_SetWorkAreas GUICtrlListView_SimpleSort GUICtrlListView_SortItems GUICtrlListView_SubItemHitTest GUICtrlListView_UnRegisterSortCallBack GUICtrlMenu_AddMenuItem GUICtrlMenu_AppendMenu GUICtrlMenu_CalculatePopupWindowPosition GUICtrlMenu_CheckMenuItem GUICtrlMenu_CheckRadioItem GUICtrlMenu_CreateMenu GUICtrlMenu_CreatePopup GUICtrlMenu_DeleteMenu GUICtrlMenu_DestroyMenu GUICtrlMenu_DrawMenuBar GUICtrlMenu_EnableMenuItem GUICtrlMenu_FindItem GUICtrlMenu_FindParent GUICtrlMenu_GetItemBmp GUICtrlMenu_GetItemBmpChecked GUICtrlMenu_GetItemBmpUnchecked GUICtrlMenu_GetItemChecked GUICtrlMenu_GetItemCount GUICtrlMenu_GetItemData GUICtrlMenu_GetItemDefault GUICtrlMenu_GetItemDisabled GUICtrlMenu_GetItemEnabled GUICtrlMenu_GetItemGrayed GUICtrlMenu_GetItemHighlighted GUICtrlMenu_GetItemID GUICtrlMenu_GetItemInfo GUICtrlMenu_GetItemRect GUICtrlMenu_GetItemRectEx GUICtrlMenu_GetItemState GUICtrlMenu_GetItemStateEx GUICtrlMenu_GetItemSubMenu GUICtrlMenu_GetItemText GUICtrlMenu_GetItemType GUICtrlMenu_GetMenu GUICtrlMenu_GetMenuBackground GUICtrlMenu_GetMenuBarInfo GUICtrlMenu_GetMenuContextHelpID GUICtrlMenu_GetMenuData GUICtrlMenu_GetMenuDefaultItem GUICtrlMenu_GetMenuHeight GUICtrlMenu_GetMenuInfo GUICtrlMenu_GetMenuStyle GUICtrlMenu_GetSystemMenu GUICtrlMenu_InsertMenuItem GUICtrlMenu_InsertMenuItemEx GUICtrlMenu_IsMenu GUICtrlMenu_LoadMenu GUICtrlMenu_MapAccelerator GUICtrlMenu_MenuItemFromPoint GUICtrlMenu_RemoveMenu GUICtrlMenu_SetItemBitmaps GUICtrlMenu_SetItemBmp GUICtrlMenu_SetItemBmpChecked GUICtrlMenu_SetItemBmpUnchecked GUICtrlMenu_SetItemChecked GUICtrlMenu_SetItemData GUICtrlMenu_SetItemDefault GUICtrlMenu_SetItemDisabled GUICtrlMenu_SetItemEnabled GUICtrlMenu_SetItemGrayed GUICtrlMenu_SetItemHighlighted GUICtrlMenu_SetItemID GUICtrlMenu_SetItemInfo GUICtrlMenu_SetItemState GUICtrlMenu_SetItemSubMenu GUICtrlMenu_SetItemText GUICtrlMenu_SetItemType GUICtrlMenu_SetMenu GUICtrlMenu_SetMenuBackground GUICtrlMenu_SetMenuContextHelpID GUICtrlMenu_SetMenuData GUICtrlMenu_SetMenuDefaultItem GUICtrlMenu_SetMenuHeight GUICtrlMenu_SetMenuInfo GUICtrlMenu_SetMenuStyle GUICtrlMenu_TrackPopupMenu GUICtrlMonthCal_Create GUICtrlMonthCal_Destroy GUICtrlMonthCal_GetCalendarBorder GUICtrlMonthCal_GetCalendarCount GUICtrlMonthCal_GetColor GUICtrlMonthCal_GetColorArray GUICtrlMonthCal_GetCurSel GUICtrlMonthCal_GetCurSelStr GUICtrlMonthCal_GetFirstDOW GUICtrlMonthCal_GetFirstDOWStr GUICtrlMonthCal_GetMaxSelCount GUICtrlMonthCal_GetMaxTodayWidth GUICtrlMonthCal_GetMinReqHeight GUICtrlMonthCal_GetMinReqRect GUICtrlMonthCal_GetMinReqRectArray GUICtrlMonthCal_GetMinReqWidth GUICtrlMonthCal_GetMonthDelta GUICtrlMonthCal_GetMonthRange GUICtrlMonthCal_GetMonthRangeMax GUICtrlMonthCal_GetMonthRangeMaxStr GUICtrlMonthCal_GetMonthRangeMin GUICtrlMonthCal_GetMonthRangeMinStr GUICtrlMonthCal_GetMonthRangeSpan GUICtrlMonthCal_GetRange GUICtrlMonthCal_GetRangeMax GUICtrlMonthCal_GetRangeMaxStr GUICtrlMonthCal_GetRangeMin GUICtrlMonthCal_GetRangeMinStr GUICtrlMonthCal_GetSelRange GUICtrlMonthCal_GetSelRangeMax GUICtrlMonthCal_GetSelRangeMaxStr GUICtrlMonthCal_GetSelRangeMin GUICtrlMonthCal_GetSelRangeMinStr GUICtrlMonthCal_GetToday GUICtrlMonthCal_GetTodayStr GUICtrlMonthCal_GetUnicodeFormat GUICtrlMonthCal_HitTest GUICtrlMonthCal_SetCalendarBorder GUICtrlMonthCal_SetColor GUICtrlMonthCal_SetCurSel GUICtrlMonthCal_SetDayState GUICtrlMonthCal_SetFirstDOW GUICtrlMonthCal_SetMaxSelCount GUICtrlMonthCal_SetMonthDelta GUICtrlMonthCal_SetRange GUICtrlMonthCal_SetSelRange GUICtrlMonthCal_SetToday GUICtrlMonthCal_SetUnicodeFormat GUICtrlRebar_AddBand GUICtrlRebar_AddToolBarBand GUICtrlRebar_BeginDrag GUICtrlRebar_Create GUICtrlRebar_DeleteBand GUICtrlRebar_Destroy GUICtrlRebar_DragMove GUICtrlRebar_EndDrag GUICtrlRebar_GetBandBackColor GUICtrlRebar_GetBandBorders GUICtrlRebar_GetBandBordersEx GUICtrlRebar_GetBandChildHandle GUICtrlRebar_GetBandChildSize GUICtrlRebar_GetBandCount GUICtrlRebar_GetBandForeColor GUICtrlRebar_GetBandHeaderSize GUICtrlRebar_GetBandID GUICtrlRebar_GetBandIdealSize GUICtrlRebar_GetBandLength GUICtrlRebar_GetBandLParam GUICtrlRebar_GetBandMargins GUICtrlRebar_GetBandMarginsEx GUICtrlRebar_GetBandRect GUICtrlRebar_GetBandRectEx GUICtrlRebar_GetBandStyle GUICtrlRebar_GetBandStyleBreak GUICtrlRebar_GetBandStyleChildEdge GUICtrlRebar_GetBandStyleFixedBMP GUICtrlRebar_GetBandStyleFixedSize GUICtrlRebar_GetBandStyleGripperAlways GUICtrlRebar_GetBandStyleHidden GUICtrlRebar_GetBandStyleHideTitle GUICtrlRebar_GetBandStyleNoGripper GUICtrlRebar_GetBandStyleTopAlign GUICtrlRebar_GetBandStyleUseChevron GUICtrlRebar_GetBandStyleVariableHeight GUICtrlRebar_GetBandText GUICtrlRebar_GetBarHeight GUICtrlRebar_GetBarInfo GUICtrlRebar_GetBKColor GUICtrlRebar_GetColorScheme GUICtrlRebar_GetRowCount GUICtrlRebar_GetRowHeight GUICtrlRebar_GetTextColor GUICtrlRebar_GetToolTips GUICtrlRebar_GetUnicodeFormat GUICtrlRebar_HitTest GUICtrlRebar_IDToIndex GUICtrlRebar_MaximizeBand GUICtrlRebar_MinimizeBand GUICtrlRebar_MoveBand GUICtrlRebar_SetBandBackColor GUICtrlRebar_SetBandForeColor GUICtrlRebar_SetBandHeaderSize GUICtrlRebar_SetBandID GUICtrlRebar_SetBandIdealSize GUICtrlRebar_SetBandLength GUICtrlRebar_SetBandLParam GUICtrlRebar_SetBandStyle GUICtrlRebar_SetBandStyleBreak GUICtrlRebar_SetBandStyleChildEdge GUICtrlRebar_SetBandStyleFixedBMP GUICtrlRebar_SetBandStyleFixedSize GUICtrlRebar_SetBandStyleGripperAlways GUICtrlRebar_SetBandStyleHidden GUICtrlRebar_SetBandStyleHideTitle GUICtrlRebar_SetBandStyleNoGripper GUICtrlRebar_SetBandStyleTopAlign GUICtrlRebar_SetBandStyleUseChevron GUICtrlRebar_SetBandStyleVariableHeight GUICtrlRebar_SetBandText GUICtrlRebar_SetBarInfo GUICtrlRebar_SetBKColor GUICtrlRebar_SetColorScheme GUICtrlRebar_SetTextColor GUICtrlRebar_SetToolTips GUICtrlRebar_SetUnicodeFormat GUICtrlRebar_ShowBand GUICtrlRichEdit_AppendText GUICtrlRichEdit_AutoDetectURL GUICtrlRichEdit_CanPaste GUICtrlRichEdit_CanPasteSpecial GUICtrlRichEdit_CanRedo GUICtrlRichEdit_CanUndo GUICtrlRichEdit_ChangeFontSize GUICtrlRichEdit_Copy GUICtrlRichEdit_Create GUICtrlRichEdit_Cut GUICtrlRichEdit_Deselect GUICtrlRichEdit_Destroy GUICtrlRichEdit_EmptyUndoBuffer GUICtrlRichEdit_FindText GUICtrlRichEdit_FindTextInRange GUICtrlRichEdit_GetBkColor GUICtrlRichEdit_GetCharAttributes GUICtrlRichEdit_GetCharBkColor GUICtrlRichEdit_GetCharColor GUICtrlRichEdit_GetCharPosFromXY GUICtrlRichEdit_GetCharPosOfNextWord GUICtrlRichEdit_GetCharPosOfPreviousWord GUICtrlRichEdit_GetCharWordBreakInfo GUICtrlRichEdit_GetFirstCharPosOnLine GUICtrlRichEdit_GetFont GUICtrlRichEdit_GetLineCount GUICtrlRichEdit_GetLineLength GUICtrlRichEdit_GetLineNumberFromCharPos GUICtrlRichEdit_GetNextRedo GUICtrlRichEdit_GetNextUndo GUICtrlRichEdit_GetNumberOfFirstVisibleLine GUICtrlRichEdit_GetParaAlignment GUICtrlRichEdit_GetParaAttributes GUICtrlRichEdit_GetParaBorder GUICtrlRichEdit_GetParaIndents GUICtrlRichEdit_GetParaNumbering GUICtrlRichEdit_GetParaShading GUICtrlRichEdit_GetParaSpacing GUICtrlRichEdit_GetParaTabStops GUICtrlRichEdit_GetPasswordChar GUICtrlRichEdit_GetRECT GUICtrlRichEdit_GetScrollPos GUICtrlRichEdit_GetSel GUICtrlRichEdit_GetSelAA GUICtrlRichEdit_GetSelText GUICtrlRichEdit_GetSpaceUnit GUICtrlRichEdit_GetText GUICtrlRichEdit_GetTextInLine GUICtrlRichEdit_GetTextInRange GUICtrlRichEdit_GetTextLength GUICtrlRichEdit_GetVersion GUICtrlRichEdit_GetXYFromCharPos GUICtrlRichEdit_GetZoom GUICtrlRichEdit_GotoCharPos GUICtrlRichEdit_HideSelection GUICtrlRichEdit_InsertText GUICtrlRichEdit_IsModified GUICtrlRichEdit_IsTextSelected GUICtrlRichEdit_Paste GUICtrlRichEdit_PasteSpecial GUICtrlRichEdit_PauseRedraw GUICtrlRichEdit_Redo GUICtrlRichEdit_ReplaceText GUICtrlRichEdit_ResumeRedraw GUICtrlRichEdit_ScrollLineOrPage GUICtrlRichEdit_ScrollLines GUICtrlRichEdit_ScrollToCaret GUICtrlRichEdit_SetBkColor GUICtrlRichEdit_SetCharAttributes GUICtrlRichEdit_SetCharBkColor GUICtrlRichEdit_SetCharColor GUICtrlRichEdit_SetEventMask GUICtrlRichEdit_SetFont GUICtrlRichEdit_SetLimitOnText GUICtrlRichEdit_SetModified GUICtrlRichEdit_SetParaAlignment GUICtrlRichEdit_SetParaAttributes GUICtrlRichEdit_SetParaBorder GUICtrlRichEdit_SetParaIndents GUICtrlRichEdit_SetParaNumbering GUICtrlRichEdit_SetParaShading GUICtrlRichEdit_SetParaSpacing GUICtrlRichEdit_SetParaTabStops GUICtrlRichEdit_SetPasswordChar GUICtrlRichEdit_SetReadOnly GUICtrlRichEdit_SetRECT GUICtrlRichEdit_SetScrollPos GUICtrlRichEdit_SetSel GUICtrlRichEdit_SetSpaceUnit GUICtrlRichEdit_SetTabStops GUICtrlRichEdit_SetText GUICtrlRichEdit_SetUndoLimit GUICtrlRichEdit_SetZoom GUICtrlRichEdit_StreamFromFile GUICtrlRichEdit_StreamFromVar GUICtrlRichEdit_StreamToFile GUICtrlRichEdit_StreamToVar GUICtrlRichEdit_Undo GUICtrlSlider_ClearSel GUICtrlSlider_ClearTics GUICtrlSlider_Create GUICtrlSlider_Destroy GUICtrlSlider_GetBuddy GUICtrlSlider_GetChannelRect GUICtrlSlider_GetChannelRectEx GUICtrlSlider_GetLineSize GUICtrlSlider_GetLogicalTics GUICtrlSlider_GetNumTics GUICtrlSlider_GetPageSize GUICtrlSlider_GetPos GUICtrlSlider_GetRange GUICtrlSlider_GetRangeMax GUICtrlSlider_GetRangeMin GUICtrlSlider_GetSel GUICtrlSlider_GetSelEnd GUICtrlSlider_GetSelStart GUICtrlSlider_GetThumbLength GUICtrlSlider_GetThumbRect GUICtrlSlider_GetThumbRectEx GUICtrlSlider_GetTic GUICtrlSlider_GetTicPos GUICtrlSlider_GetToolTips GUICtrlSlider_GetUnicodeFormat GUICtrlSlider_SetBuddy GUICtrlSlider_SetLineSize GUICtrlSlider_SetPageSize GUICtrlSlider_SetPos GUICtrlSlider_SetRange GUICtrlSlider_SetRangeMax GUICtrlSlider_SetRangeMin GUICtrlSlider_SetSel GUICtrlSlider_SetSelEnd GUICtrlSlider_SetSelStart GUICtrlSlider_SetThumbLength GUICtrlSlider_SetTic GUICtrlSlider_SetTicFreq GUICtrlSlider_SetTipSide GUICtrlSlider_SetToolTips GUICtrlSlider_SetUnicodeFormat GUICtrlStatusBar_Create GUICtrlStatusBar_Destroy GUICtrlStatusBar_EmbedControl GUICtrlStatusBar_GetBorders GUICtrlStatusBar_GetBordersHorz GUICtrlStatusBar_GetBordersRect GUICtrlStatusBar_GetBordersVert GUICtrlStatusBar_GetCount GUICtrlStatusBar_GetHeight GUICtrlStatusBar_GetIcon GUICtrlStatusBar_GetParts GUICtrlStatusBar_GetRect GUICtrlStatusBar_GetRectEx GUICtrlStatusBar_GetText GUICtrlStatusBar_GetTextFlags GUICtrlStatusBar_GetTextLength GUICtrlStatusBar_GetTextLengthEx GUICtrlStatusBar_GetTipText GUICtrlStatusBar_GetUnicodeFormat GUICtrlStatusBar_GetWidth GUICtrlStatusBar_IsSimple GUICtrlStatusBar_Resize GUICtrlStatusBar_SetBkColor GUICtrlStatusBar_SetIcon GUICtrlStatusBar_SetMinHeight GUICtrlStatusBar_SetParts GUICtrlStatusBar_SetSimple GUICtrlStatusBar_SetText GUICtrlStatusBar_SetTipText GUICtrlStatusBar_SetUnicodeFormat GUICtrlStatusBar_ShowHide GUICtrlTab_ActivateTab GUICtrlTab_ClickTab GUICtrlTab_Create GUICtrlTab_DeleteAllItems GUICtrlTab_DeleteItem GUICtrlTab_DeselectAll GUICtrlTab_Destroy GUICtrlTab_FindTab GUICtrlTab_GetCurFocus GUICtrlTab_GetCurSel GUICtrlTab_GetDisplayRect GUICtrlTab_GetDisplayRectEx GUICtrlTab_GetExtendedStyle GUICtrlTab_GetImageList GUICtrlTab_GetItem GUICtrlTab_GetItemCount GUICtrlTab_GetItemImage GUICtrlTab_GetItemParam GUICtrlTab_GetItemRect GUICtrlTab_GetItemRectEx GUICtrlTab_GetItemState GUICtrlTab_GetItemText GUICtrlTab_GetRowCount GUICtrlTab_GetToolTips GUICtrlTab_GetUnicodeFormat GUICtrlTab_HighlightItem GUICtrlTab_HitTest GUICtrlTab_InsertItem GUICtrlTab_RemoveImage GUICtrlTab_SetCurFocus GUICtrlTab_SetCurSel GUICtrlTab_SetExtendedStyle GUICtrlTab_SetImageList GUICtrlTab_SetItem GUICtrlTab_SetItemImage GUICtrlTab_SetItemParam GUICtrlTab_SetItemSize GUICtrlTab_SetItemState GUICtrlTab_SetItemText GUICtrlTab_SetMinTabWidth GUICtrlTab_SetPadding GUICtrlTab_SetToolTips GUICtrlTab_SetUnicodeFormat GUICtrlToolbar_AddBitmap GUICtrlToolbar_AddButton GUICtrlToolbar_AddButtonSep GUICtrlToolbar_AddString GUICtrlToolbar_ButtonCount GUICtrlToolbar_CheckButton GUICtrlToolbar_ClickAccel GUICtrlToolbar_ClickButton GUICtrlToolbar_ClickIndex GUICtrlToolbar_CommandToIndex GUICtrlToolbar_Create GUICtrlToolbar_Customize GUICtrlToolbar_DeleteButton GUICtrlToolbar_Destroy GUICtrlToolbar_EnableButton GUICtrlToolbar_FindToolbar GUICtrlToolbar_GetAnchorHighlight GUICtrlToolbar_GetBitmapFlags GUICtrlToolbar_GetButtonBitmap GUICtrlToolbar_GetButtonInfo GUICtrlToolbar_GetButtonInfoEx GUICtrlToolbar_GetButtonParam GUICtrlToolbar_GetButtonRect GUICtrlToolbar_GetButtonRectEx GUICtrlToolbar_GetButtonSize GUICtrlToolbar_GetButtonState GUICtrlToolbar_GetButtonStyle GUICtrlToolbar_GetButtonText GUICtrlToolbar_GetColorScheme GUICtrlToolbar_GetDisabledImageList GUICtrlToolbar_GetExtendedStyle GUICtrlToolbar_GetHotImageList GUICtrlToolbar_GetHotItem GUICtrlToolbar_GetImageList GUICtrlToolbar_GetInsertMark GUICtrlToolbar_GetInsertMarkColor GUICtrlToolbar_GetMaxSize GUICtrlToolbar_GetMetrics GUICtrlToolbar_GetPadding GUICtrlToolbar_GetRows GUICtrlToolbar_GetString GUICtrlToolbar_GetStyle GUICtrlToolbar_GetStyleAltDrag GUICtrlToolbar_GetStyleCustomErase GUICtrlToolbar_GetStyleFlat GUICtrlToolbar_GetStyleList GUICtrlToolbar_GetStyleRegisterDrop GUICtrlToolbar_GetStyleToolTips GUICtrlToolbar_GetStyleTransparent GUICtrlToolbar_GetStyleWrapable GUICtrlToolbar_GetTextRows GUICtrlToolbar_GetToolTips GUICtrlToolbar_GetUnicodeFormat GUICtrlToolbar_HideButton GUICtrlToolbar_HighlightButton GUICtrlToolbar_HitTest GUICtrlToolbar_IndexToCommand GUICtrlToolbar_InsertButton GUICtrlToolbar_InsertMarkHitTest GUICtrlToolbar_IsButtonChecked GUICtrlToolbar_IsButtonEnabled GUICtrlToolbar_IsButtonHidden GUICtrlToolbar_IsButtonHighlighted GUICtrlToolbar_IsButtonIndeterminate GUICtrlToolbar_IsButtonPressed GUICtrlToolbar_LoadBitmap GUICtrlToolbar_LoadImages GUICtrlToolbar_MapAccelerator GUICtrlToolbar_MoveButton GUICtrlToolbar_PressButton GUICtrlToolbar_SetAnchorHighlight GUICtrlToolbar_SetBitmapSize GUICtrlToolbar_SetButtonBitMap GUICtrlToolbar_SetButtonInfo GUICtrlToolbar_SetButtonInfoEx GUICtrlToolbar_SetButtonParam GUICtrlToolbar_SetButtonSize GUICtrlToolbar_SetButtonState GUICtrlToolbar_SetButtonStyle GUICtrlToolbar_SetButtonText GUICtrlToolbar_SetButtonWidth GUICtrlToolbar_SetCmdID GUICtrlToolbar_SetColorScheme GUICtrlToolbar_SetDisabledImageList GUICtrlToolbar_SetDrawTextFlags GUICtrlToolbar_SetExtendedStyle GUICtrlToolbar_SetHotImageList GUICtrlToolbar_SetHotItem GUICtrlToolbar_SetImageList GUICtrlToolbar_SetIndent GUICtrlToolbar_SetIndeterminate GUICtrlToolbar_SetInsertMark GUICtrlToolbar_SetInsertMarkColor GUICtrlToolbar_SetMaxTextRows GUICtrlToolbar_SetMetrics GUICtrlToolbar_SetPadding GUICtrlToolbar_SetParent GUICtrlToolbar_SetRows GUICtrlToolbar_SetStyle GUICtrlToolbar_SetStyleAltDrag GUICtrlToolbar_SetStyleCustomErase GUICtrlToolbar_SetStyleFlat GUICtrlToolbar_SetStyleList GUICtrlToolbar_SetStyleRegisterDrop GUICtrlToolbar_SetStyleToolTips GUICtrlToolbar_SetStyleTransparent GUICtrlToolbar_SetStyleWrapable GUICtrlToolbar_SetToolTips GUICtrlToolbar_SetUnicodeFormat GUICtrlToolbar_SetWindowTheme GUICtrlTreeView_Add GUICtrlTreeView_AddChild GUICtrlTreeView_AddChildFirst GUICtrlTreeView_AddFirst GUICtrlTreeView_BeginUpdate GUICtrlTreeView_ClickItem GUICtrlTreeView_Create GUICtrlTreeView_CreateDragImage GUICtrlTreeView_CreateSolidBitMap GUICtrlTreeView_Delete GUICtrlTreeView_DeleteAll GUICtrlTreeView_DeleteChildren GUICtrlTreeView_Destroy GUICtrlTreeView_DisplayRect GUICtrlTreeView_DisplayRectEx GUICtrlTreeView_EditText GUICtrlTreeView_EndEdit GUICtrlTreeView_EndUpdate GUICtrlTreeView_EnsureVisible GUICtrlTreeView_Expand GUICtrlTreeView_ExpandedOnce GUICtrlTreeView_FindItem GUICtrlTreeView_FindItemEx GUICtrlTreeView_GetBkColor GUICtrlTreeView_GetBold GUICtrlTreeView_GetChecked GUICtrlTreeView_GetChildCount GUICtrlTreeView_GetChildren GUICtrlTreeView_GetCount GUICtrlTreeView_GetCut GUICtrlTreeView_GetDropTarget GUICtrlTreeView_GetEditControl GUICtrlTreeView_GetExpanded GUICtrlTreeView_GetFirstChild GUICtrlTreeView_GetFirstItem GUICtrlTreeView_GetFirstVisible GUICtrlTreeView_GetFocused GUICtrlTreeView_GetHeight GUICtrlTreeView_GetImageIndex GUICtrlTreeView_GetImageListIconHandle GUICtrlTreeView_GetIndent GUICtrlTreeView_GetInsertMarkColor GUICtrlTreeView_GetISearchString GUICtrlTreeView_GetItemByIndex GUICtrlTreeView_GetItemHandle GUICtrlTreeView_GetItemParam GUICtrlTreeView_GetLastChild GUICtrlTreeView_GetLineColor GUICtrlTreeView_GetNext GUICtrlTreeView_GetNextChild GUICtrlTreeView_GetNextSibling GUICtrlTreeView_GetNextVisible GUICtrlTreeView_GetNormalImageList GUICtrlTreeView_GetParentHandle GUICtrlTreeView_GetParentParam GUICtrlTreeView_GetPrev GUICtrlTreeView_GetPrevChild GUICtrlTreeView_GetPrevSibling GUICtrlTreeView_GetPrevVisible GUICtrlTreeView_GetScrollTime GUICtrlTreeView_GetSelected GUICtrlTreeView_GetSelectedImageIndex GUICtrlTreeView_GetSelection GUICtrlTreeView_GetSiblingCount GUICtrlTreeView_GetState GUICtrlTreeView_GetStateImageIndex GUICtrlTreeView_GetStateImageList GUICtrlTreeView_GetText GUICtrlTreeView_GetTextColor GUICtrlTreeView_GetToolTips GUICtrlTreeView_GetTree GUICtrlTreeView_GetUnicodeFormat GUICtrlTreeView_GetVisible GUICtrlTreeView_GetVisibleCount GUICtrlTreeView_HitTest GUICtrlTreeView_HitTestEx GUICtrlTreeView_HitTestItem GUICtrlTreeView_Index GUICtrlTreeView_InsertItem GUICtrlTreeView_IsFirstItem GUICtrlTreeView_IsParent GUICtrlTreeView_Level GUICtrlTreeView_SelectItem GUICtrlTreeView_SelectItemByIndex GUICtrlTreeView_SetBkColor GUICtrlTreeView_SetBold GUICtrlTreeView_SetChecked GUICtrlTreeView_SetCheckedByIndex GUICtrlTreeView_SetChildren GUICtrlTreeView_SetCut GUICtrlTreeView_SetDropTarget GUICtrlTreeView_SetFocused GUICtrlTreeView_SetHeight GUICtrlTreeView_SetIcon GUICtrlTreeView_SetImageIndex GUICtrlTreeView_SetIndent GUICtrlTreeView_SetInsertMark GUICtrlTreeView_SetInsertMarkColor GUICtrlTreeView_SetItemHeight GUICtrlTreeView_SetItemParam GUICtrlTreeView_SetLineColor GUICtrlTreeView_SetNormalImageList GUICtrlTreeView_SetScrollTime GUICtrlTreeView_SetSelected GUICtrlTreeView_SetSelectedImageIndex GUICtrlTreeView_SetState GUICtrlTreeView_SetStateImageIndex GUICtrlTreeView_SetStateImageList GUICtrlTreeView_SetText GUICtrlTreeView_SetTextColor GUICtrlTreeView_SetToolTips GUICtrlTreeView_SetUnicodeFormat GUICtrlTreeView_Sort GUIImageList_Add GUIImageList_AddBitmap GUIImageList_AddIcon GUIImageList_AddMasked GUIImageList_BeginDrag GUIImageList_Copy GUIImageList_Create GUIImageList_Destroy GUIImageList_DestroyIcon GUIImageList_DragEnter GUIImageList_DragLeave GUIImageList_DragMove GUIImageList_Draw GUIImageList_DrawEx GUIImageList_Duplicate GUIImageList_EndDrag GUIImageList_GetBkColor GUIImageList_GetIcon GUIImageList_GetIconHeight GUIImageList_GetIconSize GUIImageList_GetIconSizeEx GUIImageList_GetIconWidth GUIImageList_GetImageCount GUIImageList_GetImageInfoEx GUIImageList_Remove GUIImageList_ReplaceIcon GUIImageList_SetBkColor GUIImageList_SetIconSize GUIImageList_SetImageCount GUIImageList_Swap GUIScrollBars_EnableScrollBar GUIScrollBars_GetScrollBarInfoEx GUIScrollBars_GetScrollBarRect GUIScrollBars_GetScrollBarRGState GUIScrollBars_GetScrollBarXYLineButton GUIScrollBars_GetScrollBarXYThumbBottom GUIScrollBars_GetScrollBarXYThumbTop GUIScrollBars_GetScrollInfo GUIScrollBars_GetScrollInfoEx GUIScrollBars_GetScrollInfoMax GUIScrollBars_GetScrollInfoMin GUIScrollBars_GetScrollInfoPage GUIScrollBars_GetScrollInfoPos GUIScrollBars_GetScrollInfoTrackPos GUIScrollBars_GetScrollPos GUIScrollBars_GetScrollRange GUIScrollBars_Init GUIScrollBars_ScrollWindow GUIScrollBars_SetScrollInfo GUIScrollBars_SetScrollInfoMax GUIScrollBars_SetScrollInfoMin GUIScrollBars_SetScrollInfoPage GUIScrollBars_SetScrollInfoPos GUIScrollBars_SetScrollRange GUIScrollBars_ShowScrollBar GUIToolTip_Activate GUIToolTip_AddTool GUIToolTip_AdjustRect GUIToolTip_BitsToTTF GUIToolTip_Create GUIToolTip_Deactivate GUIToolTip_DelTool GUIToolTip_Destroy GUIToolTip_EnumTools GUIToolTip_GetBubbleHeight GUIToolTip_GetBubbleSize GUIToolTip_GetBubbleWidth GUIToolTip_GetCurrentTool GUIToolTip_GetDelayTime GUIToolTip_GetMargin GUIToolTip_GetMarginEx GUIToolTip_GetMaxTipWidth GUIToolTip_GetText GUIToolTip_GetTipBkColor GUIToolTip_GetTipTextColor GUIToolTip_GetTitleBitMap GUIToolTip_GetTitleText GUIToolTip_GetToolCount GUIToolTip_GetToolInfo GUIToolTip_HitTest GUIToolTip_NewToolRect GUIToolTip_Pop GUIToolTip_PopUp GUIToolTip_SetDelayTime GUIToolTip_SetMargin GUIToolTip_SetMaxTipWidth GUIToolTip_SetTipBkColor GUIToolTip_SetTipTextColor GUIToolTip_SetTitle GUIToolTip_SetToolInfo GUIToolTip_SetWindowTheme GUIToolTip_ToolExists GUIToolTip_ToolToArray GUIToolTip_TrackActivate GUIToolTip_TrackPosition GUIToolTip_Update GUIToolTip_UpdateTipText HexToString IEAction IEAttach IEBodyReadHTML IEBodyReadText IEBodyWriteHTML IECreate IECreateEmbedded IEDocGetObj IEDocInsertHTML IEDocInsertText IEDocReadHTML IEDocWriteHTML IEErrorNotify IEFormElementCheckBoxSelect IEFormElementGetCollection IEFormElementGetObjByName IEFormElementGetValue IEFormElementOptionSelect IEFormElementRadioSelect IEFormElementSetValue IEFormGetCollection IEFormGetObjByName IEFormImageClick IEFormReset IEFormSubmit IEFrameGetCollection IEFrameGetObjByName IEGetObjById IEGetObjByName IEHeadInsertEventScript IEImgClick IEImgGetCollection IEIsFrameSet IELinkClickByIndex IELinkClickByText IELinkGetCollection IELoadWait IELoadWaitTimeout IENavigate IEPropertyGet IEPropertySet IEQuit IETableGetCollection IETableWriteToArray IETagNameAllGetCollection IETagNameGetCollection IE_Example IE_Introduction IE_VersionInfo INetExplorerCapable INetGetSource INetMail INetSmtpMail IsPressed MathCheckDiv Max MemGlobalAlloc MemGlobalFree MemGlobalLock MemGlobalSize MemGlobalUnlock MemMoveMemory MemVirtualAlloc MemVirtualAllocEx MemVirtualFree MemVirtualFreeEx Min MouseTrap NamedPipes_CallNamedPipe NamedPipes_ConnectNamedPipe NamedPipes_CreateNamedPipe NamedPipes_CreatePipe NamedPipes_DisconnectNamedPipe NamedPipes_GetNamedPipeHandleState NamedPipes_GetNamedPipeInfo NamedPipes_PeekNamedPipe NamedPipes_SetNamedPipeHandleState NamedPipes_TransactNamedPipe NamedPipes_WaitNamedPipe Net_Share_ConnectionEnum Net_Share_FileClose Net_Share_FileEnum Net_Share_FileGetInfo Net_Share_PermStr Net_Share_ResourceStr Net_Share_SessionDel Net_Share_SessionEnum Net_Share_SessionGetInfo Net_Share_ShareAdd Net_Share_ShareCheck Net_Share_ShareDel Net_Share_ShareEnum Net_Share_ShareGetInfo Net_Share_ShareSetInfo Net_Share_StatisticsGetSvr Net_Share_StatisticsGetWrk Now NowCalc NowCalcDate NowDate NowTime PathFull PathGetRelative PathMake PathSplit ProcessGetName ProcessGetPriority Radian ReplaceStringInFile RunDos ScreenCapture_Capture ScreenCapture_CaptureWnd ScreenCapture_SaveImage ScreenCapture_SetBMPFormat ScreenCapture_SetJPGQuality ScreenCapture_SetTIFColorDepth ScreenCapture_SetTIFCompression Security__AdjustTokenPrivileges Security__CreateProcessWithToken Security__DuplicateTokenEx Security__GetAccountSid Security__GetLengthSid Security__GetTokenInformation Security__ImpersonateSelf Security__IsValidSid Security__LookupAccountName Security__LookupAccountSid Security__LookupPrivilegeValue Security__OpenProcessToken Security__OpenThreadToken Security__OpenThreadTokenEx Security__SetPrivilege Security__SetTokenInformation Security__SidToStringSid Security__SidTypeStr Security__StringSidToSid SendMessage SendMessageA SetDate SetTime Singleton SoundClose SoundLength SoundOpen SoundPause SoundPlay SoundPos SoundResume SoundSeek SoundStatus SoundStop SQLite_Changes SQLite_Close SQLite_Display2DResult SQLite_Encode SQLite_ErrCode SQLite_ErrMsg SQLite_Escape SQLite_Exec SQLite_FastEncode SQLite_FastEscape SQLite_FetchData SQLite_FetchNames SQLite_GetTable SQLite_GetTable2d SQLite_LastInsertRowID SQLite_LibVersion SQLite_Open SQLite_Query SQLite_QueryFinalize SQLite_QueryReset SQLite_QuerySingleRow SQLite_SafeMode SQLite_SetTimeout SQLite_Shutdown SQLite_SQLiteExe SQLite_Startup SQLite_TotalChanges StringBetween StringExplode StringInsert StringProper StringRepeat StringTitleCase StringToHex TCPIpToName TempFile TicksToTime Timer_Diff Timer_GetIdleTime Timer_GetTimerID Timer_Init Timer_KillAllTimers Timer_KillTimer Timer_SetTimer TimeToTicks VersionCompare viClose viExecCommand viFindGpib viGpibBusReset viGTL viInteractiveControl viOpen viSetAttribute viSetTimeout WeekNumberISO WinAPI_AbortPath WinAPI_ActivateKeyboardLayout WinAPI_AddClipboardFormatListener WinAPI_AddFontMemResourceEx WinAPI_AddFontResourceEx WinAPI_AddIconOverlay WinAPI_AddIconTransparency WinAPI_AddMRUString WinAPI_AdjustBitmap WinAPI_AdjustTokenPrivileges WinAPI_AdjustWindowRectEx WinAPI_AlphaBlend WinAPI_AngleArc WinAPI_AnimateWindow WinAPI_Arc WinAPI_ArcTo WinAPI_ArrayToStruct WinAPI_AssignProcessToJobObject WinAPI_AssocGetPerceivedType WinAPI_AssocQueryString WinAPI_AttachConsole WinAPI_AttachThreadInput WinAPI_BackupRead WinAPI_BackupReadAbort WinAPI_BackupSeek WinAPI_BackupWrite WinAPI_BackupWriteAbort WinAPI_Beep WinAPI_BeginBufferedPaint WinAPI_BeginDeferWindowPos WinAPI_BeginPaint WinAPI_BeginPath WinAPI_BeginUpdateResource WinAPI_BitBlt WinAPI_BringWindowToTop WinAPI_BroadcastSystemMessage WinAPI_BrowseForFolderDlg WinAPI_BufferedPaintClear WinAPI_BufferedPaintInit WinAPI_BufferedPaintSetAlpha WinAPI_BufferedPaintUnInit WinAPI_CallNextHookEx WinAPI_CallWindowProc WinAPI_CallWindowProcW WinAPI_CascadeWindows WinAPI_ChangeWindowMessageFilterEx WinAPI_CharToOem WinAPI_ChildWindowFromPointEx WinAPI_ClientToScreen WinAPI_ClipCursor WinAPI_CloseDesktop WinAPI_CloseEnhMetaFile WinAPI_CloseFigure WinAPI_CloseHandle WinAPI_CloseThemeData WinAPI_CloseWindow WinAPI_CloseWindowStation WinAPI_CLSIDFromProgID WinAPI_CoInitialize WinAPI_ColorAdjustLuma WinAPI_ColorHLSToRGB WinAPI_ColorRGBToHLS WinAPI_CombineRgn WinAPI_CombineTransform WinAPI_CommandLineToArgv WinAPI_CommDlgExtendedError WinAPI_CommDlgExtendedErrorEx WinAPI_CompareString WinAPI_CompressBitmapBits WinAPI_CompressBuffer WinAPI_ComputeCrc32 WinAPI_ConfirmCredentials WinAPI_CopyBitmap WinAPI_CopyCursor WinAPI_CopyEnhMetaFile WinAPI_CopyFileEx WinAPI_CopyIcon WinAPI_CopyImage WinAPI_CopyRect WinAPI_CopyStruct WinAPI_CoTaskMemAlloc WinAPI_CoTaskMemFree WinAPI_CoTaskMemRealloc WinAPI_CoUninitialize WinAPI_Create32BitHBITMAP WinAPI_Create32BitHICON WinAPI_CreateANDBitmap WinAPI_CreateBitmap WinAPI_CreateBitmapIndirect WinAPI_CreateBrushIndirect WinAPI_CreateBuffer WinAPI_CreateBufferFromStruct WinAPI_CreateCaret WinAPI_CreateColorAdjustment WinAPI_CreateCompatibleBitmap WinAPI_CreateCompatibleBitmapEx WinAPI_CreateCompatibleDC WinAPI_CreateDesktop WinAPI_CreateDIB WinAPI_CreateDIBColorTable WinAPI_CreateDIBitmap WinAPI_CreateDIBSection WinAPI_CreateDirectory WinAPI_CreateDirectoryEx WinAPI_CreateEllipticRgn WinAPI_CreateEmptyIcon WinAPI_CreateEnhMetaFile WinAPI_CreateEvent WinAPI_CreateFile WinAPI_CreateFileEx WinAPI_CreateFileMapping WinAPI_CreateFont WinAPI_CreateFontEx WinAPI_CreateFontIndirect WinAPI_CreateGUID WinAPI_CreateHardLink WinAPI_CreateIcon WinAPI_CreateIconFromResourceEx WinAPI_CreateIconIndirect WinAPI_CreateJobObject WinAPI_CreateMargins WinAPI_CreateMRUList WinAPI_CreateMutex WinAPI_CreateNullRgn WinAPI_CreateNumberFormatInfo WinAPI_CreateObjectID WinAPI_CreatePen WinAPI_CreatePoint WinAPI_CreatePolygonRgn WinAPI_CreateProcess WinAPI_CreateProcessWithToken WinAPI_CreateRect WinAPI_CreateRectEx WinAPI_CreateRectRgn WinAPI_CreateRectRgnIndirect WinAPI_CreateRoundRectRgn WinAPI_CreateSemaphore WinAPI_CreateSize WinAPI_CreateSolidBitmap WinAPI_CreateSolidBrush WinAPI_CreateStreamOnHGlobal WinAPI_CreateString WinAPI_CreateSymbolicLink WinAPI_CreateTransform WinAPI_CreateWindowEx WinAPI_CreateWindowStation WinAPI_DecompressBuffer WinAPI_DecryptFile WinAPI_DeferWindowPos WinAPI_DefineDosDevice WinAPI_DefRawInputProc WinAPI_DefSubclassProc WinAPI_DefWindowProc WinAPI_DefWindowProcW WinAPI_DeleteDC WinAPI_DeleteEnhMetaFile WinAPI_DeleteFile WinAPI_DeleteObject WinAPI_DeleteObjectID WinAPI_DeleteVolumeMountPoint WinAPI_DeregisterShellHookWindow WinAPI_DestroyCaret WinAPI_DestroyCursor WinAPI_DestroyIcon WinAPI_DestroyWindow WinAPI_DeviceIoControl WinAPI_DisplayStruct WinAPI_DllGetVersion WinAPI_DllInstall WinAPI_DllUninstall WinAPI_DPtoLP WinAPI_DragAcceptFiles WinAPI_DragFinish WinAPI_DragQueryFileEx WinAPI_DragQueryPoint WinAPI_DrawAnimatedRects WinAPI_DrawBitmap WinAPI_DrawEdge WinAPI_DrawFocusRect WinAPI_DrawFrameControl WinAPI_DrawIcon WinAPI_DrawIconEx WinAPI_DrawLine WinAPI_DrawShadowText WinAPI_DrawText WinAPI_DrawThemeBackground WinAPI_DrawThemeEdge WinAPI_DrawThemeIcon WinAPI_DrawThemeParentBackground WinAPI_DrawThemeText WinAPI_DrawThemeTextEx WinAPI_DuplicateEncryptionInfoFile WinAPI_DuplicateHandle WinAPI_DuplicateTokenEx WinAPI_DwmDefWindowProc WinAPI_DwmEnableBlurBehindWindow WinAPI_DwmEnableComposition WinAPI_DwmExtendFrameIntoClientArea WinAPI_DwmGetColorizationColor WinAPI_DwmGetColorizationParameters WinAPI_DwmGetWindowAttribute WinAPI_DwmInvalidateIconicBitmaps WinAPI_DwmIsCompositionEnabled WinAPI_DwmQueryThumbnailSourceSize WinAPI_DwmRegisterThumbnail WinAPI_DwmSetColorizationParameters WinAPI_DwmSetIconicLivePreviewBitmap WinAPI_DwmSetIconicThumbnail WinAPI_DwmSetWindowAttribute WinAPI_DwmUnregisterThumbnail WinAPI_DwmUpdateThumbnailProperties WinAPI_DWordToFloat WinAPI_DWordToInt WinAPI_EjectMedia WinAPI_Ellipse WinAPI_EmptyWorkingSet WinAPI_EnableWindow WinAPI_EncryptFile WinAPI_EncryptionDisable WinAPI_EndBufferedPaint WinAPI_EndDeferWindowPos WinAPI_EndPaint WinAPI_EndPath WinAPI_EndUpdateResource WinAPI_EnumChildProcess WinAPI_EnumChildWindows WinAPI_EnumDesktops WinAPI_EnumDesktopWindows WinAPI_EnumDeviceDrivers WinAPI_EnumDisplayDevices WinAPI_EnumDisplayMonitors WinAPI_EnumDisplaySettings WinAPI_EnumDllProc WinAPI_EnumFiles WinAPI_EnumFileStreams WinAPI_EnumFontFamilies WinAPI_EnumHardLinks WinAPI_EnumMRUList WinAPI_EnumPageFiles WinAPI_EnumProcessHandles WinAPI_EnumProcessModules WinAPI_EnumProcessThreads WinAPI_EnumProcessWindows WinAPI_EnumRawInputDevices WinAPI_EnumResourceLanguages WinAPI_EnumResourceNames WinAPI_EnumResourceTypes WinAPI_EnumSystemGeoID WinAPI_EnumSystemLocales WinAPI_EnumUILanguages WinAPI_EnumWindows WinAPI_EnumWindowsPopup WinAPI_EnumWindowStations WinAPI_EnumWindowsTop WinAPI_EqualMemory WinAPI_EqualRect WinAPI_EqualRgn WinAPI_ExcludeClipRect WinAPI_ExpandEnvironmentStrings WinAPI_ExtCreatePen WinAPI_ExtCreateRegion WinAPI_ExtFloodFill WinAPI_ExtractIcon WinAPI_ExtractIconEx WinAPI_ExtSelectClipRgn WinAPI_FatalAppExit WinAPI_FatalExit WinAPI_FileEncryptionStatus WinAPI_FileExists WinAPI_FileIconInit WinAPI_FileInUse WinAPI_FillMemory WinAPI_FillPath WinAPI_FillRect WinAPI_FillRgn WinAPI_FindClose WinAPI_FindCloseChangeNotification WinAPI_FindExecutable WinAPI_FindFirstChangeNotification WinAPI_FindFirstFile WinAPI_FindFirstFileName WinAPI_FindFirstStream WinAPI_FindNextChangeNotification WinAPI_FindNextFile WinAPI_FindNextFileName WinAPI_FindNextStream WinAPI_FindResource WinAPI_FindResourceEx WinAPI_FindTextDlg WinAPI_FindWindow WinAPI_FlashWindow WinAPI_FlashWindowEx WinAPI_FlattenPath WinAPI_FloatToDWord WinAPI_FloatToInt WinAPI_FlushFileBuffers WinAPI_FlushFRBuffer WinAPI_FlushViewOfFile WinAPI_FormatDriveDlg WinAPI_FormatMessage WinAPI_FrameRect WinAPI_FrameRgn WinAPI_FreeLibrary WinAPI_FreeMemory WinAPI_FreeMRUList WinAPI_FreeResource WinAPI_GdiComment WinAPI_GetActiveWindow WinAPI_GetAllUsersProfileDirectory WinAPI_GetAncestor WinAPI_GetApplicationRestartSettings WinAPI_GetArcDirection WinAPI_GetAsyncKeyState WinAPI_GetBinaryType WinAPI_GetBitmapBits WinAPI_GetBitmapDimension WinAPI_GetBitmapDimensionEx WinAPI_GetBkColor WinAPI_GetBkMode WinAPI_GetBoundsRect WinAPI_GetBrushOrg WinAPI_GetBufferedPaintBits WinAPI_GetBufferedPaintDC WinAPI_GetBufferedPaintTargetDC WinAPI_GetBufferedPaintTargetRect WinAPI_GetBValue WinAPI_GetCaretBlinkTime WinAPI_GetCaretPos WinAPI_GetCDType WinAPI_GetClassInfoEx WinAPI_GetClassLongEx WinAPI_GetClassName WinAPI_GetClientHeight WinAPI_GetClientRect WinAPI_GetClientWidth WinAPI_GetClipboardSequenceNumber WinAPI_GetClipBox WinAPI_GetClipCursor WinAPI_GetClipRgn WinAPI_GetColorAdjustment WinAPI_GetCompressedFileSize WinAPI_GetCompression WinAPI_GetConnectedDlg WinAPI_GetCurrentDirectory WinAPI_GetCurrentHwProfile WinAPI_GetCurrentObject WinAPI_GetCurrentPosition WinAPI_GetCurrentProcess WinAPI_GetCurrentProcessExplicitAppUserModelID WinAPI_GetCurrentProcessID WinAPI_GetCurrentThemeName WinAPI_GetCurrentThread WinAPI_GetCurrentThreadId WinAPI_GetCursor WinAPI_GetCursorInfo WinAPI_GetDateFormat WinAPI_GetDC WinAPI_GetDCEx WinAPI_GetDefaultPrinter WinAPI_GetDefaultUserProfileDirectory WinAPI_GetDesktopWindow WinAPI_GetDeviceCaps WinAPI_GetDeviceDriverBaseName WinAPI_GetDeviceDriverFileName WinAPI_GetDeviceGammaRamp WinAPI_GetDIBColorTable WinAPI_GetDIBits WinAPI_GetDiskFreeSpaceEx WinAPI_GetDlgCtrlID WinAPI_GetDlgItem WinAPI_GetDllDirectory WinAPI_GetDriveBusType WinAPI_GetDriveGeometryEx WinAPI_GetDriveNumber WinAPI_GetDriveType WinAPI_GetDurationFormat WinAPI_GetEffectiveClientRect WinAPI_GetEnhMetaFile WinAPI_GetEnhMetaFileBits WinAPI_GetEnhMetaFileDescription WinAPI_GetEnhMetaFileDimension WinAPI_GetEnhMetaFileHeader WinAPI_GetErrorMessage WinAPI_GetErrorMode WinAPI_GetExitCodeProcess WinAPI_GetExtended WinAPI_GetFileAttributes WinAPI_GetFileID WinAPI_GetFileInformationByHandle WinAPI_GetFileInformationByHandleEx WinAPI_GetFilePointerEx WinAPI_GetFileSizeEx WinAPI_GetFileSizeOnDisk WinAPI_GetFileTitle WinAPI_GetFileType WinAPI_GetFileVersionInfo WinAPI_GetFinalPathNameByHandle WinAPI_GetFinalPathNameByHandleEx WinAPI_GetFocus WinAPI_GetFontMemoryResourceInfo WinAPI_GetFontName WinAPI_GetFontResourceInfo WinAPI_GetForegroundWindow WinAPI_GetFRBuffer WinAPI_GetFullPathName WinAPI_GetGeoInfo WinAPI_GetGlyphOutline WinAPI_GetGraphicsMode WinAPI_GetGuiResources WinAPI_GetGUIThreadInfo WinAPI_GetGValue WinAPI_GetHandleInformation WinAPI_GetHGlobalFromStream WinAPI_GetIconDimension WinAPI_GetIconInfo WinAPI_GetIconInfoEx WinAPI_GetIdleTime WinAPI_GetKeyboardLayout WinAPI_GetKeyboardLayoutList WinAPI_GetKeyboardState WinAPI_GetKeyboardType WinAPI_GetKeyNameText WinAPI_GetKeyState WinAPI_GetLastActivePopup WinAPI_GetLastError WinAPI_GetLastErrorMessage WinAPI_GetLayeredWindowAttributes WinAPI_GetLocaleInfo WinAPI_GetLogicalDrives WinAPI_GetMapMode WinAPI_GetMemorySize WinAPI_GetMessageExtraInfo WinAPI_GetModuleFileNameEx WinAPI_GetModuleHandle WinAPI_GetModuleHandleEx WinAPI_GetModuleInformation WinAPI_GetMonitorInfo WinAPI_GetMousePos WinAPI_GetMousePosX WinAPI_GetMousePosY WinAPI_GetMUILanguage WinAPI_GetNumberFormat WinAPI_GetObject WinAPI_GetObjectID WinAPI_GetObjectInfoByHandle WinAPI_GetObjectNameByHandle WinAPI_GetObjectType WinAPI_GetOpenFileName WinAPI_GetOutlineTextMetrics WinAPI_GetOverlappedResult WinAPI_GetParent WinAPI_GetParentProcess WinAPI_GetPerformanceInfo WinAPI_GetPEType WinAPI_GetPhysicallyInstalledSystemMemory WinAPI_GetPixel WinAPI_GetPolyFillMode WinAPI_GetPosFromRect WinAPI_GetPriorityClass WinAPI_GetProcAddress WinAPI_GetProcessAffinityMask WinAPI_GetProcessCommandLine WinAPI_GetProcessFileName WinAPI_GetProcessHandleCount WinAPI_GetProcessID WinAPI_GetProcessIoCounters WinAPI_GetProcessMemoryInfo WinAPI_GetProcessName WinAPI_GetProcessShutdownParameters WinAPI_GetProcessTimes WinAPI_GetProcessUser WinAPI_GetProcessWindowStation WinAPI_GetProcessWorkingDirectory WinAPI_GetProfilesDirectory WinAPI_GetPwrCapabilities WinAPI_GetRawInputBuffer WinAPI_GetRawInputBufferLength WinAPI_GetRawInputData WinAPI_GetRawInputDeviceInfo WinAPI_GetRegionData WinAPI_GetRegisteredRawInputDevices WinAPI_GetRegKeyNameByHandle WinAPI_GetRgnBox WinAPI_GetROP2 WinAPI_GetRValue WinAPI_GetSaveFileName WinAPI_GetShellWindow WinAPI_GetStartupInfo WinAPI_GetStdHandle WinAPI_GetStockObject WinAPI_GetStretchBltMode WinAPI_GetString WinAPI_GetSysColor WinAPI_GetSysColorBrush WinAPI_GetSystemDefaultLangID WinAPI_GetSystemDefaultLCID WinAPI_GetSystemDefaultUILanguage WinAPI_GetSystemDEPPolicy WinAPI_GetSystemInfo WinAPI_GetSystemMetrics WinAPI_GetSystemPowerStatus WinAPI_GetSystemTimes WinAPI_GetSystemWow64Directory WinAPI_GetTabbedTextExtent WinAPI_GetTempFileName WinAPI_GetTextAlign WinAPI_GetTextCharacterExtra WinAPI_GetTextColor WinAPI_GetTextExtentPoint32 WinAPI_GetTextFace WinAPI_GetTextMetrics WinAPI_GetThemeAppProperties WinAPI_GetThemeBackgroundContentRect WinAPI_GetThemeBackgroundExtent WinAPI_GetThemeBackgroundRegion WinAPI_GetThemeBitmap WinAPI_GetThemeBool WinAPI_GetThemeColor WinAPI_GetThemeDocumentationProperty WinAPI_GetThemeEnumValue WinAPI_GetThemeFilename WinAPI_GetThemeFont WinAPI_GetThemeInt WinAPI_GetThemeMargins WinAPI_GetThemeMetric WinAPI_GetThemePartSize WinAPI_GetThemePosition WinAPI_GetThemePropertyOrigin WinAPI_GetThemeRect WinAPI_GetThemeString WinAPI_GetThemeSysBool WinAPI_GetThemeSysColor WinAPI_GetThemeSysColorBrush WinAPI_GetThemeSysFont WinAPI_GetThemeSysInt WinAPI_GetThemeSysSize WinAPI_GetThemeSysString WinAPI_GetThemeTextExtent WinAPI_GetThemeTextMetrics WinAPI_GetThemeTransitionDuration WinAPI_GetThreadDesktop WinAPI_GetThreadErrorMode WinAPI_GetThreadLocale WinAPI_GetThreadUILanguage WinAPI_GetTickCount WinAPI_GetTickCount64 WinAPI_GetTimeFormat WinAPI_GetTopWindow WinAPI_GetUDFColorMode WinAPI_GetUpdateRect WinAPI_GetUpdateRgn WinAPI_GetUserDefaultLangID WinAPI_GetUserDefaultLCID WinAPI_GetUserDefaultUILanguage WinAPI_GetUserGeoID WinAPI_GetUserObjectInformation WinAPI_GetVersion WinAPI_GetVersionEx WinAPI_GetVolumeInformation WinAPI_GetVolumeInformationByHandle WinAPI_GetVolumeNameForVolumeMountPoint WinAPI_GetWindow WinAPI_GetWindowDC WinAPI_GetWindowDisplayAffinity WinAPI_GetWindowExt WinAPI_GetWindowFileName WinAPI_GetWindowHeight WinAPI_GetWindowInfo WinAPI_GetWindowLong WinAPI_GetWindowOrg WinAPI_GetWindowPlacement WinAPI_GetWindowRect WinAPI_GetWindowRgn WinAPI_GetWindowRgnBox WinAPI_GetWindowSubclass WinAPI_GetWindowText WinAPI_GetWindowTheme WinAPI_GetWindowThreadProcessId WinAPI_GetWindowWidth WinAPI_GetWorkArea WinAPI_GetWorldTransform WinAPI_GetXYFromPoint WinAPI_GlobalMemoryStatus WinAPI_GradientFill WinAPI_GUIDFromString WinAPI_GUIDFromStringEx WinAPI_HashData WinAPI_HashString WinAPI_HiByte WinAPI_HideCaret WinAPI_HiDWord WinAPI_HiWord WinAPI_InflateRect WinAPI_InitMUILanguage WinAPI_InProcess WinAPI_IntersectClipRect WinAPI_IntersectRect WinAPI_IntToDWord WinAPI_IntToFloat WinAPI_InvalidateRect WinAPI_InvalidateRgn WinAPI_InvertANDBitmap WinAPI_InvertColor WinAPI_InvertRect WinAPI_InvertRgn WinAPI_IOCTL WinAPI_IsAlphaBitmap WinAPI_IsBadCodePtr WinAPI_IsBadReadPtr WinAPI_IsBadStringPtr WinAPI_IsBadWritePtr WinAPI_IsChild WinAPI_IsClassName WinAPI_IsDoorOpen WinAPI_IsElevated WinAPI_IsHungAppWindow WinAPI_IsIconic WinAPI_IsInternetConnected WinAPI_IsLoadKBLayout WinAPI_IsMemory WinAPI_IsNameInExpression WinAPI_IsNetworkAlive WinAPI_IsPathShared WinAPI_IsProcessInJob WinAPI_IsProcessorFeaturePresent WinAPI_IsRectEmpty WinAPI_IsThemeActive WinAPI_IsThemeBackgroundPartiallyTransparent WinAPI_IsThemePartDefined WinAPI_IsValidLocale WinAPI_IsWindow WinAPI_IsWindowEnabled WinAPI_IsWindowUnicode WinAPI_IsWindowVisible WinAPI_IsWow64Process WinAPI_IsWritable WinAPI_IsZoomed WinAPI_Keybd_Event WinAPI_KillTimer WinAPI_LineDDA WinAPI_LineTo WinAPI_LoadBitmap WinAPI_LoadCursor WinAPI_LoadCursorFromFile WinAPI_LoadIcon WinAPI_LoadIconMetric WinAPI_LoadIconWithScaleDown WinAPI_LoadImage WinAPI_LoadIndirectString WinAPI_LoadKeyboardLayout WinAPI_LoadLibrary WinAPI_LoadLibraryEx WinAPI_LoadMedia WinAPI_LoadResource WinAPI_LoadShell32Icon WinAPI_LoadString WinAPI_LoadStringEx WinAPI_LoByte WinAPI_LocalFree WinAPI_LockDevice WinAPI_LockFile WinAPI_LockResource WinAPI_LockWindowUpdate WinAPI_LockWorkStation WinAPI_LoDWord WinAPI_LongMid WinAPI_LookupIconIdFromDirectoryEx WinAPI_LoWord WinAPI_LPtoDP WinAPI_MAKELANGID WinAPI_MAKELCID WinAPI_MakeLong WinAPI_MakeQWord WinAPI_MakeWord WinAPI_MapViewOfFile WinAPI_MapVirtualKey WinAPI_MaskBlt WinAPI_MessageBeep WinAPI_MessageBoxCheck WinAPI_MessageBoxIndirect WinAPI_MirrorIcon WinAPI_ModifyWorldTransform WinAPI_MonitorFromPoint WinAPI_MonitorFromRect WinAPI_MonitorFromWindow WinAPI_Mouse_Event WinAPI_MoveFileEx WinAPI_MoveMemory WinAPI_MoveTo WinAPI_MoveToEx WinAPI_MoveWindow WinAPI_MsgBox WinAPI_MulDiv WinAPI_MultiByteToWideChar WinAPI_MultiByteToWideCharEx WinAPI_NtStatusToDosError WinAPI_OemToChar WinAPI_OffsetClipRgn WinAPI_OffsetPoints WinAPI_OffsetRect WinAPI_OffsetRgn WinAPI_OffsetWindowOrg WinAPI_OpenDesktop WinAPI_OpenFileById WinAPI_OpenFileDlg WinAPI_OpenFileMapping WinAPI_OpenIcon WinAPI_OpenInputDesktop WinAPI_OpenJobObject WinAPI_OpenMutex WinAPI_OpenProcess WinAPI_OpenProcessToken WinAPI_OpenSemaphore WinAPI_OpenThemeData WinAPI_OpenWindowStation WinAPI_PageSetupDlg WinAPI_PaintDesktop WinAPI_PaintRgn WinAPI_ParseURL WinAPI_ParseUserName WinAPI_PatBlt WinAPI_PathAddBackslash WinAPI_PathAddExtension WinAPI_PathAppend WinAPI_PathBuildRoot WinAPI_PathCanonicalize WinAPI_PathCommonPrefix WinAPI_PathCompactPath WinAPI_PathCompactPathEx WinAPI_PathCreateFromUrl WinAPI_PathFindExtension WinAPI_PathFindFileName WinAPI_PathFindNextComponent WinAPI_PathFindOnPath WinAPI_PathGetArgs WinAPI_PathGetCharType WinAPI_PathGetDriveNumber WinAPI_PathIsContentType WinAPI_PathIsDirectory WinAPI_PathIsDirectoryEmpty WinAPI_PathIsExe WinAPI_PathIsFileSpec WinAPI_PathIsLFNFileSpec WinAPI_PathIsRelative WinAPI_PathIsRoot WinAPI_PathIsSameRoot WinAPI_PathIsSystemFolder WinAPI_PathIsUNC WinAPI_PathIsUNCServer WinAPI_PathIsUNCServerShare WinAPI_PathMakeSystemFolder WinAPI_PathMatchSpec WinAPI_PathParseIconLocation WinAPI_PathRelativePathTo WinAPI_PathRemoveArgs WinAPI_PathRemoveBackslash WinAPI_PathRemoveExtension WinAPI_PathRemoveFileSpec WinAPI_PathRenameExtension WinAPI_PathSearchAndQualify WinAPI_PathSkipRoot WinAPI_PathStripPath WinAPI_PathStripToRoot WinAPI_PathToRegion WinAPI_PathUndecorate WinAPI_PathUnExpandEnvStrings WinAPI_PathUnmakeSystemFolder WinAPI_PathUnquoteSpaces WinAPI_PathYetAnotherMakeUniqueName WinAPI_PickIconDlg WinAPI_PlayEnhMetaFile WinAPI_PlaySound WinAPI_PlgBlt WinAPI_PointFromRect WinAPI_PolyBezier WinAPI_PolyBezierTo WinAPI_PolyDraw WinAPI_Polygon WinAPI_PostMessage WinAPI_PrimaryLangId WinAPI_PrintDlg WinAPI_PrintDlgEx WinAPI_PrintWindow WinAPI_ProgIDFromCLSID WinAPI_PtInRect WinAPI_PtInRectEx WinAPI_PtInRegion WinAPI_PtVisible WinAPI_QueryDosDevice WinAPI_QueryInformationJobObject WinAPI_QueryPerformanceCounter WinAPI_QueryPerformanceFrequency WinAPI_RadialGradientFill WinAPI_ReadDirectoryChanges WinAPI_ReadFile WinAPI_ReadProcessMemory WinAPI_Rectangle WinAPI_RectInRegion WinAPI_RectIsEmpty WinAPI_RectVisible WinAPI_RedrawWindow WinAPI_RegCloseKey WinAPI_RegConnectRegistry WinAPI_RegCopyTree WinAPI_RegCopyTreeEx WinAPI_RegCreateKey WinAPI_RegDeleteEmptyKey WinAPI_RegDeleteKey WinAPI_RegDeleteKeyValue WinAPI_RegDeleteTree WinAPI_RegDeleteTreeEx WinAPI_RegDeleteValue WinAPI_RegDisableReflectionKey WinAPI_RegDuplicateHKey WinAPI_RegEnableReflectionKey WinAPI_RegEnumKey WinAPI_RegEnumValue WinAPI_RegFlushKey WinAPI_RegisterApplicationRestart WinAPI_RegisterClass WinAPI_RegisterClassEx WinAPI_RegisterHotKey WinAPI_RegisterPowerSettingNotification WinAPI_RegisterRawInputDevices WinAPI_RegisterShellHookWindow WinAPI_RegisterWindowMessage WinAPI_RegLoadMUIString WinAPI_RegNotifyChangeKeyValue WinAPI_RegOpenKey WinAPI_RegQueryInfoKey WinAPI_RegQueryLastWriteTime WinAPI_RegQueryMultipleValues WinAPI_RegQueryReflectionKey WinAPI_RegQueryValue WinAPI_RegRestoreKey WinAPI_RegSaveKey WinAPI_RegSetValue WinAPI_ReleaseCapture WinAPI_ReleaseDC WinAPI_ReleaseMutex WinAPI_ReleaseSemaphore WinAPI_ReleaseStream WinAPI_RemoveClipboardFormatListener WinAPI_RemoveDirectory WinAPI_RemoveFontMemResourceEx WinAPI_RemoveFontResourceEx WinAPI_RemoveWindowSubclass WinAPI_ReOpenFile WinAPI_ReplaceFile WinAPI_ReplaceTextDlg WinAPI_ResetEvent WinAPI_RestartDlg WinAPI_RestoreDC WinAPI_RGB WinAPI_RotatePoints WinAPI_RoundRect WinAPI_SaveDC WinAPI_SaveFileDlg WinAPI_SaveHBITMAPToFile WinAPI_SaveHICONToFile WinAPI_ScaleWindowExt WinAPI_ScreenToClient WinAPI_SearchPath WinAPI_SelectClipPath WinAPI_SelectClipRgn WinAPI_SelectObject WinAPI_SendMessageTimeout WinAPI_SetActiveWindow WinAPI_SetArcDirection WinAPI_SetBitmapBits WinAPI_SetBitmapDimensionEx WinAPI_SetBkColor WinAPI_SetBkMode WinAPI_SetBoundsRect WinAPI_SetBrushOrg WinAPI_SetCapture WinAPI_SetCaretBlinkTime WinAPI_SetCaretPos WinAPI_SetClassLongEx WinAPI_SetColorAdjustment WinAPI_SetCompression WinAPI_SetCurrentDirectory WinAPI_SetCurrentProcessExplicitAppUserModelID WinAPI_SetCursor WinAPI_SetDCBrushColor WinAPI_SetDCPenColor WinAPI_SetDefaultPrinter WinAPI_SetDeviceGammaRamp WinAPI_SetDIBColorTable WinAPI_SetDIBits WinAPI_SetDIBitsToDevice WinAPI_SetDllDirectory WinAPI_SetEndOfFile WinAPI_SetEnhMetaFileBits WinAPI_SetErrorMode WinAPI_SetEvent WinAPI_SetFileAttributes WinAPI_SetFileInformationByHandleEx WinAPI_SetFilePointer WinAPI_SetFilePointerEx WinAPI_SetFileShortName WinAPI_SetFileValidData WinAPI_SetFocus WinAPI_SetFont WinAPI_SetForegroundWindow WinAPI_SetFRBuffer WinAPI_SetGraphicsMode WinAPI_SetHandleInformation WinAPI_SetInformationJobObject WinAPI_SetKeyboardLayout WinAPI_SetKeyboardState WinAPI_SetLastError WinAPI_SetLayeredWindowAttributes WinAPI_SetLocaleInfo WinAPI_SetMapMode WinAPI_SetMessageExtraInfo WinAPI_SetParent WinAPI_SetPixel WinAPI_SetPolyFillMode WinAPI_SetPriorityClass WinAPI_SetProcessAffinityMask WinAPI_SetProcessShutdownParameters WinAPI_SetProcessWindowStation WinAPI_SetRectRgn WinAPI_SetROP2 WinAPI_SetSearchPathMode WinAPI_SetStretchBltMode WinAPI_SetSysColors WinAPI_SetSystemCursor WinAPI_SetTextAlign WinAPI_SetTextCharacterExtra WinAPI_SetTextColor WinAPI_SetTextJustification WinAPI_SetThemeAppProperties WinAPI_SetThreadDesktop WinAPI_SetThreadErrorMode WinAPI_SetThreadExecutionState WinAPI_SetThreadLocale WinAPI_SetThreadUILanguage WinAPI_SetTimer WinAPI_SetUDFColorMode WinAPI_SetUserGeoID WinAPI_SetUserObjectInformation WinAPI_SetVolumeMountPoint WinAPI_SetWindowDisplayAffinity WinAPI_SetWindowExt WinAPI_SetWindowLong WinAPI_SetWindowOrg WinAPI_SetWindowPlacement WinAPI_SetWindowPos WinAPI_SetWindowRgn WinAPI_SetWindowsHookEx WinAPI_SetWindowSubclass WinAPI_SetWindowText WinAPI_SetWindowTheme WinAPI_SetWinEventHook WinAPI_SetWorldTransform WinAPI_SfcIsFileProtected WinAPI_SfcIsKeyProtected WinAPI_ShellAboutDlg WinAPI_ShellAddToRecentDocs WinAPI_ShellChangeNotify WinAPI_ShellChangeNotifyDeregister WinAPI_ShellChangeNotifyRegister WinAPI_ShellCreateDirectory WinAPI_ShellEmptyRecycleBin WinAPI_ShellExecute WinAPI_ShellExecuteEx WinAPI_ShellExtractAssociatedIcon WinAPI_ShellExtractIcon WinAPI_ShellFileOperation WinAPI_ShellFlushSFCache WinAPI_ShellGetFileInfo WinAPI_ShellGetIconOverlayIndex WinAPI_ShellGetImageList WinAPI_ShellGetKnownFolderIDList WinAPI_ShellGetKnownFolderPath WinAPI_ShellGetLocalizedName WinAPI_ShellGetPathFromIDList WinAPI_ShellGetSetFolderCustomSettings WinAPI_ShellGetSettings WinAPI_ShellGetSpecialFolderLocation WinAPI_ShellGetSpecialFolderPath WinAPI_ShellGetStockIconInfo WinAPI_ShellILCreateFromPath WinAPI_ShellNotifyIcon WinAPI_ShellNotifyIconGetRect WinAPI_ShellObjectProperties WinAPI_ShellOpenFolderAndSelectItems WinAPI_ShellOpenWithDlg WinAPI_ShellQueryRecycleBin WinAPI_ShellQueryUserNotificationState WinAPI_ShellRemoveLocalizedName WinAPI_ShellRestricted WinAPI_ShellSetKnownFolderPath WinAPI_ShellSetLocalizedName WinAPI_ShellSetSettings WinAPI_ShellStartNetConnectionDlg WinAPI_ShellUpdateImage WinAPI_ShellUserAuthenticationDlg WinAPI_ShellUserAuthenticationDlgEx WinAPI_ShortToWord WinAPI_ShowCaret WinAPI_ShowCursor WinAPI_ShowError WinAPI_ShowLastError WinAPI_ShowMsg WinAPI_ShowOwnedPopups WinAPI_ShowWindow WinAPI_ShutdownBlockReasonCreate WinAPI_ShutdownBlockReasonDestroy WinAPI_ShutdownBlockReasonQuery WinAPI_SizeOfResource WinAPI_StretchBlt WinAPI_StretchDIBits WinAPI_StrFormatByteSize WinAPI_StrFormatByteSizeEx WinAPI_StrFormatKBSize WinAPI_StrFromTimeInterval WinAPI_StringFromGUID WinAPI_StringLenA WinAPI_StringLenW WinAPI_StrLen WinAPI_StrokeAndFillPath WinAPI_StrokePath WinAPI_StructToArray WinAPI_SubLangId WinAPI_SubtractRect WinAPI_SwapDWord WinAPI_SwapQWord WinAPI_SwapWord WinAPI_SwitchColor WinAPI_SwitchDesktop WinAPI_SwitchToThisWindow WinAPI_SystemParametersInfo WinAPI_TabbedTextOut WinAPI_TerminateJobObject WinAPI_TerminateProcess WinAPI_TextOut WinAPI_TileWindows WinAPI_TrackMouseEvent WinAPI_TransparentBlt WinAPI_TwipsPerPixelX WinAPI_TwipsPerPixelY WinAPI_UnhookWindowsHookEx WinAPI_UnhookWinEvent WinAPI_UnionRect WinAPI_UnionStruct WinAPI_UniqueHardwareID WinAPI_UnloadKeyboardLayout WinAPI_UnlockFile WinAPI_UnmapViewOfFile WinAPI_UnregisterApplicationRestart WinAPI_UnregisterClass WinAPI_UnregisterHotKey WinAPI_UnregisterPowerSettingNotification WinAPI_UpdateLayeredWindow WinAPI_UpdateLayeredWindowEx WinAPI_UpdateLayeredWindowIndirect WinAPI_UpdateResource WinAPI_UpdateWindow WinAPI_UrlApplyScheme WinAPI_UrlCanonicalize WinAPI_UrlCombine WinAPI_UrlCompare WinAPI_UrlCreateFromPath WinAPI_UrlFixup WinAPI_UrlGetPart WinAPI_UrlHash WinAPI_UrlIs WinAPI_UserHandleGrantAccess WinAPI_ValidateRect WinAPI_ValidateRgn WinAPI_VerQueryRoot WinAPI_VerQueryValue WinAPI_VerQueryValueEx WinAPI_WaitForInputIdle WinAPI_WaitForMultipleObjects WinAPI_WaitForSingleObject WinAPI_WideCharToMultiByte WinAPI_WidenPath WinAPI_WindowFromDC WinAPI_WindowFromPoint WinAPI_WordToShort WinAPI_Wow64EnableWow64FsRedirection WinAPI_WriteConsole WinAPI_WriteFile WinAPI_WriteProcessMemory WinAPI_ZeroMemory WinNet_AddConnection WinNet_AddConnection2 WinNet_AddConnection3 WinNet_CancelConnection WinNet_CancelConnection2 WinNet_CloseEnum WinNet_ConnectionDialog WinNet_ConnectionDialog1 WinNet_DisconnectDialog WinNet_DisconnectDialog1 WinNet_EnumResource WinNet_GetConnection WinNet_GetConnectionPerformance WinNet_GetLastError WinNet_GetNetworkInformation WinNet_GetProviderName WinNet_GetResourceInformation WinNet_GetResourceParent WinNet_GetUniversalName WinNet_GetUser WinNet_OpenEnum WinNet_RestoreConnection WinNet_UseConnection Word_Create Word_DocAdd Word_DocAttach Word_DocClose Word_DocExport Word_DocFind Word_DocFindReplace Word_DocGet Word_DocLinkAdd Word_DocLinkGet Word_DocOpen Word_DocPictureAdd Word_DocPrint Word_DocRangeSet Word_DocSave Word_DocSaveAs Word_DocTableRead Word_DocTableWrite Word_Quit\",I={\nv:[e.C(\";\",\"$\",{r:0}),e.C(\"#cs\",\"#ce\"),e.C(\"#comments-start\",\"#comments-end\")]},n={cN:\"variable\",b:\"\\\\$[A-z0-9_]+\"},l={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},o={v:[e.BNM,e.CNM]},a={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"include include-once NoTrayIcon OnAutoItStartRegister RequireAdmin pragma Au3Stripper_Ignore_Funcs Au3Stripper_Ignore_Variables Au3Stripper_Off Au3Stripper_On Au3Stripper_Parameters AutoIt3Wrapper_Add_Constants AutoIt3Wrapper_Au3Check_Parameters AutoIt3Wrapper_Au3Check_Stop_OnWarning AutoIt3Wrapper_Aut2Exe AutoIt3Wrapper_AutoIt3 AutoIt3Wrapper_AutoIt3Dir AutoIt3Wrapper_Change2CUI AutoIt3Wrapper_Compile_Both AutoIt3Wrapper_Compression AutoIt3Wrapper_EndIf AutoIt3Wrapper_Icon AutoIt3Wrapper_If_Compile AutoIt3Wrapper_If_Run AutoIt3Wrapper_Jump_To_First_Error AutoIt3Wrapper_OutFile AutoIt3Wrapper_OutFile_Type AutoIt3Wrapper_OutFile_X64 AutoIt3Wrapper_PlugIn_Funcs AutoIt3Wrapper_Res_Comment Autoit3Wrapper_Res_Compatibility AutoIt3Wrapper_Res_Description AutoIt3Wrapper_Res_Field AutoIt3Wrapper_Res_File_Add AutoIt3Wrapper_Res_FileVersion AutoIt3Wrapper_Res_FileVersion_AutoIncrement AutoIt3Wrapper_Res_Icon_Add AutoIt3Wrapper_Res_Language AutoIt3Wrapper_Res_LegalCopyright AutoIt3Wrapper_Res_ProductVersion AutoIt3Wrapper_Res_requestedExecutionLevel AutoIt3Wrapper_Res_SaveSource AutoIt3Wrapper_Run_After AutoIt3Wrapper_Run_Au3Check AutoIt3Wrapper_Run_Au3Stripper AutoIt3Wrapper_Run_Before AutoIt3Wrapper_Run_Debug_Mode AutoIt3Wrapper_Run_SciTE_Minimized AutoIt3Wrapper_Run_SciTE_OutputPane_Minimized AutoIt3Wrapper_Run_Tidy AutoIt3Wrapper_ShowProgress AutoIt3Wrapper_Testing AutoIt3Wrapper_Tidy_Stop_OnError AutoIt3Wrapper_UPX_Parameters AutoIt3Wrapper_UseUPX AutoIt3Wrapper_UseX64 AutoIt3Wrapper_Version AutoIt3Wrapper_Versioning AutoIt3Wrapper_Versioning_Parameters Tidy_Off Tidy_On Tidy_Parameters EndRegion Region\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[l,{cN:\"string\",v:[{b:\"<\",e:\">\"},{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]}]},l,I]},_={cN:\"constant\",b:\"@[A-z0-9_]+\"},G={cN:\"function\",bK:\"Func\",e:\"$\",eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[n,l,o]}]};return{cI:!0,i:/\\/\\*/,k:{keyword:t,built_in:i,literal:r},c:[I,n,l,o,a,_,G]}});hljs.registerLanguage(\"gams\",function(e){var s=\"abort acronym acronyms alias all and assign binary card diag display else1 eps eq equation equations file files for1 free ge gt if inf integer le loop lt maximizing minimizing model models na ne negative no not option options or ord parameter parameters positive prod putpage puttl repeat sameas scalar scalars semicont semiint set1 sets smax smin solve sos1 sos2 sum system table then until using variable variables while1 xor yes\";return{aliases:[\"gms\"],cI:!0,k:s,c:[{cN:\"section\",bK:\"sets parameters variables equations\",e:\";\",c:[{b:\"/\",e:\"/\",c:[e.NM]}]},{cN:\"string\",b:\"\\\\*{3}\",e:\"\\\\*{3}\"},e.NM,{cN:\"number\",b:\"\\\\$[a-zA-Z0-9]+\"}]}});hljs.registerLanguage(\"matlab\",function(e){var a=[e.CNM,{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]}],s={r:0,c:[{cN:\"operator\",b:/'['\\.]*/}]};return{k:{keyword:\"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson\"},i:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function\",e:\"$\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},{cN:\"params\",b:\"\\\\[\",e:\"\\\\]\"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]\",c:a,r:0,starts:s},{cN:\"cell\",b:\"\\\\{\",e:/}/,c:a,r:0,starts:s},{b:/\\)/,r:0,starts:s},e.C(\"^\\\\s*\\\\%\\\\{\\\\s*$\",\"^\\\\s*\\\\%\\\\}\\\\s*$\"),e.C(\"\\\\%\",\"$\")].concat(a)}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"prompt\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},a={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},l={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,a,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,a,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,l]},{cN:\"decorator\",b:/^[\\t ]*@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"lisp\",function(b){var e=\"[a-zA-Z_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#][a-zA-Z0-9_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#!]*\",c=\"\\\\|[^]*?\\\\|\",r=\"(\\\\-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|\\\\-)?\\\\d+)?\",a={cN:\"shebang\",b:\"^#!\",e:\"$\"},i={cN:\"literal\",b:\"\\\\b(t{1}|nil)\\\\b\"},l={cN:\"number\",v:[{b:r,r:0},{b:\"#(b|B)[0-1]+(/[0-1]+)?\"},{b:\"#(o|O)[0-7]+(/[0-7]+)?\"},{b:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{b:\"#(c|C)\\\\(\"+r+\" +\"+r,e:\"\\\\)\"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(\";\",\"$\",{r:0}),n={cN:\"variable\",b:\"\\\\*\",e:\"\\\\*\"},u={cN:\"keyword\",b:\"[:&]\"+e},N={b:e,r:0},o={b:c},s={b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,t,l,N]},v={cN:\"quoted\",c:[l,t,n,u,s,N],v:[{b:\"['`]\\\\(\",e:\"\\\\)\"},{b:\"\\\\(quote \",e:\"\\\\)\",k:\"quote\"},{b:\"'\"+c}]},f={cN:\"quoted\",v:[{b:\"'\"+e},{b:\"#'\"+e+\"(::\"+e+\")*\"}]},g={cN:\"list\",b:\"\\\\(\\\\s*\",e:\"\\\\)\"},q={eW:!0,r:0};return g.c=[{cN:\"keyword\",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage(\"golo\",function(e){return{k:{keyword:\"println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull\",typename:\"DynamicObject|10 DynamicVariable struct Observable map set vector list array\",literal:\"true false null\"},c:[e.HCM,e.QSM,e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"lua\",function(e){var t=\"\\\\[=*\\\\[\",a=\"\\\\]=*\\\\]\",r={b:t,e:a,c:[\"self\"]},n=[e.C(\"--(?!\"+t+\")\",\"$\"),e.C(\"--\"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:\"and break do else elseif end false for if in local nil not or repeat return then true until while\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},c:n.concat([{cN:\"function\",bK:\"function\",e:\"\\\\)\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{cN:\"params\",b:\"\\\\(\",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:\"string\",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage(\"dos\",function(e){var r=e.C(/@?rem\\b/,/$/,{r:10}),t={cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0};return{aliases:[\"bat\",\"cmd\"],cI:!0,i:/\\/\\*/,k:{flow:\"if else goto for in do call exit not exist errorlevel defined\",operator:\"equ neq lss leq gtr geq\",keyword:\"shift cd dir echo setlocal endlocal set pause copy\",stream:\"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux\",winutils:\"ping net ipconfig taskkill xcopy ren del\",built_in:\"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol\"},c:[{cN:\"envvar\",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:\"function\",b:t.b,e:\"goto:eof\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),r]},{cN:\"number\",b:\"\\\\b\\\\d+\",r:0},r]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={cN:\"variable\",v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},o=[e.BE,r,n],i=[n,e.HCM,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:o,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"sub\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",r:5},{cN:\"operator\",b:\"-\\\\w\\\\b\",r:0},{b:\"^__DATA__$\",e:\"^__END__$\",sL:\"mojolicious\",c:[{b:\"^@@.*\",e:\"$\",cN:\"comment\"}]}];return r.c=i,s.c=i,{aliases:[\"pl\"],k:t,c:i}});hljs.registerLanguage(\"protobuf\",function(e){return{k:{keyword:\"package import option optional required repeated group\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,{cN:\"class\",bK:\"message enum service\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"function\",bK:\"rpc\",e:/;/,eE:!0,k:\"rpc returns\"},{cN:\"constant\",b:/^\\s*[A-Z_]+/,e:/\\s*=/,eE:!0}]}});hljs.registerLanguage(\"accesslog\",function(T){return{c:[{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+\\\\b\",r:0},{cN:\"string\",b:'\"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',e:'\"',k:\"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE\",i:\"\\\\n\",r:10},{cN:\"string\",b:/\\[/,e:/\\]/,i:\"\\\\n\"},{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"}]}});hljs.registerLanguage(\"java\",function(e){var a=e.UIR+\"(<\"+e.UIR+\">)?\",t=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",c=\"\\\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+)(\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))?|\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))([eE][-+]?\\\\d+)?)[lLfF]?\",r={cN:\"number\",b:c,r:0};return{aliases:[\"jsp\"],k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+a+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"vala\",function(e){return{k:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object\",literal:\"false true null\"},c:[{cN:\"class\",bK:\"class interface delegate namespace\",e:\"{\",eE:!0,i:\"[^,:\\\\n\\\\s\\\\.]\",c:[e.UTM]},e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:5},e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"^#\",e:\"$\",r:2},{cN:\"constant\",b:\" [A-Z_]+ \",r:0}]}});hljs.registerLanguage(\"tcl\",function(e){return{aliases:[\"tk\"],k:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",c:[e.C(\";[ \\\\t]*#\",\"$\"),e.C(\"^[ \\\\t]*#\",\"$\"),{bK:\"proc\",e:\"[\\\\{]\",eE:!0,c:[{cN:\"symbol\",b:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"[ \\\\t\\\\n\\\\r]\",eW:!0,eE:!0}]},{cN:\"variable\",eE:!0,v:[{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\\\(([a-zA-Z0-9_])*\\\\)\",e:\"[^a-zA-Z0-9_\\\\}\\\\$]\"},{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"(\\\\))?[^a-zA-Z0-9_\\\\}\\\\$]\"}]},{cN:\"string\",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:\"number\",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage(\"haml\",function(s){return{cI:!0,c:[{cN:\"doctype\",b:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",r:10},s.C(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{r:0}),{b:\"^\\\\s*(-|=|!=)(?!#)\",starts:{e:\"\\\\n\",sL:\"ruby\"}},{cN:\"tag\",b:\"^\\\\s*%\",c:[{cN:\"title\",b:\"\\\\w+\"},{cN:\"value\",b:\"[#\\\\.][\\\\w-]+\"},{b:\"{\\\\s*\",e:\"\\\\s*}\",eE:!0,c:[{b:\":\\\\w+\\\\s*=>\",e:\",\\\\s+\",rB:!0,eW:!0,c:[{cN:\"symbol\",b:\":\\\\w+\"},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]},{b:\"\\\\(\\\\s*\",e:\"\\\\s*\\\\)\",eE:!0,c:[{b:\"\\\\w+\\\\s*=\",e:\"\\\\s+\",rB:!0,eW:!0,c:[{cN:\"attribute\",b:\"\\\\w+\",r:0},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]}]},{cN:\"bullet\",b:\"^\\\\s*[=~]\\\\s*\",r:0},{b:\"#{\",starts:{e:\"}\",sL:\"ruby\"}}]}});hljs.registerLanguage(\"autohotkey\",function(e){var r={cN:\"escape\",b:\"`[\\\\s\\\\S]\"},c=e.C(\";\",\"$\",{r:0}),n=[{cN:\"built_in\",b:\"A_[a-zA-Z0-9]+\"},{cN:\"built_in\",bK:\"ComSpec Clipboard ClipboardAll ErrorLevel\"}];return{cI:!0,k:{keyword:\"Break Continue Else Gosub If Loop Return While\",literal:\"A true false NOT AND OR\"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:\"number\",b:e.NR,r:0},{cN:\"var_expand\",b:\"%\",e:\"%\",i:\"\\\\n\",c:[r]},{cN:\"label\",c:[r],v:[{b:'^[^\\\\n\";]+::(?!=)'},{b:'^[^\\\\n\";]+:(?!=)',r:0}]},{b:\",\\\\s*,\",r:10}])}});hljs.registerLanguage(\"nimrod\",function(t){return{aliases:[\"nim\"],k:{keyword:\"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield\",literal:\"shared guarded stdin stdout stderr result|10 true false\"},c:[{cN:\"decorator\",b:/{\\./,e:/\\.}/,r:10},{cN:\"string\",b:/[a-zA-Z]\\w*\"/,e:/\"/,c:[{b:/\"\"/}]},{cN:\"string\",b:/([a-zA-Z]\\w*)?\"\"\"/,e:/\"\"\"/},t.QSM,{cN:\"type\",b:/\\b[A-Z]\\w+\\b/,r:0},{cN:\"type\",b:/\\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\\b/},{cN:\"number\",b:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage(\"mizar\",function(e){return{k:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",c:[e.C(\"::\",\"$\")]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"header\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"blockquote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{cN:\"horizontal_rule\",b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link_url\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"link_reference\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:\"^\\\\[.+\\\\]:\",rB:!0,c:[{cN:\"link_reference\",b:\"\\\\[\",e:\"\\\\]:\",eB:!0,eE:!0,starts:{cN:\"link_url\",e:\"$\"}}]}]}});hljs.registerLanguage(\"aspectj\",function(e){var t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",i=\"get set args call\";return{k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"aspect\",bK:\"aspect\",e:/[{;=]/,eE:!0,i:/[:;\"\\[\\]]/,c:[{bK:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UTM,{b:/\\([^\\)]*/,e:/[)]+/,k:t+\" \"+i,eE:!1}]},{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,r:0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"pointcut after before around throwing returning\",e:/[)]/,eE:!1,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",k:t+\" \"+i},e.QSM]},{bK:\"new throw\",r:0},{cN:\"function\",b:/\\w+ +\\w+(\\.)?\\w+\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"dns\",function(d){return{aliases:[\"bind\",\"zone\"],k:{keyword:\"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT\"},c:[d.C(\";\",\"$\"),{cN:\"operator\",bK:\"$TTL $GENERATE $INCLUDE $ORIGIN\"},{cN:\"number\",b:\"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:)))\"},{cN:\"number\",b:\"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\"}]}});hljs.registerLanguage(\"django\",function(e){var t={cN:\"filter\",b:/\\|[A-Za-z]+:?/,k:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\",c:[{cN:\"argument\",b:/\"/,e:/\"/},{cN:\"argument\",b:/'/,e:/'/}]};return{aliases:[\"jinja\"],cI:!0,sL:\"xml\",c:[e.C(/\\{%\\s*comment\\s*%}/,/\\{%\\s*endcomment\\s*%}/),e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\",c:[t]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage(\"step21\",function(e){var r=\"[A-Z_][A-Z0-9_.]*\",i=\"END-ISO-10303-21;\",l={literal:\"\",built_in:\"\",keyword:\"HEADER ENDSEC DATA\"},s={cN:\"preprocessor\",b:\"ISO-10303-21;\",r:10},t=[e.CLCM,e.CBCM,e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"label\",v:[{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"p21\",\"step\",\"stp\"],cI:!0,l:r,k:l,c:[{cN:\"preprocessor\",b:i,r:10},s].concat(t)}});hljs.registerLanguage(\"roboconf\",function(e){var n=\"[a-zA-Z-_][^\\n{\\r\\n]+\\\\{\";return{aliases:[\"graph\",\"instances\"],cI:!0,k:\"import\",c:[{cN:\"facet\",b:\"^facet \"+n,e:\"}\",k:\"facet installer exports children extends\",c:[e.HCM]},{cN:\"instance-of\",b:\"^instance of \"+n,e:\"}\",k:\"name count channels instance-data instance-state instance of\",c:[{cN:\"keyword\",b:\"[a-zA-Z-_]+( |\t)*:\"},e.HCM]},{cN:\"component\",b:\"^\"+n,e:\"}\",l:\"\\\\(?[a-zA-Z]+\\\\)?\",k:\"installer exports children extends imports facets alias (optional)\",c:[{cN:\"string\",b:\"\\\\.[a-zA-Z-_]+\",e:\"\\\\s|,|;\",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage(\"capnproto\",function(t){return{aliases:[\"capnp\"],k:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},c:[t.QSM,t.NM,t.HCM,{cN:\"shebang\",b:/@0x[\\w\\d]{16};/,i:/\\n/},{cN:\"number\",b:/@\\d+\\b/},{cN:\"class\",bK:\"struct enum\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"class\",bK:\"interface\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage(\"livescript\",function(e){var t={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf\",literal:\"true false null undefined yes no on off it that void\",built_in:\"npm require console print module global window document\"},s=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",i=e.inherit(e.TM,{b:s}),n={cN:\"subst\",b:/#\\{/,e:/}/,k:t},r={cN:\"subst\",b:/#[A-Za-z$_]/,e:/(?:\\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:\"number\",b:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",r:0,starts:{e:\"(\\\\s*/)?\",r:0}},{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,n,r]},{b:/\"/,e:/\"/,c:[e.BE,n,r]},{b:/\\\\/,e:/(\\s|$)/,eE:!0}]},{cN:\"pi\",v:[{b:\"//\",e:\"//[gim]*\",c:[n,e.HCM]},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+s},{b:\"``\",e:\"``\",eB:!0,eE:!0,sL:\"javascript\"}];n.c=c;var a={cN:\"params\",b:\"\\\\(\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:t,c:[\"self\"].concat(c)}]};return{aliases:[\"ls\"],k:t,i:/\\/\\*/,c:c.concat([e.C(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HCM,{cN:\"function\",c:[i,a],rB:!0,v:[{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B\\\\->\\\\*?\",e:\"\\\\->\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\))?\\\\s*\\\\B[-~]{1,2}>\\\\*?\",e:\"[-~]{1,2}>\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B!?[-~]{1,2}>\\\\*?\",e:\"!?[-~]{1,2}>\\\\*?\"}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:s+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"crystal\",function(e){function b(e,b){var r=[{b:e,e:b}];return r[0].c=r,r}var r=\"(_[uif](8|16|32|64))?\",c=\"[a-zA-Z_]\\\\w*[!?=]?\",n=\"!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",i=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\][=?]?\",s={keyword:\"abstract alias as asm begin break case class def do else elsif end ensure enum extend for fun if ifdef include instance_sizeof is_a? lib macro module next of out pointerof private protected rescue responds_to? return require self sizeof struct super then type typeof union unless until when while with yield __DIR__ __FILE__ __LINE__\",literal:\"false nil true\"},t={cN:\"subst\",b:\"#{\",e:\"}\",k:s},a={cN:\"expansion\",v:[{b:\"\\\\{\\\\{\",e:\"\\\\}\\\\}\"},{b:\"\\\\{%\",e:\"%\\\\}\"}],k:s,r:10},o={cN:\"string\",c:[e.BE,t],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%w?\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%w?\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%w?{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%w?<\",e:\">\",c:b(\"<\",\">\")},{b:\"%w?/\",e:\"/\"},{b:\"%w?%\",e:\"%\"},{b:\"%w?-\",e:\"-\"},{b:\"%w?\\\\|\",e:\"\\\\|\"}],r:0},u={b:\"(\"+n+\")\\\\s*\",c:[{cN:\"regexp\",c:[e.BE,t],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}]}],r:0},l={cN:\"regexp\",c:[e.BE,t],v:[{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}],r:0},_={cN:\"annotation\",b:\"@\\\\[\",e:\"\\\\]\",r:5},f=[a,o,u,l,_,e.HCM,{cN:\"class\",bK:\"class module struct\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}]},{cN:\"class\",bK:\"lib enum union\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"})],r:10},{cN:\"function\",bK:\"def\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})]},{cN:\"function\",bK:\"fun macro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})],r:5},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[o,{b:i}],r:0},{cN:\"number\",v:[{b:\"\\\\b0b([01_]*[01])\"+r},{b:\"\\\\b0o([0-7_]*[0-7])\"+r},{b:\"\\\\b0x([A-Fa-f0-9_]*[A-Fa-f0-9])\"+r},{b:\"\\\\b(([0-9][0-9_]*[0-9]|[0-9])(\\\\.[0-9_]*[0-9])?([eE][+-]?[0-9_]*[0-9])?)\"+r}],r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?|%)(\\\\w+))\"}];return t.c=f,_.c=f,a.c=f.slice(1),{aliases:[\"cr\"],l:c,k:s,c:f}});hljs.registerLanguage(\"powershell\",function(e){var t={b:\"`[\\\\s\\\\S]\",r:0},r={cN:\"variable\",v:[{b:/\\$[\\w\\d][\\w\\d_:]*/}]},o={cN:\"string\",b:/\"/,e:/\"/,c:[t,r,{cN:\"variable\",b:/\\$[A-z]/,e:/[^A-z]/}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"ps\"],l:/-?[A-z\\.\\-]+/,cI:!0,k:{keyword:\"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch\",literal:\"$null $true $false\",built_in:\"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning\",operator:\"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace\"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage(\"ruby\",function(e){var c=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r=\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",b={cN:\"doctag\",b:\"@[A-Za-z]+\"},a={cN:\"value\",b:\"#<\",e:\">\"},n=[e.C(\"#\",\"$\",{c:[b]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[b],r:10}),e.C(\"^__END__\",\"\\\\n$\")],s={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(n)},{cN:\"function\",bK:\"def\",e:\"$|;\",c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[t,{b:c}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,s],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o=\"[>?]>\",l=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",N=[{b:/^\\s*=>/,cN:\"status\",starts:{e:\"$\",c:d}},{cN:\"prompt\",b:\"^(\"+o+\"|\"+l+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,i:/\\/\\*/,c:n.concat(N).concat(d)}});hljs.registerLanguage(\"brainfuck\",function(r){var n={cN:\"literal\",b:\"[\\\\+\\\\-]\",r:0};return{aliases:[\"bf\"],c:[r.C(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{rE:!0,r:0}),{cN:\"title\",b:\"[\\\\[\\\\]]\",r:0},{cN:\"string\",b:\"[\\\\.,]\",r:0},{b:/\\+\\+|\\-\\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage(\"thrift\",function(e){var t=\"bool byte i16 i32 i64 double string binary\";return{k:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:\"class\",bK:\"struct enum service exception\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:\"\\\\b(set|list|map)\\\\s*<\",e:\">\",k:t,c:[\"self\"]}]}});hljs.registerLanguage(\"less\",function(e){var r=\"[\\\\w-]+\",t=\"(\"+r+\"|@{\"+r+\"})\",a=[],c=[],n=function(e){return{cN:\"string\",b:\"~?\"+e+\".*?\"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+\"\\\\(\",e:\"\\\\(\",rB:!0,eE:!0,r:0},a)},b={b:\"\\\\(\",e:\"\\\\)\",c:c,r:0};c.push(e.CLCM,e.CBCM,n(\"'\"),n('\"'),e.CSSNM,i(\"hexcolor\",\"#[0-9A-Fa-f]+\\\\b\"),s(\"function\",\"(url|data-uri)\",{starts:{cN:\"string\",e:\"[\\\\)\\\\n]\",eE:!0}}),s(\"function\",r),b,i(\"variable\",\"@@?\"+r,10),i(\"variable\",\"@{\"+r+\"}\"),i(\"built_in\",\"~?`[^`]*?`\"),{cN:\"attribute\",b:r+\"\\\\s*:\",e:\":\",rB:!0,eE:!0});var o=c.concat({b:\"{\",e:\"}\",c:a}),u={bK:\"when\",eW:!0,c:[{bK:\"and not\"}].concat(c)},C={cN:\"attribute\",b:t,e:\":\",eE:!0,c:[e.CLCM,e.CBCM],i:/\\S/,starts:{e:\"[;}]\",rE:!0,c:c,i:\"[<=$]\"}},l={cN:\"at_rule\",b:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{e:\"[;{}]\",rE:!0,c:c,r:0}},d={cN:\"variable\",v:[{b:\"@\"+r+\"\\\\s*:\",r:15},{b:\"@\"+r}],starts:{e:\"[;}]\",rE:!0,c:o}},p={v:[{b:\"[\\\\.#:&\\\\[]\",e:\"[;{}]\"},{b:t+\"[^;]*{\",e:\"{\"}],rB:!0,rE:!0,i:\"[<='$\\\"]\",c:[e.CLCM,e.CBCM,u,i(\"keyword\",\"all\\\\b\"),i(\"variable\",\"@{\"+r+\"}\"),i(\"tag\",t+\"%?\",0),i(\"id\",\"#\"+t),i(\"class\",\"\\\\.\"+t,0),i(\"keyword\",\"&\",0),s(\"pseudo\",\":not\"),s(\"keyword\",\":extend\"),i(\"pseudo\",\"::?\"+t),{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\"},{b:\"\\\\(\",e:\"\\\\)\",c:o},{b:\"!important\"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:\"[=>'/<($\\\"]\",c:a}});hljs.registerLanguage(\"scilab\",function(e){var n=[e.CNM,{cN:\"string\",b:\"'|\\\"\",e:\"'|\\\"\",c:[e.BE,{b:\"''\"}]}];return{aliases:[\"sci\"],k:{keyword:\"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix\"},i:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function endfunction\",e:\"$\",k:\"function endfunction|10\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]},{cN:\"transposed_variable\",b:\"[a-zA-Z_][a-zA-Z_0-9]*('+[\\\\.']*|[\\\\.']+)\",e:\"\",r:0},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]'*[\\\\.']*\",r:0,c:n},e.C(\"//\",\"$\")].concat(n)}});hljs.registerLanguage(\"oxygene\",function(e){var r=\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\",t=e.C(\"{\",\"}\",{r:0}),a=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{r:10}),n={cN:\"string\",b:\"'\",e:\"'\",c:[{b:\"''\"}]},o={cN:\"string\",b:\"(#\\\\d+)+\"},i={cN:\"function\",bK:\"function constructor destructor procedure method\",e:\"[:;]\",k:\"function constructor|10 destructor|10 procedure|10 method|10\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*|</|=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:\"class\",b:\"=\\\\bclass\\\\b\",e:\"end;\",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage(\"lasso\",function(e){var r=\"[a-zA-Z_][a-zA-Z0-9_.]*\",a=\"<\\\\?(lasso(script)?|=)\",t=\"\\\\]|\\\\?>\",s={literal:\"true false none minimal full all void bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock\",keyword:\"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},n=e.C(\"<!--\",\"-->\",{r:0}),i={cN:\"preprocessor\",b:\"\\\\[noprocess\\\\]\",starts:{cN:\"markup\",e:\"\\\\[/noprocess\\\\]\",rE:!0,c:[n]}},o={cN:\"preprocessor\",b:\"\\\\[/noprocess|\"+a},l={cN:\"variable\",b:\"'\"+r+\"'\"},c=[e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CLCM,e.CBCM,e.inherit(e.CNM,{b:e.CNR+\"|(infinity|nan)\\\\b\"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"variable\",v:[{b:\"[#$]\"+r},{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]},{cN:\"tag\",b:\"::\\\\s*\",e:r,i:\"\\\\W\"},{cN:\"attribute\",v:[{b:\"-(?!infinity)\"+e.UIR,r:0},{b:\"(\\\\.\\\\.\\\\.)\"}]},{cN:\"subst\",v:[{b:\"->\\\\s*\",c:[l]},{b:\"->|\\\\\\\\|&&?|\\\\|\\\\||!(?!=|>)|(and|or|not)\\\\b\",r:0}]},{cN:\"built_in\",b:\"\\\\.\\\\.?\\\\s*\",r:0,c:[l]},{cN:\"class\",bK:\"define\",rE:!0,e:\"\\\\(|=>\",c:[e.inherit(e.TM,{b:e.UIR+\"(=(?!>))?\"})]}];return{aliases:[\"ls\",\"lassoscript\"],cI:!0,l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[|\"+a,rE:!0,r:0,c:[n]}},i,o,{cN:\"preprocessor\",b:\"\\\\[no_square_brackets\",starts:{e:\"\\\\[/no_square_brackets\\\\]\",l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[noprocess\\\\]|\"+a,rE:!0,c:[n]}},i,o].concat(c)}},{cN:\"preprocessor\",b:\"\\\\[\",r:0},{cN:\"shebang\",b:\"^#!.+lasso9\\\\b\",r:10}].concat(c)}});hljs.registerLanguage(\"gcode\",function(e){var N=\"[A-Z_][A-Z0-9_.]*\",i=\"\\\\%\",c={literal:\"\",built_in:\"\",keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},r={cN:\"preprocessor\",b:\"([O])([0-9]+)\"},l=[e.CLCM,e.CBCM,e.C(/\\(/,/\\)/),e.inherit(e.CNM,{b:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))|\"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"keyword\",b:\"([G])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"([M])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"(VC|VS|#)\",e:\"(\\\\d+)\"},{cN:\"title\",b:\"(VZOFX|VZOFY|VZOFZ)\"},{cN:\"built_in\",b:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",e:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))(\\\\])\"},{cN:\"label\",v:[{b:\"N\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"nc\"],cI:!0,l:N,k:c,c:[{cN:\"preprocessor\",b:i},r].concat(l)}});hljs.registerLanguage(\"scala\",function(e){var t={cN:\"annotation\",b:\"@[A-Za-z]+\"},r={cN:\"string\",b:'u?r?\"\"\"',e:'\"\"\"',r:10},a={cN:\"symbol\",b:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},c={cN:\"type\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},i={cN:\"title\",b:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,r:0},n={cN:\"class\",bK:\"class object trait type\",e:/[:={\\[(\\n;]/,c:[{cN:\"keyword\",bK:\"extends with\",r:10},i]},l={cN:\"function\",bK:\"def\",e:/[:={\\[(\\n;]/,c:[i]};return{k:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},c:[e.CLCM,e.CBCM,r,e.QSM,a,c,l,n,e.CNM,t]}});hljs.registerLanguage(\"armasm\",function(s){return{cI:!0,aliases:[\"arm\"],l:\"\\\\.?\"+s.IR,k:{literal:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 \",preprocessor:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND \",built_in:\"{PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @ \"},c:[{cN:\"keyword\",b:\"\\\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?\",e:\"\\\\s\"},s.C(\"[;@]\",\"$\",{r:0}),s.CBCM,s.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",r:0},{cN:\"title\",b:\"\\\\|\",e:\"\\\\|\",i:\"\\\\n\",r:0},{cN:\"number\",v:[{b:\"[#$=]?0x[0-9a-f]+\"},{b:\"[#$=]?0b[01]+\"},{b:\"[#$=]\\\\d+\"},{b:\"\\\\b\\\\d+\"}],r:0},{cN:\"label\",v:[{b:\"^[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+\"},{b:\"^\\\\s*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{b:\"[=#]\\\\w+\"}],r:0}]}});hljs.registerLanguage(\"avrasm\",function(r){return{cI:!0,l:\"\\\\.?\"+r.IR,k:{keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",preprocessor:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},c:[r.CBCM,r.C(\";\",\"$\",{r:0}),r.CNM,r.BNM,{cN:\"number\",b:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},r.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"},{cN:\"label\",b:\"^[A-Za-z0-9_.$]+:\"},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"localvars\",b:\"@[0-9]+\"}]}});hljs.registerLanguage(\"profile\",function(e){return{c:[e.CNM,{cN:\"built_in\",b:\"{\",e:\"}$\",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:\"filename\",b:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",e:\":\",eE:!0},{cN:\"header\",b:\"(ncalls|tottime|cumtime)\",e:\"$\",k:\"ncalls tottime|10 cumtime|10 filename\",r:10},{cN:\"summary\",b:\"function calls\",e:\"$\",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:\"function\",b:\"\\\\(\",e:\"\\\\)$\",c:[e.UTM],r:0}]}});hljs.registerLanguage(\"mercury\",function(e){var i={keyword:\"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure\",pragma:\"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses\",preprocessor:\"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing\",built_in:\"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure\"},r={cN:\"label\",b:\"XXX\",e:\"$\",eW:!0,r:0},t=e.inherit(e.CLCM,{b:\"%\"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:\"number\",b:\"0'.\\\\|0[box][0-9a-fA-F]*\"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:\"constant\",b:\"\\\\\\\\[abfnrtv]\\\\|\\\\\\\\x[0-9a-fA-F]*\\\\\\\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]\",r:0};o.c.push(l);var s={cN:\"built_in\",v:[{b:\"<=>\"},{b:\"<=\",r:0},{b:\"=>\",r:0},{b:\"/\\\\\\\\\"},{b:\"\\\\\\\\/\"}]},c={cN:\"built_in\",v:[{b:\":-\\\\|-->\"},{b:\"=\",r:0}]};return{aliases:[\"m\",\"moo\"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage(\"crmsh\",function(e){var t=\"primitive rsc_template\",r=\"group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml\",a=\"property rsc_defaults op_defaults\",s=\"params meta operations op rule attributes utilization\",i=\"read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\\\\",o=\"number string\",n=\"Master Started Slave Stopped start promote demote stop monitor true false\";return{aliases:[\"crm\",\"pcmk\"],cI:!0,k:{keyword:s,operator:i,type:o,literal:n},c:[e.HCM,{bK:\"node\",starts:{cN:\"identifier\",e:\"\\\\s*([\\\\w_-]+:)?\",starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\"}}},{bK:t,starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\",starts:{cN:\"pragma\",e:\"\\\\s*@?[\\\\w_][\\\\w_\\\\.:-]*\"}}},{b:\"\\\\b(\"+r.split(\" \").join(\"|\")+\")\\\\s+\",k:r,starts:{cN:\"title\",e:\"[\\\\$\\\\w_][\\\\w_-]*\"}},{bK:a,starts:{cN:\"title\",e:\"\\\\s*([\\\\w_-]+:)?\"}},e.QSM,{cN:\"pragma\",b:\"(ocf|systemd|service|lsb):[\\\\w_:-]+\",r:0},{cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(ms|s|h|m)?\",r:0},{cN:\"number\",b:\"[-]?(infinity|inf)\",r:0},{cN:\"variable\",b:/([A-Za-z\\$_\\#][\\w_-]+)=/,r:0},{cN:\"tag\",b:\"</?\",e:\"/?>\",r:0}]}});hljs.registerLanguage(\"erlang\",function(e){var r=\"[a-z'][a-zA-Z0-9_']*\",c=\"(\"+r+\":\"+r+\"|\"+r+\")\",a={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},n=e.C(\"%\",\"$\"),i={cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},b={b:\"fun\\\\s+\"+r+\"/\\\\d+\"},d={b:c+\"\\\\(\",e:\"\\\\)\",rB:!0,r:0,c:[{cN:\"function_name\",b:c,r:0},{b:\"\\\\(\",e:\"\\\\)\",eW:!0,rE:!0,r:0}]},o={cN:\"tuple\",b:\"{\",e:\"}\",r:0},t={cN:\"variable\",b:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",r:0},l={cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_]*\",r:0},f={b:\"#\"+e.UIR,r:0,rB:!0,c:[{cN:\"record_name\",b:\"#\"+e.UIR,r:0},{b:\"{\",e:\"}\",r:0}]},s={bK:\"fun receive if try case\",e:\"end\",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:\"\"}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:u};return{aliases:[\"erl\"],k:a,i:\"(</|\\\\*=|\\\\+=|-=|/\\\\*|\\\\*/|\\\\(\\\\*|\\\\*\\\\))\",c:[{cN:\"function\",b:\"^\"+r+\"\\\\s*\\\\(\",e:\"->\",rB:!0,i:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",c:[v,e.inherit(e.TM,{b:r})],starts:{e:\";|\\\\.\",k:a,c:u}},n,{cN:\"pp\",b:\"^-\",e:\"\\\\.\",r:0,eE:!0,rB:!0,l:\"-\"+e.IR,k:\"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec\",c:[v]},i,e.QSM,f,t,l,o,{b:/\\.$/}]}});hljs.registerLanguage(\"cpp\",function(t){var e={cN:\"keyword\",b:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},r={cN:\"string\",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?\"'}),{b:'(u8?|U)?R\"',e:'\"',c:[t.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},s={cN:\"number\",v:[{b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},{b:t.CNR}]},i={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[r,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},r,s,t.CLCM,t.CBCM]},a=t.IR+\"\\\\s*\\\\(\",c={keyword:\"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong\",built_in:\"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf\",literal:\"true false nullptr NULL\"};return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:c,i:\"</\",c:[e,t.CLCM,t.CBCM,s,r,i,{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:c,c:[\"self\",e]},{b:t.IR+\"::\",k:c},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t.IR+\"[\\\\*&\\\\s]+)+\"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\\w\\s\\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s]},t.CLCM,t.CBCM,i]}]}});hljs.registerLanguage(\"xquery\",function(e){var t=\"for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update\",a=\"false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute\",r={cN:\"variable\",b:/\\$[a-zA-Z0-9\\-]+/,r:5},s={cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},n={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},i={cN:\"decorator\",b:\"%\\\\w+\"},c={cN:\"comment\",b:\"\\\\(:\",e:\":\\\\)\",r:10,c:[{cN:\"doc\",b:\"@\\\\w+\"}]},o={b:\"{\",e:\"}\"},l=[r,n,s,c,i,o];return o.c=l,{aliases:[\"xpath\",\"xq\"],cI:!1,l:/[a-zA-Z\\$][a-zA-Z0-9_:\\-]*/,i:/(proc)|(abstract)|(extends)|(until)|(#)/,k:{keyword:t,literal:a},c:l}});hljs.registerLanguage(\"dockerfile\",function(e){return{aliases:[\"docker\"],cI:!0,k:{built_ins:\"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env label\"},c:[e.HCM,{k:{built_in:\"run cmd entrypoint volume add copy workdir onbuild label\"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir|label) +/,starts:{e:/[^\\\\]\\n/,sL:\"bash\"}},{k:{built_in:\"from maintainer expose env user onbuild\"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\\\]\\n/,c:[e.ASM,e.QSM,e.NM,e.HCM]}]}});hljs.registerLanguage(\"scss\",function(e){var t=\"[a-zA-Z-][a-zA-Z0-9_-]*\",i={cN:\"variable\",b:\"(\\\\$\"+t+\")\\\\b\"},r={cN:\"function\",b:t+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},o={cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"};({cN:\"attribute\",b:\"[A-Z\\\\_\\\\.\\\\-]+\",e:\":\",eE:!0,i:\"[^\\\\s]\",starts:{cN:\"value\",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"important\",b:\"!important\"}]}});return{cI:!0,i:\"[=/|']\",c:[e.CLCM,e.CBCM,r,{cN:\"id\",b:\"\\\\#[A-Za-z0-9_-]+\",r:0},{cN:\"class\",b:\"\\\\.[A-Za-z0-9_-]+\",r:0},{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\",i:\"$\"},{cN:\"tag\",b:\"\\\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\\\b\",r:0},{cN:\"pseudo\",b:\":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)\"},{cN:\"pseudo\",b:\"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)\"},i,{cN:\"attribute\",b:\"\\\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\\\b\",i:\"[^\\\\s]\"},{cN:\"value\",b:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{cN:\"value\",b:\":\",e:\";\",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:\"important\",b:\"!important\"}]},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",k:\"mixin include extend for if else each while charset import debug media page content font-face namespace warn\",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:\"preprocessor\",b:\"\\\\s[A-Za-z0-9_.-]+\",r:0}]}]}});hljs.registerLanguage(\"cmake\",function(e){return{aliases:[\"cmake.in\"],cI:!0,k:{keyword:\"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or\",operator:\"equal less greater strless strgreater strequal matches\"},c:[{cN:\"envvar\",b:\"\\\\${\",e:\"}\"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage(\"nix\",function(e){var t={keyword:\"rec with let in inherit assert if else then\",constant:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},i={cN:\"subst\",b:/\\$\\{/,e:/}/,k:t},r={cN:\"variable\",b:/[a-zA-Z0-9-_]+(\\s*=)/,r:0},n={cN:\"string\",b:\"''\",e:\"''\",c:[i]},s={cN:\"string\",b:'\"',e:'\"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:[\"nixos\"],k:t,c:a}});hljs.registerLanguage(\"mathematica\",function(e){return{aliases:[\"mma\"],l:\"(\\\\$|\\\\b)\"+e.IR+\"\\\\b\",k:\"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber\",\nc:[{cN:\"comment\",b:/\\(\\*/,e:/\\*\\)/},e.ASM,e.QSM,e.CNM,{cN:\"list\",b:/\\{/,e:/\\}/,i:/:/}]}});hljs.registerLanguage(\"julia\",function(r){var e={keyword:\"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while\",literal:\"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e|0 eu|0 eulergamma golden im nothing pi γ π φ\",built_in:\"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip\"},t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",o={l:t,k:e},n={cN:\"type-annotation\",b:/::/},a={cN:\"subtype\",b:/<:/},i={cN:\"number\",b:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,r:0},l={cN:\"char\",b:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},c={cN:\"subst\",b:/\\$\\(/,e:/\\)/,k:e},u={cN:\"variable\",b:\"\\\\$\"+t},d={cN:\"string\",c:[r.BE,c,u],v:[{b:/\\w*\"/,e:/\"\\w*/},{b:/\\w*\"\"\"/,e:/\"\"\"\\w*/}]},g={cN:\"string\",c:[r.BE,c,u],b:\"`\",e:\"`\"},s={cN:\"macrocall\",b:\"@\"+t},S={cN:\"comment\",v:[{b:\"#=\",e:\"=#\",r:10},{b:\"#\",e:\"$\"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage(\"rib\",function(e){return{k:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",i:\"</\",c:[e.HCM,e.CNM,e.ASM,e.QSM]}});hljs.registerLanguage(\"vim\",function(e){return{l:/[!#@\\w]+/,k:{keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor\"},i:/[{:]/,c:[e.NM,e.ASM,{cN:\"string\",b:/\"((\\\\\")|[^\"\\n])*(\"|\\n)/},{cN:\"variable\",b:/[bwtglsav]:[\\w\\d_]*/},{cN:\"function\",bK:\"function function!\",e:\"$\",r:0,c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]}]}});hljs.registerLanguage(\"prolog\",function(c){var r={cN:\"atom\",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:\"name\",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\\(/,e:/\\)/,r:0},e={b:/\\[/,e:/\\]/},n={cN:\"comment\",b:/%/,e:/$/,c:[c.PWM]},t={cN:\"string\",b:/`/,e:/`/,c:[c.BE]},g={cN:\"string\",b:/0\\'(\\\\\\'|.)/},N={cN:\"string\",b:/0\\'\\\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\\.$/}])}});hljs.registerLanguage(\"parser3\",function(r){var e=r.C(\"{\",\"}\",{c:[\"self\"]});return{sL:\"xml\",r:0,c:[r.C(\"^#\",\"$\"),r.C(\"\\\\^rem{\",\"}\",{r:10,c:[e]}),{cN:\"preprocessor\",b:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",r:10},{cN:\"title\",b:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{cN:\"variable\",b:\"\\\\$\\\\{?[\\\\w\\\\-\\\\.\\\\:]+\\\\}?\"},{cN:\"keyword\",b:\"\\\\^[\\\\w\\\\-\\\\.\\\\:]+\"},{cN:\"number\",b:\"\\\\^#[0-9a-fA-F]+\"},r.CNM]}});hljs.registerLanguage(\"openscad\",function(e){var r={cN:\"keyword\",b:\"\\\\$(f[asn]|t|vp[rtd]|children)\"},n={cN:\"literal\",b:\"false|true|PI|undef\"},i={cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(e-?\\\\d+)?\",r:0},o=e.inherit(e.QSM,{i:null}),s={cN:\"preprocessor\",k:\"include use\",b:\"include|use <\",e:\">\"},t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,o,r,n]},c={cN:\"built_in\",b:\"[*!#%]\",r:0},l={cN:\"function\",bK:\"module function\",e:\"\\\\=|\\\\{\",c:[t,e.UTM]};return{aliases:[\"scad\"],k:{keyword:\"function module include use for intersection_for if else \\\\%\",literal:\"false true PI undef\",built_in:\"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign\"},c:[e.CLCM,e.CBCM,i,s,o,r,c,l]}});hljs.registerLanguage(\"ceylon\",function(e){var a=\"assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty\",t=\"shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small\",s=\"doc by license see throws tagged\",n=t+\" \"+s,i={cN:\"subst\",eB:!0,eE:!0,b:/``/,e:/``/,k:a,r:10},r=[{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:10},{cN:\"string\",b:'\"',e:'\"',c:[i]},{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"number\",b:\"#[0-9a-fA-F_]+|\\\\$[01_]+|[0-9_]+(?:\\\\.[0-9_](?:[eE][+-]?\\\\d+)?)?[kMGTPmunpf]?\",r:0}];return i.c=r,{k:{keyword:a,annotation:n},i:\"\\\\$[^01]|#[^0-9a-fA-F]\",c:[e.CLCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),{cN:\"annotation\",b:'@[a-z]\\\\w*(?:\\\\:\"[^\"]*\")?'}].concat(r)}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{built_in:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{cN:\"url\",b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"title\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"sml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"gherkin\",function(e){return{aliases:[\"feature\"],k:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",c:[{cN:\"keyword\",b:\"\\\\*\"},e.C(\"@[^@\\r\\n\t ]+\",\"$\"),{b:\"\\\\|\",e:\"\\\\|\\\\w*$\",c:[{cN:\"string\",b:\"[^|]+\"}]},{cN:\"variable\",b:\"<\",e:\">\"},e.HCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.QSM]}});hljs.registerLanguage(\"vbnet\",function(e){return{aliases:[\"vb\"],cI:!0,k:{keyword:\"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor\",built_in:\"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort\",literal:\"true false nothing\"},i:\"//|{|}|endif|gosub|variant|wend\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(\"'\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",b:\"'''|<!--|-->\",c:[e.PWM]},{cN:\"xmlDocTag\",b:\"</?\",e:\">\",c:[e.PWM]}]}),e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end region externalsource\"}]}});hljs.registerLanguage(\"pf\",function(t){var o={cN:\"variable\",b:/\\$[\\w\\d#@][\\w\\d_]*/},e={cN:\"variable\",b:/</,e:/>/};return{aliases:[\"pf.conf\"],l:/[a-z0-9_<>-]+/,k:{built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage(\"r\",function(e){var r=\"([a-zA-Z]|\\\\.[a-zA-Z.])[a-zA-Z0-9._]*\";return{c:[e.HCM,{b:r,l:r,k:{keyword:\"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...\",literal:\"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{b:\"`\",e:\"`\",r:0},{cN:\"string\",c:[e.BE],v:[{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]}]}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>{}*]/,c:[{cN:\"operator\",bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke\",e:/;/,eW:!0,k:{keyword:\"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes c cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle d data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration e each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract f failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function g general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http i id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists k keep keep_duplicates key keys kill l language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim m main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex n name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding p package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime t table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"kotlin\",function(e){var r=\"val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native\";return{k:{typename:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\",keyword:r},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"type\",b:/</,e:/>/,rB:!0,eE:!1,r:0},{cN:\"function\",bK:\"fun\",e:\"[(]|$\",rB:!0,eE:!0,k:r,i:/fun\\s+(<.*>)?[^\\s\\(]+(\\s+[^\\s\\(]+)\\s*=/,r:5,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"type\",b:/</,e:/>/,k:\"reified\",r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:r,r:0,i:/\\([^\\(,\\s:]+,/,c:[{cN:\"typename\",b:/:\\s*/,e:/\\s*[=\\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:\"class\",bK:\"class trait\",e:/[:\\{(]|$/,eE:!0,i:\"extends implements\",c:[e.UTM,{cN:\"type\",b:/</,e:/>/,eB:!0,eE:!0,r:0},{cN:\"typename\",b:/[,:]\\s*/,e:/[<\\(,]|$/,eB:!0,rE:!0}]},{cN:\"variable\",bK:\"var val\",e:/\\s*[=:$]/,eE:!0},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.CNM]}});hljs.registerLanguage(\"clojure-repl\",function(r){return{c:[{cN:\"prompt\",b:/^([\\w.-]+|\\s*#_)=>/,starts:{e:/$/,sL:\"clojure\"}}]}});hljs.registerLanguage(\"twig\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},a=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",r={cN:\"function\",bK:a,r:0,c:[t]},c={cN:\"filter\",b:/\\|[A-Za-z_]+:?/,k:\"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode\",c:[r]},n=\"autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim\";return n=n+\" \"+n.split(\" \").map(function(e){return\"end\"+e}).join(\" \"),{aliases:[\"craftcms\"],cI:!0,sL:\"xml\",c:[e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:n,c:[c,r]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage(\"vbscript\",function(e){return{aliases:[\"vbs\"],cI:!0,k:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err\",literal:\"true false null nothing empty\"},i:\"//\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",a={cN:\"function\",b:c+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},r={cN:\"rule\",b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{cN:\"value\",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"},{cN:\"important\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|'\\$]/,c:[e.CBCM,{cN:\"id\",b:/\\#[A-Za-z0-9_-]+/},{cN:\"class\",b:/\\.[A-Za-z0-9_-]+/},{cN:\"attr_selector\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"']+/},{cN:\"at_rule\",b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",c:[{cN:\"keyword\",b:/\\S+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:\"tag\",b:c,r:0},{cN:\"rules\",b:\"{\",e:\"}\",i:/\\S/,c:[e.CBCM,r]}]}});hljs.registerLanguage(\"mel\",function(e){return{k:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",i:\"</\",c:[e.CNM,e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},{cN:\"variable\",v:[{b:\"\\\\$\\\\d\"},{b:\"[\\\\$\\\\%\\\\@](\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\"},{b:\"\\\\*(\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\",r:0}]},e.CLCM,e.CBCM]}});hljs.registerLanguage(\"monkey\",function(e){var n={cN:\"number\",r:0,v:[{b:\"[$][a-fA-F0-9]+\"},e.NM]};return{cI:!0,k:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},i:/\\/\\*/,c:[e.C(\"#rem\",\"#end\"),e.C(\"'\",\"$\",{r:0}),{cN:\"function\",bK:\"function method\",e:\"[(=:]|$\",i:/\\n/,c:[e.UTM]},{cN:\"class\",bK:\"class interface\",e:\"$\",c:[{bK:\"extends implements\"},e.UTM]},{cN:\"variable\",b:\"\\\\b(self|super)\\\\b\"},{cN:\"preprocessor\",bK:\"import\",e:\"$\"},{cN:\"preprocessor\",b:\"\\\\s*#\",e:\"$\",k:\"if else elseif endif end then\"},{cN:\"pi\",b:\"^\\\\s*strict\\\\b\"},{bK:\"alias\",e:\"=\",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage(\"smali\",function(r){var t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"],n=[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"],s=[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"];return{aliases:[\"smali\"],c:[{cN:\"string\",b:'\"',e:'\"',r:0},r.C(\"#\",\"$\",{r:0}),{cN:\"keyword\",b:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\",r:1},{cN:\"keyword\",b:\"^[ ]*\\\\.[a-zA-Z]*\",r:0},{cN:\"keyword\",b:\"\\\\s:[a-zA-Z_0-9]*\",r:0},{cN:\"keyword\",b:\"\\\\s(\"+s.join(\"|\")+\")\",r:1},{cN:\"keyword\",b:\"\\\\[\",r:0},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\",r:1},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)+\\\\s\",r:10},{cN:\"instruction\",b:\"\\\\s(\"+n.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)*\\\\s\",r:10},{cN:\"class\",b:\"L[^(;:\\n]*;\",r:0},{cN:\"function\",b:'( |->)[^(\\n ;\"]*\\\\(',r:0},{cN:\"function\",b:\"\\\\)\",r:0},{cN:\"variable\",b:\"[vp][0-9]+\",r:0}]}});hljs.registerLanguage(\"livecodeserver\",function(e){var r={cN:\"variable\",b:\"\\\\b[gtps][A-Z]+[A-Za-z0-9_\\\\-]*\\\\b|\\\\$_[A-Z]+\",r:0},t=[e.CBCM,e.HCM,e.C(\"--\",\"$\"),e.C(\"[^:]//\",\"$\")],a=e.inherit(e.TM,{v:[{b:\"\\\\b_*rig[A-Z]+[A-Za-z0-9_\\\\-]*\"},{b:\"\\\\b_[a-z0-9\\\\-]+\"}]}),o=e.inherit(e.TM,{b:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{cI:!1,k:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if\",constant:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",operator:\"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write\"},c:[r,{cN:\"keyword\",b:\"\\\\bend\\\\sif\\\\b\"},{cN:\"function\",bK:\"function\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"function\",b:\"\\\\bend\\\\s+\",e:\"$\",k:\"end\",c:[o,a]},{cN:\"command\",bK:\"command on\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"preprocessor\",v:[{b:\"<\\\\?(rev|lc|livecode)\",r:10},{b:\"<\\\\?\"},{b:\"\\\\?>\"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:\";$|^\\\\[|^=\"}});hljs.registerLanguage(\"smalltalk\",function(a){var r=\"[a-z][a-zA-Z0-9_]*\",s={cN:\"char\",b:\"\\\\$.{1}\"},c={cN:\"symbol\",b:\"#\"+a.UIR};return{aliases:[\"st\"],k:\"self super nil true false thisContext\",c:[a.C('\"','\"'),a.ASM,{cN:\"class\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},{cN:\"method\",b:r+\":\",r:0},a.CNM,c,s,{cN:\"localvars\",b:\"\\\\|[ ]*\"+r+\"([ ]+\"+r+\")*[ ]*\\\\|\",rB:!0,e:/\\|/,i:/\\S/,c:[{b:\"(\\\\|[ ]*)?\"+r}]},{cN:\"array\",b:\"\\\\#\\\\(\",e:\"\\\\)\",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage(\"rust\",function(e){var t=\"([uif](8|16|32|64|size))?\",r=e.inherit(e.CBCM);return r.c.push(\"self\"),{aliases:[\"rs\"],k:{keyword:\"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool\",built_in:\"Copy Send Sized Sync Drop Fn FnMut FnOnce drop Box ToOwned Clone PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator Option Some None Result Ok Err SliceConcatExt String ToString Vec assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!\"},l:e.IR+\"!?\",i:\"</\",c:[e.CLCM,r,e.inherit(e.QSM,{i:null}),{cN:\"string\",v:[{b:/r(#*)\".*?\"\\1(?!#)/},{b:/'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/}]},{cN:\"number\",v:[{b:\"\\\\b0b([01_]+)\"+t},{b:\"\\\\b0o([0-7_]+)\"+t},{b:\"\\\\b0x([A-Fa-f0-9_]+)\"+t},{b:\"\\\\b(\\\\d[\\\\d_]*(\\\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)\"+t}],r:0},{cN:\"function\",bK:\"fn\",e:\"(\\\\(|<)\",eE:!0,c:[e.UTM]},{cN:\"preprocessor\",b:\"#\\\\!?\\\\[\",e:\"\\\\]\"},{bK:\"type\",e:\"(=|<)\",c:[e.UTM],i:\"\\\\S\"},{bK:\"trait enum\",e:\"{\",c:[e.inherit(e.UTM,{endsParent:!0})],i:\"[\\\\w\\\\d]\"},{b:e.IR+\"::\"},{b:\"->\"}]}});hljs.registerLanguage(\"fix\",function(u){return{c:[{b:/[^\\u2401\\u0001]+/,e:/[\\u2401\\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\\u2401\\u0001=]+)/,e:/=([^\\u2401\\u0001=]+)/,rE:!0,rB:!1,cN:\"attribute\"},{b:/=/,e:/([\\u2401\\u0001])/,eE:!0,eB:!0,cN:\"string\"}]}],cI:!0}});hljs.registerLanguage(\"gradle\",function(e){return{cI:!0,k:{keyword:\"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage(\"xl\",function(e){var t=\"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\",o={keyword:\"if then else do while until for loop import with is as where when by data constant\",literal:\"true false nil\",type:\"integer real text name boolean symbol infix prefix postfix block tree\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at\",module:t,id:\"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons\"},a={cN:\"constant\",b:\"[A-Z][A-Z_0-9]+\",r:0},r={cN:\"variable\",b:\"([A-Z][a-z_0-9]+)+\",r:0},i={cN:\"id\",b:\"[a-z][a-z_0-9]+\",r:0},l={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"},n={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\"},s={cN:\"string\",b:\"<<\",e:\">>\"},c={cN:\"number\",b:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\",r:10},_={cN:\"import\",bK:\"import\",e:\"$\",k:{keyword:\"import\",module:t},r:0,c:[l]},d={cN:\"function\",b:\"[a-z].*->\"};return{aliases:[\"tao\"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage(\"ocaml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\",r:0},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"scheme\",function(e){var t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",r=\"(\\\\-|\\\\+)?\\\\d+([./]\\\\d+)?\",i=r+\"[+\\\\-]\"+r+\"i\",a={built_in:\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},n={cN:\"shebang\",b:\"^#!\",e:\"$\"},c={cN:\"literal\",b:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},l={cN:\"number\",v:[{b:r,r:0},{b:i,r:0},{b:\"#b[0-1]+(/[0-1]+)?\"},{b:\"#o[0-7]+(/[0-7]+)?\"},{b:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QSM,o=[e.C(\";\",\"$\",{r:0}),e.C(\"#\\\\|\",\"\\\\|#\")],u={b:t,r:0},p={cN:\"variable\",b:\"'\"+t},d={eW:!0,r:0},g={cN:\"list\",v:[{b:\"\\\\(\",e:\"\\\\)\"},{b:\"\\\\[\",e:\"\\\\]\"}],c:[{cN:\"keyword\",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage(\"http\",function(t){return{aliases:[\"https\"],i:\"\\\\S\",c:[{cN:\"status\",b:\"^HTTP/[0-9\\\\.]+\",e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{cN:\"request\",b:\"^[A-Z]+ (.*?) HTTP/[0-9\\\\.]+$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{cN:\"string\",e:\"$\"}},{b:\"\\\\n\\\\n\",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage(\"verilog\",function(e){return{aliases:[\"v\"],cI:!0,k:{keyword:\"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor\",typename:\"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor\"},c:[e.CBCM,e.CLCM,e.QSM,{cN:\"number\",b:\"\\\\b(\\\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+\",c:[e.BE],r:0},{cN:\"typename\",b:\"\\\\.\\\\w+\",r:0},{cN:\"value\",b:\"#\\\\((?!parameter).+\\\\)\"},{cN:\"keyword\",b:\"\\\\+|-|\\\\*|/|%|<|>|=|#|`|\\\\!|&|\\\\||@|:|\\\\^|~|\\\\{|\\\\}\",r:0}]}});hljs.registerLanguage(\"actionscript\",function(e){var a=\"[a-zA-Z_$][a-zA-Z0-9_$]*\",c=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\",t={cN:\"rest_arg\",b:\"[.]{3}\",e:a,r:10};return{aliases:[\"as\"],k:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"package\",bK:\"package\",e:\"{\",c:[e.TM]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",bK:\"import include\",e:\";\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:\"type\",b:\":\",e:c,r:10}]}],i:/#/}});hljs.registerLanguage(\"zephir\",function(e){var i={cN:\"string\",c:[e.BE],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:[\"zep\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[e.BE]},{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CBCM,i,n]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,n]}});hljs.registerLanguage(\"json\",function(e){var t={literal:\"true false null\"},i=[e.QSM,e.CNM],l={cN:\"value\",e:\",\",eW:!0,eE:!0,c:i,k:t},c={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:!0,eE:!0,c:[e.BE],i:\"\\\\n\",starts:l}],i:\"\\\\S\"},n={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(l,{cN:null})],i:\"\\\\S\"};return i.splice(i.length,0,c,n),{c:i,k:t,i:\"\\\\S\"}});hljs.registerLanguage(\"q\",function(e){var s={keyword:\"do while select delete by update from\",constant:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",typename:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"};return{aliases:[\"k\",\"kdb\"],k:s,l:/\\b(`?)[A-Za-z0-9_]+\\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage(\"processing\",function(e){return{k:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",constant:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",variable:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width\",title:\"setup draw\",built_in:\"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage(\"d\",function(e){var r={keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},t=\"(0|[1-9][\\\\d_]*)\",a=\"(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)\",i=\"0[bB][01_]+\",n=\"([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\",c=\"0[xX]\"+n,_=\"([eE][+-]?\"+a+\")\",d=\"(\"+a+\"(\\\\.\\\\d*|\"+_+\")|\\\\d+\\\\.\"+a+a+\"|\\\\.\"+t+_+\"?)\",o=\"(0[xX](\"+n+\"\\\\.\"+n+\"|\\\\.?\"+n+\")[pP][+-]?\"+a+\")\",s=\"(\"+t+\"|\"+i+\"|\"+c+\")\",l=\"(\"+o+\"|\"+d+\")\",u=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",b={cN:\"number\",b:\"\\\\b\"+s+\"(L|u|U|Lu|LU|uL|UL)?\",r:0},f={cN:\"number\",b:\"\\\\b(\"+l+\"([fF]|L|i|[fF]i|Li)?|\"+s+\"(i|[fF]i|Li))\",r:0},g={cN:\"string\",b:\"'(\"+u+\"|.)\",e:\"'\",i:\".\"},h={b:u,r:0},p={cN:\"string\",b:'\"',c:[h],e:'\"[cwd]?'},w={cN:\"string\",b:'[rq]\"',e:'\"[cwd]?',r:5},N={cN:\"string\",b:\"`\",e:\"`[cwd]?\"},A={cN:\"string\",b:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',r:10},F={cN:\"string\",b:'q\"\\\\{',e:'\\\\}\"'},m={cN:\"shebang\",b:\"^#!\",e:\"$\",r:5},y={cN:\"preprocessor\",b:\"#(line)\",e:\"$\",r:5},L={cN:\"keyword\",b:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"},v=e.C(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{c:[\"self\"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage(\"asciidoc\",function(e){return{aliases:[\"adoc\"],c:[e.C(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{r:10}),e.C(\"^//\",\"$\",{r:0}),{cN:\"title\",b:\"^\\\\.\\\\w.*$\"},{b:\"^[=\\\\*]{4,}\\\\n\",e:\"\\\\n^[=\\\\*]{4,}$\",r:10},{cN:\"header\",b:\"^(={1,5}) .+?( \\\\1)?$\",r:10},{cN:\"header\",b:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\",r:10},{cN:\"attribute\",b:\"^:.+?:\",e:\"\\\\s\",eE:!0,r:10},{cN:\"attribute\",b:\"^\\\\[.+?\\\\]$\",r:0},{cN:\"blockquote\",b:\"^_{4,}\\\\n\",e:\"\\\\n_{4,}$\",r:10},{cN:\"code\",b:\"^[\\\\-\\\\.]{4,}\\\\n\",e:\"\\\\n[\\\\-\\\\.]{4,}$\",r:10},{b:\"^\\\\+{4,}\\\\n\",e:\"\\\\n\\\\+{4,}$\",c:[{b:\"<\",e:\">\",sL:\"xml\",r:0}],r:10},{cN:\"bullet\",b:\"^(\\\\*+|\\\\-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"},{cN:\"label\",b:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",r:10},{cN:\"strong\",b:\"\\\\B\\\\*(?![\\\\*\\\\s])\",e:\"(\\\\n{2}|\\\\*)\",c:[{b:\"\\\\\\\\*\\\\w\",r:0}]},{cN:\"emphasis\",b:\"\\\\B'(?!['\\\\s])\",e:\"(\\\\n{2}|')\",c:[{b:\"\\\\\\\\'\\\\w\",r:0}],r:0},{cN:\"emphasis\",b:\"_(?![_\\\\s])\",e:\"(\\\\n{2}|_)\",r:0},{cN:\"smartquote\",v:[{b:\"``.+?''\"},{b:\"`.+?'\"}]},{cN:\"code\",b:\"(`.+?`|\\\\+.+?\\\\+)\",r:0},{cN:\"code\",b:\"^[ \\\\t]\",e:\"$\",r:0},{cN:\"horizontal_rule\",b:\"^'{3,}[ \\\\t]*$\",r:10},{b:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+\\\\[.*?\\\\]\",rB:!0,c:[{b:\"(link|image:?):\",r:0},{cN:\"link_url\",b:\"\\\\w\",e:\"[^\\\\[]+\",r:0},{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage(\"rsl\",function(e){return{k:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"shader\",bK:\"surface displacement light volume imager\",e:\"\\\\(\"},{cN:\"shading\",bK:\"illuminate illuminance gather\",e:\"\\\\(\"}]}});hljs.registerLanguage(\"fsharp\",function(e){var t={b:\"<\",e:\">\",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:[\"fs\"],k:\"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",i:/\\/\\*/,c:[{cN:\"keyword\",b:/\\b(yield|return|let|do)!/},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),{cN:\"class\",bK:\"type\",e:\"\\\\(|=|$\",eE:!0,c:[e.UTM,t]},{cN:\"annotation\",b:\"\\\\[<\",e:\">\\\\]\",r:10},{cN:\"attribute\",b:\"\\\\B('[A-Za-z])\\\\b\",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/markdown/example.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Markdown Demo</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\n        <link rel=\"stylesheet\" href=\"../../lib/css/zenburn.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n                <!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->\n                <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section>\n\n                <!-- Slides are separated by three dashes (quick 'n dirty regular expression) -->\n                <section data-markdown data-separator=\"---\">\n                    <script type=\"text/template\">\n                        ## Demo 1\n                        Slide 1\n                        ---\n                        ## Demo 1\n                        Slide 2\n                        ---\n                        ## Demo 1\n                        Slide 3\n                    </script>\n                </section>\n\n                <!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n                <section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n                    <script type=\"text/template\">\n                        ## Demo 2\n                        Slide 1.1\n\n                        --\n\n                        ## Demo 2\n                        Slide 1.2\n\n                        ---\n\n                        ## Demo 2\n                        Slide 2\n                    </script>\n                </section>\n\n                <!-- No \"extra\" slides, since there are no separators defined (so they'll become horizontal rulers) -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        A\n\n                        ---\n\n                        B\n\n                        ---\n\n                        C\n                    </script>\n                </section>\n\n                <!-- Slide attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        <!-- .slide: data-background=\"#000000\" -->\n                        ## Slide attributes\n                    </script>\n                </section>\n\n                <!-- Element attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ## Element attributes\n                        - Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n                        - Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n                    </script>\n                </section>\n\n                <!-- Code -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ```php\n                        public function foo()\n                        {\n                            $foo = array(\n                                'bar' => 'bar'\n                            )\n                        }\n                        ```\n                    </script>\n                </section>\n\n            </div>\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcontrols: true,\n\t\t\t\tprogress: true,\n\t\t\t\thistory: true,\n\t\t\t\tcenter: true,\n\n\t\t\t\t// Optional libraries used to extend on reveal.js\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: '../highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: '../notes/notes.js' }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/markdown/example.md",
    "content": "# Markdown Demo\n\n\n\n## External 1.1\n\nContent 1.1\n\nNote: This will only appear in the speaker notes window.\n\n\n## External 1.2\n\nContent 1.2\n\n\n\n## External 2\n\nContent 2.1\n\n\n\n## External 3.1\n\nContent 3.1\n\n\n## External 3.2\n\nContent 3.2\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/markdown/markdown.js",
    "content": "/**\n * The reveal.js markdown plugin. Handles parsing of\n * markdown inside of presentations as well as loading\n * of external markdown documents.\n */\n(function( root, factory ) {\n\tif( typeof exports === 'object' ) {\n\t\tmodule.exports = factory( require( './marked' ) );\n\t}\n\telse {\n\t\t// Browser globals (root is window)\n\t\troot.RevealMarkdown = factory( root.marked );\n\t\troot.RevealMarkdown.initialize();\n\t}\n}( this, function( marked ) {\n\n\tif( typeof marked === 'undefined' ) {\n\t\tthrow 'The reveal.js Markdown plugin requires marked to be loaded';\n\t}\n\n\tif( typeof hljs !== 'undefined' ) {\n\t\tmarked.setOptions({\n\t\t\thighlight: function( lang, code ) {\n\t\t\t\treturn hljs.highlightAuto( lang, code ).value;\n\t\t\t}\n\t\t});\n\t}\n\n\tvar DEFAULT_SLIDE_SEPARATOR = '^\\r?\\n---\\r?\\n$',\n\t\tDEFAULT_NOTES_SEPARATOR = 'note:',\n\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR = '\\\\\\.element\\\\\\s*?(.+?)$',\n\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR = '\\\\\\.slide:\\\\\\s*?(\\\\\\S.+?)$';\n\n\tvar SCRIPT_END_PLACEHOLDER = '__SCRIPT_END__';\n\n\n\t/**\n\t * Retrieves the markdown contents of a slide section\n\t * element. Normalizes leading tabs/whitespace.\n\t */\n\tfunction getMarkdownFromSlide( section ) {\n\n\t\tvar template = section.querySelector( 'script' );\n\n\t\t// strip leading whitespace so it isn't evaluated as code\n\t\tvar text = ( template || section ).textContent;\n\n\t\t// restore script end tags\n\t\ttext = text.replace( new RegExp( SCRIPT_END_PLACEHOLDER, 'g' ), '</script>' );\n\n\t\tvar leadingWs = text.match( /^\\n?(\\s*)/ )[1].length,\n\t\t\tleadingTabs = text.match( /^\\n?(\\t*)/ )[1].length;\n\n\t\tif( leadingTabs > 0 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n?\\\\t{' + leadingTabs + '}','g'), '\\n' );\n\t\t}\n\t\telse if( leadingWs > 1 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n? {' + leadingWs + '}', 'g'), '\\n' );\n\t\t}\n\n\t\treturn text;\n\n\t}\n\n\t/**\n\t * Given a markdown slide section element, this will\n\t * return all arguments that aren't related to markdown\n\t * parsing. Used to forward any other user-defined arguments\n\t * to the output markdown slide.\n\t */\n\tfunction getForwardedAttributes( section ) {\n\n\t\tvar attributes = section.attributes;\n\t\tvar result = [];\n\n\t\tfor( var i = 0, len = attributes.length; i < len; i++ ) {\n\t\t\tvar name = attributes[i].name,\n\t\t\t\tvalue = attributes[i].value;\n\n\t\t\t// disregard attributes that are used for markdown loading/parsing\n\t\t\tif( /data\\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue;\n\n\t\t\tif( value ) {\n\t\t\t\tresult.push( name + '=\"' + value + '\"' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tresult.push( name );\n\t\t\t}\n\t\t}\n\n\t\treturn result.join( ' ' );\n\n\t}\n\n\t/**\n\t * Inspects the given options and fills out default\n\t * values for what's not defined.\n\t */\n\tfunction getSlidifyOptions( options ) {\n\n\t\toptions = options || {};\n\t\toptions.separator = options.separator || DEFAULT_SLIDE_SEPARATOR;\n\t\toptions.notesSeparator = options.notesSeparator || DEFAULT_NOTES_SEPARATOR;\n\t\toptions.attributes = options.attributes || '';\n\n\t\treturn options;\n\n\t}\n\n\t/**\n\t * Helper function for constructing a markdown slide.\n\t */\n\tfunction createMarkdownSlide( content, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar notesMatch = content.split( new RegExp( options.notesSeparator, 'mgi' ) );\n\n\t\tif( notesMatch.length === 2 ) {\n\t\t\tcontent = notesMatch[0] + '<aside class=\"notes\" data-markdown>' + notesMatch[1].trim() + '</aside>';\n\t\t}\n\n\t\t// prevent script end tags in the content from interfering\n\t\t// with parsing\n\t\tcontent = content.replace( /<\\/script>/g, SCRIPT_END_PLACEHOLDER );\n\n\t\treturn '<script type=\"text/template\">' + content + '</script>';\n\n\t}\n\n\t/**\n\t * Parses a data string into multiple slides based\n\t * on the passed in separator arguments.\n\t */\n\tfunction slidify( markdown, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ),\n\t\t\thorizontalSeparatorRegex = new RegExp( options.separator );\n\n\t\tvar matches,\n\t\t\tlastIndex = 0,\n\t\t\tisHorizontal,\n\t\t\twasHorizontal = true,\n\t\t\tcontent,\n\t\t\tsectionStack = [];\n\n\t\t// iterate until all blocks between separators are stacked up\n\t\twhile( matches = separatorRegex.exec( markdown ) ) {\n\t\t\tnotes = null;\n\n\t\t\t// determine direction (horizontal by default)\n\t\t\tisHorizontal = horizontalSeparatorRegex.test( matches[0] );\n\n\t\t\tif( !isHorizontal && wasHorizontal ) {\n\t\t\t\t// create vertical stack\n\t\t\t\tsectionStack.push( [] );\n\t\t\t}\n\n\t\t\t// pluck slide content from markdown input\n\t\t\tcontent = markdown.substring( lastIndex, matches.index );\n\n\t\t\tif( isHorizontal && wasHorizontal ) {\n\t\t\t\t// add to horizontal stack\n\t\t\t\tsectionStack.push( content );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// add to vertical stack\n\t\t\t\tsectionStack[sectionStack.length-1].push( content );\n\t\t\t}\n\n\t\t\tlastIndex = separatorRegex.lastIndex;\n\t\t\twasHorizontal = isHorizontal;\n\t\t}\n\n\t\t// add the remaining slide\n\t\t( wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1] ).push( markdown.substring( lastIndex ) );\n\n\t\tvar markdownSections = '';\n\n\t\t// flatten the hierarchical stack, and insert <section data-markdown> tags\n\t\tfor( var i = 0, len = sectionStack.length; i < len; i++ ) {\n\t\t\t// vertical\n\t\t\tif( sectionStack[i] instanceof Array ) {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +'>';\n\n\t\t\t\tsectionStack[i].forEach( function( child ) {\n\t\t\t\t\tmarkdownSections += '<section data-markdown>' +  createMarkdownSlide( child, options ) + '</section>';\n\t\t\t\t} );\n\n\t\t\t\tmarkdownSections += '</section>';\n\t\t\t}\n\t\t\telse {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +' data-markdown>' + createMarkdownSlide( sectionStack[i], options ) + '</section>';\n\t\t\t}\n\t\t}\n\n\t\treturn markdownSections;\n\n\t}\n\n\t/**\n\t * Parses any current data-markdown slides, splits\n\t * multi-slide markdown into separate sections and\n\t * handles loading of external markdown.\n\t */\n\tfunction processSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]'),\n\t\t\tsection;\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tsection = sections[i];\n\n\t\t\tif( section.getAttribute( 'data-markdown' ).length ) {\n\n\t\t\t\tvar xhr = new XMLHttpRequest(),\n\t\t\t\t\turl = section.getAttribute( 'data-markdown' );\n\n\t\t\t\tdatacharset = section.getAttribute( 'data-charset' );\n\n\t\t\t\t// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes\n\t\t\t\tif( datacharset != null && datacharset != '' ) {\n\t\t\t\t\txhr.overrideMimeType( 'text/html; charset=' + datacharset );\n\t\t\t\t}\n\n\t\t\t\txhr.onreadystatechange = function() {\n\t\t\t\t\tif( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// file protocol yields status code 0 (useful for local debug, mobile applications etc.)\n\t\t\t\t\t\tif ( ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status === 0 ) {\n\n\t\t\t\t\t\t\tsection.outerHTML = slidify( xhr.responseText, {\n\t\t\t\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\tsection.outerHTML = '<section data-state=\"alert\">' +\n\t\t\t\t\t\t\t\t'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' +\n\t\t\t\t\t\t\t\t'Check your browser\\'s JavaScript console for more details.' +\n\t\t\t\t\t\t\t\t'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' +\n\t\t\t\t\t\t\t\t'</section>';\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\txhr.open( 'GET', url, false );\n\n\t\t\t\ttry {\n\t\t\t\t\txhr.send();\n\t\t\t\t}\n\t\t\t\tcatch ( e ) {\n\t\t\t\t\talert( 'Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e );\n\t\t\t\t}\n\n\t\t\t}\n\t\t\telse if( section.getAttribute( 'data-separator' ) || section.getAttribute( 'data-separator-vertical' ) || section.getAttribute( 'data-separator-notes' ) ) {\n\n\t\t\t\tsection.outerHTML = slidify( getMarkdownFromSlide( section ), {\n\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t});\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\tsection.innerHTML = createMarkdownSlide( getMarkdownFromSlide( section ) );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Check if a node value has the attributes pattern.\n\t * If yes, extract it and add that value as one or several attributes\n\t * the the terget element.\n\t *\n\t * You need Cache Killer on Chrome to see the effect on any FOM transformation\n\t * directly on refresh (F5)\n\t * http://stackoverflow.com/questions/5690269/disabling-chrome-cache-for-website-development/7000899#answer-11786277\n\t */\n\tfunction addAttributeInElement( node, elementTarget, separator ) {\n\n\t\tvar mardownClassesInElementsRegex = new RegExp( separator, 'mg' );\n\t\tvar mardownClassRegex = new RegExp( \"([^\\\"= ]+?)=\\\"([^\\\"=]+?)\\\"\", 'mg' );\n\t\tvar nodeValue = node.nodeValue;\n\t\tif( matches = mardownClassesInElementsRegex.exec( nodeValue ) ) {\n\n\t\t\tvar classes = matches[1];\n\t\t\tnodeValue = nodeValue.substring( 0, matches.index ) + nodeValue.substring( mardownClassesInElementsRegex.lastIndex );\n\t\t\tnode.nodeValue = nodeValue;\n\t\t\twhile( matchesClass = mardownClassRegex.exec( classes ) ) {\n\t\t\t\telementTarget.setAttribute( matchesClass[1], matchesClass[2] );\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Add attributes to the parent element of a text node,\n\t * or the element of an attribute node.\n\t */\n\tfunction addAttributes( section, element, previousElement, separatorElementAttributes, separatorSectionAttributes ) {\n\n\t\tif ( element != null && element.childNodes != undefined && element.childNodes.length > 0 ) {\n\t\t\tpreviousParentElement = element;\n\t\t\tfor( var i = 0; i < element.childNodes.length; i++ ) {\n\t\t\t\tchildElement = element.childNodes[i];\n\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\tj = i - 1;\n\t\t\t\t\twhile ( j >= 0 ) {\n\t\t\t\t\t\taPreviousChildElement = element.childNodes[j];\n\t\t\t\t\t\tif ( typeof aPreviousChildElement.setAttribute == 'function' && aPreviousChildElement.tagName != \"BR\" ) {\n\t\t\t\t\t\t\tpreviousParentElement = aPreviousChildElement;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tj = j - 1;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tparentSection = section;\n\t\t\t\tif( childElement.nodeName ==  \"section\" ) {\n\t\t\t\t\tparentSection = childElement ;\n\t\t\t\t\tpreviousParentElement = childElement ;\n\t\t\t\t}\n\t\t\t\tif ( typeof childElement.setAttribute == 'function' || childElement.nodeType == Node.COMMENT_NODE ) {\n\t\t\t\t\taddAttributes( parentSection, childElement, previousParentElement, separatorElementAttributes, separatorSectionAttributes );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( element.nodeType == Node.COMMENT_NODE ) {\n\t\t\tif ( addAttributeInElement( element, previousElement, separatorElementAttributes ) == false ) {\n\t\t\t\taddAttributeInElement( element, section, separatorSectionAttributes );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Converts any current data-markdown slides in the\n\t * DOM to HTML.\n\t */\n\tfunction convertSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]');\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tvar section = sections[i];\n\n\t\t\t// Only parse the same slide once\n\t\t\tif( !section.getAttribute( 'data-markdown-parsed' ) ) {\n\n\t\t\t\tsection.setAttribute( 'data-markdown-parsed', true )\n\n\t\t\t\tvar notes = section.querySelector( 'aside.notes' );\n\t\t\t\tvar markdown = getMarkdownFromSlide( section );\n\n\t\t\t\tsection.innerHTML = marked( markdown );\n\t\t\t\taddAttributes( \tsection, section, null, section.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR,\n\t\t\t\t\t\t\t\tsection.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR);\n\n\t\t\t\t// If there were notes, we need to re-add them after\n\t\t\t\t// having overwritten the section's HTML\n\t\t\t\tif( notes ) {\n\t\t\t\t\tsection.appendChild( notes );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t// API\n\treturn {\n\n\t\tinitialize: function() {\n\t\t\tprocessSlides();\n\t\t\tconvertSlides();\n\t\t},\n\n\t\t// TODO: Do these belong in the API?\n\t\tprocessSlides: processSlides,\n\t\tconvertSlides: convertSlides,\n\t\tslidify: slidify\n\n\t};\n\n}));\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/markdown/marked.js",
    "content": "/**\n * marked - a markdown parser\n * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)\n * https://github.com/chjj/marked\n */\n(function(){function e(e){this.tokens=[],this.tokens.links={},this.options=e||a.defaults,this.rules=p.normal,this.options.gfm&&(this.rules=this.options.tables?p.tables:p.gfm)}function t(e,t){if(this.options=t||a.defaults,this.links=e,this.rules=u.normal,this.renderer=this.options.renderer||new n,this.renderer.options=this.options,!this.links)throw new Error(\"Tokens array requires a `links` property.\");this.options.gfm?this.rules=this.options.breaks?u.breaks:u.gfm:this.options.pedantic&&(this.rules=u.pedantic)}function n(e){this.options=e||{}}function r(e){this.tokens=[],this.token=null,this.options=e||a.defaults,this.options.renderer=this.options.renderer||new n,this.renderer=this.options.renderer,this.renderer.options=this.options}function s(e,t){return e.replace(t?/&/g:/&(?!#?\\w+;)/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\").replace(/'/g,\"&#39;\")}function i(e){return e.replace(/&([#\\w]+);/g,function(e,t){return t=t.toLowerCase(),\"colon\"===t?\":\":\"#\"===t.charAt(0)?String.fromCharCode(\"x\"===t.charAt(1)?parseInt(t.substring(2),16):+t.substring(1)):\"\"})}function l(e,t){return e=e.source,t=t||\"\",function n(r,s){return r?(s=s.source||s,s=s.replace(/(^|[^\\[])\\^/g,\"$1\"),e=e.replace(r,s),n):new RegExp(e,t)}}function o(){}function h(e){for(var t,n,r=1;r<arguments.length;r++){t=arguments[r];for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e}function a(t,n,i){if(i||\"function\"==typeof n){i||(i=n,n=null),n=h({},a.defaults,n||{});var l,o,p=n.highlight,u=0;try{l=e.lex(t,n)}catch(c){return i(c)}o=l.length;var g=function(e){if(e)return n.highlight=p,i(e);var t;try{t=r.parse(l,n)}catch(s){e=s}return n.highlight=p,e?i(e):i(null,t)};if(!p||p.length<3)return g();if(delete n.highlight,!o)return g();for(;u<l.length;u++)!function(e){return\"code\"!==e.type?--o||g():p(e.text,e.lang,function(t,n){return t?g(t):null==n||n===e.text?--o||g():(e.text=n,e.escaped=!0,void(--o||g()))})}(l[u])}else try{return n&&(n=h({},a.defaults,n)),r.parse(e.lex(t,n),n)}catch(c){if(c.message+=\"\\nPlease report this to https://github.com/chjj/marked.\",(n||a.defaults).silent)return\"<p>An error occured:</p><pre>\"+s(c.message+\"\",!0)+\"</pre>\";throw c}}var p={newline:/^\\n+/,code:/^( {4}[^\\n]+\\n*)+/,fences:o,hr:/^( *[-*_]){3,} *(?:\\n+|$)/,heading:/^ *(#{1,6}) *([^\\n]+?) *#* *(?:\\n+|$)/,nptable:o,lheading:/^([^\\n]+)\\n *(=|-){2,} *(?:\\n+|$)/,blockquote:/^( *>[^\\n]+(\\n(?!def)[^\\n]+)*\\n*)+/,list:/^( *)(bull) [\\s\\S]+?(?:hr|def|\\n{2,}(?! )(?!\\1bull )\\n*|\\s*$)/,html:/^ *(?:comment *(?:\\n|\\s*$)|closed *(?:\\n{2,}|\\s*$)|closing *(?:\\n{2,}|\\s*$))/,def:/^ *\\[([^\\]]+)\\]: *<?([^\\s>]+)>?(?: +[\"(]([^\\n]+)[\")])? *(?:\\n+|$)/,table:o,paragraph:/^((?:[^\\n]+\\n?(?!hr|heading|lheading|blockquote|tag|def))+)\\n*/,text:/^[^\\n]+/};p.bullet=/(?:[*+-]|\\d+\\.)/,p.item=/^( *)(bull) [^\\n]*(?:\\n(?!\\1bull )[^\\n]*)*/,p.item=l(p.item,\"gm\")(/bull/g,p.bullet)(),p.list=l(p.list)(/bull/g,p.bullet)(\"hr\",\"\\\\n+(?=\\\\1?(?:[-*_] *){3,}(?:\\\\n+|$))\")(\"def\",\"\\\\n+(?=\"+p.def.source+\")\")(),p.blockquote=l(p.blockquote)(\"def\",p.def)(),p._tag=\"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\\\b)\\\\w+(?!:/|[^\\\\w\\\\s@]*@)\\\\b\",p.html=l(p.html)(\"comment\",/<!--[\\s\\S]*?-->/)(\"closed\",/<(tag)[\\s\\S]+?<\\/\\1>/)(\"closing\",/<tag(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/)(/tag/g,p._tag)(),p.paragraph=l(p.paragraph)(\"hr\",p.hr)(\"heading\",p.heading)(\"lheading\",p.lheading)(\"blockquote\",p.blockquote)(\"tag\",\"<\"+p._tag)(\"def\",p.def)(),p.normal=h({},p),p.gfm=h({},p.normal,{fences:/^ *(`{3,}|~{3,}) *(\\S+)? *\\n([\\s\\S]+?)\\s*\\1 *(?:\\n+|$)/,paragraph:/^/}),p.gfm.paragraph=l(p.paragraph)(\"(?!\",\"(?!\"+p.gfm.fences.source.replace(\"\\\\1\",\"\\\\2\")+\"|\"+p.list.source.replace(\"\\\\1\",\"\\\\3\")+\"|\")(),p.tables=h({},p.gfm,{nptable:/^ *(\\S.*\\|.*)\\n *([-:]+ *\\|[-| :]*)\\n((?:.*\\|.*(?:\\n|$))*)\\n*/,table:/^ *\\|(.+)\\n *\\|( *[-:]+[-| :]*)\\n((?: *\\|.*(?:\\n|$))*)\\n*/}),e.rules=p,e.lex=function(t,n){var r=new e(n);return r.lex(t)},e.prototype.lex=function(e){return e=e.replace(/\\r\\n|\\r/g,\"\\n\").replace(/\\t/g,\"    \").replace(/\\u00a0/g,\" \").replace(/\\u2424/g,\"\\n\"),this.token(e,!0)},e.prototype.token=function(e,t,n){for(var r,s,i,l,o,h,a,u,c,e=e.replace(/^ +$/gm,\"\");e;)if((i=this.rules.newline.exec(e))&&(e=e.substring(i[0].length),i[0].length>1&&this.tokens.push({type:\"space\"})),i=this.rules.code.exec(e))e=e.substring(i[0].length),i=i[0].replace(/^ {4}/gm,\"\"),this.tokens.push({type:\"code\",text:this.options.pedantic?i:i.replace(/\\n+$/,\"\")});else if(i=this.rules.fences.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"code\",lang:i[2],text:i[3]});else if(i=this.rules.heading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:i[1].length,text:i[2]});else if(t&&(i=this.rules.nptable.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].split(/ *\\| */);this.tokens.push(h)}else if(i=this.rules.lheading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:\"=\"===i[2]?1:2,text:i[1]});else if(i=this.rules.hr.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"hr\"});else if(i=this.rules.blockquote.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"blockquote_start\"}),i=i[0].replace(/^ *> ?/gm,\"\"),this.token(i,t,!0),this.tokens.push({type:\"blockquote_end\"});else if(i=this.rules.list.exec(e)){for(e=e.substring(i[0].length),l=i[2],this.tokens.push({type:\"list_start\",ordered:l.length>1}),i=i[0].match(this.rules.item),r=!1,c=i.length,u=0;c>u;u++)h=i[u],a=h.length,h=h.replace(/^ *([*+-]|\\d+\\.) +/,\"\"),~h.indexOf(\"\\n \")&&(a-=h.length,h=this.options.pedantic?h.replace(/^ {1,4}/gm,\"\"):h.replace(new RegExp(\"^ {1,\"+a+\"}\",\"gm\"),\"\")),this.options.smartLists&&u!==c-1&&(o=p.bullet.exec(i[u+1])[0],l===o||l.length>1&&o.length>1||(e=i.slice(u+1).join(\"\\n\")+e,u=c-1)),s=r||/\\n\\n(?!\\s*$)/.test(h),u!==c-1&&(r=\"\\n\"===h.charAt(h.length-1),s||(s=r)),this.tokens.push({type:s?\"loose_item_start\":\"list_item_start\"}),this.token(h,!1,n),this.tokens.push({type:\"list_item_end\"});this.tokens.push({type:\"list_end\"})}else if(i=this.rules.html.exec(e))e=e.substring(i[0].length),this.tokens.push({type:this.options.sanitize?\"paragraph\":\"html\",pre:\"pre\"===i[1]||\"script\"===i[1]||\"style\"===i[1],text:i[0]});else if(!n&&t&&(i=this.rules.def.exec(e)))e=e.substring(i[0].length),this.tokens.links[i[1].toLowerCase()]={href:i[2],title:i[3]};else if(t&&(i=this.rules.table.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/(?: *\\| *)?\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].replace(/^ *\\| *| *\\| *$/g,\"\").split(/ *\\| */);this.tokens.push(h)}else if(t&&(i=this.rules.paragraph.exec(e)))e=e.substring(i[0].length),this.tokens.push({type:\"paragraph\",text:\"\\n\"===i[1].charAt(i[1].length-1)?i[1].slice(0,-1):i[1]});else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"text\",text:i[0]});else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0));return this.tokens};var u={escape:/^\\\\([\\\\`*{}\\[\\]()#+\\-.!_>])/,autolink:/^<([^ >]+(@|:\\/)[^ >]+)>/,url:o,tag:/^<!--[\\s\\S]*?-->|^<\\/?\\w+(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/,link:/^!?\\[(inside)\\]\\(href\\)/,reflink:/^!?\\[(inside)\\]\\s*\\[([^\\]]*)\\]/,nolink:/^!?\\[((?:\\[[^\\]]*\\]|[^\\[\\]])*)\\]/,strong:/^__([\\s\\S]+?)__(?!_)|^\\*\\*([\\s\\S]+?)\\*\\*(?!\\*)/,em:/^\\b_((?:__|[\\s\\S])+?)_\\b|^\\*((?:\\*\\*|[\\s\\S])+?)\\*(?!\\*)/,code:/^(`+)\\s*([\\s\\S]*?[^`])\\s*\\1(?!`)/,br:/^ {2,}\\n(?!\\s*$)/,del:o,text:/^[\\s\\S]+?(?=[\\\\<!\\[_*`]| {2,}\\n|$)/};u._inside=/(?:\\[[^\\]]*\\]|[^\\[\\]]|\\](?=[^\\[]*\\]))*/,u._href=/\\s*<?([\\s\\S]*?)>?(?:\\s+['\"]([\\s\\S]*?)['\"])?\\s*/,u.link=l(u.link)(\"inside\",u._inside)(\"href\",u._href)(),u.reflink=l(u.reflink)(\"inside\",u._inside)(),u.normal=h({},u),u.pedantic=h({},u.normal,{strong:/^__(?=\\S)([\\s\\S]*?\\S)__(?!_)|^\\*\\*(?=\\S)([\\s\\S]*?\\S)\\*\\*(?!\\*)/,em:/^_(?=\\S)([\\s\\S]*?\\S)_(?!_)|^\\*(?=\\S)([\\s\\S]*?\\S)\\*(?!\\*)/}),u.gfm=h({},u.normal,{escape:l(u.escape)(\"])\",\"~|])\")(),url:/^(https?:\\/\\/[^\\s<]+[^<.,:;\"')\\]\\s])/,del:/^~~(?=\\S)([\\s\\S]*?\\S)~~/,text:l(u.text)(\"]|\",\"~]|\")(\"|\",\"|https?://|\")()}),u.breaks=h({},u.gfm,{br:l(u.br)(\"{2,}\",\"*\")(),text:l(u.gfm.text)(\"{2,}\",\"*\")()}),t.rules=u,t.output=function(e,n,r){var s=new t(n,r);return s.output(e)},t.prototype.output=function(e){for(var t,n,r,i,l=\"\";e;)if(i=this.rules.escape.exec(e))e=e.substring(i[0].length),l+=i[1];else if(i=this.rules.autolink.exec(e))e=e.substring(i[0].length),\"@\"===i[2]?(n=this.mangle(\":\"===i[1].charAt(6)?i[1].substring(7):i[1]),r=this.mangle(\"mailto:\")+n):(n=s(i[1]),r=n),l+=this.renderer.link(r,null,n);else if(this.inLink||!(i=this.rules.url.exec(e))){if(i=this.rules.tag.exec(e))!this.inLink&&/^<a /i.test(i[0])?this.inLink=!0:this.inLink&&/^<\\/a>/i.test(i[0])&&(this.inLink=!1),e=e.substring(i[0].length),l+=this.options.sanitize?s(i[0]):i[0];else if(i=this.rules.link.exec(e))e=e.substring(i[0].length),this.inLink=!0,l+=this.outputLink(i,{href:i[2],title:i[3]}),this.inLink=!1;else if((i=this.rules.reflink.exec(e))||(i=this.rules.nolink.exec(e))){if(e=e.substring(i[0].length),t=(i[2]||i[1]).replace(/\\s+/g,\" \"),t=this.links[t.toLowerCase()],!t||!t.href){l+=i[0].charAt(0),e=i[0].substring(1)+e;continue}this.inLink=!0,l+=this.outputLink(i,t),this.inLink=!1}else if(i=this.rules.strong.exec(e))e=e.substring(i[0].length),l+=this.renderer.strong(this.output(i[2]||i[1]));else if(i=this.rules.em.exec(e))e=e.substring(i[0].length),l+=this.renderer.em(this.output(i[2]||i[1]));else if(i=this.rules.code.exec(e))e=e.substring(i[0].length),l+=this.renderer.codespan(s(i[2],!0));else if(i=this.rules.br.exec(e))e=e.substring(i[0].length),l+=this.renderer.br();else if(i=this.rules.del.exec(e))e=e.substring(i[0].length),l+=this.renderer.del(this.output(i[1]));else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),l+=s(this.smartypants(i[0]));else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0))}else e=e.substring(i[0].length),n=s(i[1]),r=n,l+=this.renderer.link(r,null,n);return l},t.prototype.outputLink=function(e,t){var n=s(t.href),r=t.title?s(t.title):null;return\"!\"!==e[0].charAt(0)?this.renderer.link(n,r,this.output(e[1])):this.renderer.image(n,r,s(e[1]))},t.prototype.smartypants=function(e){return this.options.smartypants?e.replace(/--/g,\"—\").replace(/(^|[-\\u2014/(\\[{\"\\s])'/g,\"$1‘\").replace(/'/g,\"’\").replace(/(^|[-\\u2014/(\\[{\\u2018\\s])\"/g,\"$1“\").replace(/\"/g,\"”\").replace(/\\.{3}/g,\"…\"):e},t.prototype.mangle=function(e){for(var t,n=\"\",r=e.length,s=0;r>s;s++)t=e.charCodeAt(s),Math.random()>.5&&(t=\"x\"+t.toString(16)),n+=\"&#\"+t+\";\";return n},n.prototype.code=function(e,t,n){if(this.options.highlight){var r=this.options.highlight(e,t);null!=r&&r!==e&&(n=!0,e=r)}return t?'<pre><code class=\"'+this.options.langPrefix+s(t,!0)+'\">'+(n?e:s(e,!0))+\"\\n</code></pre>\\n\":\"<pre><code>\"+(n?e:s(e,!0))+\"\\n</code></pre>\"},n.prototype.blockquote=function(e){return\"<blockquote>\\n\"+e+\"</blockquote>\\n\"},n.prototype.html=function(e){return e},n.prototype.heading=function(e,t,n){return\"<h\"+t+' id=\"'+this.options.headerPrefix+n.toLowerCase().replace(/[^\\w]+/g,\"-\")+'\">'+e+\"</h\"+t+\">\\n\"},n.prototype.hr=function(){return this.options.xhtml?\"<hr/>\\n\":\"<hr>\\n\"},n.prototype.list=function(e,t){var n=t?\"ol\":\"ul\";return\"<\"+n+\">\\n\"+e+\"</\"+n+\">\\n\"},n.prototype.listitem=function(e){return\"<li>\"+e+\"</li>\\n\"},n.prototype.paragraph=function(e){return\"<p>\"+e+\"</p>\\n\"},n.prototype.table=function(e,t){return\"<table>\\n<thead>\\n\"+e+\"</thead>\\n<tbody>\\n\"+t+\"</tbody>\\n</table>\\n\"},n.prototype.tablerow=function(e){return\"<tr>\\n\"+e+\"</tr>\\n\"},n.prototype.tablecell=function(e,t){var n=t.header?\"th\":\"td\",r=t.align?\"<\"+n+' style=\"text-align:'+t.align+'\">':\"<\"+n+\">\";return r+e+\"</\"+n+\">\\n\"},n.prototype.strong=function(e){return\"<strong>\"+e+\"</strong>\"},n.prototype.em=function(e){return\"<em>\"+e+\"</em>\"},n.prototype.codespan=function(e){return\"<code>\"+e+\"</code>\"},n.prototype.br=function(){return this.options.xhtml?\"<br/>\":\"<br>\"},n.prototype.del=function(e){return\"<del>\"+e+\"</del>\"},n.prototype.link=function(e,t,n){if(this.options.sanitize){try{var r=decodeURIComponent(i(e)).replace(/[^\\w:]/g,\"\").toLowerCase()}catch(s){return\"\"}if(0===r.indexOf(\"javascript:\")||0===r.indexOf(\"vbscript:\"))return\"\"}var l='<a href=\"'+e+'\"';return t&&(l+=' title=\"'+t+'\"'),l+=\">\"+n+\"</a>\"},n.prototype.image=function(e,t,n){var r='<img src=\"'+e+'\" alt=\"'+n+'\"';return t&&(r+=' title=\"'+t+'\"'),r+=this.options.xhtml?\"/>\":\">\"},r.parse=function(e,t,n){var s=new r(t,n);return s.parse(e)},r.prototype.parse=function(e){this.inline=new t(e.links,this.options,this.renderer),this.tokens=e.reverse();for(var n=\"\";this.next();)n+=this.tok();return n},r.prototype.next=function(){return this.token=this.tokens.pop()},r.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},r.prototype.parseText=function(){for(var e=this.token.text;\"text\"===this.peek().type;)e+=\"\\n\"+this.next().text;return this.inline.output(e)},r.prototype.tok=function(){switch(this.token.type){case\"space\":return\"\";case\"hr\":return this.renderer.hr();case\"heading\":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text);case\"code\":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case\"table\":var e,t,n,r,s,i=\"\",l=\"\";for(n=\"\",e=0;e<this.token.header.length;e++)r={header:!0,align:this.token.align[e]},n+=this.renderer.tablecell(this.inline.output(this.token.header[e]),{header:!0,align:this.token.align[e]});for(i+=this.renderer.tablerow(n),e=0;e<this.token.cells.length;e++){for(t=this.token.cells[e],n=\"\",s=0;s<t.length;s++)n+=this.renderer.tablecell(this.inline.output(t[s]),{header:!1,align:this.token.align[s]});l+=this.renderer.tablerow(n)}return this.renderer.table(i,l);case\"blockquote_start\":for(var l=\"\";\"blockquote_end\"!==this.next().type;)l+=this.tok();return this.renderer.blockquote(l);case\"list_start\":for(var l=\"\",o=this.token.ordered;\"list_end\"!==this.next().type;)l+=this.tok();return this.renderer.list(l,o);case\"list_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=\"text\"===this.token.type?this.parseText():this.tok();return this.renderer.listitem(l);case\"loose_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=this.tok();return this.renderer.listitem(l);case\"html\":var h=this.token.pre||this.options.pedantic?this.token.text:this.inline.output(this.token.text);return this.renderer.html(h);case\"paragraph\":return this.renderer.paragraph(this.inline.output(this.token.text));case\"text\":return this.renderer.paragraph(this.parseText())}},o.exec=o,a.options=a.setOptions=function(e){return h(a.defaults,e),a},a.defaults={gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,smartLists:!1,silent:!1,highlight:null,langPrefix:\"lang-\",smartypants:!1,headerPrefix:\"\",renderer:new n,xhtml:!1},a.Parser=r,a.parser=r.parse,a.Renderer=n,a.Lexer=e,a.lexer=e.lex,a.InlineLexer=t,a.inlineLexer=t.output,a.parse=a,\"undefined\"!=typeof module&&\"object\"==typeof exports?module.exports=a:\"function\"==typeof define&&define.amd?define(function(){return a}):this.marked=a}).call(function(){return this||(\"undefined\"!=typeof window?window:global)}());"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/math/math.js",
    "content": "/**\n * A plugin which enables rendering of math equations inside\n * of reveal.js slides. Essentially a thin wrapper for MathJax.\n *\n * @author Hakim El Hattab\n */\nvar RevealMath = window.RevealMath || (function(){\n\n\tvar options = Reveal.getConfig().math || {};\n\toptions.mathjax = options.mathjax || 'https://cdn.mathjax.org/mathjax/latest/MathJax.js';\n\toptions.config = options.config || 'TeX-AMS_HTML-full';\n\n\tloadScript( options.mathjax + '?config=' + options.config, function() {\n\n\t\tMathJax.Hub.Config({\n\t\t\tmessageStyle: 'none',\n\t\t\ttex2jax: {\n\t\t\t\tinlineMath: [['$','$'],['\\\\(','\\\\)']] ,\n\t\t\t\tskipTags: ['script','noscript','style','textarea','pre']\n\t\t\t},\n\t\t\tskipStartupTypeset: true\n\t\t});\n\n\t\t// Typeset followed by an immediate reveal.js layout since\n\t\t// the typesetting process could affect slide height\n\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] );\n\t\tMathJax.Hub.Queue( Reveal.layout );\n\n\t\t// Reprocess equations in slides when they turn visible\n\t\tReveal.addEventListener( 'slidechanged', function( event ) {\n\n\t\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] );\n\n\t\t} );\n\n\t} );\n\n\tfunction loadScript( url, callback ) {\n\n\t\tvar head = document.querySelector( 'head' );\n\t\tvar script = document.createElement( 'script' );\n\t\tscript.type = 'text/javascript';\n\t\tscript.src = url;\n\n\t\t// Wrapper for callback to make sure it only fires once\n\t\tvar finish = function() {\n\t\t\tif( typeof callback === 'function' ) {\n\t\t\t\tcallback.call();\n\t\t\t\tcallback = null;\n\t\t\t}\n\t\t}\n\n\t\tscript.onload = finish;\n\n\t\t// IE\n\t\tscript.onreadystatechange = function() {\n\t\t\tif ( this.readyState === 'loaded' ) {\n\t\t\t\tfinish();\n\t\t\t}\n\t\t}\n\n\t\t// Normal browsers\n\t\thead.appendChild( script );\n\n\t}\n\n})();\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/multiplex/client.js",
    "content": "(function() {\n\tvar multiplex = Reveal.getConfig().multiplex;\n\tvar socketId = multiplex.id;\n\tvar socket = io.connect(multiplex.url);\n\n\tsocket.on(multiplex.id, function(data) {\n\t\t// ignore data from sockets that aren't ours\n\t\tif (data.socketId !== socketId) { return; }\n\t\tif( window.location.host === 'localhost:1947' ) return;\n\n\t\tReveal.setState(data.state);\n\t});\n}());\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/multiplex/index.js",
    "content": "var http        = require('http');\nvar express\t\t= require('express');\nvar fs\t\t\t= require('fs');\nvar io\t\t\t= require('socket.io');\nvar crypto\t\t= require('crypto');\n\nvar app       \t= express();\nvar staticDir \t= express.static;\nvar server    \t= http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport: process.env.PORT || 1948,\n\tbaseDir : __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\tsocket.on('multiplex-statechanged', function(data) {\n\t\tif (typeof data.secret == 'undefined' || data.secret == null || data.secret === '') return;\n\t\tif (createHash(data.secret) === data.socketId) {\n\t\t\tdata.secret = null;\n\t\t\tsocket.broadcast.emit(data.socketId, data);\n\t\t};\n\t});\n});\n\n[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {\n\tapp.use('/' + dir, staticDir(opts.baseDir + dir));\n});\n\napp.get(\"/\", function(req, res) {\n\tres.writeHead(200, {'Content-Type': 'text/html'});\n\tfs.createReadStream(opts.baseDir + '/index.html').pipe(res);\n});\n\napp.get(\"/token\", function(req,res) {\n\tvar ts = new Date().getTime();\n\tvar rand = Math.floor(Math.random()*9999999);\n\tvar secret = ts.toString() + rand.toString();\n\tres.send({secret: secret, socketId: createHash(secret)});\n});\n\nvar createHash = function(secret) {\n\tvar cipher = crypto.createCipher('blowfish', secret);\n\treturn(cipher.final('hex'));\n};\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nconsole.log( brown + \"reveal.js:\" + reset + \" Multiplex running on port \" + green + opts.port + reset );"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/multiplex/master.js",
    "content": "(function() {\n\n\t// Don't emit events from inside of notes windows\n\tif ( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar multiplex = Reveal.getConfig().multiplex;\n\n\tvar socket = io.connect( multiplex.url );\n\n\tfunction post() {\n\n\t\tvar messageData = {\n\t\t\tstate: Reveal.getState(),\n\t\t\tsecret: multiplex.secret,\n\t\t\tsocketId: multiplex.id\n\t\t};\n\n\t\tsocket.emit( 'multiplex-statechanged', messageData );\n\n\t};\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n}());"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/notes/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\t\t\t\toverflow: auto;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"../../plugin/markdown/marked.js\"></script>\n\t\t<script>\n\n\t\t\t(function() {\n\n\t\t\t\tvar notes,\n\t\t\t\t\tnotesValue,\n\t\t\t\t\tcurrentState,\n\t\t\t\t\tcurrentSlide,\n\t\t\t\t\tupcomingSlide,\n\t\t\t\t\tconnected = false;\n\n\t\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\t\t// Messages sent by the notes plugin inside of the main window\n\t\t\t\t\tif( data && data.namespace === 'reveal-notes' ) {\n\t\t\t\t\t\tif( data.type === 'connect' ) {\n\t\t\t\t\t\t\thandleConnectMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( data.type === 'state' ) {\n\t\t\t\t\t\t\thandleStateMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Messages sent by the reveal.js inside of the current slide preview\n\t\t\t\t\telse if( data && data.namespace === 'reveal' ) {\n\t\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\t\t// Send a message back to notify that the handshake is complete\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ namespace: 'reveal-notes', type: 'connected'} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ]} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window is trying to establish a\n\t\t\t\t * connection.\n\t\t\t\t */\n\t\t\t\tfunction handleConnectMessage( data ) {\n\n\t\t\t\t\tif( connected === false ) {\n\t\t\t\t\t\tconnected = true;\n\n\t\t\t\t\t\tsetupIframes( data );\n\t\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\t\tsetupNotes();\n\t\t\t\t\t\tsetupTimer();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window sends an updated state.\n\t\t\t\t */\n\t\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t\t// applying the same state\n\t\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\t\tif ( data.notes ) {\n\t\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\t\tnotesValue.style.whiteSpace = data.whitespace;\n\t\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update the note slides\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t\t}\n\n\t\t\t\t// Limit to max one state update per X ms\n\t\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t\t/**\n\t\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t\t * This enables keyboard events to work even if focus\n\t\t\t\t * isn't set on the current slide iframe.\n\t\t\t\t */\n\t\t\t\tfunction setupKeyboard() {\n\n\t\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Creates the preview iframes.\n\t\t\t\t */\n\t\t\t\tfunction setupIframes( data ) {\n\n\t\t\t\t\tvar params = [\n\t\t\t\t\t\t'receiver',\n\t\t\t\t\t\t'progress=false',\n\t\t\t\t\t\t'history=false',\n\t\t\t\t\t\t'transition=none',\n\t\t\t\t\t\t'autoSlide=0',\n\t\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t\t].join( '&' );\n\n\t\t\t\t\tvar hash = '#/' + data.state.indexh + '/' + data.state.indexv;\n\t\t\t\t\tvar currentURL = data.url + '?' + params + '&postMessageEvents=true' + hash;\n\t\t\t\t\tvar upcomingURL = data.url + '?' + params + '&controls=false' + hash;\n\n\t\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Setup the notes UI.\n\t\t\t\t */\n\t\t\t\tfunction setupNotes() {\n\n\t\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Create the timer and clock and start updating them\n\t\t\t\t * at an interval.\n\t\t\t\t */\n\t\t\t\tfunction setupTimer() {\n\n\t\t\t\t\tvar start = new Date(),\n\t\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update once directly\n\t\t\t\t\t_updateTimer();\n\n\t\t\t\t\t// Then update every second\n\t\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\t\tstart = new Date();\n\t\t\t\t\t\t_updateTimer();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t\t */\n\t\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\t\tvar lastTime = 0,\n\t\t\t\t\t\ttimeout;\n\n\t\t\t\t\treturn function() {\n\n\t\t\t\t\t\tvar args = arguments;\n\t\t\t\t\t\tvar context = this;\n\n\t\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t})();\n\n\t\t</script>\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/notes/notes.js",
    "content": "/**\n * Handles opening of and synchronization with the reveal.js\n * notes window.\n *\n * Handshake process:\n * 1. This window posts 'connect' to notes window\n *    - Includes URL of presentation to show\n * 2. Notes window responds with 'connected' when it is available\n * 3. This window proceeds to send the current presentation state\n *    to the notes window\n */\nvar RevealNotes = (function() {\n\n\tfunction openNotes() {\n\t\tvar jsFileLocation = document.querySelector('script[src$=\"notes.js\"]').src;  // this js file path\n\t\tjsFileLocation = jsFileLocation.replace(/notes\\.js(\\?.*)?$/, '');   // the js folder path\n\t\tvar notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1100,height=700' );\n\n\t\t/**\n\t\t * Connect to the notes window through a postmessage handshake.\n\t\t * Using postmessage enables us to work in situations where the\n\t\t * origins differ, such as a presentation being opened from the\n\t\t * file system.\n\t\t */\n\t\tfunction connect() {\n\t\t\t// Keep trying to connect until we get a 'connected' message back\n\t\t\tvar connectInterval = setInterval( function() {\n\t\t\t\tnotesPopup.postMessage( JSON.stringify( {\n\t\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\t\ttype: 'connect',\n\t\t\t\t\turl: window.location.protocol + '//' + window.location.host + window.location.pathname + window.location.search,\n\t\t\t\t\tstate: Reveal.getState()\n\t\t\t\t} ), '*' );\n\t\t\t}, 500 );\n\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\t\t\t\tvar data = JSON.parse( event.data );\n\t\t\t\tif( data && data.namespace === 'reveal-notes' && data.type === 'connected' ) {\n\t\t\t\t\tclearInterval( connectInterval );\n\t\t\t\t\tonConnected();\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t/**\n\t\t * Posts the current slide data to the notes window\n\t\t */\n\t\tfunction post() {\n\n\t\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\t\tvar messageData = {\n\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\ttype: 'state',\n\t\t\t\tnotes: '',\n\t\t\t\tmarkdown: false,\n\t\t\t\twhitespace: 'normal',\n\t\t\t\tstate: Reveal.getState()\n\t\t\t};\n\n\t\t\t// Look for notes defined in a slide attribute\n\t\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t\t\tmessageData.whitespace = 'pre-wrap';\n\t\t\t}\n\n\t\t\t// Look for notes defined in an aside element\n\t\t\tif( notesElement ) {\n\t\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t\t}\n\n\t\t\tnotesPopup.postMessage( JSON.stringify( messageData ), '*' );\n\n\t\t}\n\n\t\t/**\n\t\t * Called once we have established a connection to the notes\n\t\t * window.\n\t\t */\n\t\tfunction onConnected() {\n\n\t\t\t// Monitor events that trigger a change in state\n\t\t\tReveal.addEventListener( 'slidechanged', post );\n\t\t\tReveal.addEventListener( 'fragmentshown', post );\n\t\t\tReveal.addEventListener( 'fragmenthidden', post );\n\t\t\tReveal.addEventListener( 'overviewhidden', post );\n\t\t\tReveal.addEventListener( 'overviewshown', post );\n\t\t\tReveal.addEventListener( 'paused', post );\n\t\t\tReveal.addEventListener( 'resumed', post );\n\n\t\t\t// Post the initial state\n\t\t\tpost();\n\n\t\t}\n\n\t\tconnect();\n\t}\n\n\tif( !/receiver/i.test( window.location.search ) ) {\n\n\t\t// If the there's a 'notes' query set, open directly\n\t\tif( window.location.search.match( /(\\?|\\&)notes/gi ) !== null ) {\n\t\t\topenNotes();\n\t\t}\n\n\t\t// Open the notes when the 's' key is hit\n\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t// Disregard the event if the target is editable or a\n\t\t\t// modifier is present\n\t\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t\t// Disregard the event if keyboard is disabled\n\t\t\tif ( Reveal.getConfig().keyboard === false ) return;\n\n\t\t\tif( event.keyCode === 83 ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\topenNotes();\n\t\t\t}\n\t\t}, false );\n\n\t}\n\n\treturn { open: openNotes };\n\n})();\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/notes-server/client.js",
    "content": "(function() {\n\n\t// don't emit events from inside the previews themselves\n\tif( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar socket = io.connect( window.location.origin ),\n\t\tsocketId = Math.random().toString().slice( 2 );\n\n\tconsole.log( 'View slide notes at ' + window.location.origin + '/notes/' + socketId );\n\n\twindow.open( window.location.origin + '/notes/' + socketId, 'notes-' + socketId );\n\n\t/**\n\t * Posts the current slide data to the notes window\n\t */\n\tfunction post() {\n\n\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\tvar messageData = {\n\t\t\tnotes: '',\n\t\t\tmarkdown: false,\n\t\t\tsocketId: socketId,\n\t\t\tstate: Reveal.getState()\n\t\t};\n\n\t\t// Look for notes defined in a slide attribute\n\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// Look for notes defined in an aside element\n\t\tif( notesElement ) {\n\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t}\n\n\t\tsocket.emit( 'statechanged', messageData );\n\n\t}\n\n\t// When a new notes window connects, post our current state\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tpost();\n\t} );\n\n\t// When the state changes from inside of the speaker view\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tReveal.setState( data.state );\n\t} );\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n\t// Post the initial state\n\tpost();\n\n}());\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/notes-server/index.js",
    "content": "var http      = require('http');\nvar express   = require('express');\nvar fs        = require('fs');\nvar io        = require('socket.io');\nvar _         = require('underscore');\nvar Mustache  = require('mustache');\n\nvar app       = express();\nvar staticDir = express.static;\nvar server    = http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport :      1947,\n\tbaseDir :   __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tsocket.broadcast.emit( 'new-subscriber', data );\n\t});\n\n\tsocket.on( 'statechanged', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged', data );\n\t});\n\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged-speaker', data );\n\t});\n\n});\n\n[ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) {\n\tapp.use( '/' + dir, staticDir( opts.baseDir + dir ) );\n});\n\napp.get('/', function( req, res ) {\n\n\tres.writeHead( 200, { 'Content-Type': 'text/html' } );\n\tfs.createReadStream( opts.baseDir + '/index.html' ).pipe( res );\n\n});\n\napp.get( '/notes/:socketId', function( req, res ) {\n\n\tfs.readFile( opts.baseDir + 'plugin/notes-server/notes.html', function( err, data ) {\n\t\tres.send( Mustache.to_html( data.toString(), {\n\t\t\tsocketId : req.params.socketId\n\t\t}));\n\t});\n\n});\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nvar slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : '' );\n\nconsole.log( brown + 'reveal.js - Speaker Notes' + reset );\nconsole.log( '1. Open the slides at ' + green + slidesLocation + reset );\nconsole.log( '2. Click on the link your JS console to go to the notes page' );\nconsole.log( '3. Advance through your slides and your notes will advance automatically' );\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/notes-server/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"/socket.io/socket.io.js\"></script>\n\t\t<script src=\"/plugin/markdown/marked.js\"></script>\n\n\t\t<script>\n\t\t(function() {\n\n\t\t\tvar notes,\n\t\t\t\tnotesValue,\n\t\t\t\tcurrentState,\n\t\t\t\tcurrentSlide,\n\t\t\t\tupcomingSlide,\n\t\t\t\tconnected = false;\n\n\t\t\tvar socket = io.connect( window.location.origin ),\n\t\t\t\tsocketId = '{{socketId}}';\n\n\t\t\tsocket.on( 'statechanged', function( data ) {\n\n\t\t\t\t// ignore data from sockets that aren't ours\n\t\t\t\tif( data.socketId !== socketId ) { return; }\n\n\t\t\t\tif( connected === false ) {\n\t\t\t\t\tconnected = true;\n\n\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\tsetupNotes();\n\t\t\t\t\tsetupTimer();\n\n\t\t\t\t}\n\n\t\t\t\thandleStateMessage( data );\n\n\t\t\t} );\n\n\t\t\t// Load our presentation iframes\n\t\t\tsetupIframes();\n\n\t\t\t// Once the iframes have loaded, emit a signal saying there's\n\t\t\t// a new subscriber which will trigger a 'statechanged'\n\t\t\t// message to be sent back\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\tsocket.emit( 'new-subscriber', { socketId: socketId } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Messages sent by reveal.js inside of the current slide preview\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\tsocket.emit( 'statechanged-speaker', { state: data.state } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t/**\n\t\t\t * Called when the main window sends an updated state.\n\t\t\t */\n\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t// applying the same state\n\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\tif ( data.notes ) {\n\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t}\n\n\t\t\t\t// Update the note slides\n\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t}\n\n\t\t\t// Limit to max one state update per X ms\n\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t/**\n\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t * This enables keyboard events to work even if focus\n\t\t\t * isn't set on the current slide iframe.\n\t\t\t */\n\t\t\tfunction setupKeyboard() {\n\n\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Creates the preview iframes.\n\t\t\t */\n\t\t\tfunction setupIframes() {\n\n\t\t\t\tvar params = [\n\t\t\t\t\t'receiver',\n\t\t\t\t\t'progress=false',\n\t\t\t\t\t'history=false',\n\t\t\t\t\t'transition=none',\n\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t].join( '&' );\n\n\t\t\t\tvar currentURL = '/?' + params + '&postMessageEvents=true';\n\t\t\t\tvar upcomingURL = '/?' + params + '&controls=false';\n\n\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Setup the notes UI.\n\t\t\t */\n\t\t\tfunction setupNotes() {\n\n\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Create the timer and clock and start updating them\n\t\t\t * at an interval.\n\t\t\t */\n\t\t\tfunction setupTimer() {\n\n\t\t\t\tvar start = new Date(),\n\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t}\n\n\t\t\t\t// Update once directly\n\t\t\t\t_updateTimer();\n\n\t\t\t\t// Then update every second\n\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\tstart = new Date();\n\t\t\t\t\t_updateTimer();\n\t\t\t\t\treturn false;\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t */\n\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\tvar lastTime = 0,\n\t\t\t\t\ttimeout;\n\n\t\t\t\treturn function() {\n\n\t\t\t\t\tvar args = arguments;\n\t\t\t\t\tvar context = this;\n\n\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t})();\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/print-pdf/print-pdf.js",
    "content": "/**\n * phantomjs script for printing presentations to PDF.\n *\n * Example:\n * phantomjs print-pdf.js \"http://lab.hakim.se/reveal-js?print-pdf\" reveal-demo.pdf\n *\n * By Manuel Bieh (https://github.com/manuelbieh)\n */\n\n// html2pdf.js\nvar page = new WebPage();\nvar system = require( 'system' );\n\nvar slideWidth = system.args[3] ? system.args[3].split( 'x' )[0] : 960;\nvar slideHeight = system.args[3] ? system.args[3].split( 'x' )[1] : 700;\n\npage.viewportSize = {\n\twidth: slideWidth,\n\theight: slideHeight\n};\n\n// TODO\n// Something is wrong with these config values. An input\n// paper width of 1920px actually results in a 756px wide\n// PDF.\npage.paperSize = {\n\twidth: Math.round( slideWidth * 2 ),\n\theight: Math.round( slideHeight * 2 ),\n\tborder: 0\n};\n\nvar inputFile = system.args[1] || 'index.html?print-pdf';\nvar outputFile = system.args[2] || 'slides.pdf';\n\nif( outputFile.match( /\\.pdf$/gi ) === null ) {\n\toutputFile += '.pdf';\n}\n\nconsole.log( 'Printing PDF (Paper size: '+ page.paperSize.width + 'x' + page.paperSize.height +')' );\n\npage.open( inputFile, function( status ) {\n\twindow.setTimeout( function() {\n\t\tconsole.log( 'Printed succesfully' );\n\t\tpage.render( outputFile );\n\t\tphantom.exit();\n\t}, 1000 );\n} );\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/search/search.js",
    "content": "/*\n * Handles finding a text string anywhere in the slides and showing the next occurrence to the user\n * by navigatating to that slide and highlighting it.\n *\n * By Jon Snyder <snyder.jon@gmail.com>, February 2013\n */\n\nvar RevealSearch = (function() {\n\n\tvar matchedSlides;\n\tvar currentMatchedIndex;\n\tvar searchboxDirty;\n\tvar myHilitor;\n\n// Original JavaScript code by Chirp Internet: www.chirp.com.au\n// Please acknowledge use of this code by including this header.\n// 2/2013 jon: modified regex to display any match, not restricted to word boundaries.\n\nfunction Hilitor(id, tag)\n{\n\n  var targetNode = document.getElementById(id) || document.body;\n  var hiliteTag = tag || \"EM\";\n  var skipTags = new RegExp(\"^(?:\" + hiliteTag + \"|SCRIPT|FORM|SPAN)$\");\n  var colors = [\"#ff6\", \"#a0ffff\", \"#9f9\", \"#f99\", \"#f6f\"];\n  var wordColor = [];\n  var colorIdx = 0;\n  var matchRegex = \"\";\n  var matchingSlides = [];\n\n  this.setRegex = function(input)\n  {\n    input = input.replace(/^[^\\w]+|[^\\w]+$/g, \"\").replace(/[^\\w'-]+/g, \"|\");\n    matchRegex = new RegExp(\"(\" + input + \")\",\"i\");\n  }\n\n  this.getRegex = function()\n  {\n    return matchRegex.toString().replace(/^\\/\\\\b\\(|\\)\\\\b\\/i$/g, \"\").replace(/\\|/g, \" \");\n  }\n\n  // recursively apply word highlighting\n  this.hiliteWords = function(node)\n  {\n    if(node == undefined || !node) return;\n    if(!matchRegex) return;\n    if(skipTags.test(node.nodeName)) return;\n\n    if(node.hasChildNodes()) {\n      for(var i=0; i < node.childNodes.length; i++)\n        this.hiliteWords(node.childNodes[i]);\n    }\n    if(node.nodeType == 3) { // NODE_TEXT\n      if((nv = node.nodeValue) && (regs = matchRegex.exec(nv))) {\n      \t//find the slide's section element and save it in our list of matching slides\n      \tvar secnode = node.parentNode;\n      \twhile (secnode.nodeName != 'SECTION') {\n      \t\tsecnode = secnode.parentNode;\n      \t}\n      \t\n      \tvar slideIndex = Reveal.getIndices(secnode);\n      \tvar slidelen = matchingSlides.length;\n      \tvar alreadyAdded = false;\n      \tfor (var i=0; i < slidelen; i++) {\n      \t\tif ( (matchingSlides[i].h === slideIndex.h) && (matchingSlides[i].v === slideIndex.v) ) {\n      \t\t\talreadyAdded = true;\n      \t\t}\n      \t}\n      \tif (! alreadyAdded) {\n      \t\tmatchingSlides.push(slideIndex);\n      \t}\n      \t\n        if(!wordColor[regs[0].toLowerCase()]) {\n          wordColor[regs[0].toLowerCase()] = colors[colorIdx++ % colors.length];\n        }\n\n        var match = document.createElement(hiliteTag);\n        match.appendChild(document.createTextNode(regs[0]));\n        match.style.backgroundColor = wordColor[regs[0].toLowerCase()];\n        match.style.fontStyle = \"inherit\";\n        match.style.color = \"#000\";\n\n        var after = node.splitText(regs.index);\n        after.nodeValue = after.nodeValue.substring(regs[0].length);\n        node.parentNode.insertBefore(match, after);\n      }\n    }\n  };\n\n  // remove highlighting\n  this.remove = function()\n  {\n    var arr = document.getElementsByTagName(hiliteTag);\n    while(arr.length && (el = arr[0])) {\n      el.parentNode.replaceChild(el.firstChild, el);\n    }\n  };\n\n  // start highlighting at target node\n  this.apply = function(input)\n  {\n    if(input == undefined || !input) return;\n    this.remove();\n    this.setRegex(input);\n    this.hiliteWords(targetNode);\n    return matchingSlides;\n  };\n\n}\n\n\tfunction openSearch() {\n\t\t//ensure the search term input dialog is visible and has focus:\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tinputbox.style.display = \"inline\";\n\t\tinputbox.focus();\n\t\tinputbox.select();\n\t}\n\n\tfunction toggleSearch() {\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tif (inputbox.style.display !== \"inline\") {\n\t\t\topenSearch();\n\t\t}\n\t\telse {\n\t\t\tinputbox.style.display = \"none\";\n\t\t\tmyHilitor.remove();\n\t\t}\n\t}\n\n\tfunction doSearch() {\n\t\t//if there's been a change in the search term, perform a new search:\n\t\tif (searchboxDirty) {\n\t\t\tvar searchstring = document.getElementById(\"searchinput\").value;\n\n\t\t\t//find the keyword amongst the slides\n\t\t\tmyHilitor = new Hilitor(\"slidecontent\");\n\t\t\tmatchedSlides = myHilitor.apply(searchstring);\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\n\t\t//navigate to the next slide that has the keyword, wrapping to the first if necessary\n\t\tif (matchedSlides.length && (matchedSlides.length <= currentMatchedIndex)) {\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\t\tif (matchedSlides.length > currentMatchedIndex) {\n\t\t\tReveal.slide(matchedSlides[currentMatchedIndex].h, matchedSlides[currentMatchedIndex].v);\n\t\t\tcurrentMatchedIndex++;\n\t\t}\n\t}\n\n\tvar dom = {};\n\tdom.wrapper = document.querySelector( '.reveal' );\n\n\tif( !dom.wrapper.querySelector( '.searchbox' ) ) {\n\t\t\tvar searchElement = document.createElement( 'div' );\n\t\t\tsearchElement.id = \"searchinputdiv\";\n\t\t\tsearchElement.classList.add( 'searchdiv' );\n      searchElement.style.position = 'absolute';\n      searchElement.style.top = '10px';\n      searchElement.style.left = '10px';\n      //embedded base64 search icon Designed by Sketchdock - http://www.sketchdock.com/:\n\t\t\tsearchElement.innerHTML = '<span><input type=\"search\" id=\"searchinput\" class=\"searchinput\" style=\"vertical-align: top;\"/><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJiSURBVHjatFZNaxNBGH5md+Mmu92NVdKDRipSAyqCghgQD4L4cRe86UUtAQ+eFCxoa4/25EXBFi8eBE+eRPoDhB6KgiiixdAPCEkx2pjvTXadd9yNsflwuyUDD/O+u8PzzDPvzOwyx3EwyCZhwG3gAkp7MnpjgbopjsltcD4gjuXZZKeAR348MYLYTm3LzOs/y3j3JTfZxgXWXmTuwPHIc4VmoOmv5IrI53+AO2DdHLjkDWQ3GoEEVFXtXQOvkSnPWcyUceviLhwbDYv8/XIVj97kse7TodLvZXxYxrPUHkQ1ufXs3FEdybEIxucySOesoNvUgWU1cP3MkCBfTFdw9fGaAMVmRELq7LBw2Q3/FaAxxWIRpw+ZIr/7IouPqzUBiqmdHAv7EuhRAwf1er2Vy4x1jW3b2d5Jfvu5IPp7l2LYbcgCFFNb+FoJ7oBqEAqFMPNqFcmEgVMJDfMT+1tvN0pNjERlMS6QA5pFOKxiKVPFhakPeL3It+WGJUDxt2wFR+JhzI7v5ctkd8DXOZAkCYYxhO+lKm4+Xfqz/rIixBuNBl7eOYzkQQNzqX249mRl6zUgEcYkaJrGhUwBinVdh6IouPzwE6/DL5w4oLkH8y981aDf+uq6hlKpJESiUdNfDZi7/ehG9K6KfiA3pml0PLcsq+cSMTj2NL9ukc4UOmz7AZ3+crkC4mHujFvXNaMFB3bEr8xPS6p5O+jXxq4VZtaen7/PwzrntjcLUE0iHPS1Ud1cdiEJl/8WivZk0wXd7zWOMkeF8s0CcAmkNrC2nvXZDbbbN73ccYnZoH9bfgswAFzAe9/h3dbKAAAAAElFTkSuQmCC\" id=\"searchbutton\" class=\"searchicon\" style=\"vertical-align: top; margin-top: -1px;\"/></span>';\n\t\t\tdom.wrapper.appendChild( searchElement );\n\t}\n\n\tdocument.getElementById(\"searchbutton\").addEventListener( 'click', function(event) {\n\t\tdoSearch();\n\t}, false );\n\n\tdocument.getElementById(\"searchinput\").addEventListener( 'keyup', function( event ) {\n\t\tswitch (event.keyCode) {\n\t\t\tcase 13:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tdoSearch();\n\t\t\t\tsearchboxDirty = false;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tsearchboxDirty = true;\n\t\t}\n\t}, false );\n\n\t// Open the search when the 's' key is hit (yes, this conflicts with the notes plugin, disabling for now)\n\t/*\n\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t// Disregard the event if the target is editable or a\n\t\t// modifier is present\n\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\tif( event.keyCode === 83 ) {\n\t\t\tevent.preventDefault();\n\t\t\topenSearch();\n\t\t}\n\t}, false );\n*/\n\treturn { open: openSearch };\n})();\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/plugin/zoom-js/zoom.js",
    "content": "// Custom reveal.js integration\n(function(){\n\tvar isEnabled = true;\n\n\tdocument.querySelector( '.reveal .slides' ).addEventListener( 'mousedown', function( event ) {\n\t\tvar modifier = ( Reveal.getConfig().zoomKey ? Reveal.getConfig().zoomKey : 'alt' ) + 'Key';\n\n\t\tvar zoomPadding = 20;\n\t\tvar revealScale = Reveal.getScale();\n\n\t\tif( event[ modifier ] && isEnabled ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar bounds = event.target.getBoundingClientRect();\n\n\t\t\tzoom.to({\n\t\t\t\tx: ( bounds.left * revealScale ) - zoomPadding,\n\t\t\t\ty: ( bounds.top * revealScale ) - zoomPadding,\n\t\t\t\twidth: ( bounds.width * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\theight: ( bounds.height * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\tpan: false\n\t\t\t});\n\t\t}\n\t} );\n\n\tReveal.addEventListener( 'overviewshown', function() { isEnabled = false; } );\n\tReveal.addEventListener( 'overviewhidden', function() { isEnabled = true; } );\n})();\n\n/*!\n * zoom.js 0.3 (modified for use with reveal.js)\n * http://lab.hakim.se/zoom-js\n * MIT licensed\n *\n * Copyright (C) 2011-2014 Hakim El Hattab, http://hakim.se\n */\nvar zoom = (function(){\n\n\t// The current zoom level (scale)\n\tvar level = 1;\n\n\t// The current mouse position, used for panning\n\tvar mouseX = 0,\n\t\tmouseY = 0;\n\n\t// Timeout before pan is activated\n\tvar panEngageTimeout = -1,\n\t\tpanUpdateInterval = -1;\n\n\t// Check for transform support so that we can fallback otherwise\n\tvar supportsTransforms = \t'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\tif( supportsTransforms ) {\n\t\t// The easing that will be applied when we zoom in/out\n\t\tdocument.body.style.transition = 'transform 0.8s ease';\n\t\tdocument.body.style.OTransition = '-o-transform 0.8s ease';\n\t\tdocument.body.style.msTransition = '-ms-transform 0.8s ease';\n\t\tdocument.body.style.MozTransition = '-moz-transform 0.8s ease';\n\t\tdocument.body.style.WebkitTransition = '-webkit-transform 0.8s ease';\n\t}\n\n\t// Zoom out if the user hits escape\n\tdocument.addEventListener( 'keyup', function( event ) {\n\t\tif( level !== 1 && event.keyCode === 27 ) {\n\t\t\tzoom.out();\n\t\t}\n\t} );\n\n\t// Monitor mouse movement for panning\n\tdocument.addEventListener( 'mousemove', function( event ) {\n\t\tif( level !== 1 ) {\n\t\t\tmouseX = event.clientX;\n\t\t\tmouseY = event.clientY;\n\t\t}\n\t} );\n\n\t/**\n\t * Applies the CSS required to zoom in, prefers the use of CSS3\n\t * transforms but falls back on zoom for IE.\n\t *\n\t * @param {Object} rect\n\t * @param {Number} scale\n\t */\n\tfunction magnify( rect, scale ) {\n\n\t\tvar scrollOffset = getScrollOffset();\n\n\t\t// Ensure a width/height is set\n\t\trect.width = rect.width || 1;\n\t\trect.height = rect.height || 1;\n\n\t\t// Center the rect within the zoomed viewport\n\t\trect.x -= ( window.innerWidth - ( rect.width * scale ) ) / 2;\n\t\trect.y -= ( window.innerHeight - ( rect.height * scale ) ) / 2;\n\n\t\tif( supportsTransforms ) {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.transform = '';\n\t\t\t\tdocument.body.style.OTransform = '';\n\t\t\t\tdocument.body.style.msTransform = '';\n\t\t\t\tdocument.body.style.MozTransform = '';\n\t\t\t\tdocument.body.style.WebkitTransform = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tvar origin = scrollOffset.x +'px '+ scrollOffset.y +'px',\n\t\t\t\t\ttransform = 'translate('+ -rect.x +'px,'+ -rect.y +'px) scale('+ scale +')';\n\n\t\t\t\tdocument.body.style.transformOrigin = origin;\n\t\t\t\tdocument.body.style.OTransformOrigin = origin;\n\t\t\t\tdocument.body.style.msTransformOrigin = origin;\n\t\t\t\tdocument.body.style.MozTransformOrigin = origin;\n\t\t\t\tdocument.body.style.WebkitTransformOrigin = origin;\n\n\t\t\t\tdocument.body.style.transform = transform;\n\t\t\t\tdocument.body.style.OTransform = transform;\n\t\t\t\tdocument.body.style.msTransform = transform;\n\t\t\t\tdocument.body.style.MozTransform = transform;\n\t\t\t\tdocument.body.style.WebkitTransform = transform;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.position = '';\n\t\t\t\tdocument.body.style.left = '';\n\t\t\t\tdocument.body.style.top = '';\n\t\t\t\tdocument.body.style.width = '';\n\t\t\t\tdocument.body.style.height = '';\n\t\t\t\tdocument.body.style.zoom = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tdocument.body.style.position = 'relative';\n\t\t\t\tdocument.body.style.left = ( - ( scrollOffset.x + rect.x ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.top = ( - ( scrollOffset.y + rect.y ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.width = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.height = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.zoom = scale;\n\t\t\t}\n\t\t}\n\n\t\tlevel = scale;\n\n\t\tif( document.documentElement.classList ) {\n\t\t\tif( level !== 1 ) {\n\t\t\t\tdocument.documentElement.classList.add( 'zoomed' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdocument.documentElement.classList.remove( 'zoomed' );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Pan the document when the mosue cursor approaches the edges\n\t * of the window.\n\t */\n\tfunction pan() {\n\t\tvar range = 0.12,\n\t\t\trangeX = window.innerWidth * range,\n\t\t\trangeY = window.innerHeight * range,\n\t\t\tscrollOffset = getScrollOffset();\n\n\t\t// Up\n\t\tif( mouseY < rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y - ( 1 - ( mouseY / rangeY ) ) * ( 14 / level ) );\n\t\t}\n\t\t// Down\n\t\telse if( mouseY > window.innerHeight - rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y + ( 1 - ( window.innerHeight - mouseY ) / rangeY ) * ( 14 / level ) );\n\t\t}\n\n\t\t// Left\n\t\tif( mouseX < rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x - ( 1 - ( mouseX / rangeX ) ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t\t// Right\n\t\telse if( mouseX > window.innerWidth - rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x + ( 1 - ( window.innerWidth - mouseX ) / rangeX ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t}\n\n\tfunction getScrollOffset() {\n\t\treturn {\n\t\t\tx: window.scrollX !== undefined ? window.scrollX : window.pageXOffset,\n\t\t\ty: window.scrollY !== undefined ? window.scrollY : window.pageYOffset\n\t\t}\n\t}\n\n\treturn {\n\t\t/**\n\t\t * Zooms in on either a rectangle or HTML element.\n\t\t *\n\t\t * @param {Object} options\n\t\t *   - element: HTML element to zoom in on\n\t\t *   OR\n\t\t *   - x/y: coordinates in non-transformed space to zoom in on\n\t\t *   - width/height: the portion of the screen to zoom in on\n\t\t *   - scale: can be used instead of width/height to explicitly set scale\n\t\t */\n\t\tto: function( options ) {\n\n\t\t\t// Due to an implementation limitation we can't zoom in\n\t\t\t// to another element without zooming out first\n\t\t\tif( level !== 1 ) {\n\t\t\t\tzoom.out();\n\t\t\t}\n\t\t\telse {\n\t\t\t\toptions.x = options.x || 0;\n\t\t\t\toptions.y = options.y || 0;\n\n\t\t\t\t// If an element is set, that takes precedence\n\t\t\t\tif( !!options.element ) {\n\t\t\t\t\t// Space around the zoomed in element to leave on screen\n\t\t\t\t\tvar padding = 20;\n\t\t\t\t\tvar bounds = options.element.getBoundingClientRect();\n\n\t\t\t\t\toptions.x = bounds.left - padding;\n\t\t\t\t\toptions.y = bounds.top - padding;\n\t\t\t\t\toptions.width = bounds.width + ( padding * 2 );\n\t\t\t\t\toptions.height = bounds.height + ( padding * 2 );\n\t\t\t\t}\n\n\t\t\t\t// If width/height values are set, calculate scale from those values\n\t\t\t\tif( options.width !== undefined && options.height !== undefined ) {\n\t\t\t\t\toptions.scale = Math.max( Math.min( window.innerWidth / options.width, window.innerHeight / options.height ), 1 );\n\t\t\t\t}\n\n\t\t\t\tif( options.scale > 1 ) {\n\t\t\t\t\toptions.x *= options.scale;\n\t\t\t\t\toptions.y *= options.scale;\n\n\t\t\t\t\tmagnify( options, options.scale );\n\n\t\t\t\t\tif( options.pan !== false ) {\n\n\t\t\t\t\t\t// Wait with engaging panning as it may conflict with the\n\t\t\t\t\t\t// zoom transition\n\t\t\t\t\t\tpanEngageTimeout = setTimeout( function() {\n\t\t\t\t\t\t\tpanUpdateInterval = setInterval( pan, 1000 / 60 );\n\t\t\t\t\t\t}, 800 );\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * Resets the document zoom state to its default.\n\t\t */\n\t\tout: function() {\n\t\t\tclearTimeout( panEngageTimeout );\n\t\t\tclearInterval( panUpdateInterval );\n\n\t\t\tmagnify( { x: 0, y: 0 }, 1 );\n\n\t\t\tlevel = 1;\n\t\t},\n\n\t\t// Alias\n\t\tmagnify: function( options ) { this.to( options ) },\n\t\treset: function() { this.out() },\n\n\t\tzoomLevel: function() {\n\t\t\treturn level;\n\t\t}\n\t}\n\n})();\n\n\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/examples/barebones.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Barebones</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Barebones Presentation</h2>\n\t\t\t\t\t<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>No Theme</h2>\n\t\t\t\t\t<p>There's no theme included, so it will fall back on browser defaults.</p>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize();\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/examples/embedded-media.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Embedded Media</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/default.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Embedded Media Test</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<iframe data-autoplay width=\"420\" height=\"345\" src=\"http://www.youtube.com/embed/l3RQZ4mcr1c\"></iframe>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Empty Slide</h2>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\ttransition: 'linear'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/examples/math.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Math Plugin</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/night.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>reveal.js Math Plugin</h2>\n\t\t\t\t\t<p>A thin wrapper for MathJax</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t<script type=\"math/tex; mode=display\">\n\t\t\t\t\t\t\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right) \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\t\t\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\thistory: true,\n\t\t\t\ttransition: 'linear',\n\n\t\t\t\tmath: {\n\t\t\t\t\t// mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\t\t\t\tconfig: 'TeX-AMS_HTML-full'\n\t\t\t\t},\n\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js' },\n\t\t\t\t\t{ src: '../../plugin/math/math.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/examples/slide-backgrounds.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Backgrounds</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/serif.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h2 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h2 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background=\"#00ffff\">\n\t\t\t\t\t<h2>data-background: #00ffff</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#bb00bb\">\n\t\t\t\t\t<h2>data-background: #bb00bb</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-color=\"lightblue\">\n\t\t\t\t\t<h2>data-background: lightblue</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#ff0000\">\n\t\t\t\t\t\t<h2>data-background: #ff0000</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgba(0, 0, 0, 0.2)\">\n\t\t\t\t\t\t<h2>data-background: rgba(0, 0, 0, 0.2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"salmon\">\n\t\t\t\t\t\t<h2>data-background: salmon</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"rgba(0, 100, 100, 0.2)\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgb(66, 66, 66)\">\n\t\t\t\t\t\t<h2>Background applied to slide inside of stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"assets/image2.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t<pre>data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\"</pre>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (1/2)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (2/2)</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\">\n\t\t\t\t\t<h2>Video background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-iframe=\"https://slides.com\">\n\t\t\t\t\t<h2>Iframe background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (1/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (2/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t<h2>Same background from horizontal to vertical (1/3)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (2/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (3/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available here:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\t// rtl: true,\n\n\t\t\t\ttransition: 'linear',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/examples/slide-transitions.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Transitions</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h3 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h3 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t<h3>data-transition: zoom</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom-in fade-out\">\n\t\t\t\t\t<h3>data-transition: zoom-in fade-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex\">\n\t\t\t\t\t<h3>data-transition: convex</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex-in concave-out\">\n\t\t\t\t\t<h3>data-transition: convex-in concave-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"concave\">\n\t\t\t\t\t\t<h3>data-transition: concave</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"convex-in fade-out\">\n\t\t\t\t\t\t<h3>data-transition: convex-in fade-out</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"none\">\n\t\t\t\t\t<h3>data-transition: none</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\thistory: true,\n\n\t\t\t\t// transition: 'slide',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/qunit-1.12.0.css",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2012 jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n/** Font Family and Sizes */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {\n\tfont-family: \"Helvetica Neue Light\", \"HelveticaNeue-Light\", \"Helvetica Neue\", Calibri, Helvetica, Arial, sans-serif;\n}\n\n#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }\n#qunit-tests { font-size: smaller; }\n\n\n/** Resets */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n\n/** Header */\n\n#qunit-header {\n\tpadding: 0.5em 0 0.5em 1em;\n\n\tcolor: #8699a4;\n\tbackground-color: #0d3349;\n\n\tfont-size: 1.5em;\n\tline-height: 1em;\n\tfont-weight: normal;\n\n\tborder-radius: 5px 5px 0 0;\n\t-moz-border-radius: 5px 5px 0 0;\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-top-left-radius: 5px;\n}\n\n#qunit-header a {\n\ttext-decoration: none;\n\tcolor: #c2ccd1;\n}\n\n#qunit-header a:hover,\n#qunit-header a:focus {\n\tcolor: #fff;\n}\n\n#qunit-testrunner-toolbar label {\n\tdisplay: inline-block;\n\tpadding: 0 .5em 0 .1em;\n}\n\n#qunit-banner {\n\theight: 5px;\n}\n\n#qunit-testrunner-toolbar {\n\tpadding: 0.5em 0 0.5em 2em;\n\tcolor: #5E740B;\n\tbackground-color: #eee;\n\toverflow: hidden;\n}\n\n#qunit-userAgent {\n\tpadding: 0.5em 0 0.5em 2.5em;\n\tbackground-color: #2b81af;\n\tcolor: #fff;\n\ttext-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;\n}\n\n#qunit-modulefilter-container {\n\tfloat: right;\n}\n\n/** Tests: Pass/Fail */\n\n#qunit-tests {\n\tlist-style-position: inside;\n}\n\n#qunit-tests li {\n\tpadding: 0.4em 0.5em 0.4em 2.5em;\n\tborder-bottom: 1px solid #fff;\n\tlist-style-position: inside;\n}\n\n#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {\n\tdisplay: none;\n}\n\n#qunit-tests li strong {\n\tcursor: pointer;\n}\n\n#qunit-tests li a {\n\tpadding: 0.5em;\n\tcolor: #c2ccd1;\n\ttext-decoration: none;\n}\n#qunit-tests li a:hover,\n#qunit-tests li a:focus {\n\tcolor: #000;\n}\n\n#qunit-tests li .runtime {\n\tfloat: right;\n\tfont-size: smaller;\n}\n\n.qunit-assert-list {\n\tmargin-top: 0.5em;\n\tpadding: 0.5em;\n\n\tbackground-color: #fff;\n\n\tborder-radius: 5px;\n\t-moz-border-radius: 5px;\n\t-webkit-border-radius: 5px;\n}\n\n.qunit-collapsed {\n\tdisplay: none;\n}\n\n#qunit-tests table {\n\tborder-collapse: collapse;\n\tmargin-top: .2em;\n}\n\n#qunit-tests th {\n\ttext-align: right;\n\tvertical-align: top;\n\tpadding: 0 .5em 0 0;\n}\n\n#qunit-tests td {\n\tvertical-align: top;\n}\n\n#qunit-tests pre {\n\tmargin: 0;\n\twhite-space: pre-wrap;\n\tword-wrap: break-word;\n}\n\n#qunit-tests del {\n\tbackground-color: #e0f2be;\n\tcolor: #374e0c;\n\ttext-decoration: none;\n}\n\n#qunit-tests ins {\n\tbackground-color: #ffcaca;\n\tcolor: #500;\n\ttext-decoration: none;\n}\n\n/*** Test Counts */\n\n#qunit-tests b.counts                       { color: black; }\n#qunit-tests b.passed                       { color: #5E740B; }\n#qunit-tests b.failed                       { color: #710909; }\n\n#qunit-tests li li {\n\tpadding: 5px;\n\tbackground-color: #fff;\n\tborder-bottom: none;\n\tlist-style-position: inside;\n}\n\n/*** Passing Styles */\n\n#qunit-tests li li.pass {\n\tcolor: #3c510c;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #C6E746;\n}\n\n#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }\n#qunit-tests .pass .test-name               { color: #366097; }\n\n#qunit-tests .pass .test-actual,\n#qunit-tests .pass .test-expected           { color: #999999; }\n\n#qunit-banner.qunit-pass                    { background-color: #C6E746; }\n\n/*** Failing Styles */\n\n#qunit-tests li li.fail {\n\tcolor: #710909;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #EE5757;\n\twhite-space: pre;\n}\n\n#qunit-tests > li:last-child {\n\tborder-radius: 0 0 5px 5px;\n\t-moz-border-radius: 0 0 5px 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n}\n\n#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }\n#qunit-tests .fail .test-name,\n#qunit-tests .fail .module-name             { color: #000000; }\n\n#qunit-tests .fail .test-actual             { color: #EE5757; }\n#qunit-tests .fail .test-expected           { color: green;   }\n\n#qunit-banner.qunit-fail                    { background-color: #EE5757; }\n\n\n/** Result */\n\n#qunit-testresult {\n\tpadding: 0.5em 0.5em 0.5em 2.5em;\n\n\tcolor: #2b81af;\n\tbackground-color: #D2E0E6;\n\n\tborder-bottom: 1px solid white;\n}\n#qunit-testresult .module-name {\n\tfont-weight: bold;\n}\n\n/** Fixture */\n\n#qunit-fixture {\n\tposition: absolute;\n\ttop: -10000px;\n\tleft: -10000px;\n\twidth: 1000px;\n\theight: 1000px;\n}"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/qunit-1.12.0.js",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2013 jQuery Foundation and other contributors\n * Released under the MIT license.\n * https://jquery.org/license/\n */\n\n(function( window ) {\n\nvar QUnit,\n\tassert,\n\tconfig,\n\tonErrorFnPrev,\n\ttestId = 0,\n\tfileName = (sourceFromStacktrace( 0 ) || \"\" ).replace(/(:\\d+)+\\)?/, \"\").replace(/.+\\//, \"\"),\n\ttoString = Object.prototype.toString,\n\thasOwn = Object.prototype.hasOwnProperty,\n\t// Keep a local reference to Date (GH-283)\n\tDate = window.Date,\n\tsetTimeout = window.setTimeout,\n\tdefined = {\n\t\tsetTimeout: typeof window.setTimeout !== \"undefined\",\n\t\tsessionStorage: (function() {\n\t\t\tvar x = \"qunit-test-string\";\n\t\t\ttry {\n\t\t\t\tsessionStorage.setItem( x, x );\n\t\t\t\tsessionStorage.removeItem( x );\n\t\t\t\treturn true;\n\t\t\t} catch( e ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}())\n\t},\n\t/**\n\t * Provides a normalized error string, correcting an issue\n\t * with IE 7 (and prior) where Error.prototype.toString is\n\t * not properly implemented\n\t *\n\t * Based on http://es5.github.com/#x15.11.4.4\n\t *\n\t * @param {String|Error} error\n\t * @return {String} error message\n\t */\n\terrorString = function( error ) {\n\t\tvar name, message,\n\t\t\terrorString = error.toString();\n\t\tif ( errorString.substring( 0, 7 ) === \"[object\" ) {\n\t\t\tname = error.name ? error.name.toString() : \"Error\";\n\t\t\tmessage = error.message ? error.message.toString() : \"\";\n\t\t\tif ( name && message ) {\n\t\t\t\treturn name + \": \" + message;\n\t\t\t} else if ( name ) {\n\t\t\t\treturn name;\n\t\t\t} else if ( message ) {\n\t\t\t\treturn message;\n\t\t\t} else {\n\t\t\t\treturn \"Error\";\n\t\t\t}\n\t\t} else {\n\t\t\treturn errorString;\n\t\t}\n\t},\n\t/**\n\t * Makes a clone of an object using only Array or Object as base,\n\t * and copies over the own enumerable properties.\n\t *\n\t * @param {Object} obj\n\t * @return {Object} New object with only the own properties (recursively).\n\t */\n\tobjectValues = function( obj ) {\n\t\t// Grunt 0.3.x uses an older version of jshint that still has jshint/jshint#392.\n\t\t/*jshint newcap: false */\n\t\tvar key, val,\n\t\t\tvals = QUnit.is( \"array\", obj ) ? [] : {};\n\t\tfor ( key in obj ) {\n\t\t\tif ( hasOwn.call( obj, key ) ) {\n\t\t\t\tval = obj[key];\n\t\t\t\tvals[key] = val === Object(val) ? objectValues(val) : val;\n\t\t\t}\n\t\t}\n\t\treturn vals;\n\t};\n\nfunction Test( settings ) {\n\textend( this, settings );\n\tthis.assertions = [];\n\tthis.testNumber = ++Test.count;\n}\n\nTest.count = 0;\n\nTest.prototype = {\n\tinit: function() {\n\t\tvar a, b, li,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tif ( tests ) {\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml;\n\n\t\t\t// `a` initialized at top of scope\n\t\t\ta = document.createElement( \"a\" );\n\t\t\ta.innerHTML = \"Rerun\";\n\t\t\ta.href = QUnit.url({ testNumber: this.testNumber });\n\n\t\t\tli = document.createElement( \"li\" );\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.className = \"running\";\n\t\t\tli.id = this.id = \"qunit-test-output\" + testId++;\n\n\t\t\ttests.appendChild( li );\n\t\t}\n\t},\n\tsetup: function() {\n\t\tif (\n\t\t\t// Emit moduleStart when we're switching from one module to another\n\t\t\tthis.module !== config.previousModule ||\n\t\t\t\t// They could be equal (both undefined) but if the previousModule property doesn't\n\t\t\t\t// yet exist it means this is the first test in a suite that isn't wrapped in a\n\t\t\t\t// module, in which case we'll just emit a moduleStart event for 'undefined'.\n\t\t\t\t// Without this, reporters can get testStart before moduleStart  which is a problem.\n\t\t\t\t!hasOwn.call( config, \"previousModule\" )\n\t\t) {\n\t\t\tif ( hasOwn.call( config, \"previousModule\" ) ) {\n\t\t\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\t\t\tname: config.previousModule,\n\t\t\t\t\tfailed: config.moduleStats.bad,\n\t\t\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\t\t\ttotal: config.moduleStats.all\n\t\t\t\t});\n\t\t\t}\n\t\t\tconfig.previousModule = this.module;\n\t\t\tconfig.moduleStats = { all: 0, bad: 0 };\n\t\t\trunLoggingCallbacks( \"moduleStart\", QUnit, {\n\t\t\t\tname: this.module\n\t\t\t});\n\t\t}\n\n\t\tconfig.current = this;\n\n\t\tthis.testEnvironment = extend({\n\t\t\tsetup: function() {},\n\t\t\tteardown: function() {}\n\t\t}, this.moduleTestEnvironment );\n\n\t\tthis.started = +new Date();\n\t\trunLoggingCallbacks( \"testStart\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module\n\t\t});\n\n\t\t/*jshint camelcase:false */\n\n\n\t\t/**\n\t\t * Expose the current test environment.\n\t\t *\n\t\t * @deprecated since 1.12.0: Use QUnit.config.current.testEnvironment instead.\n\t\t */\n\t\tQUnit.current_testEnvironment = this.testEnvironment;\n\n\t\t/*jshint camelcase:true */\n\n\t\tif ( !config.pollution ) {\n\t\t\tsaveGlobal();\n\t\t}\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t}\n\t\ttry {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t} catch( e ) {\n\t\t\tQUnit.pushFailure( \"Setup failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t}\n\t},\n\trun: function() {\n\t\tconfig.current = this;\n\n\t\tvar running = id( \"qunit-testresult\" );\n\n\t\tif ( running ) {\n\t\t\trunning.innerHTML = \"Running: <br/>\" + this.nameHtml;\n\t\t}\n\n\t\tif ( this.async ) {\n\t\t\tQUnit.stop();\n\t\t}\n\n\t\tthis.callbackStarted = +new Date();\n\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\treturn;\n\t\t}\n\n\t\ttry {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t} catch( e ) {\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\n\t\t\tQUnit.pushFailure( \"Died on test #\" + (this.assertions.length + 1) + \" \" + this.stack + \": \" + ( e.message || e ), extractStacktrace( e, 0 ) );\n\t\t\t// else next test will carry the responsibility\n\t\t\tsaveGlobal();\n\n\t\t\t// Restart the tests if they're blocking\n\t\t\tif ( config.blocking ) {\n\t\t\t\tQUnit.start();\n\t\t\t}\n\t\t}\n\t},\n\tteardown: function() {\n\t\tconfig.current = this;\n\t\tif ( config.notrycatch ) {\n\t\t\tif ( typeof this.callbackRuntime === \"undefined\" ) {\n\t\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\t}\n\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\t} catch( e ) {\n\t\t\t\tQUnit.pushFailure( \"Teardown failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t\t}\n\t\t}\n\t\tcheckPollution();\n\t},\n\tfinish: function() {\n\t\tconfig.current = this;\n\t\tif ( config.requireExpects && this.expected === null ) {\n\t\t\tQUnit.pushFailure( \"Expected number of assertions to be defined, but expect() was not called.\", this.stack );\n\t\t} else if ( this.expected !== null && this.expected !== this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected \" + this.expected + \" assertions, but \" + this.assertions.length + \" were run\", this.stack );\n\t\t} else if ( this.expected === null && !this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected at least one assertion, but none were run - call expect(0) to accept zero assertions.\", this.stack );\n\t\t}\n\n\t\tvar i, assertion, a, b, time, li, ol,\n\t\t\ttest = this,\n\t\t\tgood = 0,\n\t\t\tbad = 0,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tthis.runtime = +new Date() - this.started;\n\t\tconfig.stats.all += this.assertions.length;\n\t\tconfig.moduleStats.all += this.assertions.length;\n\n\t\tif ( tests ) {\n\t\t\tol = document.createElement( \"ol\" );\n\t\t\tol.className = \"qunit-assert-list\";\n\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tassertion = this.assertions[i];\n\n\t\t\t\tli = document.createElement( \"li\" );\n\t\t\t\tli.className = assertion.result ? \"pass\" : \"fail\";\n\t\t\t\tli.innerHTML = assertion.message || ( assertion.result ? \"okay\" : \"failed\" );\n\t\t\t\tol.appendChild( li );\n\n\t\t\t\tif ( assertion.result ) {\n\t\t\t\t\tgood++;\n\t\t\t\t} else {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// store result when possible\n\t\t\tif ( QUnit.config.reorder && defined.sessionStorage ) {\n\t\t\t\tif ( bad ) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-test-\" + this.module + \"-\" + this.testName, bad );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( bad === 0 ) {\n\t\t\t\taddClass( ol, \"qunit-collapsed\" );\n\t\t\t}\n\n\t\t\t// `b` initialized at top of scope\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml + \" <b class='counts'>(<b class='failed'>\" + bad + \"</b>, <b class='passed'>\" + good + \"</b>, \" + this.assertions.length + \")</b>\";\n\n\t\t\taddEvent(b, \"click\", function() {\n\t\t\t\tvar next = b.parentNode.lastChild,\n\t\t\t\t\tcollapsed = hasClass( next, \"qunit-collapsed\" );\n\t\t\t\t( collapsed ? removeClass : addClass )( next, \"qunit-collapsed\" );\n\t\t\t});\n\n\t\t\taddEvent(b, \"dblclick\", function( e ) {\n\t\t\t\tvar target = e && e.target ? e.target : window.event.srcElement;\n\t\t\t\tif ( target.nodeName.toLowerCase() === \"span\" || target.nodeName.toLowerCase() === \"b\" ) {\n\t\t\t\t\ttarget = target.parentNode;\n\t\t\t\t}\n\t\t\t\tif ( window.location && target.nodeName.toLowerCase() === \"strong\" ) {\n\t\t\t\t\twindow.location = QUnit.url({ testNumber: test.testNumber });\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// `time` initialized at top of scope\n\t\t\ttime = document.createElement( \"span\" );\n\t\t\ttime.className = \"runtime\";\n\t\t\ttime.innerHTML = this.runtime + \" ms\";\n\n\t\t\t// `li` initialized at top of scope\n\t\t\tli = id( this.id );\n\t\t\tli.className = bad ? \"fail\" : \"pass\";\n\t\t\tli.removeChild( li.firstChild );\n\t\t\ta = li.firstChild;\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.appendChild( time );\n\t\t\tli.appendChild( ol );\n\n\t\t} else {\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tif ( !this.assertions[i].result ) {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\trunLoggingCallbacks( \"testDone\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module,\n\t\t\tfailed: bad,\n\t\t\tpassed: this.assertions.length - bad,\n\t\t\ttotal: this.assertions.length,\n\t\t\tduration: this.runtime\n\t\t});\n\n\t\tQUnit.reset();\n\n\t\tconfig.current = undefined;\n\t},\n\n\tqueue: function() {\n\t\tvar bad,\n\t\t\ttest = this;\n\n\t\tsynchronize(function() {\n\t\t\ttest.init();\n\t\t});\n\t\tfunction run() {\n\t\t\t// each of these can by async\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.setup();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.run();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.teardown();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.finish();\n\t\t\t});\n\t\t}\n\n\t\t// `bad` initialized at top of scope\n\t\t// defer when previous test run passed, if storage is available\n\t\tbad = QUnit.config.reorder && defined.sessionStorage &&\n\t\t\t\t\t\t+sessionStorage.getItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\n\t\tif ( bad ) {\n\t\t\trun();\n\t\t} else {\n\t\t\tsynchronize( run, true );\n\t\t}\n\t}\n};\n\n// Root QUnit object.\n// `QUnit` initialized at top of scope\nQUnit = {\n\n\t// call on start of module test to prepend name to all tests\n\tmodule: function( name, testEnvironment ) {\n\t\tconfig.currentModule = name;\n\t\tconfig.currentModuleTestEnvironment = testEnvironment;\n\t\tconfig.modules[name] = true;\n\t},\n\n\tasyncTest: function( testName, expected, callback ) {\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tQUnit.test( testName, expected, callback, true );\n\t},\n\n\ttest: function( testName, expected, callback, async ) {\n\t\tvar test,\n\t\t\tnameHtml = \"<span class='test-name'>\" + escapeText( testName ) + \"</span>\";\n\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tif ( config.currentModule ) {\n\t\t\tnameHtml = \"<span class='module-name'>\" + escapeText( config.currentModule ) + \"</span>: \" + nameHtml;\n\t\t}\n\n\t\ttest = new Test({\n\t\t\tnameHtml: nameHtml,\n\t\t\ttestName: testName,\n\t\t\texpected: expected,\n\t\t\tasync: async,\n\t\t\tcallback: callback,\n\t\t\tmodule: config.currentModule,\n\t\t\tmoduleTestEnvironment: config.currentModuleTestEnvironment,\n\t\t\tstack: sourceFromStacktrace( 2 )\n\t\t});\n\n\t\tif ( !validTest( test ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\ttest.queue();\n\t},\n\n\t// Specify the number of expected assertions to guarantee that failed test (no assertions are run at all) don't slip through.\n\texpect: function( asserts ) {\n\t\tif (arguments.length === 1) {\n\t\t\tconfig.current.expected = asserts;\n\t\t} else {\n\t\t\treturn config.current.expected;\n\t\t}\n\t},\n\n\tstart: function( count ) {\n\t\t// QUnit hasn't been initialized yet.\n\t\t// Note: RequireJS (et al) may delay onLoad\n\t\tif ( config.semaphore === undefined ) {\n\t\t\tQUnit.begin(function() {\n\t\t\t\t// This is triggered at the top of QUnit.load, push start() to the event loop, to allow QUnit.load to finish first\n\t\t\t\tsetTimeout(function() {\n\t\t\t\t\tQUnit.start( count );\n\t\t\t\t});\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\n\t\tconfig.semaphore -= count || 1;\n\t\t// don't start until equal number of stop-calls\n\t\tif ( config.semaphore > 0 ) {\n\t\t\treturn;\n\t\t}\n\t\t// ignore if start is called more often then stop\n\t\tif ( config.semaphore < 0 ) {\n\t\t\tconfig.semaphore = 0;\n\t\t\tQUnit.pushFailure( \"Called start() while already started (QUnit.config.semaphore was 0 already)\", null, sourceFromStacktrace(2) );\n\t\t\treturn;\n\t\t}\n\t\t// A slight delay, to avoid any current callbacks\n\t\tif ( defined.setTimeout ) {\n\t\t\tsetTimeout(function() {\n\t\t\t\tif ( config.semaphore > 0 ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( config.timeout ) {\n\t\t\t\t\tclearTimeout( config.timeout );\n\t\t\t\t}\n\n\t\t\t\tconfig.blocking = false;\n\t\t\t\tprocess( true );\n\t\t\t}, 13);\n\t\t} else {\n\t\t\tconfig.blocking = false;\n\t\t\tprocess( true );\n\t\t}\n\t},\n\n\tstop: function( count ) {\n\t\tconfig.semaphore += count || 1;\n\t\tconfig.blocking = true;\n\n\t\tif ( config.testTimeout && defined.setTimeout ) {\n\t\t\tclearTimeout( config.timeout );\n\t\t\tconfig.timeout = setTimeout(function() {\n\t\t\t\tQUnit.ok( false, \"Test timed out\" );\n\t\t\t\tconfig.semaphore = 1;\n\t\t\t\tQUnit.start();\n\t\t\t}, config.testTimeout );\n\t\t}\n\t}\n};\n\n// `assert` initialized at top of scope\n// Assert helpers\n// All of these must either call QUnit.push() or manually do:\n// - runLoggingCallbacks( \"log\", .. );\n// - config.current.assertions.push({ .. });\n// We attach it to the QUnit object *after* we expose the public API,\n// otherwise `assert` will become a global variable in browsers (#341).\nassert = {\n\t/**\n\t * Asserts rough true-ish result.\n\t * @name ok\n\t * @function\n\t * @example ok( \"asdfasdf\".length > 5, \"There must be at least 5 chars\" );\n\t */\n\tok: function( result, msg ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"ok() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\t\tresult = !!result;\n\t\tmsg = msg || (result ? \"okay\" : \"failed\" );\n\n\t\tvar source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: msg\n\t\t\t};\n\n\t\tmsg = \"<span class='test-message'>\" + escapeText( msg ) + \"</span>\";\n\n\t\tif ( !result ) {\n\t\t\tsource = sourceFromStacktrace( 2 );\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\tmsg += \"<table><tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr></table>\";\n\t\t\t}\n\t\t}\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\t\tconfig.current.assertions.push({\n\t\t\tresult: result,\n\t\t\tmessage: msg\n\t\t});\n\t},\n\n\t/**\n\t * Assert that the first two arguments are equal, with an optional message.\n\t * Prints out both actual and expected values.\n\t * @name equal\n\t * @function\n\t * @example equal( format( \"Received {0} bytes.\", 2), \"Received 2 bytes.\", \"format() replaces {0} with next argument\" );\n\t */\n\tequal: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected == actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notEqual\n\t * @function\n\t */\n\tnotEqual: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected != actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name propEqual\n\t * @function\n\t */\n\tpropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notPropEqual\n\t * @function\n\t */\n\tnotPropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name deepEqual\n\t * @function\n\t */\n\tdeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notDeepEqual\n\t * @function\n\t */\n\tnotDeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name strictEqual\n\t * @function\n\t */\n\tstrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected === actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notStrictEqual\n\t * @function\n\t */\n\tnotStrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected !== actual, actual, expected, message );\n\t},\n\n\t\"throws\": function( block, expected, message ) {\n\t\tvar actual,\n\t\t\texpectedOutput = expected,\n\t\t\tok = false;\n\n\t\t// 'expected' is optional\n\t\tif ( typeof expected === \"string\" ) {\n\t\t\tmessage = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tconfig.current.ignoreGlobalErrors = true;\n\t\ttry {\n\t\t\tblock.call( config.current.testEnvironment );\n\t\t} catch (e) {\n\t\t\tactual = e;\n\t\t}\n\t\tconfig.current.ignoreGlobalErrors = false;\n\n\t\tif ( actual ) {\n\t\t\t// we don't want to validate thrown error\n\t\t\tif ( !expected ) {\n\t\t\t\tok = true;\n\t\t\t\texpectedOutput = null;\n\t\t\t// expected is a regexp\n\t\t\t} else if ( QUnit.objectType( expected ) === \"regexp\" ) {\n\t\t\t\tok = expected.test( errorString( actual ) );\n\t\t\t// expected is a constructor\n\t\t\t} else if ( actual instanceof expected ) {\n\t\t\t\tok = true;\n\t\t\t// expected is a validation function which returns true is validation passed\n\t\t\t} else if ( expected.call( {}, actual ) === true ) {\n\t\t\t\texpectedOutput = null;\n\t\t\t\tok = true;\n\t\t\t}\n\n\t\t\tQUnit.push( ok, actual, expectedOutput, message );\n\t\t} else {\n\t\t\tQUnit.pushFailure( message, null, \"No exception was thrown.\" );\n\t\t}\n\t}\n};\n\n/**\n * @deprecated since 1.8.0\n * Kept assertion helpers in root for backwards compatibility.\n */\nextend( QUnit, assert );\n\n/**\n * @deprecated since 1.9.0\n * Kept root \"raises()\" for backwards compatibility.\n * (Note that we don't introduce assert.raises).\n */\nQUnit.raises = assert[ \"throws\" ];\n\n/**\n * @deprecated since 1.0.0, replaced with error pushes since 1.3.0\n * Kept to avoid TypeErrors for undefined methods.\n */\nQUnit.equals = function() {\n\tQUnit.push( false, false, false, \"QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead\" );\n};\nQUnit.same = function() {\n\tQUnit.push( false, false, false, \"QUnit.same has been deprecated since 2009 (e88049a0), use QUnit.deepEqual instead\" );\n};\n\n// We want access to the constructor's prototype\n(function() {\n\tfunction F() {}\n\tF.prototype = QUnit;\n\tQUnit = new F();\n\t// Make F QUnit's constructor so that we can add to the prototype later\n\tQUnit.constructor = F;\n}());\n\n/**\n * Config object: Maintain internal state\n * Later exposed as QUnit.config\n * `config` initialized at top of scope\n */\nconfig = {\n\t// The queue of tests to run\n\tqueue: [],\n\n\t// block until document ready\n\tblocking: true,\n\n\t// when enabled, show only failing tests\n\t// gets persisted through sessionStorage and can be changed in UI via checkbox\n\thidepassed: false,\n\n\t// by default, run previously failed tests first\n\t// very useful in combination with \"Hide passed tests\" checked\n\treorder: true,\n\n\t// by default, modify document.title when suite is done\n\taltertitle: true,\n\n\t// when enabled, all tests must call expect()\n\trequireExpects: false,\n\n\t// add checkboxes that are persisted in the query-string\n\t// when enabled, the id is set to `true` as a `QUnit.config` property\n\turlConfig: [\n\t\t{\n\t\t\tid: \"noglobals\",\n\t\t\tlabel: \"Check for Globals\",\n\t\t\ttooltip: \"Enabling this will test if any test introduces new properties on the `window` object. Stored as query-strings.\"\n\t\t},\n\t\t{\n\t\t\tid: \"notrycatch\",\n\t\t\tlabel: \"No try-catch\",\n\t\t\ttooltip: \"Enabling this will run tests outside of a try-catch block. Makes debugging exceptions in IE reasonable. Stored as query-strings.\"\n\t\t}\n\t],\n\n\t// Set of all modules.\n\tmodules: {},\n\n\t// logging callback queues\n\tbegin: [],\n\tdone: [],\n\tlog: [],\n\ttestStart: [],\n\ttestDone: [],\n\tmoduleStart: [],\n\tmoduleDone: []\n};\n\n// Export global variables, unless an 'exports' object exists,\n// in that case we assume we're in CommonJS (dealt with on the bottom of the script)\nif ( typeof exports === \"undefined\" ) {\n\textend( window, QUnit.constructor.prototype );\n\n\t// Expose QUnit object\n\twindow.QUnit = QUnit;\n}\n\n// Initialize more QUnit.config and QUnit.urlParams\n(function() {\n\tvar i,\n\t\tlocation = window.location || { search: \"\", protocol: \"file:\" },\n\t\tparams = location.search.slice( 1 ).split( \"&\" ),\n\t\tlength = params.length,\n\t\turlParams = {},\n\t\tcurrent;\n\n\tif ( params[ 0 ] ) {\n\t\tfor ( i = 0; i < length; i++ ) {\n\t\t\tcurrent = params[ i ].split( \"=\" );\n\t\t\tcurrent[ 0 ] = decodeURIComponent( current[ 0 ] );\n\t\t\t// allow just a key to turn on a flag, e.g., test.html?noglobals\n\t\t\tcurrent[ 1 ] = current[ 1 ] ? decodeURIComponent( current[ 1 ] ) : true;\n\t\t\turlParams[ current[ 0 ] ] = current[ 1 ];\n\t\t}\n\t}\n\n\tQUnit.urlParams = urlParams;\n\n\t// String search anywhere in moduleName+testName\n\tconfig.filter = urlParams.filter;\n\n\t// Exact match of the module name\n\tconfig.module = urlParams.module;\n\n\tconfig.testNumber = parseInt( urlParams.testNumber, 10 ) || null;\n\n\t// Figure out if we're running the tests from a server or not\n\tQUnit.isLocal = location.protocol === \"file:\";\n}());\n\n// Extend QUnit object,\n// these after set here because they should not be exposed as global functions\nextend( QUnit, {\n\tassert: assert,\n\n\tconfig: config,\n\n\t// Initialize the configuration options\n\tinit: function() {\n\t\textend( config, {\n\t\t\tstats: { all: 0, bad: 0 },\n\t\t\tmoduleStats: { all: 0, bad: 0 },\n\t\t\tstarted: +new Date(),\n\t\t\tupdateRate: 1000,\n\t\t\tblocking: false,\n\t\t\tautostart: true,\n\t\t\tautorun: false,\n\t\t\tfilter: \"\",\n\t\t\tqueue: [],\n\t\t\tsemaphore: 1\n\t\t});\n\n\t\tvar tests, banner, result,\n\t\t\tqunit = id( \"qunit\" );\n\n\t\tif ( qunit ) {\n\t\t\tqunit.innerHTML =\n\t\t\t\t\"<h1 id='qunit-header'>\" + escapeText( document.title ) + \"</h1>\" +\n\t\t\t\t\"<h2 id='qunit-banner'></h2>\" +\n\t\t\t\t\"<div id='qunit-testrunner-toolbar'></div>\" +\n\t\t\t\t\"<h2 id='qunit-userAgent'></h2>\" +\n\t\t\t\t\"<ol id='qunit-tests'></ol>\";\n\t\t}\n\n\t\ttests = id( \"qunit-tests\" );\n\t\tbanner = id( \"qunit-banner\" );\n\t\tresult = id( \"qunit-testresult\" );\n\n\t\tif ( tests ) {\n\t\t\ttests.innerHTML = \"\";\n\t\t}\n\n\t\tif ( banner ) {\n\t\t\tbanner.className = \"\";\n\t\t}\n\n\t\tif ( result ) {\n\t\t\tresult.parentNode.removeChild( result );\n\t\t}\n\n\t\tif ( tests ) {\n\t\t\tresult = document.createElement( \"p\" );\n\t\t\tresult.id = \"qunit-testresult\";\n\t\t\tresult.className = \"result\";\n\t\t\ttests.parentNode.insertBefore( result, tests );\n\t\t\tresult.innerHTML = \"Running...<br/>&nbsp;\";\n\t\t}\n\t},\n\n\t// Resets the test setup. Useful for tests that modify the DOM.\n\t/*\n\tDEPRECATED: Use multiple tests instead of resetting inside a test.\n\tUse testStart or testDone for custom cleanup.\n\tThis method will throw an error in 2.0, and will be removed in 2.1\n\t*/\n\treset: function() {\n\t\tvar fixture = id( \"qunit-fixture\" );\n\t\tif ( fixture ) {\n\t\t\tfixture.innerHTML = config.fixture;\n\t\t}\n\t},\n\n\t// Trigger an event on an element.\n\t// @example triggerEvent( document.body, \"click\" );\n\ttriggerEvent: function( elem, type, event ) {\n\t\tif ( document.createEvent ) {\n\t\t\tevent = document.createEvent( \"MouseEvents\" );\n\t\t\tevent.initMouseEvent(type, true, true, elem.ownerDocument.defaultView,\n\t\t\t\t0, 0, 0, 0, 0, false, false, false, false, 0, null);\n\n\t\t\telem.dispatchEvent( event );\n\t\t} else if ( elem.fireEvent ) {\n\t\t\telem.fireEvent( \"on\" + type );\n\t\t}\n\t},\n\n\t// Safe object type checking\n\tis: function( type, obj ) {\n\t\treturn QUnit.objectType( obj ) === type;\n\t},\n\n\tobjectType: function( obj ) {\n\t\tif ( typeof obj === \"undefined\" ) {\n\t\t\t\treturn \"undefined\";\n\t\t// consider: typeof null === object\n\t\t}\n\t\tif ( obj === null ) {\n\t\t\t\treturn \"null\";\n\t\t}\n\n\t\tvar match = toString.call( obj ).match(/^\\[object\\s(.*)\\]$/),\n\t\t\ttype = match && match[1] || \"\";\n\n\t\tswitch ( type ) {\n\t\t\tcase \"Number\":\n\t\t\t\tif ( isNaN(obj) ) {\n\t\t\t\t\treturn \"nan\";\n\t\t\t\t}\n\t\t\t\treturn \"number\";\n\t\t\tcase \"String\":\n\t\t\tcase \"Boolean\":\n\t\t\tcase \"Array\":\n\t\t\tcase \"Date\":\n\t\t\tcase \"RegExp\":\n\t\t\tcase \"Function\":\n\t\t\t\treturn type.toLowerCase();\n\t\t}\n\t\tif ( typeof obj === \"object\" ) {\n\t\t\treturn \"object\";\n\t\t}\n\t\treturn undefined;\n\t},\n\n\tpush: function( result, actual, expected, message ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"assertion outside test context, was \" + sourceFromStacktrace() );\n\t\t}\n\n\t\tvar output, source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: message,\n\t\t\t\tactual: actual,\n\t\t\t\texpected: expected\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || ( result ? \"okay\" : \"failed\" );\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\tif ( !result ) {\n\t\t\texpected = escapeText( QUnit.jsDump.parse(expected) );\n\t\t\tactual = escapeText( QUnit.jsDump.parse(actual) );\n\t\t\toutput += \"<table><tr class='test-expected'><th>Expected: </th><td><pre>\" + expected + \"</pre></td></tr>\";\n\n\t\t\tif ( actual !== expected ) {\n\t\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + actual + \"</pre></td></tr>\";\n\t\t\t\toutput += \"<tr class='test-diff'><th>Diff: </th><td><pre>\" + QUnit.diff( expected, actual ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\tsource = sourceFromStacktrace();\n\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\toutput += \"</table>\";\n\t\t}\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: !!result,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\tpushFailure: function( message, source, actual ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"pushFailure() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\n\t\tvar output,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: false,\n\t\t\t\tmessage: message\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || \"error\";\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\toutput += \"<table>\";\n\n\t\tif ( actual ) {\n\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + escapeText( actual ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\tif ( source ) {\n\t\t\tdetails.source = source;\n\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\toutput += \"</table>\";\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: false,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\turl: function( params ) {\n\t\tparams = extend( extend( {}, QUnit.urlParams ), params );\n\t\tvar key,\n\t\t\tquerystring = \"?\";\n\n\t\tfor ( key in params ) {\n\t\t\tif ( hasOwn.call( params, key ) ) {\n\t\t\t\tquerystring += encodeURIComponent( key ) + \"=\" +\n\t\t\t\t\tencodeURIComponent( params[ key ] ) + \"&\";\n\t\t\t}\n\t\t}\n\t\treturn window.location.protocol + \"//\" + window.location.host +\n\t\t\twindow.location.pathname + querystring.slice( 0, -1 );\n\t},\n\n\textend: extend,\n\tid: id,\n\taddEvent: addEvent,\n\taddClass: addClass,\n\thasClass: hasClass,\n\tremoveClass: removeClass\n\t// load, equiv, jsDump, diff: Attached later\n});\n\n/**\n * @deprecated: Created for backwards compatibility with test runner that set the hook function\n * into QUnit.{hook}, instead of invoking it and passing the hook function.\n * QUnit.constructor is set to the empty F() above so that we can add to it's prototype here.\n * Doing this allows us to tell if the following methods have been overwritten on the actual\n * QUnit object.\n */\nextend( QUnit.constructor.prototype, {\n\n\t// Logging callbacks; all receive a single argument with the listed properties\n\t// run test/logs.html for any related changes\n\tbegin: registerLoggingCallback( \"begin\" ),\n\n\t// done: { failed, passed, total, runtime }\n\tdone: registerLoggingCallback( \"done\" ),\n\n\t// log: { result, actual, expected, message }\n\tlog: registerLoggingCallback( \"log\" ),\n\n\t// testStart: { name }\n\ttestStart: registerLoggingCallback( \"testStart\" ),\n\n\t// testDone: { name, failed, passed, total, duration }\n\ttestDone: registerLoggingCallback( \"testDone\" ),\n\n\t// moduleStart: { name }\n\tmoduleStart: registerLoggingCallback( \"moduleStart\" ),\n\n\t// moduleDone: { name, failed, passed, total }\n\tmoduleDone: registerLoggingCallback( \"moduleDone\" )\n});\n\nif ( typeof document === \"undefined\" || document.readyState === \"complete\" ) {\n\tconfig.autorun = true;\n}\n\nQUnit.load = function() {\n\trunLoggingCallbacks( \"begin\", QUnit, {} );\n\n\t// Initialize the config, saving the execution queue\n\tvar banner, filter, i, label, len, main, ol, toolbar, userAgent, val,\n\t\turlConfigCheckboxesContainer, urlConfigCheckboxes, moduleFilter,\n\t\tnumModules = 0,\n\t\tmoduleNames = [],\n\t\tmoduleFilterHtml = \"\",\n\t\turlConfigHtml = \"\",\n\t\toldconfig = extend( {}, config );\n\n\tQUnit.init();\n\textend(config, oldconfig);\n\n\tconfig.blocking = false;\n\n\tlen = config.urlConfig.length;\n\n\tfor ( i = 0; i < len; i++ ) {\n\t\tval = config.urlConfig[i];\n\t\tif ( typeof val === \"string\" ) {\n\t\t\tval = {\n\t\t\t\tid: val,\n\t\t\t\tlabel: val,\n\t\t\t\ttooltip: \"[no tooltip available]\"\n\t\t\t};\n\t\t}\n\t\tconfig[ val.id ] = QUnit.urlParams[ val.id ];\n\t\turlConfigHtml += \"<input id='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' name='\" + escapeText( val.id ) +\n\t\t\t\"' type='checkbox'\" + ( config[ val.id ] ? \" checked='checked'\" : \"\" ) +\n\t\t\t\" title='\" + escapeText( val.tooltip ) +\n\t\t\t\"'><label for='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' title='\" + escapeText( val.tooltip ) + \"'>\" + val.label + \"</label>\";\n\t}\n\tfor ( i in config.modules ) {\n\t\tif ( config.modules.hasOwnProperty( i ) ) {\n\t\t\tmoduleNames.push(i);\n\t\t}\n\t}\n\tnumModules = moduleNames.length;\n\tmoduleNames.sort( function( a, b ) {\n\t\treturn a.localeCompare( b );\n\t});\n\tmoduleFilterHtml += \"<label for='qunit-modulefilter'>Module: </label><select id='qunit-modulefilter' name='modulefilter'><option value='' \" +\n\t\t( config.module === undefined  ? \"selected='selected'\" : \"\" ) +\n\t\t\">< All Modules ></option>\";\n\n\n\tfor ( i = 0; i < numModules; i++) {\n\t\t\tmoduleFilterHtml += \"<option value='\" + escapeText( encodeURIComponent(moduleNames[i]) ) + \"' \" +\n\t\t\t\t( config.module === moduleNames[i] ? \"selected='selected'\" : \"\" ) +\n\t\t\t\t\">\" + escapeText(moduleNames[i]) + \"</option>\";\n\t}\n\tmoduleFilterHtml += \"</select>\";\n\n\t// `userAgent` initialized at top of scope\n\tuserAgent = id( \"qunit-userAgent\" );\n\tif ( userAgent ) {\n\t\tuserAgent.innerHTML = navigator.userAgent;\n\t}\n\n\t// `banner` initialized at top of scope\n\tbanner = id( \"qunit-header\" );\n\tif ( banner ) {\n\t\tbanner.innerHTML = \"<a href='\" + QUnit.url({ filter: undefined, module: undefined, testNumber: undefined }) + \"'>\" + banner.innerHTML + \"</a> \";\n\t}\n\n\t// `toolbar` initialized at top of scope\n\ttoolbar = id( \"qunit-testrunner-toolbar\" );\n\tif ( toolbar ) {\n\t\t// `filter` initialized at top of scope\n\t\tfilter = document.createElement( \"input\" );\n\t\tfilter.type = \"checkbox\";\n\t\tfilter.id = \"qunit-filter-pass\";\n\n\t\taddEvent( filter, \"click\", function() {\n\t\t\tvar tmp,\n\t\t\t\tol = document.getElementById( \"qunit-tests\" );\n\n\t\t\tif ( filter.checked ) {\n\t\t\t\tol.className = ol.className + \" hidepass\";\n\t\t\t} else {\n\t\t\t\ttmp = \" \" + ol.className.replace( /[\\n\\t\\r]/g, \" \" ) + \" \";\n\t\t\t\tol.className = tmp.replace( / hidepass /, \" \" );\n\t\t\t}\n\t\t\tif ( defined.sessionStorage ) {\n\t\t\t\tif (filter.checked) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-filter-passed-tests\", \"true\" );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-filter-passed-tests\" );\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif ( config.hidepassed || defined.sessionStorage && sessionStorage.getItem( \"qunit-filter-passed-tests\" ) ) {\n\t\t\tfilter.checked = true;\n\t\t\t// `ol` initialized at top of scope\n\t\t\tol = document.getElementById( \"qunit-tests\" );\n\t\t\tol.className = ol.className + \" hidepass\";\n\t\t}\n\t\ttoolbar.appendChild( filter );\n\n\t\t// `label` initialized at top of scope\n\t\tlabel = document.createElement( \"label\" );\n\t\tlabel.setAttribute( \"for\", \"qunit-filter-pass\" );\n\t\tlabel.setAttribute( \"title\", \"Only show tests and assertions that fail. Stored in sessionStorage.\" );\n\t\tlabel.innerHTML = \"Hide passed tests\";\n\t\ttoolbar.appendChild( label );\n\n\t\turlConfigCheckboxesContainer = document.createElement(\"span\");\n\t\turlConfigCheckboxesContainer.innerHTML = urlConfigHtml;\n\t\turlConfigCheckboxes = urlConfigCheckboxesContainer.getElementsByTagName(\"input\");\n\t\t// For oldIE support:\n\t\t// * Add handlers to the individual elements instead of the container\n\t\t// * Use \"click\" instead of \"change\"\n\t\t// * Fallback from event.target to event.srcElement\n\t\taddEvents( urlConfigCheckboxes, \"click\", function( event ) {\n\t\t\tvar params = {},\n\t\t\t\ttarget = event.target || event.srcElement;\n\t\t\tparams[ target.name ] = target.checked ? true : undefined;\n\t\t\twindow.location = QUnit.url( params );\n\t\t});\n\t\ttoolbar.appendChild( urlConfigCheckboxesContainer );\n\n\t\tif (numModules > 1) {\n\t\t\tmoduleFilter = document.createElement( \"span\" );\n\t\t\tmoduleFilter.setAttribute( \"id\", \"qunit-modulefilter-container\" );\n\t\t\tmoduleFilter.innerHTML = moduleFilterHtml;\n\t\t\taddEvent( moduleFilter.lastChild, \"change\", function() {\n\t\t\t\tvar selectBox = moduleFilter.getElementsByTagName(\"select\")[0],\n\t\t\t\t\tselectedModule = decodeURIComponent(selectBox.options[selectBox.selectedIndex].value);\n\n\t\t\t\twindow.location = QUnit.url({\n\t\t\t\t\tmodule: ( selectedModule === \"\" ) ? undefined : selectedModule,\n\t\t\t\t\t// Remove any existing filters\n\t\t\t\t\tfilter: undefined,\n\t\t\t\t\ttestNumber: undefined\n\t\t\t\t});\n\t\t\t});\n\t\t\ttoolbar.appendChild(moduleFilter);\n\t\t}\n\t}\n\n\t// `main` initialized at top of scope\n\tmain = id( \"qunit-fixture\" );\n\tif ( main ) {\n\t\tconfig.fixture = main.innerHTML;\n\t}\n\n\tif ( config.autostart ) {\n\t\tQUnit.start();\n\t}\n};\n\naddEvent( window, \"load\", QUnit.load );\n\n// `onErrorFnPrev` initialized at top of scope\n// Preserve other handlers\nonErrorFnPrev = window.onerror;\n\n// Cover uncaught exceptions\n// Returning true will suppress the default browser handler,\n// returning false will let it run.\nwindow.onerror = function ( error, filePath, linerNr ) {\n\tvar ret = false;\n\tif ( onErrorFnPrev ) {\n\t\tret = onErrorFnPrev( error, filePath, linerNr );\n\t}\n\n\t// Treat return value as window.onerror itself does,\n\t// Only do our handling if not suppressed.\n\tif ( ret !== true ) {\n\t\tif ( QUnit.config.current ) {\n\t\t\tif ( QUnit.config.current.ignoreGlobalErrors ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t} else {\n\t\t\tQUnit.test( \"global failure\", extend( function() {\n\t\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t\t}, { validTest: validTest } ) );\n\t\t}\n\t\treturn false;\n\t}\n\n\treturn ret;\n};\n\nfunction done() {\n\tconfig.autorun = true;\n\n\t// Log the last module results\n\tif ( config.currentModule ) {\n\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\tname: config.currentModule,\n\t\t\tfailed: config.moduleStats.bad,\n\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\ttotal: config.moduleStats.all\n\t\t});\n\t}\n\tdelete config.previousModule;\n\n\tvar i, key,\n\t\tbanner = id( \"qunit-banner\" ),\n\t\ttests = id( \"qunit-tests\" ),\n\t\truntime = +new Date() - config.started,\n\t\tpassed = config.stats.all - config.stats.bad,\n\t\thtml = [\n\t\t\t\"Tests completed in \",\n\t\t\truntime,\n\t\t\t\" milliseconds.<br/>\",\n\t\t\t\"<span class='passed'>\",\n\t\t\tpassed,\n\t\t\t\"</span> assertions of <span class='total'>\",\n\t\t\tconfig.stats.all,\n\t\t\t\"</span> passed, <span class='failed'>\",\n\t\t\tconfig.stats.bad,\n\t\t\t\"</span> failed.\"\n\t\t].join( \"\" );\n\n\tif ( banner ) {\n\t\tbanner.className = ( config.stats.bad ? \"qunit-fail\" : \"qunit-pass\" );\n\t}\n\n\tif ( tests ) {\n\t\tid( \"qunit-testresult\" ).innerHTML = html;\n\t}\n\n\tif ( config.altertitle && typeof document !== \"undefined\" && document.title ) {\n\t\t// show ✖ for good, ✔ for bad suite result in title\n\t\t// use escape sequences in case file gets loaded with non-utf-8-charset\n\t\tdocument.title = [\n\t\t\t( config.stats.bad ? \"\\u2716\" : \"\\u2714\" ),\n\t\t\tdocument.title.replace( /^[\\u2714\\u2716] /i, \"\" )\n\t\t].join( \" \" );\n\t}\n\n\t// clear own sessionStorage items if all tests passed\n\tif ( config.reorder && defined.sessionStorage && config.stats.bad === 0 ) {\n\t\t// `key` & `i` initialized at top of scope\n\t\tfor ( i = 0; i < sessionStorage.length; i++ ) {\n\t\t\tkey = sessionStorage.key( i++ );\n\t\t\tif ( key.indexOf( \"qunit-test-\" ) === 0 ) {\n\t\t\t\tsessionStorage.removeItem( key );\n\t\t\t}\n\t\t}\n\t}\n\n\t// scroll back to top to show results\n\tif ( window.scrollTo ) {\n\t\twindow.scrollTo(0, 0);\n\t}\n\n\trunLoggingCallbacks( \"done\", QUnit, {\n\t\tfailed: config.stats.bad,\n\t\tpassed: passed,\n\t\ttotal: config.stats.all,\n\t\truntime: runtime\n\t});\n}\n\n/** @return Boolean: true if this test should be ran */\nfunction validTest( test ) {\n\tvar include,\n\t\tfilter = config.filter && config.filter.toLowerCase(),\n\t\tmodule = config.module && config.module.toLowerCase(),\n\t\tfullName = (test.module + \": \" + test.testName).toLowerCase();\n\n\t// Internally-generated tests are always valid\n\tif ( test.callback && test.callback.validTest === validTest ) {\n\t\tdelete test.callback.validTest;\n\t\treturn true;\n\t}\n\n\tif ( config.testNumber ) {\n\t\treturn test.testNumber === config.testNumber;\n\t}\n\n\tif ( module && ( !test.module || test.module.toLowerCase() !== module ) ) {\n\t\treturn false;\n\t}\n\n\tif ( !filter ) {\n\t\treturn true;\n\t}\n\n\tinclude = filter.charAt( 0 ) !== \"!\";\n\tif ( !include ) {\n\t\tfilter = filter.slice( 1 );\n\t}\n\n\t// If the filter matches, we need to honour include\n\tif ( fullName.indexOf( filter ) !== -1 ) {\n\t\treturn include;\n\t}\n\n\t// Otherwise, do the opposite\n\treturn !include;\n}\n\n// so far supports only Firefox, Chrome and Opera (buggy), Safari (for real exceptions)\n// Later Safari and IE10 are supposed to support error.stack as well\n// See also https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error/Stack\nfunction extractStacktrace( e, offset ) {\n\toffset = offset === undefined ? 3 : offset;\n\n\tvar stack, include, i;\n\n\tif ( e.stacktrace ) {\n\t\t// Opera\n\t\treturn e.stacktrace.split( \"\\n\" )[ offset + 3 ];\n\t} else if ( e.stack ) {\n\t\t// Firefox, Chrome\n\t\tstack = e.stack.split( \"\\n\" );\n\t\tif (/^error$/i.test( stack[0] ) ) {\n\t\t\tstack.shift();\n\t\t}\n\t\tif ( fileName ) {\n\t\t\tinclude = [];\n\t\t\tfor ( i = offset; i < stack.length; i++ ) {\n\t\t\t\tif ( stack[ i ].indexOf( fileName ) !== -1 ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tinclude.push( stack[ i ] );\n\t\t\t}\n\t\t\tif ( include.length ) {\n\t\t\t\treturn include.join( \"\\n\" );\n\t\t\t}\n\t\t}\n\t\treturn stack[ offset ];\n\t} else if ( e.sourceURL ) {\n\t\t// Safari, PhantomJS\n\t\t// hopefully one day Safari provides actual stacktraces\n\t\t// exclude useless self-reference for generated Error objects\n\t\tif ( /qunit.js$/.test( e.sourceURL ) ) {\n\t\t\treturn;\n\t\t}\n\t\t// for actual exceptions, this is useful\n\t\treturn e.sourceURL + \":\" + e.line;\n\t}\n}\nfunction sourceFromStacktrace( offset ) {\n\ttry {\n\t\tthrow new Error();\n\t} catch ( e ) {\n\t\treturn extractStacktrace( e, offset );\n\t}\n}\n\n/**\n * Escape text for attribute or text content.\n */\nfunction escapeText( s ) {\n\tif ( !s ) {\n\t\treturn \"\";\n\t}\n\ts = s + \"\";\n\t// Both single quotes and double quotes (for attributes)\n\treturn s.replace( /['\"<>&]/g, function( s ) {\n\t\tswitch( s ) {\n\t\t\tcase \"'\":\n\t\t\t\treturn \"&#039;\";\n\t\t\tcase \"\\\"\":\n\t\t\t\treturn \"&quot;\";\n\t\t\tcase \"<\":\n\t\t\t\treturn \"&lt;\";\n\t\t\tcase \">\":\n\t\t\t\treturn \"&gt;\";\n\t\t\tcase \"&\":\n\t\t\t\treturn \"&amp;\";\n\t\t}\n\t});\n}\n\nfunction synchronize( callback, last ) {\n\tconfig.queue.push( callback );\n\n\tif ( config.autorun && !config.blocking ) {\n\t\tprocess( last );\n\t}\n}\n\nfunction process( last ) {\n\tfunction next() {\n\t\tprocess( last );\n\t}\n\tvar start = new Date().getTime();\n\tconfig.depth = config.depth ? config.depth + 1 : 1;\n\n\twhile ( config.queue.length && !config.blocking ) {\n\t\tif ( !defined.setTimeout || config.updateRate <= 0 || ( ( new Date().getTime() - start ) < config.updateRate ) ) {\n\t\t\tconfig.queue.shift()();\n\t\t} else {\n\t\t\tsetTimeout( next, 13 );\n\t\t\tbreak;\n\t\t}\n\t}\n\tconfig.depth--;\n\tif ( last && !config.blocking && !config.queue.length && config.depth === 0 ) {\n\t\tdone();\n\t}\n}\n\nfunction saveGlobal() {\n\tconfig.pollution = [];\n\n\tif ( config.noglobals ) {\n\t\tfor ( var key in window ) {\n\t\t\tif ( hasOwn.call( window, key ) ) {\n\t\t\t\t// in Opera sometimes DOM element ids show up here, ignore them\n\t\t\t\tif ( /^qunit-test-output/.test( key ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tconfig.pollution.push( key );\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction checkPollution() {\n\tvar newGlobals,\n\t\tdeletedGlobals,\n\t\told = config.pollution;\n\n\tsaveGlobal();\n\n\tnewGlobals = diff( config.pollution, old );\n\tif ( newGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Introduced global variable(s): \" + newGlobals.join(\", \") );\n\t}\n\n\tdeletedGlobals = diff( old, config.pollution );\n\tif ( deletedGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Deleted global variable(s): \" + deletedGlobals.join(\", \") );\n\t}\n}\n\n// returns a new Array with the elements that are in a but not in b\nfunction diff( a, b ) {\n\tvar i, j,\n\t\tresult = a.slice();\n\n\tfor ( i = 0; i < result.length; i++ ) {\n\t\tfor ( j = 0; j < b.length; j++ ) {\n\t\t\tif ( result[i] === b[j] ) {\n\t\t\t\tresult.splice( i, 1 );\n\t\t\t\ti--;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\treturn result;\n}\n\nfunction extend( a, b ) {\n\tfor ( var prop in b ) {\n\t\tif ( hasOwn.call( b, prop ) ) {\n\t\t\t// Avoid \"Member not found\" error in IE8 caused by messing with window.constructor\n\t\t\tif ( !( prop === \"constructor\" && a === window ) ) {\n\t\t\t\tif ( b[ prop ] === undefined ) {\n\t\t\t\t\tdelete a[ prop ];\n\t\t\t\t} else {\n\t\t\t\t\ta[ prop ] = b[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a;\n}\n\n/**\n * @param {HTMLElement} elem\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvent( elem, type, fn ) {\n\t// Standards-based browsers\n\tif ( elem.addEventListener ) {\n\t\telem.addEventListener( type, fn, false );\n\t// IE\n\t} else {\n\t\telem.attachEvent( \"on\" + type, fn );\n\t}\n}\n\n/**\n * @param {Array|NodeList} elems\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvents( elems, type, fn ) {\n\tvar i = elems.length;\n\twhile ( i-- ) {\n\t\taddEvent( elems[i], type, fn );\n\t}\n}\n\nfunction hasClass( elem, name ) {\n\treturn (\" \" + elem.className + \" \").indexOf(\" \" + name + \" \") > -1;\n}\n\nfunction addClass( elem, name ) {\n\tif ( !hasClass( elem, name ) ) {\n\t\telem.className += (elem.className ? \" \" : \"\") + name;\n\t}\n}\n\nfunction removeClass( elem, name ) {\n\tvar set = \" \" + elem.className + \" \";\n\t// Class name may appear multiple times\n\twhile ( set.indexOf(\" \" + name + \" \") > -1 ) {\n\t\tset = set.replace(\" \" + name + \" \" , \" \");\n\t}\n\t// If possible, trim it for prettiness, but not necessarily\n\telem.className = typeof set.trim === \"function\" ? set.trim() : set.replace(/^\\s+|\\s+$/g, \"\");\n}\n\nfunction id( name ) {\n\treturn !!( typeof document !== \"undefined\" && document && document.getElementById ) &&\n\t\tdocument.getElementById( name );\n}\n\nfunction registerLoggingCallback( key ) {\n\treturn function( callback ) {\n\t\tconfig[key].push( callback );\n\t};\n}\n\n// Supports deprecated method of completely overwriting logging callbacks\nfunction runLoggingCallbacks( key, scope, args ) {\n\tvar i, callbacks;\n\tif ( QUnit.hasOwnProperty( key ) ) {\n\t\tQUnit[ key ].call(scope, args );\n\t} else {\n\t\tcallbacks = config[ key ];\n\t\tfor ( i = 0; i < callbacks.length; i++ ) {\n\t\t\tcallbacks[ i ].call( scope, args );\n\t\t}\n\t}\n}\n\n// Test for equality any JavaScript type.\n// Author: Philippe Rathé <prathe@gmail.com>\nQUnit.equiv = (function() {\n\n\t// Call the o related callback with the given arguments.\n\tfunction bindCallbacks( o, callbacks, args ) {\n\t\tvar prop = QUnit.objectType( o );\n\t\tif ( prop ) {\n\t\t\tif ( QUnit.objectType( callbacks[ prop ] ) === \"function\" ) {\n\t\t\t\treturn callbacks[ prop ].apply( callbacks, args );\n\t\t\t} else {\n\t\t\t\treturn callbacks[ prop ]; // or undefined\n\t\t\t}\n\t\t}\n\t}\n\n\t// the real equiv function\n\tvar innerEquiv,\n\t\t// stack to decide between skip/abort functions\n\t\tcallers = [],\n\t\t// stack to avoiding loops from circular referencing\n\t\tparents = [],\n\t\tparentsB = [],\n\n\t\tgetProto = Object.getPrototypeOf || function ( obj ) {\n\t\t\t/*jshint camelcase:false */\n\t\t\treturn obj.__proto__;\n\t\t},\n\t\tcallbacks = (function () {\n\n\t\t\t// for string, boolean, number and null\n\t\t\tfunction useStrictEquality( b, a ) {\n\t\t\t\t/*jshint eqeqeq:false */\n\t\t\t\tif ( b instanceof a.constructor || a instanceof b.constructor ) {\n\t\t\t\t\t// to catch short annotation VS 'new' annotation of a\n\t\t\t\t\t// declaration\n\t\t\t\t\t// e.g. var i = 1;\n\t\t\t\t\t// var j = new Number(1);\n\t\t\t\t\treturn a == b;\n\t\t\t\t} else {\n\t\t\t\t\treturn a === b;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\t\"string\": useStrictEquality,\n\t\t\t\t\"boolean\": useStrictEquality,\n\t\t\t\t\"number\": useStrictEquality,\n\t\t\t\t\"null\": useStrictEquality,\n\t\t\t\t\"undefined\": useStrictEquality,\n\n\t\t\t\t\"nan\": function( b ) {\n\t\t\t\t\treturn isNaN( b );\n\t\t\t\t},\n\n\t\t\t\t\"date\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"date\" && a.valueOf() === b.valueOf();\n\t\t\t\t},\n\n\t\t\t\t\"regexp\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"regexp\" &&\n\t\t\t\t\t\t// the regex itself\n\t\t\t\t\t\ta.source === b.source &&\n\t\t\t\t\t\t// and its modifiers\n\t\t\t\t\t\ta.global === b.global &&\n\t\t\t\t\t\t// (gmi) ...\n\t\t\t\t\t\ta.ignoreCase === b.ignoreCase &&\n\t\t\t\t\t\ta.multiline === b.multiline &&\n\t\t\t\t\t\ta.sticky === b.sticky;\n\t\t\t\t},\n\n\t\t\t\t// - skip when the property is a method of an instance (OOP)\n\t\t\t\t// - abort otherwise,\n\t\t\t\t// initial === would have catch identical references anyway\n\t\t\t\t\"function\": function() {\n\t\t\t\t\tvar caller = callers[callers.length - 1];\n\t\t\t\t\treturn caller !== Object && typeof caller !== \"undefined\";\n\t\t\t\t},\n\n\t\t\t\t\"array\": function( b, a ) {\n\t\t\t\t\tvar i, j, len, loop, aCircular, bCircular;\n\n\t\t\t\t\t// b could be an object literal here\n\t\t\t\t\tif ( QUnit.objectType( b ) !== \"array\" ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\tlen = a.length;\n\t\t\t\t\tif ( len !== b.length ) {\n\t\t\t\t\t\t// safe and faster\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\t\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\n\t\t\t\t\"object\": function( b, a ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar i, j, loop, aCircular, bCircular,\n\t\t\t\t\t\t// Default to true\n\t\t\t\t\t\teq = true,\n\t\t\t\t\t\taProperties = [],\n\t\t\t\t\t\tbProperties = [];\n\n\t\t\t\t\t// comparing constructors is more strict than using\n\t\t\t\t\t// instanceof\n\t\t\t\t\tif ( a.constructor !== b.constructor ) {\n\t\t\t\t\t\t// Allow objects with no prototype to be equivalent to\n\t\t\t\t\t\t// objects with Object as their constructor.\n\t\t\t\t\t\tif ( !(( getProto(a) === null && getProto(b) === Object.prototype ) ||\n\t\t\t\t\t\t\t( getProto(b) === null && getProto(a) === Object.prototype ) ) ) {\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// stack constructor before traversing properties\n\t\t\t\t\tcallers.push( a.constructor );\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\n\t\t\t\t\t// be strict: don't ensure hasOwnProperty and go deep\n\t\t\t\t\tfor ( i in a ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\taProperties.push(i);\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\tcallers.pop(); // unstack, we are done\n\n\t\t\t\t\tfor ( i in b ) {\n\t\t\t\t\t\tbProperties.push( i ); // collect b's properties\n\t\t\t\t\t}\n\n\t\t\t\t\t// Ensures identical properties name\n\t\t\t\t\treturn eq && innerEquiv( aProperties.sort(), bProperties.sort() );\n\t\t\t\t}\n\t\t\t};\n\t\t}());\n\n\tinnerEquiv = function() { // can take multiple arguments\n\t\tvar args = [].slice.apply( arguments );\n\t\tif ( args.length < 2 ) {\n\t\t\treturn true; // end transition\n\t\t}\n\n\t\treturn (function( a, b ) {\n\t\t\tif ( a === b ) {\n\t\t\t\treturn true; // catch the most you can\n\t\t\t} else if ( a === null || b === null || typeof a === \"undefined\" ||\n\t\t\t\t\ttypeof b === \"undefined\" ||\n\t\t\t\t\tQUnit.objectType(a) !== QUnit.objectType(b) ) {\n\t\t\t\treturn false; // don't lose time with error prone cases\n\t\t\t} else {\n\t\t\t\treturn bindCallbacks(a, callbacks, [ b, a ]);\n\t\t\t}\n\n\t\t\t// apply transition with (1..n) arguments\n\t\t}( args[0], args[1] ) && innerEquiv.apply( this, args.splice(1, args.length - 1 )) );\n\t};\n\n\treturn innerEquiv;\n}());\n\n/**\n * jsDump Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com |\n * http://flesler.blogspot.com Licensed under BSD\n * (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008\n *\n * @projectDescription Advanced and extensible data dumping for Javascript.\n * @version 1.0.0\n * @author Ariel Flesler\n * @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}\n */\nQUnit.jsDump = (function() {\n\tfunction quote( str ) {\n\t\treturn \"\\\"\" + str.toString().replace( /\"/g, \"\\\\\\\"\" ) + \"\\\"\";\n\t}\n\tfunction literal( o ) {\n\t\treturn o + \"\";\n\t}\n\tfunction join( pre, arr, post ) {\n\t\tvar s = jsDump.separator(),\n\t\t\tbase = jsDump.indent(),\n\t\t\tinner = jsDump.indent(1);\n\t\tif ( arr.join ) {\n\t\t\tarr = arr.join( \",\" + s + inner );\n\t\t}\n\t\tif ( !arr ) {\n\t\t\treturn pre + post;\n\t\t}\n\t\treturn [ pre, inner + arr, base + post ].join(s);\n\t}\n\tfunction array( arr, stack ) {\n\t\tvar i = arr.length, ret = new Array(i);\n\t\tthis.up();\n\t\twhile ( i-- ) {\n\t\t\tret[i] = this.parse( arr[i] , undefined , stack);\n\t\t}\n\t\tthis.down();\n\t\treturn join( \"[\", ret, \"]\" );\n\t}\n\n\tvar reName = /^function (\\w+)/,\n\t\tjsDump = {\n\t\t\t// type is used mostly internally, you can fix a (custom)type in advance\n\t\t\tparse: function( obj, type, stack ) {\n\t\t\t\tstack = stack || [ ];\n\t\t\t\tvar inStack, res,\n\t\t\t\t\tparser = this.parsers[ type || this.typeOf(obj) ];\n\n\t\t\t\ttype = typeof parser;\n\t\t\t\tinStack = inArray( obj, stack );\n\n\t\t\t\tif ( inStack !== -1 ) {\n\t\t\t\t\treturn \"recursion(\" + (inStack - stack.length) + \")\";\n\t\t\t\t}\n\t\t\t\tif ( type === \"function\" )  {\n\t\t\t\t\tstack.push( obj );\n\t\t\t\t\tres = parser.call( this, obj, stack );\n\t\t\t\t\tstack.pop();\n\t\t\t\t\treturn res;\n\t\t\t\t}\n\t\t\t\treturn ( type === \"string\" ) ? parser : this.parsers.error;\n\t\t\t},\n\t\t\ttypeOf: function( obj ) {\n\t\t\t\tvar type;\n\t\t\t\tif ( obj === null ) {\n\t\t\t\t\ttype = \"null\";\n\t\t\t\t} else if ( typeof obj === \"undefined\" ) {\n\t\t\t\t\ttype = \"undefined\";\n\t\t\t\t} else if ( QUnit.is( \"regexp\", obj) ) {\n\t\t\t\t\ttype = \"regexp\";\n\t\t\t\t} else if ( QUnit.is( \"date\", obj) ) {\n\t\t\t\t\ttype = \"date\";\n\t\t\t\t} else if ( QUnit.is( \"function\", obj) ) {\n\t\t\t\t\ttype = \"function\";\n\t\t\t\t} else if ( typeof obj.setInterval !== undefined && typeof obj.document !== \"undefined\" && typeof obj.nodeType === \"undefined\" ) {\n\t\t\t\t\ttype = \"window\";\n\t\t\t\t} else if ( obj.nodeType === 9 ) {\n\t\t\t\t\ttype = \"document\";\n\t\t\t\t} else if ( obj.nodeType ) {\n\t\t\t\t\ttype = \"node\";\n\t\t\t\t} else if (\n\t\t\t\t\t// native arrays\n\t\t\t\t\ttoString.call( obj ) === \"[object Array]\" ||\n\t\t\t\t\t// NodeList objects\n\t\t\t\t\t( typeof obj.length === \"number\" && typeof obj.item !== \"undefined\" && ( obj.length ? obj.item(0) === obj[0] : ( obj.item( 0 ) === null && typeof obj[0] === \"undefined\" ) ) )\n\t\t\t\t) {\n\t\t\t\t\ttype = \"array\";\n\t\t\t\t} else if ( obj.constructor === Error.prototype.constructor ) {\n\t\t\t\t\ttype = \"error\";\n\t\t\t\t} else {\n\t\t\t\t\ttype = typeof obj;\n\t\t\t\t}\n\t\t\t\treturn type;\n\t\t\t},\n\t\t\tseparator: function() {\n\t\t\t\treturn this.multiline ?\tthis.HTML ? \"<br />\" : \"\\n\" : this.HTML ? \"&nbsp;\" : \" \";\n\t\t\t},\n\t\t\t// extra can be a number, shortcut for increasing-calling-decreasing\n\t\t\tindent: function( extra ) {\n\t\t\t\tif ( !this.multiline ) {\n\t\t\t\t\treturn \"\";\n\t\t\t\t}\n\t\t\t\tvar chr = this.indentChar;\n\t\t\t\tif ( this.HTML ) {\n\t\t\t\t\tchr = chr.replace( /\\t/g, \"   \" ).replace( / /g, \"&nbsp;\" );\n\t\t\t\t}\n\t\t\t\treturn new Array( this.depth + ( extra || 0 ) ).join(chr);\n\t\t\t},\n\t\t\tup: function( a ) {\n\t\t\t\tthis.depth += a || 1;\n\t\t\t},\n\t\t\tdown: function( a ) {\n\t\t\t\tthis.depth -= a || 1;\n\t\t\t},\n\t\t\tsetParser: function( name, parser ) {\n\t\t\t\tthis.parsers[name] = parser;\n\t\t\t},\n\t\t\t// The next 3 are exposed so you can use them\n\t\t\tquote: quote,\n\t\t\tliteral: literal,\n\t\t\tjoin: join,\n\t\t\t//\n\t\t\tdepth: 1,\n\t\t\t// This is the list of parsers, to modify them, use jsDump.setParser\n\t\t\tparsers: {\n\t\t\t\twindow: \"[Window]\",\n\t\t\t\tdocument: \"[Document]\",\n\t\t\t\terror: function(error) {\n\t\t\t\t\treturn \"Error(\\\"\" + error.message + \"\\\")\";\n\t\t\t\t},\n\t\t\t\tunknown: \"[Unknown]\",\n\t\t\t\t\"null\": \"null\",\n\t\t\t\t\"undefined\": \"undefined\",\n\t\t\t\t\"function\": function( fn ) {\n\t\t\t\t\tvar ret = \"function\",\n\t\t\t\t\t\t// functions never have name in IE\n\t\t\t\t\t\tname = \"name\" in fn ? fn.name : (reName.exec(fn) || [])[1];\n\n\t\t\t\t\tif ( name ) {\n\t\t\t\t\t\tret += \" \" + name;\n\t\t\t\t\t}\n\t\t\t\t\tret += \"( \";\n\n\t\t\t\t\tret = [ ret, QUnit.jsDump.parse( fn, \"functionArgs\" ), \"){\" ].join( \"\" );\n\t\t\t\t\treturn join( ret, QUnit.jsDump.parse(fn,\"functionCode\" ), \"}\" );\n\t\t\t\t},\n\t\t\t\tarray: array,\n\t\t\t\tnodelist: array,\n\t\t\t\t\"arguments\": array,\n\t\t\t\tobject: function( map, stack ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar ret = [ ], keys, key, val, i;\n\t\t\t\t\tQUnit.jsDump.up();\n\t\t\t\t\tkeys = [];\n\t\t\t\t\tfor ( key in map ) {\n\t\t\t\t\t\tkeys.push( key );\n\t\t\t\t\t}\n\t\t\t\t\tkeys.sort();\n\t\t\t\t\tfor ( i = 0; i < keys.length; i++ ) {\n\t\t\t\t\t\tkey = keys[ i ];\n\t\t\t\t\t\tval = map[ key ];\n\t\t\t\t\t\tret.push( QUnit.jsDump.parse( key, \"key\" ) + \": \" + QUnit.jsDump.parse( val, undefined, stack ) );\n\t\t\t\t\t}\n\t\t\t\t\tQUnit.jsDump.down();\n\t\t\t\t\treturn join( \"{\", ret, \"}\" );\n\t\t\t\t},\n\t\t\t\tnode: function( node ) {\n\t\t\t\t\tvar len, i, val,\n\t\t\t\t\t\topen = QUnit.jsDump.HTML ? \"&lt;\" : \"<\",\n\t\t\t\t\t\tclose = QUnit.jsDump.HTML ? \"&gt;\" : \">\",\n\t\t\t\t\t\ttag = node.nodeName.toLowerCase(),\n\t\t\t\t\t\tret = open + tag,\n\t\t\t\t\t\tattrs = node.attributes;\n\n\t\t\t\t\tif ( attrs ) {\n\t\t\t\t\t\tfor ( i = 0, len = attrs.length; i < len; i++ ) {\n\t\t\t\t\t\t\tval = attrs[i].nodeValue;\n\t\t\t\t\t\t\t// IE6 includes all attributes in .attributes, even ones not explicitly set.\n\t\t\t\t\t\t\t// Those have values like undefined, null, 0, false, \"\" or \"inherit\".\n\t\t\t\t\t\t\tif ( val && val !== \"inherit\" ) {\n\t\t\t\t\t\t\t\tret += \" \" + attrs[i].nodeName + \"=\" + QUnit.jsDump.parse( val, \"attribute\" );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tret += close;\n\n\t\t\t\t\t// Show content of TextNode or CDATASection\n\t\t\t\t\tif ( node.nodeType === 3 || node.nodeType === 4 ) {\n\t\t\t\t\t\tret += node.nodeValue;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn ret + open + \"/\" + tag + close;\n\t\t\t\t},\n\t\t\t\t// function calls it internally, it's the arguments part of the function\n\t\t\t\tfunctionArgs: function( fn ) {\n\t\t\t\t\tvar args,\n\t\t\t\t\t\tl = fn.length;\n\n\t\t\t\t\tif ( !l ) {\n\t\t\t\t\t\treturn \"\";\n\t\t\t\t\t}\n\n\t\t\t\t\targs = new Array(l);\n\t\t\t\t\twhile ( l-- ) {\n\t\t\t\t\t\t// 97 is 'a'\n\t\t\t\t\t\targs[l] = String.fromCharCode(97+l);\n\t\t\t\t\t}\n\t\t\t\t\treturn \" \" + args.join( \", \" ) + \" \";\n\t\t\t\t},\n\t\t\t\t// object calls it internally, the key part of an item in a map\n\t\t\t\tkey: quote,\n\t\t\t\t// function calls it internally, it's the content of the function\n\t\t\t\tfunctionCode: \"[code]\",\n\t\t\t\t// node calls it internally, it's an html attribute value\n\t\t\t\tattribute: quote,\n\t\t\t\tstring: quote,\n\t\t\t\tdate: quote,\n\t\t\t\tregexp: literal,\n\t\t\t\tnumber: literal,\n\t\t\t\t\"boolean\": literal\n\t\t\t},\n\t\t\t// if true, entities are escaped ( <, >, \\t, space and \\n )\n\t\t\tHTML: false,\n\t\t\t// indentation unit\n\t\t\tindentChar: \"  \",\n\t\t\t// if true, items in a collection, are separated by a \\n, else just a space.\n\t\t\tmultiline: true\n\t\t};\n\n\treturn jsDump;\n}());\n\n// from jquery.js\nfunction inArray( elem, array ) {\n\tif ( array.indexOf ) {\n\t\treturn array.indexOf( elem );\n\t}\n\n\tfor ( var i = 0, length = array.length; i < length; i++ ) {\n\t\tif ( array[ i ] === elem ) {\n\t\t\treturn i;\n\t\t}\n\t}\n\n\treturn -1;\n}\n\n/*\n * Javascript Diff Algorithm\n *  By John Resig (http://ejohn.org/)\n *  Modified by Chu Alan \"sprite\"\n *\n * Released under the MIT license.\n *\n * More Info:\n *  http://ejohn.org/projects/javascript-diff-algorithm/\n *\n * Usage: QUnit.diff(expected, actual)\n *\n * QUnit.diff( \"the quick brown fox jumped over\", \"the quick fox jumps over\" ) == \"the  quick <del>brown </del> fox <del>jumped </del><ins>jumps </ins> over\"\n */\nQUnit.diff = (function() {\n\t/*jshint eqeqeq:false, eqnull:true */\n\tfunction diff( o, n ) {\n\t\tvar i,\n\t\t\tns = {},\n\t\t\tos = {};\n\n\t\tfor ( i = 0; i < n.length; i++ ) {\n\t\t\tif ( !hasOwn.call( ns, n[i] ) ) {\n\t\t\t\tns[ n[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\to: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tns[ n[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i = 0; i < o.length; i++ ) {\n\t\t\tif ( !hasOwn.call( os, o[i] ) ) {\n\t\t\t\tos[ o[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\tn: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tos[ o[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i in ns ) {\n\t\t\tif ( hasOwn.call( ns, i ) ) {\n\t\t\t\tif ( ns[i].rows.length === 1 && hasOwn.call( os, i ) && os[i].rows.length === 1 ) {\n\t\t\t\t\tn[ ns[i].rows[0] ] = {\n\t\t\t\t\t\ttext: n[ ns[i].rows[0] ],\n\t\t\t\t\t\trow: os[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t\to[ os[i].rows[0] ] = {\n\t\t\t\t\t\ttext: o[ os[i].rows[0] ],\n\t\t\t\t\t\trow: ns[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = 0; i < n.length - 1; i++ ) {\n\t\t\tif ( n[i].text != null && n[ i + 1 ].text == null && n[i].row + 1 < o.length && o[ n[i].row + 1 ].text == null &&\n\t\t\t\t\t\tn[ i + 1 ] == o[ n[i].row + 1 ] ) {\n\n\t\t\t\tn[ i + 1 ] = {\n\t\t\t\t\ttext: n[ i + 1 ],\n\t\t\t\t\trow: n[i].row + 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row + 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row + 1 ],\n\t\t\t\t\trow: i + 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = n.length - 1; i > 0; i-- ) {\n\t\t\tif ( n[i].text != null && n[ i - 1 ].text == null && n[i].row > 0 && o[ n[i].row - 1 ].text == null &&\n\t\t\t\t\t\tn[ i - 1 ] == o[ n[i].row - 1 ]) {\n\n\t\t\t\tn[ i - 1 ] = {\n\t\t\t\t\ttext: n[ i - 1 ],\n\t\t\t\t\trow: n[i].row - 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row - 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row - 1 ],\n\t\t\t\t\trow: i - 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\treturn {\n\t\t\to: o,\n\t\t\tn: n\n\t\t};\n\t}\n\n\treturn function( o, n ) {\n\t\to = o.replace( /\\s+$/, \"\" );\n\t\tn = n.replace( /\\s+$/, \"\" );\n\n\t\tvar i, pre,\n\t\t\tstr = \"\",\n\t\t\tout = diff( o === \"\" ? [] : o.split(/\\s+/), n === \"\" ? [] : n.split(/\\s+/) ),\n\t\t\toSpace = o.match(/\\s+/g),\n\t\t\tnSpace = n.match(/\\s+/g);\n\n\t\tif ( oSpace == null ) {\n\t\t\toSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\toSpace.push( \" \" );\n\t\t}\n\n\t\tif ( nSpace == null ) {\n\t\t\tnSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\tnSpace.push( \" \" );\n\t\t}\n\n\t\tif ( out.n.length === 0 ) {\n\t\t\tfor ( i = 0; i < out.o.length; i++ ) {\n\t\t\t\tstr += \"<del>\" + out.o[i] + oSpace[i] + \"</del>\";\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tif ( out.n[0].text == null ) {\n\t\t\t\tfor ( n = 0; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\tstr += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( i = 0; i < out.n.length; i++ ) {\n\t\t\t\tif (out.n[i].text == null) {\n\t\t\t\t\tstr += \"<ins>\" + out.n[i] + nSpace[i] + \"</ins>\";\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// `pre` initialized at top of scope\n\t\t\t\t\tpre = \"\";\n\n\t\t\t\t\tfor ( n = out.n[i].row + 1; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\t\tpre += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t\t}\n\t\t\t\t\tstr += \" \" + out.n[i].text + nSpace[i] + pre;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn str;\n\t};\n}());\n\n// for CommonJS environments, export everything\nif ( typeof exports !== \"undefined\" ) {\n\textend( exports, QUnit.constructor.prototype );\n}\n\n// get at whatever the global object is, like window in browsers\n}( (function() {return this;}.call()) ));"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test-markdown-element-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Element Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\" data-element-attributes=\"{_\\s*?([^}]+?)}\">>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\t\t\t\t\t\t<!-- {_class=\"fragment fade-out\" data-fragment-index=\"1\"} -->\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\t\t\t\t\t\t<!-- {_class=\"fragment shrink\"} -->\n\n\t\t\t\t\t\tParagraph 1\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\tParagraph 2\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 2 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 3 <!-- {_class=\"fragment grow\"} -->\n\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\n\n\t\t\t\t\t\tParagraph 1.2  \n\t\t\t\t\t\tmulti-line <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.2 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.3 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.4 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 2<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 3<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 4\n\t\t\t\t\t\t<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 5<!-- {_class=\"fragment highlight-green\"} -->\n\n\t\t\t\t\t\tTest\n\n\t\t\t\t\t\t![Example Picture](examples/assets/image2.png)\n\t\t\t\t\t\t<!-- {_class=\"reveal stretch\"} -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def <!-- .element: class=\"fragment highlight-red\" data-fragment-index=\"1\" -->\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .element: class=\"fragment highlight-red\" -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\t\t\t\t\tA paragraph\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tMultiple  \n\t\t\t\t\tLine\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tTest<!-- .element: class=\"fragment highlight-blue\" -->\n\n\t\t\t\t\tMore Test\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-element-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test-markdown-element-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 4, 'found four slides' );\n\t});\n\n\n\ttest( 'Attributes on element header in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.fade-out' ).length, 1, 'found one vertical slide with class fragment.fade-out on header' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.shrink' ).length, 1, 'found one vertical slide with class fragment.shrink on header' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section p.fragment.grow' ).length, 2, 'found a vertical slide with two paragraphs with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element list items in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-red' ).length, 4, 'found a horizontal slide with four paragraphs with class fragment.grow' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section li.fragment.highlight-green' ).length, 5, 'found a horizontal slide with five list items with class fragment.roll-in' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section img.reveal.stretch' ).length, 1, 'found a horizontal slide with stretched image, class img.reveal.stretch' );\n\t});\n\n\ttest( 'Attributes on elements in vertical slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section h2.fragment.highlight-red' ).length, 2, 'found two h2 titles with fragment highlight-red in vertical slides with default element attribute separator' );\n\t});\n\n\ttest( 'Attributes on elements in single slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-blue' ).length, 3, 'found three elements with fragment highlight-blue in single slide with default element attribute separator' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test-markdown-slide-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by three lines, vertical slides by two lines, attributes are one any line starting with (spaces and) two dashes -->\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-attributes=\"--\\s(.*?)$\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown\n\t\t\t\t\t\t## Slide 1\n\n\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t\t<!-- -- id=\"slide2\" data-transition=\"zoom\" data-background=\"#A0C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1\n\t\t\t\t\t\t<!-- -- data-background=\"#ff0000\" data-transition=\"fade\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2\n\t\t\t\t\t\t[Link to Slide2](#/slide2)\n\n\n\n\t\t\t\t\t\t## Slide 3\n\t\t\t\t\t\t<!-- -- data-transition=\"zoom\" data-background=\"#C6916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def\n\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .slide: id=\"slide2def\" data-transition=\"concave\" data-background=\"#A7C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1 Def\n\t\t\t\t\t\t<!-- .slide: data-background=\"#f70000\" data-transition=\"page\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2 Def\n\t\t\t\t\t\t[Link to Slide2](#/slide2def)\n\n\n\n\t\t\t\t\t\t## Slide 3 Def\n\t\t\t\t\t\t<!-- .slide: data-transition=\"concave\" data-background=\"#C7916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\n\t\t\t\t\t\tTest\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\n\t\t\t\t\t\tMore Test\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-slide-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test-markdown-slide-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 6, 'found six vertical slides' );\n\t});\n\n\ttest( 'Id on slide', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section#slide2' ).length, 1, 'found one slide with id slide2' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section a[href=\"#/slide2\"]' ).length, 1, 'found one slide with a link to slide2' );\n\t});\n\n\ttest( 'data-background attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A0C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#ff0000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C6916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"zoom\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"fade\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"zoom\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-background attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A7C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#f70000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C7916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"concave\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"page\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"concave\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-transition attributes with inline content', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#ff0000\"]' ).length, 3, 'found three horizontal slides with data-background=\"#ff0000\"' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test-markdown.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test-markdown.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test-pdf.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test PDF exports</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../css/print/pdf.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-pdf.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test-pdf.js",
    "content": "\nReveal.addEventListener( 'ready', function() {\n\n\t// Only one test for now, we're mainly ensuring that there\n\t// are no execution errors when running PDF mode\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\n} );\n\nReveal.initialize({ pdf: true });\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Tests</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background-image=\"examples/assets/image1.png\">\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t\t<video data-src=\"fake-url.mp4\"></video>\n\t\t\t\t\t<audio data-src=\"fake-url.mp3\"></audio>\n\t\t\t\t\t<aside class=\"notes\">speaker notes 1</aside>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"examples/assets/image2.png\" data-notes=\"speaker notes 2\">\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t<iframe data-src=\"http://example.com\"></iframe>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/test/test.js",
    "content": "\n// These tests expect the DOM to contain a presentation\n// with the following slide structure:\n//\n// 1\n// 2 - Three sub-slides\n// 3 - Three fragment elements\n// 3 - Two fragments with same data-fragment-index\n// 4\n\n\nReveal.addEventListener( 'ready', function() {\n\n\t// ---------------------------------------------------------------\n\t// DOM TESTS\n\n\tQUnit.module( 'DOM' );\n\n\ttest( 'Initial slides classes', function() {\n\t\tvar horizontalSlides = document.querySelectorAll( '.reveal .slides>section' )\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.past' ).length, 0, 'no .past slides' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.present' ).length, 1, 'one .present slide' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section.future' ).length, horizontalSlides.length - 1, 'remaining horizontal slides are .future' );\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.stack' ).length, 2, 'two .stacks' );\n\n\t\tok( document.querySelectorAll( '.reveal .slides section.stack' )[0].querySelectorAll( '.future' ).length > 0, 'vertical slides are given .future' );\n\t});\n\n\t// ---------------------------------------------------------------\n\t// API TESTS\n\n\tQUnit.module( 'API' );\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\ttest( 'Reveal.isOverview', function() {\n\t\tstrictEqual( Reveal.isOverview(), false, 'false by default' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), true, 'true after toggling on' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), false, 'false after toggling off' );\n\t});\n\n\ttest( 'Reveal.isPaused', function() {\n\t\tstrictEqual( Reveal.isPaused(), false, 'false by default' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), true, 'true after pausing' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), false, 'false after resuming' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), false, 'false after Reveal.slide( 1, 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide after vertical slide', function() {\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide after vertical slide', function() {\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( lastSlideIndex );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\t});\n\n\ttest( 'Reveal.getTotalSlides', function() {\n\t\tstrictEqual( Reveal.getTotalSlides(), 8, 'eight slides in total' );\n\t});\n\n\ttest( 'Reveal.getIndices', function() {\n\t\tvar indices = Reveal.getIndices();\n\n\t\tok( indices.hasOwnProperty( 'h' ), 'h exists' );\n\t\tok( indices.hasOwnProperty( 'v' ), 'v exists' );\n\t\tok( indices.hasOwnProperty( 'f' ), 'f exists' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\n\t\tReveal.slide( 1, 2 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 2, 'v 2' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 0, 'h 0' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\t});\n\n\ttest( 'Reveal.getSlide', function() {\n\t\tequal( Reveal.getSlide( 0 ), document.querySelector( '.reveal .slides>section:first-child' ), 'gets correct first slide' );\n\t\tequal( Reveal.getSlide( 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlide( 1, 0 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlide( 1, 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlide( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlide( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideBackground', function() {\n\t\tequal( Reveal.getSlideBackground( 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:first-child' ), 'gets correct first background' );\n\t\tequal( Reveal.getSlideBackground( 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlideBackground( 1, 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlideBackground( 1, 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlideBackground( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlideBackground( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideNotes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 1', 'works with <aside class=\"notes\">' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 2', 'works with <section data-notes=\"\">' );\n\t});\n\n\ttest( 'Reveal.getPreviousSlide/getCurrentSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tReveal.slide( 1, 0 );\n\n\t\tvar firstSlide = document.querySelector( '.reveal .slides>section:first-child' );\n\t\tvar secondSlide = document.querySelector( '.reveal .slides>section:nth-child(2)>section' );\n\n\t\tequal( Reveal.getPreviousSlide(), firstSlide, 'previous is slide #0' );\n\t\tequal( Reveal.getCurrentSlide(), secondSlide, 'current is slide #1' );\n\t});\n\n\ttest( 'Reveal.getProgress', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 0, 'progress is 0 on first slide' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 1, 'progress is 1 on last slide' );\n\t});\n\n\ttest( 'Reveal.getScale', function() {\n\t\tok( typeof Reveal.getScale() === 'number', 'has scale' );\n\t});\n\n\ttest( 'Reveal.getConfig', function() {\n\t\tok( typeof Reveal.getConfig() === 'object', 'has config' );\n\t});\n\n\ttest( 'Reveal.configure', function() {\n\t\tstrictEqual( Reveal.getConfig().loop, false, '\"loop\" is false to start with' );\n\n\t\tReveal.configure({ loop: true });\n\t\tstrictEqual( Reveal.getConfig().loop, true, '\"loop\" has changed to true' );\n\n\t\tReveal.configure({ loop: false, customTestValue: 1 });\n\t\tstrictEqual( Reveal.getConfig().customTestValue, 1, 'supports custom values' );\n\t});\n\n\ttest( 'Reveal.availableRoutes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: false, up: false, down: false, right: true }, 'correct for first slide' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: true, up: false, down: true, right: true }, 'correct for vertical slide' );\n\t});\n\n\ttest( 'Reveal.next', function() {\n\t\tReveal.slide( 0, 0 );\n\n\t\t// Step through vertical child slides\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 1, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 2, f: undefined } );\n\n\t\t// Step through fragments\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 } );\n\t});\n\n\ttest( 'Reveal.next at end', function() {\n\t\tReveal.slide( 3 );\n\n\t\t// We're at the end, this should have no effect\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// FRAGMENT TESTS\n\n\tQUnit.module( 'Fragments' );\n\n\ttest( 'Sliding to fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 }, 'Reveal.slide( 2, 0, -1 )' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'Reveal.slide( 2, 0, 0 )' );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'Reveal.slide( 2, 0, 2 )' );\n\n\t\tReveal.slide( 2, 0, 1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'Reveal.slide( 2, 0, 1 )' );\n\t});\n\n\ttest( 'Hiding all fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 1, 'one fragment visible when index is 0' );\n\n\t\tReveal.slide( 2, 0, -1 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when index is -1' );\n\t});\n\n\ttest( 'Current fragment', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment at index -1' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 1, 'one current fragment at index 0' );\n\n\t\tReveal.slide( 1, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to next slide' );\n\t});\n\n\ttest( 'Stepping through fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\n\t\t// forwards:\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'next() goes to next fragment' );\n\n\t\tReveal.right();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'right() goes to next fragment' );\n\n\t\tReveal.down();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'down() goes to next fragment' );\n\n\t\tReveal.down(); // moves to f #3\n\n\t\t// backwards:\n\n\t\tReveal.prev();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'prev() goes to prev fragment' );\n\n\t\tReveal.left();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'left() goes to prev fragment' );\n\n\t\tReveal.up();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'up() goes to prev fragment' );\n\t});\n\n\ttest( 'Stepping past fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 0, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when on previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 3, 'all fragments visible when on future slide' );\n\t});\n\n\ttest( 'Fragment indices', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(2)' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 2, 'both fragments of same index are shown' );\n\n\t\t// This slide has three fragments, first one is index 0, second and third have index 1\n\t\tReveal.slide( 2, 2, 0 );\n\t\tequal( Reveal.getIndices().f, 0, 'returns correct index for first fragment' );\n\n\t\tReveal.slide( 2, 2, 1 );\n\t\tequal( Reveal.getIndices().f, 1, 'returns correct index for two fragments with same index' );\n\t});\n\n\ttest( 'Index generation', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\t// These have no indices defined to start with\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '2' );\n\t});\n\n\ttest( 'Index normalization', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(3)' );\n\n\t\t// These start out as 1-4-4 and should normalize to 0-1-1\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '1' );\n\t});\n\n\tasyncTest( 'fragmentshown event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmentshown', _onEvent );\n\n\t\tReveal.slide( 2, 0 );\n\t\tReveal.slide( 2, 0 ); // should do nothing\n\t\tReveal.slide( 2, 0, 0 ); // should do nothing\n\t\tReveal.next();\n\t\tReveal.next();\n\t\tReveal.prev(); // shouldn't fire fragmentshown\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmentshown', _onEvent );\n\t});\n\n\tasyncTest( 'fragmenthidden event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmenthidden', _onEvent );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tReveal.slide( 2, 0, 2 ); // should do nothing\n\t\tReveal.prev();\n\t\tReveal.prev();\n\t\tReveal.next(); // shouldn't fire fragmenthidden\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmenthidden', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// AUTO-SLIDE TESTS\n\n\tQUnit.module( 'Auto Sliding' );\n\n\ttest( 'Reveal.isAutoSliding', function() {\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false by default' );\n\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after starting' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after setting to 0' );\n\t});\n\n\ttest( 'Reveal.toggleAutoSlide', function() {\n\t\tReveal.configure({ autoSlide: 10000 });\n\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after first toggle' );\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after second toggle' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t});\n\n\tasyncTest( 'autoslidepaused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslidepaused', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslidepaused', _onEvent );\n\t});\n\n\tasyncTest( 'autoslideresumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslideresumed', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslideresumed', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// CONFIGURATION VALUES\n\n\tQUnit.module( 'Configuration' );\n\n\ttest( 'Controls', function() {\n\t\tvar controlsElement = document.querySelector( '.reveal>.controls' );\n\n\t\tReveal.configure({ controls: false });\n\t\tequal( controlsElement.style.display, 'none', 'controls are hidden' );\n\n\t\tReveal.configure({ controls: true });\n\t\tequal( controlsElement.style.display, 'block', 'controls are visible' );\n\t});\n\n\ttest( 'Progress', function() {\n\t\tvar progressElement = document.querySelector( '.reveal>.progress' );\n\n\t\tReveal.configure({ progress: false });\n\t\tequal( progressElement.style.display, 'none', 'progress are hidden' );\n\n\t\tReveal.configure({ progress: true });\n\t\tequal( progressElement.style.display, 'block', 'progress are visible' );\n\t});\n\n\ttest( 'Loop', function() {\n\t\tReveal.configure({ loop: true });\n\n\t\tReveal.slide( 0, 0 );\n\n\t\tReveal.left();\n\t\tnotEqual( Reveal.getIndices().h, 0, 'looped from start to end' );\n\n\t\tReveal.right();\n\t\tequal( Reveal.getIndices().h, 0, 'looped from end to start' );\n\n\t\tReveal.configure({ loop: false });\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// LAZY-LOADING TESTS\n\n\tQUnit.module( 'Lazy-Loading' );\n\n\ttest( 'img with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section img[src]' ).length, 1, 'Image source has been set' );\n\t});\n\n\ttest( 'video with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section video[src]' ).length, 1, 'Video source has been set' );\n\t});\n\n\ttest( 'audio with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section audio[src]' ).length, 1, 'Audio source has been set' );\n\t});\n\n\ttest( 'iframe with data-src', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t\tReveal.slide( 2, 1 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 1, 'Iframe source is set' );\n\t\tReveal.slide( 2, 2 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t});\n\n\ttest( 'background images', function() {\n\t\tvar imageSource1 = Reveal.getSlide( 0 ).getAttribute( 'data-background-image' );\n\t\tvar imageSource2 = Reveal.getSlide( 1, 0 ).getAttribute( 'data-background' );\n\n\t\t// check that the images are applied to the background elements\n\t\tok( Reveal.getSlideBackground( 0 ).style.backgroundImage.indexOf( imageSource1 ) !== -1, 'data-background-image worked' );\n\t\tok( Reveal.getSlideBackground( 1, 0 ).style.backgroundImage.indexOf( imageSource2 ) !== -1, 'data-background worked' );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// EVENT TESTS\n\n\tQUnit.module( 'Events' );\n\n\tasyncTest( 'slidechanged', function() {\n\t\texpect( 3 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'slidechanged', _onEvent );\n\n\t\tReveal.slide( 1, 0 ); // should trigger\n\t\tReveal.slide( 1, 0 ); // should do nothing\n\t\tReveal.next(); // should trigger\n\t\tReveal.slide( 3, 0 ); // should trigger\n\t\tReveal.next(); // should do nothing\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'slidechanged', _onEvent );\n\n\t});\n\n\tasyncTest( 'paused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'paused', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'paused', _onEvent );\n\t});\n\n\tasyncTest( 'resumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'resumed', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'resumed', _onEvent );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/uml/app0.uml",
    "content": "@startuml\n\nApp : run() : void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/uml/app1.uml",
    "content": "@startuml\n\n\"Printer\" : show(int) : void\n\"Reader\" : read() : int\n\n\"App\" ..> \"Reader\"\n\"App\" ..> \"Printer\"\n\n\"App\" : run() : void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/uml/app2.uml",
    "content": "@startuml\n\n\"Printer\" : show(int) : void\n\"Reader\" : read() : int\n\n\"App\" *.. \"Reader\"\n\"App\" *.. \"Printer\"\n\n\"App\" : run() : void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/uml/app3.uml",
    "content": "@startuml\n\n\"IPrinter\" : show(int) : void\n\"IReader\" : read() : int\n\n\"ConsolePrinter\" -up-|> \"IPrinter\"\n\"ConsolePrinter\" : show(int) : void\n\n\"FileReader\" -up-|> \"IReader\"\n\"FileReader\" : read() : int\n\n\"App\" ..> \"IReader\"\n\"App\" ..> \"IPrinter\"\n\n\"App\" : run: void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/uml/app4.uml",
    "content": "@startuml\n\n\"Printer<T>\" : show(int) : void\n\"Reader<T>\" : read() : int\n\n\"ConsolePrinter\" -up-|> \"Printer<T>\"\n\"ConsolePrinter\" : show(int) : void\n\n\"FileReader\" -up-|> \"Reader<T>\"\n\"FileReader\" : read() : int\n\n\"App\" ..> \"Reader<T>\"\n\"App\" ..> \"Printer<T>\"\n\n\"App\" : run: void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/concepts-driven-design-with-di/uml/guideline.uml",
    "content": "@startuml\n\nstart\n\nif (I know the dependency at compile time?) then (yes)\n  :Concepts;\nelse (no)\n   if (I need max performance and no heap?) then (yes)\n    :Type Erasure;\n   else (no)\n    :Virtual Functions;\n   endif\nendif\n\nstop\n\n@enduml\n"
  },
  {
    "path": "doc/cpp-london-2017/.gitignore",
    "content": ".DS_Store\n.svn\nlog/*.log\ntmp/**\nnode_modules/\n.sass-cache\ncss/reveal.min.css\njs/reveal.min.js\n"
  },
  {
    "path": "doc/cpp-london-2017/.travis.yml",
    "content": "language: node_js\nnode_js:\n  - 4.1.1\nbefore_script:\n  - npm install -g grunt-cli"
  },
  {
    "path": "doc/cpp-london-2017/CONTRIBUTING.md",
    "content": "## Contributing\n\nPlease keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.\n\n\n### Personal Support\nIf you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).\n\n\n### Bug Reports\nWhen reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.\n\n\n### Pull Requests\n- Should follow the coding style of the file you work in, most importantly:\n  - Tabs to indent\n  - Single-quoted strings\n- Should be made towards the **dev branch**\n- Should be submitted from a feature/topic branch (not your master)\n\n\n### Plugins\nPlease do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines\n"
  },
  {
    "path": "doc/cpp-london-2017/Gruntfile.js",
    "content": "/* global module:false */\nmodule.exports = function(grunt) {\n\tvar port = grunt.option('port') || 8000;\n\tvar base = grunt.option('base') || '.';\n\n\t// Project configuration\n\tgrunt.initConfig({\n\t\tpkg: grunt.file.readJSON('package.json'),\n\t\tmeta: {\n\t\t\tbanner:\n\t\t\t\t'/*!\\n' +\n\t\t\t\t' * reveal.js <%= pkg.version %> (<%= grunt.template.today(\"yyyy-mm-dd, HH:MM\") %>)\\n' +\n\t\t\t\t' * http://lab.hakim.se/reveal-js\\n' +\n\t\t\t\t' * MIT licensed\\n' +\n\t\t\t\t' *\\n' +\n\t\t\t\t' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\\n' +\n\t\t\t\t' */'\n\t\t},\n\n\t\tqunit: {\n\t\t\tfiles: [ 'test/*.html' ]\n\t\t},\n\n\t\tuglify: {\n\t\t\toptions: {\n\t\t\t\tbanner: '<%= meta.banner %>\\n'\n\t\t\t},\n\t\t\tbuild: {\n\t\t\t\tsrc: 'js/reveal.js',\n\t\t\t\tdest: 'js/reveal.min.js'\n\t\t\t}\n\t\t},\n\n\t\tsass: {\n\t\t\tcore: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.css': 'css/reveal.scss',\n\t\t\t\t}\n\t\t\t},\n\t\t\tthemes: {\n\t\t\t\tfiles: [\n\t\t\t\t\t{\n\t\t\t\t\t\texpand: true,\n\t\t\t\t\t\tcwd: 'css/theme/source',\n\t\t\t\t\t\tsrc: ['*.scss'],\n\t\t\t\t\t\tdest: 'css/theme',\n\t\t\t\t\t\text: '.css'\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t},\n\n\t\tautoprefixer: {\n\t\t\tdist: {\n\t\t\t\tsrc: 'css/reveal.css'\n\t\t\t}\n\t\t},\n\n\t\tcssmin: {\n\t\t\tcompress: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.min.css': [ 'css/reveal.css' ]\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tjshint: {\n\t\t\toptions: {\n\t\t\t\tcurly: false,\n\t\t\t\teqeqeq: true,\n\t\t\t\timmed: true,\n\t\t\t\tlatedef: true,\n\t\t\t\tnewcap: true,\n\t\t\t\tnoarg: true,\n\t\t\t\tsub: true,\n\t\t\t\tundef: true,\n\t\t\t\teqnull: true,\n\t\t\t\tbrowser: true,\n\t\t\t\texpr: true,\n\t\t\t\tglobals: {\n\t\t\t\t\thead: false,\n\t\t\t\t\tmodule: false,\n\t\t\t\t\tconsole: false,\n\t\t\t\t\tunescape: false,\n\t\t\t\t\tdefine: false,\n\t\t\t\t\texports: false\n\t\t\t\t}\n\t\t\t},\n\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ]\n\t\t},\n\n\t\tconnect: {\n\t\t\tserver: {\n\t\t\t\toptions: {\n\t\t\t\t\tport: port,\n\t\t\t\t\tbase: base,\n\t\t\t\t\tlivereload: true,\n\t\t\t\t\topen: true\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tzip: {\n\t\t\t'reveal-js-presentation.zip': [\n\t\t\t\t'index.html',\n\t\t\t\t'css/**',\n\t\t\t\t'js/**',\n\t\t\t\t'lib/**',\n\t\t\t\t'images/**',\n\t\t\t\t'plugin/**',\n\t\t\t\t'**.md'\n\t\t\t]\n\t\t},\n\n\t\twatch: {\n\t\t\toptions: {\n\t\t\t\tlivereload: true\n\t\t\t},\n\t\t\tjs: {\n\t\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ],\n\t\t\t\ttasks: 'js'\n\t\t\t},\n\t\t\ttheme: {\n\t\t\t\tfiles: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],\n\t\t\t\ttasks: 'css-themes'\n\t\t\t},\n\t\t\tcss: {\n\t\t\t\tfiles: [ 'css/reveal.scss' ],\n\t\t\t\ttasks: 'css-core'\n\t\t\t},\n\t\t\thtml: {\n\t\t\t\tfiles: [ 'index.html']\n\t\t\t},\n\t\t\tmarkdown: {\n\t\t\t\tfiles: [ './*.md' ]\n\t\t\t}\n\t\t}\n\n\t});\n\n\t// Dependencies\n\tgrunt.loadNpmTasks( 'grunt-contrib-qunit' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-jshint' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-cssmin' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-uglify' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-watch' );\n\tgrunt.loadNpmTasks( 'grunt-sass' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-connect' );\n\tgrunt.loadNpmTasks( 'grunt-autoprefixer' );\n\tgrunt.loadNpmTasks( 'grunt-zip' );\n\n\t// Default task\n\tgrunt.registerTask( 'default', [ 'css', 'js' ] );\n\n\t// JS task\n\tgrunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );\n\n\t// Theme CSS\n\tgrunt.registerTask( 'css-themes', [ 'sass:themes' ] );\n\n\t// Core framework CSS\n\tgrunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );\n\n\t// All CSS\n\tgrunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );\n\n\t// Package presentation to archive\n\tgrunt.registerTask( 'package', [ 'default', 'zip' ] );\n\n\t// Serve presentation locally\n\tgrunt.registerTask( 'serve', [ 'connect', 'watch' ] );\n\n\t// Run tests\n\tgrunt.registerTask( 'test', [ 'jshint', 'qunit' ] );\n\n};\n"
  },
  {
    "path": "doc/cpp-london-2017/LICENSE",
    "content": "Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "doc/cpp-london-2017/README.md",
    "content": "# reveal.js [![Build Status](https://travis-ci.org/hakimel/reveal.js.svg?branch=master)](https://travis-ci.org/hakimel/reveal.js)\n\nA framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/).\n\nreveal.js comes with a broad range of features including [nested slides](https://github.com/hakimel/reveal.js#markup), [Markdown contents](https://github.com/hakimel/reveal.js#markdown), [PDF export](https://github.com/hakimel/reveal.js#pdf-export), [speaker notes](https://github.com/hakimel/reveal.js#speaker-notes) and a [JavaScript API](https://github.com/hakimel/reveal.js#api). It's best viewed in a modern browser but [fallbacks](https://github.com/hakimel/reveal.js/wiki/Browser-Support) are available to make sure your presentation can still be viewed elsewhere.\n\n\n#### More reading:\n- [Installation](#installation): Step-by-step instructions for getting reveal.js running on your computer.\n- [Changelog](https://github.com/hakimel/reveal.js/releases): Up-to-date version history.\n- [Examples](https://github.com/hakimel/reveal.js/wiki/Example-Presentations): Presentations created with reveal.js, add your own!\n- [Browser Support](https://github.com/hakimel/reveal.js/wiki/Browser-Support): Explanation of browser support and fallbacks.\n- [Plugins](https://github.com/hakimel/reveal.js/wiki/Plugins,-Tools-and-Hardware): A list of plugins that can be used to extend reveal.js.\n\n## Online Editor\n\nPresentations are written using HTML or Markdown but there's also an online editor for those of you who prefer a graphical interface. Give it a try at [http://slides.com](http://slides.com).\n\n\n## Instructions\n\n### Markup\n\nMarkup hierarchy needs to be ``<div class=\"reveal\"> <div class=\"slides\"> <section>`` where the ``<section>`` represents one slide and can be repeated indefinitely. If you place multiple ``<section>``'s inside of another ``<section>`` they will be shown as vertical slides. The first of the vertical slides is the \"root\" of the others (at the top), and it will be included in the horizontal sequence. For example:\n\n```html\n<div class=\"reveal\">\n\t<div class=\"slides\">\n\t\t<section>Single Horizontal Slide</section>\n\t\t<section>\n\t\t\t<section>Vertical Slide 1</section>\n\t\t\t<section>Vertical Slide 2</section>\n\t\t</section>\n\t</div>\n</div>\n```\n\n### Markdown\n\nIt's possible to write your slides using Markdown. To enable Markdown, add the ```data-markdown``` attribute to your ```<section>``` elements and wrap the contents in a ```<script type=\"text/template\">``` like the example below.\n\nThis is based on [data-markdown](https://gist.github.com/1343518) from [Paul Irish](https://github.com/paulirish) modified to use [marked](https://github.com/chjj/marked) to support [Github Flavoured Markdown](https://help.github.com/articles/github-flavored-markdown). Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks).\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t## Page title\n\n\t\tA paragraph with some text and a [link](http://hakim.se).\n\t</script>\n</section>\n```\n\n#### External Markdown\n\nYou can write your content as a separate file and have reveal.js load it at runtime. Note the separator arguments which determine how slides are delimited in the external file. The ```data-charset``` attribute is optional and specifies which charset to use when loading the external file.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section data-markdown=\"example.md\"  \n         data-separator=\"^\\n\\n\\n\"  \n         data-separator-vertical=\"^\\n\\n\"  \n         data-separator-notes=\"^Note:\"  \n         data-charset=\"iso-8859-15\">\n</section>\n```\n\n#### Element Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to Markdown elements. This is useful for fragments, amongst other things.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t- Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n\t\t- Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n\t</script>\n</section>\n```\n\n#### Slide Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to the slide `<section>` elements generated by your Markdown.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\tMarkdown content\n\t</script>\n</section>\n```\n\n\n### Configuration\n\nAt the end of your page you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below.\n\n```javascript\nReveal.initialize({\n\n\t// Display controls in the bottom right corner\n\tcontrols: true,\n\n\t// Display a presentation progress bar\n\tprogress: true,\n\n\t// Display the page number of the current slide\n\tslideNumber: false,\n\n\t// Push each slide change to the browser history\n\thistory: false,\n\n\t// Enable keyboard shortcuts for navigation\n\tkeyboard: true,\n\n\t// Enable the slide overview mode\n\toverview: true,\n\n\t// Vertical centering of slides\n\tcenter: true,\n\n\t// Enables touch navigation on devices with touch input\n\ttouch: true,\n\n\t// Loop the presentation\n\tloop: false,\n\n\t// Change the presentation direction to be RTL\n\trtl: false,\n\n\t// Turns fragments on and off globally\n\tfragments: true,\n\n\t// Flags if the presentation is running in an embedded mode,\n\t// i.e. contained within a limited portion of the screen\n\tembedded: false,\n\n\t// Flags if we should show a help overlay when the questionmark\n\t// key is pressed\n\thelp: true,\n\n\t// Flags if speaker notes should be visible to all viewers\n\tshowNotes: false,\n\n\t// Number of milliseconds between automatically proceeding to the\n\t// next slide, disabled when set to 0, this value can be overwritten\n\t// by using a data-autoslide attribute on your slides\n\tautoSlide: 0,\n\n\t// Stop auto-sliding after user input\n\tautoSlideStoppable: true,\n\n\t// Enable slide navigation via mouse wheel\n\tmouseWheel: false,\n\n\t// Hides the address bar on mobile devices\n\thideAddressBar: true,\n\n\t// Opens links in an iframe preview overlay\n\tpreviewLinks: false,\n\n\t// Transition style\n\ttransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Transition speed\n\ttransitionSpeed: 'default', // default/fast/slow\n\n\t// Transition style for full page slide backgrounds\n\tbackgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Number of slides away from the current that are visible\n\tviewDistance: 3,\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n\t// Amount to move parallax background (horizontal and vertical) on slide change\n\t// Number, e.g. 100\n\tparallaxBackgroundHorizontal: '',\n\tparallaxBackgroundVertical: ''\n\n});\n```\n\n\nThe configuration can be updated after initialization using the ```configure``` method:\n\n```javascript\n// Turn autoSlide off\nReveal.configure({ autoSlide: 0 });\n\n// Start auto-sliding every 5s\nReveal.configure({ autoSlide: 5000 });\n```\n\n\n### Presentation Size\n\nAll presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport.\n\nSee below for a list of configuration options related to sizing, including default values:\n\n```javascript\nReveal.initialize({\n\n\t...\n\n\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t// when the presentation is scaled to fit different resolutions. Can be\n\t// specified using percentage units.\n\twidth: 960,\n\theight: 700,\n\n\t// Factor of the display size that should remain empty around the content\n\tmargin: 0.1,\n\n\t// Bounds for smallest/largest possible scale to apply to content\n\tminScale: 0.2,\n\tmaxScale: 1.5\n\n});\n```\n\n\n### Dependencies\n\nReveal.js doesn't _rely_ on any third party scripts to work but a few optional libraries are included by default. These libraries are loaded as dependencies in the order they appear, for example:\n\n```javascript\nReveal.initialize({\n\tdependencies: [\n\t\t// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/\n\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\n\t\t// Interpret Markdown in <section> elements\n\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\n\t\t// Syntax highlight for <code> elements\n\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\n\t\t// Zoom in and out with Alt+click\n\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\n\t\t// Speaker notes\n\t\t{ src: 'plugin/notes/notes.js', async: true },\n\n\t\t// MathJax\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n});\n```\n\nYou can add your own extensions using the same syntax. The following properties are available for each dependency object:\n- **src**: Path to the script to load\n- **async**: [optional] Flags if the script should load after reveal.js has started, defaults to false\n- **callback**: [optional] Function to execute when the script has loaded\n- **condition**: [optional] Function which must return true for the script to be loaded\n\n\n### Ready Event\n\nA 'ready' event is fired when reveal.js has loaded all non-async dependencies and is ready to start navigating. To check if reveal.js is already 'ready' you can call `Reveal.isReady()`.\n\n```javascript\nReveal.addEventListener( 'ready', function( event ) {\n\t// event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n\n### Auto-sliding\n\nPresentations can be configured to progress through slides automatically, without any user input. To enable this you will need to tell the framework how many milliseconds it should wait between slides:\n\n```javascript\n// Slide every five seconds\nReveal.configure({\n  autoSlide: 5000\n});\n```\nWhen this is turned on a control element will appear that enables users to pause and resume auto-sliding. Alternatively, sliding can be paused or resumed by pressing »a« on the keyboard. Sliding is paused automatically as soon as the user starts navigating. You can disable these controls by specifying ```autoSlideStoppable: false``` in your reveal.js config.\n\nYou can also override the slide duration for individual slides and fragments by using the ```data-autoslide``` attribute:\n\n```html\n<section data-autoslide=\"2000\">\n\t<p>After 2 seconds the first fragment will be shown.</p>\n\t<p class=\"fragment\" data-autoslide=\"10000\">After 10 seconds the next fragment will be shown.</p>\n\t<p class=\"fragment\">Now, the fragment is displayed for 2 seconds before the next slide is shown.</p>\n</section>\n```\n\nWhenever the auto-slide mode is resumed or paused the ```autoslideresumed``` and ```autoslidepaused``` events are fired.\n\n\n### Keyboard Bindings\n\nIf you're unhappy with any of the default keyboard bindings you can override them using the ```keyboard``` config option:\n\n```javascript\nReveal.configure({\n  keyboard: {\n    13: 'next', // go to the next slide when the ENTER key is pressed\n    27: function() {}, // do something custom when ESC is pressed\n    32: null // don't do anything when SPACE is pressed (i.e. disable a reveal.js default binding)\n  }\n});\n```\n\n### Touch Navigation\n\nYou can swipe to navigate through a presentation on any touch-enabled device. Horizontal swipes change between horizontal slides, vertical swipes change between vertical slides. If you wish to disable this you can set the `touch` config option to false when initializing reveal.js.\n\nIf there's some part of your content that needs to remain accessible to touch events you'll need to highlight this by adding a `data-prevent-swipe` attribute to the element. One common example where this is useful is elements that need to be scrolled.\n\n\n### Lazy Loading\n\nWhen working on presentation with a lot of media or iframe content it's important to load lazily. Lazy loading means that reveal.js will only load content for the few slides nearest to the current slide. The number of slides that are preloaded is determined by the `viewDistance` configuration option.\n\nTo enable lazy loading all you need to do is change your \"src\" attributes to \"data-src\" as shown below. This is supported for image, video, audio and iframe elements. Lazy loaded iframes will also unload when the containing slide is no longer visible.\n\n```html\n<section>\n  <img data-src=\"image.png\">\n  <iframe data-src=\"http://hakim.se\"></iframe>\n  <video>\n    <source data-src=\"video.webm\" type=\"video/webm\" />\n    <source data-src=\"video.mp4\" type=\"video/mp4\" />\n  </video>\n</section>\n```\n\n\n### API\n\nThe ``Reveal`` object exposes a JavaScript API for controlling navigation and reading state:\n\n```javascript\n// Navigation\nReveal.slide( indexh, indexv, indexf );\nReveal.left();\nReveal.right();\nReveal.up();\nReveal.down();\nReveal.prev();\nReveal.next();\nReveal.prevFragment();\nReveal.nextFragment();\n\n// Toggle presentation states, optionally pass true/false to force on/off\nReveal.toggleOverview();\nReveal.togglePause();\nReveal.toggleAutoSlide();\n\n// Change a config value at runtime\nReveal.configure({ controls: true });\n\n// Returns the present configuration options\nReveal.getConfig();\n\n// Fetch the current scale of the presentation\nReveal.getScale();\n\n// Retrieves the previous and current slide elements\nReveal.getPreviousSlide();\nReveal.getCurrentSlide();\n\nReveal.getIndices(); // { h: 0, v: 0 } }\nReveal.getProgress(); // 0-1\nReveal.getTotalSlides();\n\n// Returns the speaker notes for the current slide\nReveal.getSlideNotes();\n\n// State checks\nReveal.isFirstSlide();\nReveal.isLastSlide();\nReveal.isOverview();\nReveal.isPaused();\nReveal.isAutoSliding();\n```\n\n### Slide Changed Event\n\nA 'slidechanged' event is fired each time the slide is changed (regardless of state). The event object holds the index values of the current slide as well as a reference to the previous and current slide HTML nodes.\n\nSome libraries, like MathJax (see [#226](https://github.com/hakimel/reveal.js/issues/226#issuecomment-10261609)), get confused by the transforms and display states of slides. Often times, this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'slidechanged', function( event ) {\n\t// event.previousSlide, event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n### Presentation State\n\nThe presentation's current state can be fetched by using the `getState` method. A state object contains all of the information required to put the presentation back as it was when `getState` was first called. Sort of like a snapshot. It's a simple object that can easily be stringified and persisted or sent over the wire.\n\n```javascript\nReveal.slide( 1 );\n// we're on slide 1\n\nvar state = Reveal.getState();\n\nReveal.slide( 3 );\n// we're on slide 3\n\nReveal.setState( state );\n// we're back on slide 1\n```\n\n### Slide States\n\nIf you set ``data-state=\"somestate\"`` on a slide ``<section>``, \"somestate\" will be applied as a class on the document element when that slide is opened. This allows you to apply broad style changes to the page based on the active slide.\n\nFurthermore you can also listen to these changes in state via JavaScript:\n\n```javascript\nReveal.addEventListener( 'somestate', function() {\n\t// TODO: Sprinkle magic\n}, false );\n```\n\n### Slide Backgrounds\n\nSlides are contained within a limited portion of the screen by default to allow them to fit any display and scale uniformly. You can apply full page backgrounds outside of the slide area by adding a ```data-background``` attribute to your ```<section>``` elements. Four different types of backgrounds are supported: color, image, video and iframe. Below are a few examples.\n\n```html\n<section data-background=\"#ff0000\">\n\t<h2>All CSS color formats are supported, like rgba() or hsl().</h2>\n</section>\n<section data-background=\"http://example.com/image.png\">\n\t<h2>This slide will have a full-size background image.</h2>\n</section>\n<section data-background=\"http://example.com/image.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\">\n\t<h2>This background image will be sized to 100px and repeated.</h2>\n</section>\n<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\" data-background-video-loop>\n\t<h2>Video. Multiple sources can be defined using a comma separated list. Video will loop when the data-background-video-loop attribute is provided.</h2>\n</section>\n<section data-background-iframe=\"https://slides.com\">\n\t<h2>Embeds a web page as a background. Note that the page won't be interactive.</h2>\n</section>\n```\n\nBackgrounds transition using a fade animation by default. This can be changed to a linear sliding transition by passing ```backgroundTransition: 'slide'``` to the ```Reveal.initialize()``` call. Alternatively you can set ```data-background-transition``` on any section with a background to override that specific transition.\n\n\n### Parallax Background\n\nIf you want to use a parallax scrolling background, set the first two config properties below when initializing reveal.js (the other two are optional).\n\n```javascript\nReveal.initialize({\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\" - currently only pixels are supported (don't use % or auto)\n\n\t// Amount of pixels to move the parallax background per slide step,\n\t// a value of 0 disables movement along the given axis\n\t// These are optional, if they aren't specified they'll be calculated automatically\n\tparallaxBackgroundHorizontal: 200,\n\tparallaxBackgroundVertical: 50\n\n});\n```\n\nMake sure that the background size is much bigger than screen size to allow for some scrolling. [View example](http://lab.hakim.se/reveal-js/?parallaxBackgroundImage=https%3A%2F%2Fs3.amazonaws.com%2Fhakim-static%2Freveal-js%2Freveal-parallax-1.jpg&parallaxBackgroundSize=2100px%20900px).\n\n\n\n### Slide Transitions\nThe global presentation transition is set using the ```transition``` config value. You can override the global transition for a specific slide by using the ```data-transition``` attribute:\n\n```html\n<section data-transition=\"zoom\">\n\t<h2>This slide will override the presentation transition and zoom!</h2>\n</section>\n\n<section data-transition-speed=\"fast\">\n\t<h2>Choose from three transition speeds: default, fast or slow!</h2>\n</section>\n```\n\nYou can also use different in and out transitions for the same slide:\n\n```html\n<section data-transition=\"slide\">\n    The train goes on … \n</section>\n<section data-transition=\"slide\"> \n    and on … \n</section>\n<section data-transition=\"slide-in fade-out\"> \n    and stops.\n</section>\n<section data-transition=\"fade-in slide-out\"> \n    (Passengers entering and leaving)\n</section>\n<section data-transition=\"slide\">\n    And it starts again.\n</section>\n```\n\n\n### Internal links\n\nIt's easy to link between slides. The first example below targets the index of another slide whereas the second targets a slide with an ID attribute (```<section id=\"some-slide\">```):\n\n```html\n<a href=\"#/2/2\">Link</a>\n<a href=\"#/some-slide\">Link</a>\n```\n\nYou can also add relative navigation links, similar to the built in reveal.js controls, by appending one of the following classes on any element. Note that each element is automatically given an ```enabled``` class when it's a valid navigation route based on the current slide.\n\n```html\n<a href=\"#\" class=\"navigate-left\">\n<a href=\"#\" class=\"navigate-right\">\n<a href=\"#\" class=\"navigate-up\">\n<a href=\"#\" class=\"navigate-down\">\n<a href=\"#\" class=\"navigate-prev\"> <!-- Previous vertical or horizontal slide -->\n<a href=\"#\" class=\"navigate-next\"> <!-- Next vertical or horizontal slide -->\n```\n\n\n### Fragments\nFragments are used to highlight individual elements on a slide. Every element with the class ```fragment``` will be stepped through before moving on to the next slide. Here's an example: http://lab.hakim.se/reveal-js/#/fragments\n\nThe default fragment style is to start out invisible and fade in. This style can be changed by appending a different class to the fragment:\n\n```html\n<section>\n\t<p class=\"fragment grow\">grow</p>\n\t<p class=\"fragment shrink\">shrink</p>\n\t<p class=\"fragment fade-out\">fade-out</p>\n\t<p class=\"fragment current-visible\">visible only once</p>\n\t<p class=\"fragment highlight-current-blue\">blue only once</p>\n\t<p class=\"fragment highlight-red\">highlight-red</p>\n\t<p class=\"fragment highlight-green\">highlight-green</p>\n\t<p class=\"fragment highlight-blue\">highlight-blue</p>\n</section>\n```\n\nMultiple fragments can be applied to the same element sequentially by wrapping it, this will fade in the text on the first step and fade it back out on the second.\n\n```html\n<section>\n\t<span class=\"fragment fade-in\">\n\t\t<span class=\"fragment fade-out\">I'll fade in, then out</span>\n\t</span>\n</section>\n```\n\nThe display order of fragments can be controlled using the ```data-fragment-index``` attribute.\n\n```html\n<section>\n\t<p class=\"fragment\" data-fragment-index=\"3\">Appears last</p>\n\t<p class=\"fragment\" data-fragment-index=\"1\">Appears first</p>\n\t<p class=\"fragment\" data-fragment-index=\"2\">Appears second</p>\n</section>\n```\n\n### Fragment events\n\nWhen a slide fragment is either shown or hidden reveal.js will dispatch an event.\n\nSome libraries, like MathJax (see #505), get confused by the initially hidden fragment elements. Often times this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'fragmentshown', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\nReveal.addEventListener( 'fragmenthidden', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\n```\n\n### Code syntax highlighting\n\nBy default, Reveal is configured with [highlight.js](https://highlightjs.org/) for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted. When the `data-trim` attribute is present surrounding whitespace is automatically removed.\n\n```html\n<section>\n\t<pre><code data-trim>\n(def lazy-fib\n  (concat\n   [0 1]\n   ((fn rfib [a b]\n        (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))\n\t</code></pre>\n</section>\n```\n\n### Slide number\nIf you would like to display the page number of the current slide you can do so using the ```slideNumber``` configuration value.\n\n```javascript\n// Shows the slide number using default formatting\nReveal.configure({ slideNumber: true });\n\n// Slide number formatting can be configured using these variables:\n//  \"h.v\": \thorizontal . vertical slide number (default)\n//  \"h/v\": \thorizontal / vertical slide number\n//    \"c\": \tflattened slide number\n//  \"c/t\": \tflattened slide number / total slides\nReveal.configure({ slideNumber: 'c/t' });\n\n```\n\n\n### Overview mode\n\nPress \"Esc\" or \"o\" keys to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides,\nas if you were at 1,000 feet above your presentation. The overview mode comes with a few API hooks:\n\n```javascript\nReveal.addEventListener( 'overviewshown', function( event ) { /* ... */ } );\nReveal.addEventListener( 'overviewhidden', function( event ) { /* ... */ } );\n\n// Toggle the overview mode programmatically\nReveal.toggleOverview();\n```\n\n### Fullscreen mode\nJust press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode.\n\n\n### Embedded media\nEmbedded HTML5 `<video>`/`<audio>` and YouTube iframes are automatically paused when you navigate away from a slide. This can be disabled by decorating your element with a `data-ignore` attribute.\n\nAdd `data-autoplay` to your media element if you want it to automatically start playing when the slide is shown:\n\n```html\n<video data-autoplay src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n```\n\nAdditionally the framework automatically pushes two [post messages](https://developer.mozilla.org/en-US/docs/Web/API/Window.postMessage) to all iframes, ```slide:start``` when the slide containing the iframe is made visible and ```slide:stop``` when it is hidden.\n\n\n### Stretching elements\nSometimes it's desirable to have an element, like an image or video, stretch to consume as much space as possible within a given slide. This can be done by adding the ```.stretch``` class to an element as seen below:\n\n```html\n<section>\n\t<h2>This video will use up the remaining space on the slide</h2>\n    <video class=\"stretch\" src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n</section>\n```\n\nLimitations:\n- Only direct descendants of a slide section can be stretched\n- Only one descendant per slide section can be stretched\n\n\n### postMessage API\nThe framework has a built-in postMessage API that can be used when communicating with a presentation inside of another window. Here's an example showing how you'd make a reveal.js instance in the given window proceed to slide 2:\n\n```javascript\n<window>.postMessage( JSON.stringify({ method: 'slide', args: [ 2 ] }), '*' );\n```\n\nWhen reveal.js runs inside of an iframe it can optionally bubble all of its events to the parent. Bubbled events are stringified JSON with three fields: namespace, eventName and state. Here's how you subscribe to them from the parent window:\n\n```javascript\nwindow.addEventListener( 'message', function( event ) {\n\tvar data = JSON.parse( event.data );\n\tif( data.namespace === 'reveal' && data.eventName ==='slidechanged' ) {\n\t\t// Slide changed, see data.state for slide number\n\t}\n} );\n```\n\nThis cross-window messaging can be toggled on or off using configuration flags.\n\n```javascript\nReveal.initialize({\n\t...,\n\n\t// Exposes the reveal.js API through window.postMessage\n\tpostMessage: true,\n\n\t// Dispatches all reveal.js events to the parent window through postMessage\n\tpostMessageEvents: false\n});\n```\n\n\n## PDF Export\n\nPresentations can be exported to PDF via a special print stylesheet. This feature requires that you use [Google Chrome](http://google.com/chrome) or [Chromium](https://www.chromium.org/Home).\nHere's an example of an exported presentation that's been uploaded to SlideShare: http://www.slideshare.net/hakimel/revealjs-300.\n\n1. Open your presentation with `print-pdf` included anywhere in the query string. This triggers the default index HTML to load the PDF print stylesheet ([css/print/pdf.css](https://github.com/hakimel/reveal.js/blob/master/css/print/pdf.css)). You can test this with [lab.hakim.se/reveal-js?print-pdf](http://lab.hakim.se/reveal-js?print-pdf).\n2. Open the in-browser print dialog (CMD+P).\n3. Change the **Destination** setting to **Save as PDF**.\n4. Change the **Layout** to **Landscape**.\n5. Change the **Margins** to **None**.\n6. Click **Save**.\n\n![Chrome Print Settings](https://s3.amazonaws.com/hakim-static/reveal-js/pdf-print-settings.png)\n\nAlternatively you can use the [decktape](https://github.com/astefanutti/decktape) project.\n\n## Theming\n\nThe framework comes with a few different themes included:\n\n- black: Black background, white text, blue links (default theme)\n- white: White background, black text, blue links\n- league: Gray background, white text, blue links (default theme for reveal.js < 3.0.0)\n- beige: Beige background, dark text, brown links\n- sky: Blue background, thin dark text, blue links\n- night: Black background, thick white text, orange links\n- serif: Cappuccino background, gray text, brown links\n- simple: White background, black text, blue links\n- solarized: Cream-colored background, dark green text, blue links\n\nEach theme is available as a separate stylesheet. To change theme you will need to replace **black** below with your desired theme name in index.html:\n\n```html\n<link rel=\"stylesheet\" href=\"css/theme/black.css\" id=\"theme\">\n```\n\nIf you want to add a theme of your own see the instructions here: [/css/theme/README.md](https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md).\n\n\n## Speaker Notes\n\nreveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Press the 's' key on your keyboard to open the notes window.\n\nNotes are defined by appending an ```<aside>``` element to a slide as seen below. You can add the ```data-markdown``` attribute to the aside element if you prefer writing notes using Markdown.\n\nAlternatively you can add your notes in a `data-notes` attribute on the slide. Like `<section data-notes=\"Something important\"></section>`.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section>\n\t<h2>Some Slide</h2>\n\n\t<aside class=\"notes\">\n\t\tOh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).\n\t</aside>\n</section>\n```\n\nNotes are only visible to you in the speaker view. If you wish to share your notes with the audience initialize reveal.js with the `showNotes` config value set to `true`.\n\nIf you're using the external Markdown plugin, you can add notes with the help of a special delimiter:\n\n```html\n<section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\" data-separator-notes=\"^Note:\"></section>\n\n# Title\n## Sub-title\n\nHere is some content...\n\nNote:\nThis will only display in the notes window.\n```\n\n## Server Side Speaker Notes\n\nIn some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the required scripts by adding the following dependencies:\n\n```javascript\nReveal.initialize({\n\t...\n\n\tdependencies: [\n\t\t{ src: 'socket.io/socket.io.js', async: true },\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\t]\n});\n```\n\nThen:\n\n1. Install [Node.js](http://nodejs.org/)\n2. Run ```npm install```\n3. Run ```node plugin/notes-server```\n\n\n## Multiplexing\n\nThe multiplex plugin allows your audience to view the slides of the presentation you are controlling on their own phone, tablet or laptop. As the master presentation navigates the slides, all client presentations will update in real time. See a demo at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nThe multiplex plugin needs the following 3 things to operate:\n\n1. Master presentation that has control\n2. Client presentations that follow the master\n3. Socket.io server to broadcast events from the master to the clients\n\nMore details:\n\n#### Master presentation\nServed from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation: \n\n1. ```npm install node-static```\n2. ```static```\n\nIf you want to use the speaker notes plugin with your master presentation then make sure you have the speaker notes plugin configured correctly along with the configuration shown below, then execute ```node plugin/notes-server``` in the directory of your master presentation. The configuration below will cause it to connect to the socket.io server as a master, as well as launch your speaker-notes/static-file server.\n\nYou can then access your master presentation at ```http://localhost:1947```\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\n\t\t// and if you want speaker notes\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Client presentation\nServed from a publicly accessible static file server. Examples include: GitHub Pages, Amazon S3, Dreamhost, Akamai, etc. The more reliable, the better. Your audience can then access the client presentation via ```http://example.com/path/to/presentation/client/index.html```, with the configuration below causing them to connect to the socket.io server as clients.\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Socket.io server\nServer that receives the slideChanged events from the master presentation and broadcasts them out to the connected client presentations. This needs to be publicly accessible. You can run your own socket.io server with the commands:\n\n1. ```npm install```\n2. ```node plugin/multiplex```\n\nOr you use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nYou'll need to generate a unique secret and token pair for your master and client presentations. To do so, visit ```http://example.com/token```, where ```http://example.com``` is the location of your socket.io server. Or if you're going to use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), visit [http://revealjs-51546.onmodulus.net/token](http://revealjs-51546.onmodulus.net/token).\n\nYou are very welcome to point your presentations at the Socket.io server running at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), but availability and stability are not guaranteed. For anything mission critical I recommend you run your own server. It is simple to deploy to nodejitsu, heroku, your own environment, etc.\n\n##### socket.io server as file static server\n\nThe socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match.)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n```\n\nIt can also play the role of static file server for your master presentation and client presentations at the same time (as long as you don't want to use speaker notes). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match. Navigate through the slides on the second, and the first will update to match.) This is probably not desirable, because you don't want your audience to mess with your slides while you're presenting. ;)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n## MathJax\n\nIf you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies).\n\nThe plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value. \n\nBelow is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all.\n\n```js\nReveal.initialize({\n\n\t// other options ...\n\n\tmath: {\n\t\tmathjax: 'https://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\tconfig: 'TeX-AMS_HTML-full'  // See http://docs.mathjax.org/en/latest/config-files.html\n\t},\n\t\n\tdependencies: [\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n\n});\n```\n\nRead MathJax's documentation if you need [HTTPS delivery](http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn) or serving of [specific versions](http://docs.mathjax.org/en/latest/configuration.html#loading-mathjax-from-the-cdn) for stability.\n\n\n## Installation\n\nThe **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features and plugins such as speaker notes as well as the development tasks needed to make changes to the source.\n\n### Basic setup\n\nThe core of reveal.js is very easy to install. You'll simply need to download a copy of this repository and open the index.html file directly in your browser.\n\n1. Download the latest version of reveal.js from <https://github.com/hakimel/reveal.js/releases>\n\n2. Unzip and replace the example contents in index.html with your own\n\n3. Open index.html in a browser to view it\n\n\n### Full setup\n\nSome reveal.js features, like external Markdown and speaker notes, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code.\n\n1. Install [Node.js](http://nodejs.org/)\n\n2. Install [Grunt](http://gruntjs.com/getting-started#installing-the-cli)\n\n4. Clone the reveal.js repository\n   ```sh\n   $ git clone https://github.com/hakimel/reveal.js.git\n   ```\n\n5. Navigate to the reveal.js folder\n   ```sh\n   $ cd reveal.js\n   ```\n\n6. Install dependencies\n   ```sh\n   $ npm install\n   ```\n\n7. Serve the presentation and monitor source files for changes\n   ```sh\n   $ grunt serve\n   ```\n\n8. Open <http://localhost:8000> to view your presentation\n\n   You can change the port by using `grunt serve --port 8001`.\n\n\n### Folder Structure\n- **css/** Core styles without which the project does not function\n- **js/** Like above but for JavaScript\n- **plugin/** Components that have been developed as extensions to reveal.js\n- **lib/** All other third party assets (JavaScript, CSS, fonts)\n\n\n## License\n\nMIT licensed\n\nCopyright (C) 2015 Hakim El Hattab, http://hakim.se\n"
  },
  {
    "path": "doc/cpp-london-2017/bower.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"main\": [\n    \"js/reveal.js\",\n    \"css/reveal.css\"\n  ],\n  \"homepage\": \"http://lab.hakim.se/reveal-js/\",\n  \"license\": \"MIT\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"authors\": [\n    \"Hakim El Hattab <hakim.elhattab@gmail.com>\"\n  ],\n  \"dependencies\": {\n    \"headjs\": \"~1.0.3\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"ignore\": [\n    \"**/.*\",\n    \"node_modules\",\n    \"bower_components\",\n    \"test\"\n  ]\n}"
  },
  {
    "path": "doc/cpp-london-2017/css/print/paper.css",
    "content": "/* Default Print Stylesheet Template\n   by Rob Glazebrook of CSSnewbie.com\n   Last Updated: June 4, 2008\n\n   Feel free (nay, compelled) to edit, append, and\n   manipulate this file as you see fit. */\n\n\n@media print {\n\n\t/* SECTION 1: Set default width, margin, float, and\n\t   background. This prevents elements from extending\n\t   beyond the edge of the printed page, and prevents\n\t   unnecessary background images from printing */\n\thtml {\n\t\tbackground: #fff;\n\t\twidth: auto;\n\t\theight: auto;\n\t\toverflow: visible;\n\t}\n\tbody {\n\t\tbackground: #fff;\n\t\tfont-size: 20pt;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tborder: 0;\n\t\tmargin: 0 5%;\n\t\tpadding: 0;\n\t\toverflow: visible;\n\t\tfloat: none !important;\n\t}\n\n\t/* SECTION 2: Remove any elements not needed in print.\n\t   This would include navigation, ads, sidebars, etc. */\n\t.nestedarrow,\n\t.controls,\n\t.fork-reveal,\n\t.share-reveal,\n\t.state-background,\n\t.reveal .progress,\n\t.reveal .backgrounds {\n\t\tdisplay: none !important;\n\t}\n\n\t/* SECTION 3: Set body font face, size, and color.\n\t   Consider using a serif font for readability. */\n\tbody, p, td, li, div {\n\t\tfont-size: 20pt!important;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\tcolor: #000;\n\t}\n\n\t/* SECTION 4: Set heading font face, sizes, and color.\n\t   Differentiate your headings from your body text.\n\t   Perhaps use a large sans-serif for distinction. */\n\th1,h2,h3,h4,h5,h6 {\n\t\tcolor: #000!important;\n\t\theight: auto;\n\t\tline-height: normal;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\ttext-shadow: 0 0 0 #000 !important;\n\t\ttext-align: left;\n\t\tletter-spacing: normal;\n\t}\n\t/* Need to reduce the size of the fonts for printing */\n\th1 { font-size: 28pt !important;  }\n\th2 { font-size: 24pt !important; }\n\th3 { font-size: 22pt !important; }\n\th4 { font-size: 22pt !important; font-variant: small-caps; }\n\th5 { font-size: 21pt !important; }\n\th6 { font-size: 20pt !important; font-style: italic; }\n\n\t/* SECTION 5: Make hyperlinks more usable.\n\t   Ensure links are underlined, and consider appending\n\t   the URL to the end of the link for usability. */\n\ta:link,\n\ta:visited {\n\t\tcolor: #000 !important;\n\t\tfont-weight: bold;\n\t\ttext-decoration: underline;\n\t}\n\t/*\n\t.reveal a:link:after,\n\t.reveal a:visited:after {\n\t\tcontent: \" (\" attr(href) \") \";\n\t\tcolor: #222 !important;\n\t\tfont-size: 90%;\n\t}\n\t*/\n\n\n\t/* SECTION 6: more reveal.js specific additions by @skypanther */\n\tul, ol, div, p {\n\t\tvisibility: visible;\n\t\tposition: static;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tdisplay: block;\n\t\toverflow: visible;\n\t\tmargin: 0;\n\t\ttext-align: left !important;\n\t}\n\t.reveal pre,\n\t.reveal table {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n\t.reveal pre code {\n\t\tpadding: 20px;\n\t\tborder: 1px solid #ddd;\n\t}\n\t.reveal blockquote {\n\t\tmargin: 20px 0;\n\t}\n\t.reveal .slides {\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 0 !important;\n\t\tzoom: 1 !important;\n\n\t\toverflow: visible !important;\n\t\tdisplay: block !important;\n\n\t\ttext-align: left !important;\n\t\t-webkit-perspective: none;\n\t\t   -moz-perspective: none;\n\t\t    -ms-perspective: none;\n\t\t        perspective: none;\n\n\t\t-webkit-perspective-origin: 50% 50%;\n\t\t   -moz-perspective-origin: 50% 50%;\n\t\t    -ms-perspective-origin: 50% 50%;\n\t\t        perspective-origin: 50% 50%;\n\t}\n\t.reveal .slides section {\n\t\tvisibility: visible !important;\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\t\tdisplay: block !important;\n\t\toverflow: visible !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 60px 20px !important;\n\t\tz-index: auto !important;\n\n\t\topacity: 1 !important;\n\n\t\tpage-break-after: always !important;\n\n\t\t-webkit-transform-style: flat !important;\n\t\t   -moz-transform-style: flat !important;\n\t\t    -ms-transform-style: flat !important;\n\t\t        transform-style: flat !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\n\t\t-webkit-transition: none !important;\n\t\t   -moz-transition: none !important;\n\t\t    -ms-transition: none !important;\n\t\t        transition: none !important;\n\t}\n\t.reveal .slides section.stack {\n\t\tpadding: 0 !important;\n\t}\n\t.reveal section:last-of-type {\n\t\tpage-break-after: avoid !important;\n\t}\n\t.reveal section .fragment {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\t}\n\t.reveal section img {\n\t\tdisplay: block;\n\t\tmargin: 15px 0px;\n\t\tbackground: rgba(255,255,255,1);\n\t\tborder: 1px solid #666;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal section small {\n\t\tfont-size: 0.8em;\n\t}\n\n}"
  },
  {
    "path": "doc/cpp-london-2017/css/print/pdf.css",
    "content": "/**\n * This stylesheet is used to print reveal.js\n * presentations to PDF.\n *\n * https://github.com/hakimel/reveal.js#pdf-export\n */\n\n* {\n\t-webkit-print-color-adjust: exact;\n}\n\nbody {\n\tmargin: 0 auto !important;\n\tborder: 0;\n\tpadding: 0;\n\tfloat: none !important;\n\toverflow: visible;\n}\n\nhtml {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: visible;\n}\n\n/* Remove any elements not needed in print. */\n.nestedarrow,\n.reveal .controls,\n.reveal .progress,\n.reveal .playback,\n.reveal.overview,\n.fork-reveal,\n.share-reveal,\n.state-background {\n\tdisplay: none !important;\n}\n\nh1, h2, h3, h4, h5, h6 {\n\ttext-shadow: 0 0 0 #000 !important;\n}\n\n.reveal pre code {\n\toverflow: hidden !important;\n\tfont-family: Courier, 'Courier New', monospace !important;\n}\n\nul, ol, div, p {\n\tvisibility: visible;\n\tposition: static;\n\twidth: auto;\n\theight: auto;\n\tdisplay: block;\n\toverflow: visible;\n\tmargin: auto;\n}\n.reveal {\n\twidth: auto !important;\n\theight: auto !important;\n\toverflow: hidden !important;\n}\n.reveal .slides {\n\tposition: static;\n\twidth: 100%;\n\theight: auto;\n\n\tleft: auto;\n\ttop: auto;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\n\toverflow: visible;\n\tdisplay: block;\n\n\t-webkit-perspective: none;\n\t   -moz-perspective: none;\n\t    -ms-perspective: none;\n\t        perspective: none;\n\n\t-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */\n\t   -moz-perspective-origin: 50% 50%;\n\t    -ms-perspective-origin: 50% 50%;\n\t        perspective-origin: 50% 50%;\n}\n\n.reveal .slides section {\n\tpage-break-after: always !important;\n\n\tvisibility: visible !important;\n\tposition: relative !important;\n\tdisplay: block !important;\n\tposition: relative !important;\n\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tbox-sizing: border-box !important;\n\tmin-height: 1px;\n\n\topacity: 1 !important;\n\n\t-webkit-transform-style: flat !important;\n\t   -moz-transform-style: flat !important;\n\t    -ms-transform-style: flat !important;\n\t        transform-style: flat !important;\n\n\t-webkit-transform: none !important;\n\t   -moz-transform: none !important;\n\t    -ms-transform: none !important;\n\t        transform: none !important;\n}\n\n.reveal section.stack {\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tpage-break-after: avoid !important;\n\theight: auto !important;\n\tmin-height: auto !important;\n}\n\n.reveal img {\n\tbox-shadow: none;\n}\n\n.reveal .roll {\n\toverflow: visible;\n\tline-height: 1em;\n}\n\n/* Slide backgrounds are placed inside of their slide when exporting to PDF */\n.reveal section .slide-background {\n\tdisplay: block !important;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\tz-index: -1;\n}\n\n/* All elements should be above the slide-background */\n.reveal section>* {\n\tposition: relative;\n\tz-index: 1;\n}\n\n/* Display slide speaker notes when 'showNotes' is enabled */\n.reveal .speaker-notes-pdf {\n\tdisplay: block;\n\twidth: 100%;\n\tmax-height: none;\n\tleft: auto;\n\ttop: auto;\n\tz-index: 100;\n}\n\n/* Display slide numbers when 'slideNumber' is enabled */\n.reveal .slide-number-pdf {\n\tdisplay: block;\n\tposition: absolute;\n\tfont-size: 14px;\n}\n\n"
  },
  {
    "path": "doc/cpp-london-2017/css/reveal.css",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n/*********************************************\n * RESET STYLES\n *********************************************/\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n  margin: 0;\n  padding: 0;\n  border: 0;\n  font-size: 100%;\n  font: inherit;\n  vertical-align: baseline; }\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n  display: block; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n  overflow: hidden; }\n\nbody {\n  position: relative;\n  line-height: 1;\n  background-color: #fff;\n  color: #000; }\n\nhtml:-webkit-full-screen-ancestor {\n  background-color: inherit; }\n\nhtml:-moz-full-screen-ancestor {\n  background-color: inherit; }\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n.reveal .slides section .fragment {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease; }\n  .reveal .slides section .fragment.visible {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.grow {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.grow.visible {\n    -webkit-transform: scale(1.3);\n        -ms-transform: scale(1.3);\n            transform: scale(1.3); }\n\n.reveal .slides section .fragment.shrink {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.shrink.visible {\n    -webkit-transform: scale(0.7);\n        -ms-transform: scale(0.7);\n            transform: scale(0.7); }\n\n.reveal .slides section .fragment.zoom-in {\n  -webkit-transform: scale(0.1);\n      -ms-transform: scale(0.1);\n          transform: scale(0.1); }\n  .reveal .slides section .fragment.zoom-in.visible {\n    -webkit-transform: none;\n        -ms-transform: none;\n            transform: none; }\n\n.reveal .slides section .fragment.fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.fade-out.visible {\n    opacity: 0;\n    visibility: hidden; }\n\n.reveal .slides section .fragment.semi-fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.semi-fade-out.visible {\n    opacity: 0.5;\n    visibility: visible; }\n\n.reveal .slides section .fragment.strike {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.strike.visible {\n    text-decoration: line-through; }\n\n.reveal .slides section .fragment.current-visible {\n  opacity: 0;\n  visibility: hidden; }\n  .reveal .slides section .fragment.current-visible.current-fragment {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red.visible {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-green.visible {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-blue.visible {\n  color: #1b91ff; }\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n  color: #1b91ff; }\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic; }\n\n.reveal iframe {\n  z-index: 1; }\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n  position: relative; }\n\n.reveal .stretch {\n  max-width: none;\n  max-height: none; }\n\n.reveal pre.stretch code {\n  height: 100%;\n  max-height: 100%;\n  box-sizing: border-box; }\n\n/*********************************************\n * CONTROLS\n *********************************************/\n.reveal .controls {\n  display: none;\n  position: fixed;\n  width: 110px;\n  height: 110px;\n  z-index: 30;\n  right: 10px;\n  bottom: 10px;\n  -webkit-user-select: none; }\n\n.reveal .controls button {\n  padding: 0;\n  position: absolute;\n  opacity: 0.05;\n  width: 0;\n  height: 0;\n  background-color: transparent;\n  border: 12px solid transparent;\n  -webkit-transform: scale(0.9999);\n      -ms-transform: scale(0.9999);\n          transform: scale(0.9999);\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease;\n  -webkit-appearance: none;\n  -webkit-tap-highlight-color: transparent; }\n\n.reveal .controls .enabled {\n  opacity: 0.7;\n  cursor: pointer; }\n\n.reveal .controls .enabled:active {\n  margin-top: 1px; }\n\n.reveal .controls .navigate-left {\n  top: 42px;\n  border-right-width: 22px;\n  border-right-color: #000; }\n\n.reveal .controls .navigate-left.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-right {\n  left: 74px;\n  top: 42px;\n  border-left-width: 22px;\n  border-left-color: #000; }\n\n.reveal .controls .navigate-right.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-up {\n  left: 42px;\n  border-bottom-width: 22px;\n  border-bottom-color: #000; }\n\n.reveal .controls .navigate-up.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-down {\n  left: 42px;\n  top: 74px;\n  border-top-width: 22px;\n  border-top-color: #000; }\n\n.reveal .controls .navigate-down.fragmented {\n  opacity: 0.3; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  position: fixed;\n  display: none;\n  height: 3px;\n  width: 100%;\n  bottom: 0;\n  left: 0;\n  z-index: 10;\n  background-color: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress:after {\n  content: '';\n  display: block;\n  position: absolute;\n  height: 20px;\n  width: 100%;\n  top: -20px; }\n\n.reveal .progress span {\n  display: block;\n  height: 100%;\n  width: 0px;\n  background-color: #000;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n.reveal .slide-number {\n  position: fixed;\n  display: block;\n  right: 8px;\n  bottom: 8px;\n  z-index: 31;\n  font-family: Helvetica, sans-serif;\n  font-size: 12px;\n  line-height: 1;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.4);\n  padding: 5px; }\n\n.reveal .slide-number-delimiter {\n  margin: 0 3px; }\n\n/*********************************************\n * SLIDES\n *********************************************/\n.reveal {\n  position: relative;\n  width: 100%;\n  height: 100%;\n  overflow: hidden;\n  -ms-touch-action: none;\n      touch-action: none; }\n\n.reveal .slides {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  overflow: visible;\n  z-index: 1;\n  text-align: center;\n  -webkit-perspective: 600px;\n          perspective: 600px;\n  -webkit-perspective-origin: 50% 40%;\n          perspective-origin: 50% 40%; }\n\n.reveal .slides > section {\n  -ms-perspective: 600px; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  display: none;\n  position: absolute;\n  width: 100%;\n  padding: 20px 0px;\n  z-index: 10;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: -ms-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] .slides section {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal .slides section[data-transition-speed=\"slow\"] {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n.reveal .slides > section.stack {\n  padding-top: 0;\n  padding-bottom: 0; }\n\n.reveal .slides > section.present,\n.reveal .slides > section > section.present {\n  display: block;\n  z-index: 11;\n  opacity: 1; }\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n  min-height: 0 !important; }\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides > section.future,\n.reveal .slides > section > section.future,\n.reveal .slides > section.past,\n.reveal .slides > section > section.past {\n  pointer-events: none; }\n\n.reveal.overview .slides > section,\n.reveal.overview .slides > section > section {\n  pointer-events: auto; }\n\n.reveal .slides > section.past,\n.reveal .slides > section.future,\n.reveal .slides > section > section.past,\n.reveal .slides > section > section.future {\n  opacity: 0; }\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n.reveal.slide section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=slide].past,\n.reveal .slides > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=slide].future,\n.reveal .slides > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=slide].past,\n.reveal .slides > section > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=slide].future,\n.reveal .slides > section > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n.reveal.linear section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=linear].past,\n.reveal .slides > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=linear].future,\n.reveal .slides > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=linear].past,\n.reveal .slides > section > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=linear].future,\n.reveal .slides > section > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n.reveal .slides > section[data-transition=default].past,\n.reveal .slides > section[data-transition~=default-out].past,\n.reveal.default .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=default].future,\n.reveal .slides > section[data-transition~=default-in].future,\n.reveal.default .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=default].past,\n.reveal .slides > section > section[data-transition~=default-out].past,\n.reveal.default .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=default].future,\n.reveal .slides > section > section[data-transition~=default-in].future,\n.reveal.default .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n.reveal .slides > section[data-transition=convex].past,\n.reveal .slides > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=convex].future,\n.reveal .slides > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=convex].past,\n.reveal .slides > section > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=convex].future,\n.reveal .slides > section > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n.reveal .slides > section[data-transition=concave].past,\n.reveal .slides > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=concave].future,\n.reveal .slides > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=concave].past,\n.reveal .slides > section > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n          transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); }\n\n.reveal .slides > section > section[data-transition=concave].future,\n.reveal .slides > section > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n          transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); }\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=zoom],\n.reveal.zoom .slides section:not([data-transition]) {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal .slides > section[data-transition=zoom].past,\n.reveal .slides > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section:not([data-transition]).past {\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal .slides > section[data-transition=zoom].future,\n.reveal .slides > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section:not([data-transition]).future {\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .slides > section > section[data-transition=zoom].past,\n.reveal .slides > section > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=zoom].future,\n.reveal .slides > section > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n.reveal.cube .slides {\n  -webkit-perspective: 1300px;\n          perspective: 1300px; }\n\n.reveal.cube .slides section {\n  padding: 30px;\n  min-height: 700px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  box-sizing: border-box; }\n\n.reveal.center.cube .slides section {\n  min-height: 0; }\n\n.reveal.cube .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  border-radius: 4px;\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.cube .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg);\n          transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.cube .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.cube .slides > section.past {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg); }\n\n.reveal.cube .slides > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);\n          transform: translate3d(100%, 0, 0) rotateY(90deg); }\n\n.reveal.cube .slides > section > section.past {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);\n          transform: translate3d(0, -100%, 0) rotateX(90deg); }\n\n.reveal.cube .slides > section > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg); }\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n.reveal.page .slides {\n  -webkit-perspective-origin: 0% 50%;\n          perspective-origin: 0% 50%;\n  -webkit-perspective: 3000px;\n          perspective: 3000px; }\n\n.reveal.page .slides section {\n  padding: 30px;\n  min-height: 700px;\n  box-sizing: border-box; }\n\n.reveal.page .slides section.past {\n  z-index: 12; }\n\n.reveal.page .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.page .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.page .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.page .slides > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);\n          transform: translate3d(-40%, 0, 0) rotateY(-80deg); }\n\n.reveal.page .slides > section.future {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n.reveal.page .slides > section > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);\n          transform: translate3d(0, -40%, 0) rotateX(80deg); }\n\n.reveal.page .slides > section > section.future {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides > section > section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: opacity 0.5s;\n          transition: opacity 0.5s; }\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides > section > section {\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=none],\n.reveal.none .slides section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n.reveal .pause-overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  background: black;\n  visibility: hidden;\n  opacity: 0;\n  z-index: 100;\n  -webkit-transition: all 1s ease;\n          transition: all 1s ease; }\n\n.reveal.paused .pause-overlay {\n  visibility: visible;\n  opacity: 1; }\n\n/*********************************************\n * FALLBACK\n *********************************************/\n.no-transforms {\n  overflow-y: auto; }\n\n.no-transforms .reveal .slides {\n  position: relative;\n  width: 80%;\n  height: auto !important;\n  top: 0;\n  left: 50%;\n  margin: 0;\n  text-align: center; }\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n  display: none !important; }\n\n.no-transforms .reveal .slides section {\n  display: block !important;\n  opacity: 1 !important;\n  position: relative !important;\n  height: auto;\n  min-height: 0;\n  top: 0;\n  left: -50%;\n  margin: 70px 0;\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none; }\n\n.no-transforms .reveal .slides section section {\n  left: 0; }\n\n.reveal .no-transition,\n.reveal .no-transition * {\n  -webkit-transition: none !important;\n          transition: none !important; }\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n.reveal .backgrounds {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  -webkit-perspective: 600px;\n          perspective: 600px; }\n\n.reveal .slide-background {\n  display: none;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  opacity: 0;\n  visibility: hidden;\n  background-color: transparent;\n  background-position: 50% 50%;\n  background-repeat: no-repeat;\n  background-size: cover;\n  -webkit-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal .slide-background.stack {\n  display: block; }\n\n.reveal .slide-background.present {\n  opacity: 1;\n  visibility: visible; }\n\n.print-pdf .reveal .slide-background {\n  opacity: 1 !important;\n  visibility: visible !important; }\n\n/* Video backgrounds */\n.reveal .slide-background video {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  max-width: none;\n  max-height: none;\n  top: 0;\n  left: 0; }\n\n/* Immediate transition style */\n.reveal[data-background-transition=none] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=none] {\n  -webkit-transition: none;\n          transition: none; }\n\n/* Slide */\n.reveal[data-background-transition=slide] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=slide] {\n  opacity: 1;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(-100%, 0);\n      -ms-transform: translate(-100%, 0);\n          transform: translate(-100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(100%, 0);\n      -ms-transform: translate(100%, 0);\n          transform: translate(100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(0, -100%);\n      -ms-transform: translate(0, -100%);\n          transform: translate(0, -100%); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(0, 100%);\n      -ms-transform: translate(0, 100%);\n          transform: translate(0, 100%); }\n\n/* Convex */\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); }\n\n/* Concave */\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); }\n\n/* Zoom */\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=zoom] {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n.reveal.overview {\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%;\n  -webkit-perspective: 700px;\n          perspective: 700px; }\n  .reveal.overview .slides section {\n    height: 700px;\n    opacity: 1 !important;\n    overflow: hidden;\n    visibility: visible !important;\n    cursor: pointer;\n    box-sizing: border-box; }\n  .reveal.overview .slides section:hover,\n  .reveal.overview .slides section.present {\n    outline: 10px solid rgba(150, 150, 150, 0.4);\n    outline-offset: 10px; }\n  .reveal.overview .slides section .fragment {\n    opacity: 1;\n    -webkit-transition: none;\n            transition: none; }\n  .reveal.overview .slides section:after,\n  .reveal.overview .slides section:before {\n    display: none !important; }\n  .reveal.overview .slides > section.stack {\n    padding: 0;\n    top: 0 !important;\n    background: none;\n    outline: none;\n    overflow: visible; }\n  .reveal.overview .backgrounds {\n    -webkit-perspective: inherit;\n            perspective: inherit; }\n  .reveal.overview .backgrounds .slide-background {\n    opacity: 1;\n    visibility: visible;\n    outline: 10px solid rgba(150, 150, 150, 0.1);\n    outline-offset: 10px; }\n\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview-animated .slides {\n  -webkit-transition: -webkit-transform 0.4s ease;\n          transition: transform 0.4s ease; }\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n  direction: rtl;\n  font-family: sans-serif; }\n\n.reveal.rtl pre,\n.reveal.rtl code {\n  direction: ltr; }\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n  text-align: right; }\n\n.reveal.rtl .progress span {\n  float: right; }\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n.reveal.has-parallax-background .backgrounds {\n  -webkit-transition: all 0.8s ease;\n          transition: all 0.8s ease; }\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n.reveal .overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1000;\n  background: rgba(0, 0, 0, 0.9);\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.visible {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay .spinner {\n  position: absolute;\n  display: block;\n  top: 50%;\n  left: 50%;\n  width: 32px;\n  height: 32px;\n  margin: -16px 0 0 -16px;\n  z-index: 10;\n  background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n  visibility: visible;\n  opacity: 0.6;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay header {\n  position: absolute;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 40px;\n  z-index: 2;\n  border-bottom: 1px solid #222; }\n\n.reveal .overlay header a {\n  display: inline-block;\n  width: 40px;\n  height: 40px;\n  padding: 0 10px;\n  float: right;\n  opacity: 0.6;\n  box-sizing: border-box; }\n\n.reveal .overlay header a:hover {\n  opacity: 1; }\n\n.reveal .overlay header a .icon {\n  display: inline-block;\n  width: 20px;\n  height: 20px;\n  background-position: 50% 50%;\n  background-size: 100%;\n  background-repeat: no-repeat; }\n\n.reveal .overlay header a.close .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); }\n\n.reveal .overlay header a.external .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); }\n\n.reveal .overlay .viewport {\n  position: absolute;\n  top: 40px;\n  right: 0;\n  bottom: 0;\n  left: 0; }\n\n.reveal .overlay.overlay-preview .viewport iframe {\n  width: 100%;\n  height: 100%;\n  max-width: 100%;\n  max-height: 100%;\n  border: 0;\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.overlay-preview.loaded .viewport iframe {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay.overlay-preview.loaded .spinner {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .overlay.overlay-help .viewport {\n  overflow: auto;\n  color: #fff; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner {\n  width: 600px;\n  margin: 0 auto;\n  padding: 60px;\n  text-align: center;\n  letter-spacing: normal; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n  font-size: 20px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table {\n  border: 1px solid #fff;\n  border-collapse: collapse;\n  font-size: 14px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n  width: 200px;\n  padding: 10px;\n  border: 1px solid #fff;\n  vertical-align: middle; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n  padding-top: 20px;\n  padding-bottom: 20px; }\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n.reveal .playback {\n  position: fixed;\n  left: 15px;\n  bottom: 20px;\n  z-index: 30;\n  cursor: pointer;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease; }\n\n.reveal.overview .playback {\n  opacity: 0;\n  visibility: hidden; }\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n.reveal .roll {\n  display: inline-block;\n  line-height: 1.2;\n  overflow: hidden;\n  vertical-align: top;\n  -webkit-perspective: 400px;\n          perspective: 400px;\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%; }\n\n.reveal .roll:hover {\n  background: none;\n  text-shadow: none; }\n\n.reveal .roll span {\n  display: block;\n  position: relative;\n  padding: 0 2px;\n  pointer-events: none;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .roll:hover span {\n  background: rgba(0, 0, 0, 0.5);\n  -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg);\n          transform: translate3d(0px, 0px, -45px) rotateX(90deg); }\n\n.reveal .roll span:after {\n  content: attr(data-title);\n  display: block;\n  position: absolute;\n  left: 0;\n  top: 0;\n  padding: 0 2px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg);\n          transform: translate3d(0px, 110%, 0px) rotateX(-90deg); }\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n.reveal aside.notes {\n  display: none; }\n\n.reveal .speaker-notes {\n  display: none;\n  position: absolute;\n  width: 70%;\n  max-height: 15%;\n  left: 15%;\n  bottom: 26px;\n  padding: 10px;\n  z-index: 1;\n  font-size: 18px;\n  line-height: 1.4;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.5);\n  overflow: auto;\n  box-sizing: border-box;\n  text-align: left;\n  font-family: Helvetica, sans-serif;\n  -webkit-overflow-scrolling: touch; }\n\n.reveal .speaker-notes.visible:not(:empty) {\n  display: block; }\n\n@media screen and (max-width: 1024px) {\n  .reveal .speaker-notes {\n    font-size: 14px; } }\n\n@media screen and (max-width: 600px) {\n  .reveal .speaker-notes {\n    width: 90%;\n    left: 5%; } }\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n  -webkit-backface-visibility: visible !important;\n          backface-visibility: visible !important; }\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n  opacity: 0; }\n\n.zoomed .reveal .roll span {\n  background: none; }\n\n.zoomed .reveal .roll span:after {\n  visibility: hidden; }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/reveal.scss",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n/*********************************************\n * RESET STYLES\n *********************************************/\n\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\tfont-size: 100%;\n\tfont: inherit;\n\tvertical-align: baseline;\n}\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n\tdisplay: block;\n}\n\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nhtml,\nbody {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n}\n\nbody {\n\tposition: relative;\n\tline-height: 1;\n\n\tbackground-color: #fff;\n\tcolor: #000;\n}\n\n// Ensures that the main background color matches the\n// theme in fullscreen mode\nhtml:-webkit-full-screen-ancestor {\n\tbackground-color: inherit;\n}\nhtml:-moz-full-screen-ancestor {\n\tbackground-color: inherit;\n}\n\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n\n.reveal .slides section .fragment {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all .2s ease;\n\n\t&.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.grow {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 1.3 );\n\t}\n}\n\n.reveal .slides section .fragment.shrink {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 0.7 );\n\t}\n}\n\n.reveal .slides section .fragment.zoom-in {\n\ttransform: scale( 0.1 );\n\n\t&.visible {\n\t\ttransform: none;\n\t}\n}\n\n.reveal .slides section .fragment.fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t}\n}\n\n.reveal .slides section .fragment.semi-fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0.5;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.strike {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttext-decoration: line-through;\n\t}\n}\n\n.reveal .slides section .fragment.current-visible {\n\topacity: 0;\n\tvisibility: hidden;\n\n\t&.current-fragment {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n\topacity: 1;\n\tvisibility: visible;\n}\n\t.reveal .slides section .fragment.highlight-red.visible {\n\t\tcolor: #ff2c2d\n\t}\n\t.reveal .slides section .fragment.highlight-green.visible {\n\t\tcolor: #17ff2e;\n\t}\n\t.reveal .slides section .fragment.highlight-blue.visible {\n\t\tcolor: #1b91ff;\n\t}\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n\tcolor: #ff2c2d\n}\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n\tcolor: #17ff2e;\n}\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n\tcolor: #1b91ff;\n}\n\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic;\n}\n\n.reveal iframe {\n\tz-index: 1;\n}\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n\tposition: relative;\n}\n\n.reveal .stretch {\n\tmax-width: none;\n\tmax-height: none;\n}\n\n.reveal pre.stretch code {\n\theight: 100%;\n\tmax-height: 100%;\n\tbox-sizing: border-box;\n}\n\n\n/*********************************************\n * CONTROLS\n *********************************************/\n\n.reveal .controls {\n\tdisplay: none;\n\tposition: fixed;\n\twidth: 110px;\n\theight: 110px;\n\tz-index: 30;\n\tright: 10px;\n\tbottom: 10px;\n\n\t-webkit-user-select: none;\n}\n\n.reveal .controls button {\n\tpadding: 0;\n\tposition: absolute;\n\topacity: 0.05;\n\twidth: 0;\n\theight: 0;\n\tbackground-color: transparent;\n\tborder: 12px solid transparent;\n\ttransform: scale(.9999);\n\ttransition: all 0.2s ease;\n\t-webkit-appearance: none;\n\t-webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );\n}\n\n.reveal .controls .enabled {\n\topacity: 0.7;\n\tcursor: pointer;\n}\n\n.reveal .controls .enabled:active {\n\tmargin-top: 1px;\n}\n\n\t.reveal .controls .navigate-left {\n\t\ttop: 42px;\n\n\t\tborder-right-width: 22px;\n\t\tborder-right-color: #000;\n\t}\n\t\t.reveal .controls .navigate-left.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-right {\n\t\tleft: 74px;\n\t\ttop: 42px;\n\n\t\tborder-left-width: 22px;\n\t\tborder-left-color: #000;\n\t}\n\t\t.reveal .controls .navigate-right.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-up {\n\t\tleft: 42px;\n\n\t\tborder-bottom-width: 22px;\n\t\tborder-bottom-color: #000;\n\t}\n\t\t.reveal .controls .navigate-up.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-down {\n\t\tleft: 42px;\n\t\ttop: 74px;\n\n\t\tborder-top-width: 22px;\n\t\tborder-top-color: #000;\n\t}\n\t\t.reveal .controls .navigate-down.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tposition: fixed;\n\tdisplay: none;\n\theight: 3px;\n\twidth: 100%;\n\tbottom: 0;\n\tleft: 0;\n\tz-index: 10;\n\n\tbackground-color: rgba( 0, 0, 0, 0.2 );\n}\n\t.reveal .progress:after {\n\t\tcontent: '';\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\theight: 20px;\n\t\twidth: 100%;\n\t\ttop: -20px;\n\t}\n\t.reveal .progress span {\n\t\tdisplay: block;\n\t\theight: 100%;\n\t\twidth: 0px;\n\n\t\tbackground-color: #000;\n\t\ttransition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n\n.reveal .slide-number {\n\tposition: fixed;\n\tdisplay: block;\n\tright: 8px;\n\tbottom: 8px;\n\tz-index: 31;\n\tfont-family: Helvetica, sans-serif;\n\tfont-size: 12px;\n\tline-height: 1;\n\tcolor: #fff;\n\tbackground-color: rgba( 0, 0, 0, 0.4 );\n\tpadding: 5px;\n}\n\n.reveal .slide-number-delimiter {\n\tmargin: 0 3px;\n}\n\n/*********************************************\n * SLIDES\n *********************************************/\n\n.reveal {\n\tposition: relative;\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n\ttouch-action: none;\n}\n\n.reveal .slides {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tmargin: auto;\n\n\toverflow: visible;\n\tz-index: 1;\n\ttext-align: center;\n\tperspective: 600px;\n\tperspective-origin: 50% 40%;\n}\n\n.reveal .slides>section {\n\t-ms-perspective: 600px;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 100%;\n\tpadding: 20px 0px;\n\n\tz-index: 10;\n\ttransform-style: preserve-3d;\n\ttransition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\ttransform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\tvisibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\topacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n}\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"] .slides section {\n\ttransition-duration: 1200ms;\n}\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n\ttransition-duration: 400ms;\n}\n.reveal .slides section[data-transition-speed=\"slow\"] {\n\ttransition-duration: 1200ms;\n}\n\n.reveal .slides>section.stack {\n\tpadding-top: 0;\n\tpadding-bottom: 0;\n}\n\n.reveal .slides>section.present,\n.reveal .slides>section>section.present {\n\tdisplay: block;\n\tz-index: 11;\n\topacity: 1;\n}\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n\tmin-height: 0 !important;\n}\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides>section.future,\n.reveal .slides>section>section.future,\n.reveal .slides>section.past,\n.reveal .slides>section>section.past {\n\tpointer-events: none;\n}\n\n.reveal.overview .slides>section,\n.reveal.overview .slides>section>section {\n\tpointer-events: auto;\n}\n\n.reveal .slides>section.past,\n.reveal .slides>section.future,\n.reveal .slides>section>section.past,\n.reveal .slides>section>section.future {\n\topacity: 0;\n}\n\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n\n@mixin transition-global($style) {\n\t.reveal .slides section[data-transition=#{$style}],\n\t.reveal.#{$style} .slides section:not([data-transition]) {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-past($style) {\n\t.reveal .slides>section[data-transition=#{$style}].past,\n\t.reveal .slides>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-future($style) {\n\t.reveal .slides>section[data-transition=#{$style}].future,\n\t.reveal .slides>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n@mixin transition-vertical-past($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].past,\n\t.reveal .slides>section>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-vertical-future($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].future,\n\t.reveal .slides>section>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n\n@each $stylename in slide, linear {\n\t.reveal.#{$stylename} section {\n\t\tbackface-visibility: hidden;\n\t}\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate(-150%, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate(150%, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate(0, -150%);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate(0, 150%);\n\t}\n}\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n\n@each $stylename in default, convex {\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n\t}\n}\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n\n@include transition-horizontal-past(concave) {\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n@include transition-horizontal-future(concave) {\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n@include transition-vertical-past(concave) {\n\ttransform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n}\n@include transition-vertical-future(concave) {\n\ttransform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n}\n\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n\n@include transition-global(zoom) {\n\ttransition-timing-function: ease;\n}\n@include transition-horizontal-past(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n@include transition-horizontal-future(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n@include transition-vertical-past(zoom) {\n\ttransform: translate(0, -150%);\n}\n@include transition-vertical-future(zoom) {\n\ttransform: translate(0, 150%);\n}\n\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n\n.reveal.cube .slides {\n\tperspective: 1300px;\n}\n\n.reveal.cube .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbackface-visibility: hidden;\n\tbox-sizing: border-box;\n}\n\t.reveal.center.cube .slides section {\n\t\tmin-height: 0;\n\t}\n\t.reveal.cube .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\tborder-radius: 4px;\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.cube .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\t\ttransform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.cube .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.cube .slides>section.past {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg);\n}\n\n.reveal.cube .slides>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg);\n}\n\n.reveal.cube .slides>section>section.past {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg);\n}\n\n.reveal.cube .slides>section>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg);\n}\n\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n\n.reveal.page .slides {\n\tperspective-origin: 0% 50%;\n\tperspective: 3000px;\n}\n\n.reveal.page .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbox-sizing: border-box;\n}\n\t.reveal.page .slides section.past {\n\t\tz-index: 12;\n\t}\n\t.reveal.page .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.page .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\n\t\t-webkit-transform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.page .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.page .slides>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(-40%, 0, 0) rotateY(-80deg);\n}\n\n.reveal.page .slides>section.future {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n.reveal.page .slides>section>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, -40%, 0) rotateX(80deg);\n}\n\n.reveal.page .slides>section>section.future {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides>section>section:not([data-transition]) {\n\ttransform: none;\n\ttransition: opacity 0.5s;\n}\n\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides>section>section {\n\ttransition: none;\n}\n\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n\n@include transition-global(none) {\n\ttransform: none;\n\ttransition: none;\n}\n\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n\n.reveal .pause-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tbackground: black;\n\tvisibility: hidden;\n\topacity: 0;\n\tz-index: 100;\n\ttransition: all 1s ease;\n}\n.reveal.paused .pause-overlay {\n\tvisibility: visible;\n\topacity: 1;\n}\n\n\n/*********************************************\n * FALLBACK\n *********************************************/\n\n.no-transforms {\n\toverflow-y: auto;\n}\n\n.no-transforms .reveal .slides {\n\tposition: relative;\n\twidth: 80%;\n\theight: auto !important;\n\ttop: 0;\n\tleft: 50%;\n\tmargin: 0;\n\ttext-align: center;\n}\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n\tdisplay: none !important;\n}\n\n.no-transforms .reveal .slides section {\n\tdisplay: block !important;\n\topacity: 1 !important;\n\tposition: relative !important;\n\theight: auto;\n\tmin-height: 0;\n\ttop: 0;\n\tleft: -50%;\n\tmargin: 70px 0;\n\ttransform: none;\n}\n\n.no-transforms .reveal .slides section section {\n\tleft: 0;\n}\n\n.reveal .no-transition,\n.reveal .no-transition * {\n\ttransition: none !important;\n}\n\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n\n.reveal .backgrounds {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tperspective: 600px;\n}\n\t.reveal .slide-background {\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\n\t\tbackground-color: rgba( 0, 0, 0, 0 );\n\t\tbackground-position: 50% 50%;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: cover;\n\n\t\ttransition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\t.reveal .slide-background.stack {\n\t\tdisplay: block;\n\t}\n\n\t.reveal .slide-background.present {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.print-pdf .reveal .slide-background {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\t}\n\n/* Video backgrounds */\n.reveal .slide-background video {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\tmax-width: none;\n\tmax-height: none;\n\ttop: 0;\n\tleft: 0;\n}\n\n/* Immediate transition style */\n.reveal[data-background-transition=none]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=none] {\n\ttransition: none;\n}\n\n/* Slide */\n.reveal[data-background-transition=slide]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=slide] {\n\topacity: 1;\n\tbackface-visibility: hidden;\n}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.past,\n\t.reveal>.backgrounds .slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(-100%, 0);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.future,\n\t.reveal>.backgrounds .slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(100%, 0);\n\t}\n\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past,\n\t.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(0, -100%);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future,\n\t.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(0, 100%);\n\t}\n\n\n/* Convex */\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n}\n\n\n/* Concave */\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n}\n\n/* Zoom */\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=zoom] {\n\ttransition-timing-function: ease;\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"]>.backgrounds .slide-background {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"]>.backgrounds .slide-background {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n\n.reveal.overview {\n\tperspective-origin: 50% 50%;\n\tperspective: 700px;\n\n\t.slides section {\n\t\theight: 700px;\n\t\topacity: 1 !important;\n\t\toverflow: hidden;\n\t\tvisibility: visible !important;\n\t\tcursor: pointer;\n\t\tbox-sizing: border-box;\n\t}\n\t.slides section:hover,\n\t.slides section.present {\n\t\toutline: 10px solid rgba(150,150,150,0.4);\n\t\toutline-offset: 10px;\n\t}\n\t.slides section .fragment {\n\t\topacity: 1;\n\t\ttransition: none;\n\t}\n\t.slides section:after,\n\t.slides section:before {\n\t\tdisplay: none !important;\n\t}\n\t.slides>section.stack {\n\t\tpadding: 0;\n\t\ttop: 0 !important;\n\t\tbackground: none;\n\t\toutline: none;\n\t\toverflow: visible;\n\t}\n\n\t.backgrounds {\n\t\tperspective: inherit;\n\t}\n\n\t.backgrounds .slide-background {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\n\t\t// This can't be applied to the slide itself in Safari\n\t\toutline: 10px solid rgba(150,150,150,0.1);\n\t\toutline-offset: 10px;\n\t}\n}\n\n// Disable transitions transitions while we're activating\n// or deactivating the overview mode.\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n\ttransition: none;\n}\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n\ttransition: none;\n}\n\n.reveal.overview-animated .slides {\n\ttransition: transform 0.4s ease;\n}\n\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n\tdirection: rtl;\n\tfont-family: sans-serif;\n}\n\n.reveal.rtl pre,\n.reveal.rtl code {\n\tdirection: ltr;\n}\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n\ttext-align: right;\n}\n\n.reveal.rtl .progress span {\n\tfloat: right\n}\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n\n.reveal.has-parallax-background .backgrounds {\n\ttransition: all 0.8s ease;\n}\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n\ttransition-duration: 400ms;\n}\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n\n.reveal .overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1000;\n\tbackground: rgba( 0, 0, 0, 0.9 );\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all 0.3s ease;\n}\n\t.reveal .overlay.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay .spinner {\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\ttop: 50%;\n\t\tleft: 50%;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tmargin: -16px 0 0 -16px;\n\t\tz-index: 10;\n\t\tbackground-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n\n\t\tvisibility: visible;\n\t\topacity: 0.6;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay header {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\twidth: 100%;\n\t\theight: 40px;\n\t\tz-index: 2;\n\t\tborder-bottom: 1px solid #222;\n\t}\n\t\t.reveal .overlay header a {\n\t\t\tdisplay: inline-block;\n\t\t\twidth: 40px;\n\t\t\theight: 40px;\n\t\t\tpadding: 0 10px;\n\t\t\tfloat: right;\n\t\t\topacity: 0.6;\n\n\t\t\tbox-sizing: border-box;\n\t\t}\n\t\t\t.reveal .overlay header a:hover {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t\t.reveal .overlay header a .icon {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: 20px;\n\t\t\t\theight: 20px;\n\n\t\t\t\tbackground-position: 50% 50%;\n\t\t\t\tbackground-size: 100%;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t}\n\t\t\t.reveal .overlay header a.close .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC);\n\t\t\t}\n\t\t\t.reveal .overlay header a.external .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==);\n\t\t\t}\n\n\t.reveal .overlay .viewport {\n\t\tposition: absolute;\n\t\ttop: 40px;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\n\t.reveal .overlay.overlay-preview .viewport iframe {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tmax-width: 100%;\n\t\tmax-height: 100%;\n\t\tborder: 0;\n\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .viewport iframe {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .spinner {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(0.2);\n\t}\n\n\t.reveal .overlay.overlay-help .viewport {\n\t\toverflow: auto;\n\t\tcolor: #fff;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner {\n\t\twidth: 600px;\n\t\tmargin: 0 auto;\n\t\tpadding: 60px;\n\t\ttext-align: center;\n\t\tletter-spacing: normal;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n\t\tfont-size: 20px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table {\n\t\tborder: 1px solid #fff;\n\t\tborder-collapse: collapse;\n\t\tfont-size: 14px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n\t\twidth: 200px;\n\t\tpadding: 10px;\n\t\tborder: 1px solid #fff;\n\t\tvertical-align: middle;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n\t\tpadding-top: 20px;\n\t\tpadding-bottom: 20px;\n\t}\n\n\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n\n.reveal .playback {\n\tposition: fixed;\n\tleft: 15px;\n\tbottom: 20px;\n\tz-index: 30;\n\tcursor: pointer;\n\ttransition: all 400ms ease;\n}\n\n.reveal.overview .playback {\n\topacity: 0;\n\tvisibility: hidden;\n}\n\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n\n.reveal .roll {\n\tdisplay: inline-block;\n\tline-height: 1.2;\n\toverflow: hidden;\n\n\tvertical-align: top;\n\tperspective: 400px;\n\tperspective-origin: 50% 50%;\n}\n\t.reveal .roll:hover {\n\t\tbackground: none;\n\t\ttext-shadow: none;\n\t}\n.reveal .roll span {\n\tdisplay: block;\n\tposition: relative;\n\tpadding: 0 2px;\n\n\tpointer-events: none;\n\ttransition: all 400ms ease;\n\ttransform-origin: 50% 0%;\n\ttransform-style: preserve-3d;\n\tbackface-visibility: hidden;\n}\n\t.reveal .roll:hover span {\n\t    background: rgba(0,0,0,0.5);\n\t    transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );\n\t}\n.reveal .roll span:after {\n\tcontent: attr(data-title);\n\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 0;\n\ttop: 0;\n\tpadding: 0 2px;\n\tbackface-visibility: hidden;\n\ttransform-origin: 50% 0%;\n\ttransform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );\n}\n\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n\n// Hide on-page notes\n.reveal aside.notes {\n\tdisplay: none;\n}\n\n// An interface element that can optionally be used to show the\n// speaker notes to all viewers, on top of the presentation\n.reveal .speaker-notes {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 70%;\n\tmax-height: 15%;\n\tleft: 15%;\n\tbottom: 26px;\n\tpadding: 10px;\n\tz-index: 1;\n\tfont-size: 18px;\n\tline-height: 1.4;\n\tcolor: #fff;\n\tbackground-color: rgba(0,0,0,0.5);\n\toverflow: auto;\n\tbox-sizing: border-box;\n\ttext-align: left;\n\tfont-family: Helvetica, sans-serif;\n\t-webkit-overflow-scrolling: touch;\n}\n\n.reveal .speaker-notes.visible:not(:empty) {\n\tdisplay: block;\n}\n\n@media screen and (max-width: 1024px) {\n\t.reveal .speaker-notes {\n\t\tfont-size: 14px;\n\t}\n}\n\n@media screen and (max-width: 600px) {\n\t.reveal .speaker-notes {\n\t\twidth: 90%;\n\t\tleft: 5%;\n\t}\n}\n\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n\tbackface-visibility: visible !important;\n}\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n\topacity: 0;\n}\n\n.zoomed .reveal .roll span {\n\tbackground: none;\n}\n\n.zoomed .reveal .roll span:after {\n\tvisibility: hidden;\n}\n\n\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/README.md",
    "content": "## Dependencies\n\nThemes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup\n\n## Creating a Theme\n\nTo create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`.\n\nEach theme file does four things in the following order:\n\n1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**\nShared utility functions.\n\n2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**\nDeclares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.\n\n3. **Override**\nThis is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.\n\n4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**\nThe template theme file which will generate final CSS output based on the currently defined variables.\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/beige.css",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #f7f2d3;\n  background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));\n  background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background-color: #f7f3de; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: rgba(79, 64, 28, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #8b743d;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #c0a86e;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #564826; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #8b743d;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #8b743d; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #8b743d; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #8b743d; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #8b743d; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #c0a86e; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #c0a86e; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #c0a86e; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #c0a86e; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #8b743d;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/black.css",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {\n  color: #222; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: black; }\n\n::selection {\n  color: #fff;\n  background: #bee4fd;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #ff6a00;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #42affa;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8dcffc;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #068de9; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #fff;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #42affa;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #42affa; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #42affa; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #42affa; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #42affa; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8dcffc; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8dcffc; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8dcffc; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8dcffc; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #42affa;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/blood.css",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: Ubuntu, \"sans-serif\";\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #a23;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: Ubuntu, \"sans-serif\";\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 2px 2px 2px #222;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #a23;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #dd5566;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #6a1520; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #a23;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #a23; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #a23; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #a23; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #a23; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #dd5566; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #dd5566; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #dd5566; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #dd5566; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #a23;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal p {\n  font-weight: 300;\n  text-shadow: 1px 1px #222; }\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  font-weight: 700; }\n\n.reveal p code {\n  background-color: #23241f;\n  display: inline-block;\n  border-radius: 7px; }\n\n.reveal small code {\n  vertical-align: baseline; }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/league.css",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #1c1e20;\n  background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));\n  background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background-color: #2b2b2b; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #FF5E99;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #13DAEC;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #71e9f4;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #0d99a5; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #13DAEC;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #13DAEC; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #13DAEC; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #13DAEC; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #13DAEC; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #71e9f4; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #71e9f4; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #71e9f4; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #71e9f4; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #13DAEC;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/moon.css",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #002b36;\n  background-color: #002b36; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #93a1a1; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee8d5;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #93a1a1;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/night.css",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #111;\n  background-color: #111; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 30px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #e7ad52;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"Montserrat\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.03em;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #e7ad52;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #f3d7ac;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #d08a1d; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #e7ad52;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #e7ad52; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #e7ad52; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #e7ad52; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #e7ad52; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #f3d7ac; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #f3d7ac; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #f3d7ac; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #f3d7ac; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #e7ad52;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/serif.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #F0F1EB;\n  background-color: #F0F1EB; }\n\n.reveal {\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: #26351C;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #383D3D;\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #51483D;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8b7c69;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #25211c; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #51483D;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #51483D; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #51483D; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #51483D; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #51483D; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8b7c69; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8b7c69; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8b7c69; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8b7c69; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #51483D;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/simple.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: rgba(0, 0, 0, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #000;\n  font-family: \"News Cycle\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #00008B;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #0000f1;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #00003f; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #00008B;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #00008B; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #00008B; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #00008B; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #00008B; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #0000f1; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #0000f1; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #0000f1; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #0000f1; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #00008B;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/sky.css",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #add9e4;\n  background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));\n  background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background-color: #f7fbfc; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: #134674;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"Quicksand\", sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.08em;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #3b759e;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #74a7cb;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #264c66; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #3b759e;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #3b759e; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #3b759e; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #3b759e; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #3b759e; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #74a7cb; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #74a7cb; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #74a7cb; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #74a7cb; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #3b759e;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/solarized.css",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fdf6e3;\n  background-color: #fdf6e3; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #657b83; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #586e75;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #657b83;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/beige.scss",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: #333;\n$headingColor: #333;\n$headingTextShadow: none;\n$backgroundColor: #f7f3de;\n$linkColor: #8b743d;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(79, 64, 28, 0.99);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/black.scss",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #222;\n\n$mainColor: #fff;\n$headingColor: #fff;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #42affa;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-light-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #222;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/blood.scss",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n\n // Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n// Include theme-specific fonts\n\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n\n// Colors used in the theme\n$blood: #a23;\n$coal: #222;\n$codeBackground: #23241f;\n\n$backgroundColor: $coal;\n\n// Main text\n$mainFont: Ubuntu, 'sans-serif';\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Headings\n$headingFont: Ubuntu, 'sans-serif';\n$headingTextShadow: 2px 2px 2px $coal;\n\n// h1 shadow, borrowed humbly from \n// (c) Default theme by Hakim El Hattab\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Links\n$linkColor: $blood;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: $blood;\n$selectionColor: #fff;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n\n// some overrides after theme template import\n\n.reveal p {\n    font-weight: 300;\n    text-shadow: 1px 1px $coal;\n}\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n    font-weight: 700;\n}\n\n.reveal p code {\n    background-color: $codeBackground;\n    display: inline-block;\n    border-radius: 7px;\n}\n\n.reveal small code {\n    vertical-align: baseline;\n}"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/league.scss",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n// Override theme settings (see ../template/settings.scss)\n$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/moon.scss",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base1;\n$headingColor: $base2;\n$headingTextShadow: none;\n$backgroundColor: $base03;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/night.scss",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #111;\n\n$mainFont: 'Open Sans', sans-serif;\n$linkColor: #e7ad52;\n$linkColorHover: lighten( $linkColor, 20% );\n$headingFont: 'Montserrat', Impact, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: -0.03em;\n$headingTextTransform: none;\n$selectionBackgroundColor: #e7ad52;\n$mainFontSize: 30px;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/serif.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$mainColor: #000;\n$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$headingColor: #383D3D;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #F0F1EB;\n$linkColor: #51483D;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #26351C;\n\n.reveal a {\n  line-height: 1.3em;\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/simple.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Lato', sans-serif;\n$mainColor: #000;\n$headingFont: 'News Cycle', Impact, sans-serif;\n$headingColor: #000;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #fff;\n$linkColor: #00008B;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(0, 0, 0, 0.99);\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/sky.scss",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Open Sans', sans-serif;\n$mainColor: #333;\n$headingFont: 'Quicksand', sans-serif;\n$headingColor: #333;\n$headingLetterSpacing: -0.08em;\n$headingTextShadow: none;\n$backgroundColor: #f7fbfc;\n$linkColor: #3b759e;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #134674;\n\n// Fix links so they are not cut off\n.reveal a {\n\tline-height: 1.3em;\n}\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( #add9e4, #f7fbfc );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/solarized.scss",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base00;\n$headingColor: $base01;\n$headingTextShadow: none;\n$backgroundColor: $base3;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n// Background generator\n// @mixin bodyBackground() {\n// \t@include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );\n// }\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/source/white.scss",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #fff;\n\n$mainColor: #222;\n$headingColor: #222;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #2a76dd;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-dark-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #fff;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/template/mixins.scss",
    "content": "@mixin vertical-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( top, $top 0%, $bottom 100% );\n}\n\n@mixin horizontal-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( left, $top 0%, $bottom 100% );\n}\n\n@mixin radial-gradient( $outer, $inner, $type: circle ) {\n\tbackground: $outer;\n\tbackground: -moz-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );\n\tbackground: -webkit-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -o-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -ms-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n}"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/template/settings.scss",
    "content": "// Base settings for all themes that can optionally be\n// overridden by the super-theme\n\n// Background of the presentation\n$backgroundColor: #2b2b2b;\n\n// Primary/body text\n$mainFont: 'Lato', sans-serif;\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Vertical spacing between blocks of text\n$blockMargin: 20px;\n\n// Headings\n$headingMargin: 0 0 $blockMargin 0;\n$headingFont: 'League Gothic', Impact, sans-serif;\n$headingColor: #eee;\n$headingLineHeight: 1.2;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingTextShadow: none;\n$headingFontWeight: normal;\n$heading1TextShadow: $headingTextShadow;\n\n$heading1Size: 3.77em;\n$heading2Size: 2.11em;\n$heading3Size: 1.55em;\n$heading4Size: 1.00em;\n\n// Links and actions\n$linkColor: #13DAEC;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: #FF5E99;\n$selectionColor: #fff;\n\n// Generates the presentation background, can be overridden\n// to return a background image or gradient\n@mixin bodyBackground() {\n\tbackground: $backgroundColor;\n}"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/template/theme.scss",
    "content": "// Base theme template for reveal.js\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nbody {\n\t@include bodyBackground();\n\tbackground-color: $backgroundColor;\n}\n\n.reveal {\n\tfont-family: $mainFont;\n\tfont-size: $mainFontSize;\n\tfont-weight: normal;\n\tcolor: $mainColor;\n}\n\n::selection {\n\tcolor: $selectionColor;\n\tbackground: $selectionBackgroundColor;\n\ttext-shadow: none;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tline-height: 1.3;\n\tfont-weight: inherit;\n}\n\n/*********************************************\n * HEADERS\n *********************************************/\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n\tmargin: $headingMargin;\n\tcolor: $headingColor;\n\n\tfont-family: $headingFont;\n\tfont-weight: $headingFontWeight;\n\tline-height: $headingLineHeight;\n\tletter-spacing: $headingLetterSpacing;\n\n\ttext-transform: $headingTextTransform;\n\ttext-shadow: $headingTextShadow;\n\n\tword-wrap: break-word;\n}\n\n.reveal h1 {font-size: $heading1Size; }\n.reveal h2 {font-size: $heading2Size; }\n.reveal h3 {font-size: $heading3Size; }\n.reveal h4 {font-size: $heading4Size; }\n\n.reveal h1 {\n\ttext-shadow: $heading1TextShadow;\n}\n\n\n/*********************************************\n * OTHER\n *********************************************/\n\n.reveal p {\n\tmargin: $blockMargin 0;\n\tline-height: 1.3;\n}\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n\tmax-width: 95%;\n\tmax-height: 95%;\n}\n.reveal strong,\n.reveal b {\n\tfont-weight: bold;\n}\n\n.reveal em {\n\tfont-style: italic;\n}\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n\tdisplay: inline-block;\n\n\ttext-align: left;\n\tmargin: 0 0 0 1em;\n}\n\n.reveal ol {\n\tlist-style-type: decimal;\n}\n\n.reveal ul {\n\tlist-style-type: disc;\n}\n\n.reveal ul ul {\n\tlist-style-type: square;\n}\n\n.reveal ul ul ul {\n\tlist-style-type: circle;\n}\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n\tdisplay: block;\n\tmargin-left: 40px;\n}\n\n.reveal dt {\n\tfont-weight: bold;\n}\n\n.reveal dd {\n\tmargin-left: 40px;\n}\n\n.reveal q,\n.reveal blockquote {\n\tquotes: none;\n}\n\n.reveal blockquote {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 70%;\n\tmargin: $blockMargin auto;\n\tpadding: 5px;\n\n\tfont-style: italic;\n\tbackground: rgba(255, 255, 255, 0.05);\n\tbox-shadow: 0px 0px 2px rgba(0,0,0,0.2);\n}\n\t.reveal blockquote p:first-child,\n\t.reveal blockquote p:last-child {\n\t\tdisplay: inline-block;\n\t}\n\n.reveal q {\n\tfont-style: italic;\n}\n\n.reveal pre {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 90%;\n\tmargin: $blockMargin auto;\n\n\ttext-align: left;\n\tfont-size: 0.55em;\n\tfont-family: monospace;\n\tline-height: 1.2em;\n\n\tword-wrap: break-word;\n\n\tbox-shadow: 0px 0px 6px rgba(0,0,0,0.3);\n}\n.reveal code {\n\tfont-family: monospace;\n}\n\n.reveal pre code {\n\tdisplay: block;\n\tpadding: 5px;\n\toverflow: auto;\n\tmax-height: 400px;\n\tword-wrap: normal;\n}\n\n.reveal table {\n\tmargin: auto;\n\tborder-collapse: collapse;\n\tborder-spacing: 0;\n}\n\n.reveal table th {\n\tfont-weight: bold;\n}\n\n.reveal table th,\n.reveal table td {\n\ttext-align: left;\n\tpadding: 0.2em 0.5em 0.2em 0.5em;\n\tborder-bottom: 1px solid;\n}\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n\ttext-align: center;\n}\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n\ttext-align: right;\n}\n\n.reveal table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.reveal sup {\n\tvertical-align: super;\n}\n.reveal sub {\n\tvertical-align: sub;\n}\n\n.reveal small {\n\tdisplay: inline-block;\n\tfont-size: 0.6em;\n\tline-height: 1.2em;\n\tvertical-align: top;\n}\n\n.reveal small * {\n\tvertical-align: top;\n}\n\n\n/*********************************************\n * LINKS\n *********************************************/\n\n.reveal a {\n\tcolor: $linkColor;\n\ttext-decoration: none;\n\n\t-webkit-transition: color .15s ease;\n\t   -moz-transition: color .15s ease;\n\t        transition: color .15s ease;\n}\n\t.reveal a:hover {\n\t\tcolor: $linkColorHover;\n\n\t\ttext-shadow: none;\n\t\tborder: none;\n\t}\n\n.reveal .roll span:after {\n\tcolor: #fff;\n\tbackground: darken( $linkColor, 15% );\n}\n\n\n/*********************************************\n * IMAGES\n *********************************************/\n\n.reveal section img {\n\tmargin: 15px 0px;\n\tbackground: rgba(255,255,255,0.12);\n\tborder: 4px solid $mainColor;\n\n\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.15);\n}\n\n\t.reveal section img.plain {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal a img {\n\t\t-webkit-transition: all .15s linear;\n\t\t   -moz-transition: all .15s linear;\n\t\t        transition: all .15s linear;\n\t}\n\n\t.reveal a:hover img {\n\t\tbackground: rgba(255,255,255,0.2);\n\t\tborder-color: $linkColor;\n\n\t\tbox-shadow: 0 0 20px rgba(0, 0, 0, 0.55);\n\t}\n\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n\tborder-right-color: $linkColor;\n}\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n\tborder-left-color: $linkColor;\n}\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n\tborder-bottom-color: $linkColor;\n}\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n\tborder-top-color: $linkColor;\n}\n\n.reveal .controls .navigate-left.enabled:hover {\n\tborder-right-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-right.enabled:hover {\n\tborder-left-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-up.enabled:hover {\n\tborder-bottom-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-down.enabled:hover {\n\tborder-top-color: $linkColorHover;\n}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tbackground: rgba(0,0,0,0.2);\n}\n\t.reveal .progress span {\n\t\tbackground: $linkColor;\n\n\t\t-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t   -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t        transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\n"
  },
  {
    "path": "doc/cpp-london-2017/css/theme/white.css",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {\n  color: #fff; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: #222; }\n\n::selection {\n  color: #fff;\n  background: #98bdef;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #222;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #2a76dd;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #6ca0e8;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a53a1; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #222;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #2a76dd;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #2a76dd; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #2a76dd; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #2a76dd; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #2a76dd; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #6ca0e8; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #6ca0e8; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #6ca0e8; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #6ca0e8; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #2a76dd;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cpp-london-2017/example/god_object.cpp",
    "content": "#include <fstream>\n#include <iostream>\n\nint main() {\n  auto value = 0;\n  {\n    std::fstream file{\"input.txt\"};\n    file >> value;\n  }\n  std::cout << value << '\\n';\n}\n"
  },
  {
    "path": "doc/cpp-london-2017/example/static_polymorphism.cpp",
    "content": "#include <cassert>\n#include <fstream>\n#include <iostream>\n\ntemplate <class T>\nstruct Reader {\n  int read() { return static_cast<T*>(this)->read_impl(); }\n  int read_impl() { return 0; }\n};\n\nstruct FileReader : Reader<FileReader> {\n  explicit FileReader(const std::string& str) : file(str) { assert(file.good()); }\n\n  int read_impl() {\n    auto value = 0;\n    file >> value;\n    return value;\n  }\n\n  std::fstream file;\n};\n\ntemplate <class T>\nstruct Viewer {\n  void show(int value) { static_cast<T*>(this)->show_impl(value); }\n  void show_impl(int) {}\n};\n\nstruct ConsoleViewer : Viewer<ConsoleViewer> {\n  void show_impl(int value) { std::cout << value << std::endl; }\n};\n\ntemplate <class TReader, class TViewer>\nstruct App {\n  TReader& reader;\n  TViewer& viewer;\n\n  App(TReader& reader, TViewer& viewer) : reader(reader), viewer(viewer) {}\n\n  void run() { viewer.show(reader.read()); }\n};\n\nint main() {\n  FileReader reader{\"input.txt\"};\n  ConsoleViewer viewer{};\n  App<FileReader, ConsoleViewer>{reader, viewer}.run();\n  // App{reader, viewer}.run();\n}\n"
  },
  {
    "path": "doc/cpp-london-2017/example/type_erasure.cpp",
    "content": "#include <boost/type_erasure/any.hpp>\n#include <boost/type_erasure/builtin.hpp>\n#include <boost/type_erasure/free.hpp>\n#include <boost/type_erasure/member.hpp>\n#include <cassert>\n#include <fstream>\n#include <iostream>\n\nBOOST_TYPE_ERASURE_MEMBER((has_read), read, 0)\nBOOST_TYPE_ERASURE_MEMBER((has_show), show, 1)\n\nusing Reader = boost::mpl::vector<has_read<int()>, boost::type_erasure::copy_constructible<>>;\nusing Viewer = boost::mpl::vector<has_show<void(int)>, boost::type_erasure::copy_constructible<>>;\n\nclass FileReader {\n  std::fstream file;\n\n public:\n  explicit FileReader(const std::string& str) : file(path) { assert(file.good()); }\n\n  int read() {\n    auto value = 12;\n    file >> value;\n    return value;\n  }\n};\n\nclass ConsoleViewer {\n public:\n  void show(int value) { std::cout << value << std::endl; }\n};\n\nclass App {\n  boost::type_erasure::any<Reader> reader;\n  boost::type_erasure::any<Viewer> viewer;\n\n public:\n  App(boost::type_erasure::any<Reader> reader, boost::type_erasure::any<Viewer> viewer) : reader(reader), viewer(viewer) {}\n\n  void run() { viewer.show(reader.read()); }\n};\n\nint main() {\n  FileReader reader{\"input.txt\"};\n  ConsoleViewer viewer{};\n  App{reader, viewer}.run();\n}\n"
  },
  {
    "path": "doc/cpp-london-2017/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>Boost your design with C++14 dependency injection</title>\n\n\t\t<meta name=\"description\" content=\"Boost your design with C++14 dependency injection\">\n\t\t<meta name=\"author\" content=\"Kris Jusiak\">\n\n\t\t<meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n\t\t<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\">\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui\">\n\n\t\t<link rel=\"stylesheet\" href=\"css/reveal.css\">\n        <link rel=\"stylesheet\" href=\"css/theme/league.css\" id=\"theme\">\n\n            <!-- Code syntax highlighting -->\n        <link rel=\"stylesheet\" href=\"lib/css/zenburn.css\">\n\n\t\t<!-- Printing and PDF exports -->\n\t\t<script>\n\t\t\tvar link = document.createElement( 'link' );\n\t\t\tlink.rel = 'stylesheet';\n\t\t\tlink.type = 'text/css';\n\t\t\tlink.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';\n\t\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( link );\n\t\t</script>\n\n\t\t<!--[if lt IE 9]>\n\t\t<script src=\"lib/js/html5shiv.js\"></script>\n\t\t<![endif]-->\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\t\t\t<div class=\"slides\">\n\n          <section data-markdown=\"\"\n                   data-separator=\"^====+$\"\n                   data-separator-vertical=\"^----+$\"\n                   data-notes=\"^Note:\">\n\t\t\t\t\t<script type=\"text/template\">\n\nC++ London Feb-2017\n\n#Boost your design with dependency injection\n\nKris Jusiak, Quantlab\n\n---\n\n[kris@jusiak.net](mailto:kris@jusiak.net) | [@krisjusiak](https://twitter.com/krisjusiak) | [linkedin.com/in/kris-jusiak](https://www.linkedin.com/in/kris-jusiak)\n\n==============================================================================\n\n##Agenda\n\n* In search of the best design\n    * God object, Single responsibility, Static factories, Constructor injection\n    * Policy design, Static polymorphism, Virtual concepts (C++2X)\n    * Functional design, Type erasure, Dynamic polymorphism (Object Oriented design)\n* [Boost].DI\n    * Overview\n    * Showcase\n    * Testing\n* Summary\n\n----\n\n##Disclaimer\n\n---\n\n###We will focus on a simple example\n###but let's think large scale (medium, big team projects)\n\n* A medium team project >= 100.000 LOC\n* 5 LOC example on a slide == 500 LOC in production\n\n\n==============================================================================\n\n###Story: Print a value from a file (BDD Style)\n\n```\nScenario 1: Value from a file is displayed\n Given an 'input.txt' file with an integer value in it\n   And console terminal is ready\n When the App runs\n Then the integer value from 'input.txt' should\n      be printed on the terminal console\n```\n\n----\n\n##In search of the best design!\n\n* Loosely coupled code (easy to extend, maintain, reause)\n* Testable code (TDD, BDD)\n* ...\n      There is much more!\n\n----\n\n## KISS - ~~Keep it simple~~, STUPID (V0)\n\n```cpp\nclass App { // God object - does too much!\n  void run() {\n    auto value = 0;\n    {\n      std::ifstream file{\"input.txt\"};\n      assert(file.good());\n      file >> value;\n    }\n    std::cout << value << '\\n';\n  }\n};\n```\n\n```cpp\nint main() {\n    App{}.run();\n}\n```\n\n> We read code more often than we write it!\n\n----\n\n## God object (V0)\n\n![app](images/app0.png)\n\n* (+) Does the job?\n* (-) Tightly coupled (hard to extend/maintain)\n* (-) Hard to test (TDD/BDD)\n\n----\n\n###Composition Root\n\n> Unique location in an application where modules are composed together\n\n```cpp\nint main() {\n  App{}.run();\n}\n```\n\n* Simplifies writing integration tests\n\n----\n\n###Let's introduce some abstractions (V1)\n\n```cpp\nclass Reader {\n  static constexpr auto path = \"input.txt\";\n  std::ifstream file{path};\n\npublic:\n  auto read() {\n    auto value = 0;\n    file >> value;\n    return value;\n  }\n};\n```\n\n```cpp\nclass Printer {\n  public:\n    void print(int value) {\n      std::cout << value << '\\n';\n    }\n};\n```\n\n----\n\n###Let's introduce some abstractions (V1)\n\n```cpp\nclass App {\n  Reader reader;\n  Printer printer;\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  App{}.run();\n}\n```\n\n----\n\n###Let's introduce some abstractions (V1)\n\n![app](images/app2.png)\n\n* (+/-) We can somewhat test it in isolation (can't test the App)\n* (-) Reader/Printer tightly coupled to the App\n\n----\n\n###Single responsibility principle\n\n> \"A class should have only one reason to change\" Uncle Bob\n\n----\n\n###Let's fix it by using static factories? (V2)\n\n```cpp\nstruct ReaderFactory {\n  static auto create(std::string_view path) {\n    return std::make_unique<FileReader>(path);\n  }\n};\n```\n\n```cpp\nstruct PrinterFactory {\n  static auto create() {\n    return std::make_unique<ConsolePrinter>();\n  }\n};\n```\n\n----\n\n###Let's fix it by using static factories? (V2)\n\n```cpp\nclass App {\npublic:\n  void run() {\n    PrinterFactory::create()->print(\n      ReaderFactory::create(\"input.txt\")->read()\n    );\n  }\n};\n```\n\n```cpp\nint main() {\n  App{}.run();\n}\n```\n\n----\n\n###Let's fix it by using static factories? (V2)\n\n* (+) We can test it in isolation but it's hard\n* (+) Reader/Printer are still tightly coupled to the App\n* (-) Can't inject different Readers/Printers\n* (-) Can't test factories easily\n\n> Static factories MUST GO!\n\n----\n\n###Let's fix it by using constructor injection? (V3)\n\n```cpp\nclass App {\n Reader reader;\n Printer printer;\n\n public:\n  App(Reader&& reader, Printer&& printer)\n    : reader(std::move(reader))\n    , printer(std::move(printer))\n  { }\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  Reader reader;                                  // wiring\n  Printer printer;                                // wiring\n  App app{std::move(reader), std::move(printer)}; // wiring\n}\n```\n\n----\n\n###Let's fix it by using constructor injection? (V3)\n\n![app](images/app1.png)\n\n* (+) We can test it in isolation (including App) but it's hard\n* (+) Reader/Printer are not tightly coupled to the App\n* (-) Can't inject different Readers/Printers\n* (-) We introduced a wiring mess\n\n----\n\n###There you have it - Dependency Injection (DI)\n\n> \"Don't call us, we'll call you\", Hollywood principle\n\n####Wiring - Create and pass required dependencies\n```cpp\nReader reader{...};   // wiring\nPrinter printer{...}; // wiring\n...                   // ...\nApp app{...};         // wiring\n```\n\n> Separates creation logic from business logic\n\n----\n\n###Let's fix it by using templates - Policy Design / Duck Typing (V4)\n\n```cpp\ntemplate<class TReader, class TPrinter>\nclass App {\n  TReader reader;\n  TPrinter printer;\n\npublic:\n  App(TReader& reader, TPrinter& printer)\n    : reader(reader), printer(printer)\n  { }\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  Reader reader;                                // wiring\n  Printer printer;                              // wiring\n  App<Reader, Printer>{reader, printer}.run();  // wiring\n}\n```\n\n----\n\n###Let's fix it by using templates - Policy Design / Duck Typing (V4)\n\n* (+) We can test it in isolation (including App) but it's hard\n* (+) Reader/Printer are not tightly coupled to the App\n* (+) Can inject different Readers/Printers\n* (-) Header files only\n* (-) Slower compilation times (Point of instantiation - POI)\n* (-) Code bloat (executable size)\n* (-) Templates are contagious and give bad error messages\n\n---\n\nSTL example: `std::vector`\n\n----\n\n###Template argument deduction for class templates (C++17)\n\n####C++14\n```cpp\n  App<Reader, Printer>{reader, printer}.run();\n```\n\n####C++17\n```cpp\n  App{reader, printer}.run(); // templates are still there\n                              // just deduced from parameters\n```\n\n----\n\n###Let's improve it by using static polymorphism? (V5)\n#####Curiously recurring template pattern (CRTP)\n\n```cpp\ntemplate <class T>\nclass Reader {\n  int read_impl() { return {}; } // default\n\npublic:\n  int read() { return static_cast<T*>(this)->read_impl(); }\n};\n```\n\n```cpp\nclass FileReader final : public Reader<FileReader> {\n  std::ifstream file;\n\n  int read_impl() {\n    auto value = 0;\n    file >> value;\n    return value;\n  }\n\npublic:\n  explicit FileReader(std::string_view path) : file(path) {\n    assert(file.good());\n  }\n};\n```\n\n----\n\n###Let's improve it by using static polymorphism? (V5)\n\n```cpp\ntemplate <class T>\nclass Printer {\n  void print_impl(int) {} // default\n\npublic:\n  void print(int value) {\n    static_cast<T*>(this)->print_impl(value);\n  }\n};\n```\n\n```cpp\nclass ConsolePrinter final: public Printer<ConsolePrinter> {\n  void print_impl(int value) {\n    std::cout << value << '\\n';\n  }\n};\n```\n\n----\n\n###Let's improve it by using static polymorphism? (V5)\n\n```cpp\ntemplate <class TReader, class TPrinter>\nclass App {\n  TReader& reader;\n  TPrinter& printer;\n\npublic:\n  App(TReader& reader, TPrinter& printer)\n   : reader(reader), printer(printer)\n  {}\n\n  void run() { printer.print(reader.read()); }\n};\n```\n\n```cpp\nint main() {\n  FileReader reader{\"input.txt\"}; // wiring\n  ConsolePrinter printer{};       // wiring\n  App{reader, printer}.run();     // wiring\n}\n```\n\n----\n\n###Let's improve it by using static polymorphism? (V5)\n\n![app](images/app4.png)\n\n* (+) More explicit requirements / default behaviour\n* (-) Same as with Policy Design...\n\n----\n\n###Virtual Concepts to the rescue? (C++2X?)\n\n```cpp\ntemplate <class T>\nconcept bool Readable() {\n  return requires(T reader) {\n    { reader.read(std::string_view{}) } -> int;\n  }\n};\n```\n\n```cpp\ntemplate <class T>\nconcept bool Printable() {\n  return requires(T printer) {\n    { printer.print() };\n  }\n};\n```\n\n----\n\n###Virtual Concepts to the rescue? (C++2X?)\n\n```cpp\nclass App {                  // no template types!\n  virtual Readable reader;   // type erasure\n  virtual Printable printer; // stack, Small Buffer Optimization?\n\npublic:\n  // Same as template<Readable T1, Printable T2>\n  App(Readable reader, Printable printer)\n    : reader(reader), printer(printer) {}\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  Readable reader = FileReader{\"input.txt\"}; // wiring\n  Printable printer = ConsolePrinter();      // wiring\n  App{reader, printer}.run();                // wiring\n}\n```\n\n----\n\n###Virtual Concepts to the rescue? (C++2X?)\n\n* (+) Explicit requirements/constraints (concepts)\n* (+) Removes most problems with Policy Design!\n* (-) A bit slower compilation times\n* (-) May allocate?\n\n-\n\n| | |\n|-|-|\n|[ (SG8) Concepts lite](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3580.pdf) | Constrating templates |\n|[ (SG8) Virtual concepts](https://github.com/andyprowl/virtual-concepts/blob/master/draft/Dynamic%20Generic%20Programming%20with%20Virtual%20Concepts.pdf)  | Type-erasure |\n|[ (SG7) Static reflection](www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0194r0.pdf) | Fakes/Stubs/Mocks generation |\n\n----\n\n###No templates solution, please!\n\n> Some would argue that templates are great for libraries but not as much for the production code (KISS)\n\n----\n\n###Functional design for fun and profit? (V6)\n\n```cpp\nusing fprinter = std::function<void(int)>;\nusing fread    = std::function<int()>;\n```\n\n```cpp\nconst auto fileReader = [](std::string_view path) {\n  return [=] {\n    auto value = 0;\n    {\n      std::ifstream file{path};\n      file >> value;\n    }\n    return value;\n  };\n};\n```\n\n```cpp\nconst auto consolePrinter = [](int value) {\n  std::cout << value << '\\n';\n};\n```\n\n----\n\n###Functional design for fun and profit? (V6)\n\n```cpp\nclass App {\n  fprinter printer;\n  fread read;\n\n public:\n   App(const fprinter& printer, const fread& read)\n     : printer(printer), read(read)\n   { }\n\n   void run() {\n     printer(read());\n   }\n};\n```\n\n----\n\n###Functional design for fun and profit? (V6)\n\n```cpp\nint main() {\n  App{fileReader, consolePrinter}.run();\n}\n```\n\n* (+) Powerful design\n* (-) std::function may allocate and causes code bloat\n* (-) Requires totally different approach\n\n----\n\n###Let's erase the type - Type erasure - (V7)\n\n```cpp\nBOOST_TYPE_ERASURE_MEMBER((has_read), read, 0)   // SFINAE\nBOOST_TYPE_ERASURE_MEMBER((has_print), print, 1) // SFINAE\n```\n\n```cpp\nusing Reader = mpl::vector<\n  has_read<int()>\n, type_erasure::copy_constructible<>\n>;\n\nusing Printer = mpl::vector<\n  has_print<void(int)>\n, type_erasure::copy_constructible<>\n>;\n```\n\n----\n\n###Let's erase the type - Type erasure - (V7)\n\n```cpp\nclass FileReader final { // no inhertiance\n  std::ifstream file;\n\npublic:\n  explicit FileReader(std::string_view path) : file{path} {\n    assert(file.good());\n  }\n\n  int read() {\n    auto value = 0;\n    file >> value;\n    return value;\n  }\n};\n```\n\n```cpp\nclass ConsolePrinter final { // no inhertiance\npublic:\n  void print(int value) { std::cout << value << '\\n'; }\n};\n```\n\n----\n\n###Let's erase the type - Type erasure - (V7)\n\n```cpp\nclass App {\n  type_erasure::any<Reader> reader;\n  type_erasure::any<Printer> printer;\n\npublic:\n  App(type_erasure::any<Reader> reader,\n      type_erasure::any<Printer> printer)\n    : reader(reader), printer(printer)\n  { }\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  FileReader reader{\"input.txt\"}; // wiring\n  ConsolePrinter printer{};       // wiring\n  App{reader, printer}.run();     // wiring\n}\n```\n\n----\n\n###Let's erase the type - Type erasure - (V7)\n\n* (+) Inhertiance is not required\n* (+) Stack based (Small Buffer Optimization)\n* (-) Macros\n* (-) Allocations\n* (-) Slower compilation times\n\n-\n\nSTL example: `std::shared_ptr deleter`\n\n----\n\n###Object oriented design with dynamic polymorphism (V8)\n\n```cpp\nclass IReader {\npublic:\n  virtual ~IReader() noexcept = default;\n  virtual int read() = 0;\n};\n```\n\n```cpp\nclass FileReader final : public IReader {\n  std::istream& input;\n\npublic:\n  explicit FileReader(std::istream&); // NOTE -> it's not a path!\n  void read() override;\n};\n```\n\n----\n\n###Object oriented design with dynamic polymorphism (V8)\n\n```cpp\nclass IPrinter {\npublic:\n  virtual ~IPrinter() noexcept = default;\n  virtual void print(int) = 0;\n};\n```\n\n```cpp\nclass ConsolePrinter final : public IPrinter {\n  std::ostream& output;\n\npublic:\n  explicit ConsolePrinter(std::ostream&);  // NOTE -> ostream\n  void print(int) override;                //         injection!\n};\n```\n\n----\n\n###Object oriented design with dynamic polymorphism (V8)\n\n```cpp\nclass App {\n  IReader& reader;\n  IPrinter& printer;\n\npublic:\n  App(IReader& reader, IPrinter& printer)\n    : reader(reader), printer(printer) {}\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n```cpp\nint main() {\n  auto file = std::fstream{\"input.txt\"}; // wiring!\n  auto reader = FileReader{file};        // wiring!\n  auto& out = std::cout;                 // wiring!\n  auto printer = ConsolePrinter{out};    // wiring!\n  App{reader, printer}.run();            // wiring!\n}\n```\n\n----\n\n###Object oriented design with dynamic polymorphism (V8)\n\n![app](images/app3.png)\n\n* (+) Easy to test and mock (TDD/BDD)\n* (-) Performance hit due to virtual dispatch?\n* (-) We introduced even bigger wiring mess!\n\n----\n\n###Dynamic Polymorphism - performance\n####final keyword and devirtualization\n\n![final](images/final.png)\nhttps://godbolt.org/g/e8olYN\n\n----\n\n###Manual DI - Problems\n\n* ####Single Responsibility Principle\n  =>\n    * ####A lot of classes\n    =>\n      * ####Wiring Mess\n      =>\n        * ####Hard to maintain + Lazy programers (99%)\n        =>\n          * ####Hacks/Workarounds (~~Single Responsibility~~)\n\n-----\n\n###Solution\n\n####Simplify/Remove the wiring mess\n  ####By Automating dependency injection?\n=>\n### [[Boost].DI](https://github.com/boost-experimental/di)\n\n==============================================================================\n\n###[[Boost].DI](https://github.com/boost-experimental/di)\n\n* One header - 3k LOC - (boost/di.hpp) / generated\n* Neither Boost nor STL is required\n* No 'if's, 'virtual's, 'exception's (-fno-rtti, -fno-exceptions)\n* Non-intrusive (constructor parameters deduction)\n* Compile-time creation guarantee (no run-time errors)\n* Supported compilers (C++14)\n  * [Clang-3.4+](https://travis-ci.org/boost-experimental/di), [XCode-6.1+](https://travis-ci.org/boost-experimental/di), [GCC-5.2+](https://travis-ci.org/boost-experimental/di), [MSVC-2015+](https://ci.appveyor.com/project/krzysztof-jusiak/di)\n\n> [Boost].DI is not an official Boost library, yet!\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - API\n\n#####Injector\n```cpp\ntemplate<class... TDeps> requires boundable<TDeps...>()\nclass injector {\npublic:\n  explicit injector(TDeps&&...) noexcept;\n  injector(injector&&) = default;\n  injector& operator=(injector&&) = default;\n\n  template<class T> requires creatable<T>()\n  constexpr T create() const;\n};\n```\n\n#####Make injector\n```cpp\ntemplate<class TConfig = di::config, class... TDeps>\n  requires configurable<TConfig>() && boundable<TDeps...>()\nconstexpr auto make_injector(TDeps&&...) noexcept;\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Hello World\n\n```cpp\n#include <boost/di.hpp>\nnamespace di = boost::di;\n```\n\n```cpp\nclass App {\n public:\n  App(const IReader&, const IPrinter&); // DI handles\n};                  ^       ^           // order and types\n                    |       \\----------------------\\\n                    \\--------------------------\\   |\nint main() {                                   |   |\n  const auto injector = di::make_injector(     |   |\n     di::bind<IReader>.to<FileReader>(), ------/   |\n     di::bind<IPrinter>.to<ConsolePrinter>() ------/\n  );\n\n  injector.create<std::unique_ptr<App>>().run();\n}\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Performance\n\n```sh\ntime $CXX -std=c++14 app.cpp # 0.092s\n```\n\n#####ASM x86-64\n\n```\npush   %rbx\nmov    %rdi,%rbx\nmov    $0x8,%edi\ncallq  0x4009f0 <_Znwm@plt>\nmovq   $0x400e78,(%rax)\nmov    %rax,(%rbx)\nmov    %rbx,%rax\npop    %rbx\nretq\n```\n\n#####Same as\n\n```cpp\nreturn make_unique<App>(...);\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Benchmarks (GCC-7/Java8)\n\n| 64 types, 1-4 ctor params, 1024 iterations | **[Boost].DI** | **Guice** | **Dagger2** |\n| --------------------- | ------------ | ---------------- | ------------- |\n| Compilation time    | 0.376s       |  0.570s            | 1.411s        |\n| Execution time      | 0.002s       |  0.528s            | 0.157s        |\n\n---\n\n| 256 types, 1-4 ctor params, 1024 iterations | **[Boost].DI** | **Guice** | **Dagger2** |\n| --------------------- | ------------ | ---------------- | ------------- |\n| Compilation time    | 0.706s       | 0.642s             | 1.903s        |\n| Execution time      | 0.002s       | 0.544s             | 0.210s        |\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Compile-time errors\n\n```cpp\nconst auto injector = di::make_injector(\n// di::bind<IPrinter>.to<ConsolePrinter>(), // missing 'IPrinter' wiring\n   di::bind<IReader>.to<FileReader>()\n);\nauto app = injector.create<App>();\n```\n\n#####Full Compilation-Time Error Message\n\n```cpp\nerror: 'create<App>' is deprecated: creatable constraint\n  injector.create<App>();           not satisfied\n           ^\nnote 'create<App>' has been explicitly marked deprecated here\n  create\n  ^\nerror: inline function 'abstract_type<IPrinter>::is_not_bound::error'\n error(_ = \"type is not bound, did you forget to add:\n           'di::bind<interface>.to<implementation>()'?\");\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Let's come back to our example (V3)\n\n####Automatic Injection\n\n```cpp\nclass App {\n Reader reader;\n Printer printer;\n\npublic:\n  App(Reader&& reader, Printer&& printer)\n    : reader(std::move(reader))\n    , printer(std::move(printer))\n  {}\n\n  void run() {\n    printer.print(reader.read());\n  }\n};\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Automatic Injection\n\n#####Manual DI - Wiring mess\n```cpp\nint main() {\n  auto file = std::fstream{\"input.txt\"};                 // wiring\n  auto reader = Reader{file};                            // wiring\n  auto printer = Printer{std::cout};                     // wiring\n  auto app = App{std::move(reader), std::move(printer)}; // wiring\n  app.run();\n}\n```\n\n#####[Boost].DI\n```cpp\nint main() {\n  di::make_injector().create<App>().run();\n}\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Refactoring for free!\n\n####Let's change `App` constructor\n\n######Before\n```cpp\nApp(Reader&& reader, Printer&& printer)\n  : reader(std::move(reader))\n  , printer(std::move(printer))\n{ }\n```\n\n######After\n```cpp\nApp(Printer& printer, std::unique_ptr<Reader> reader)\n : printer(printer)\n , reader(std::move(reader))\n{}\n\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Refactoring for free!\n\n#####Manual DI - Wiring mess\n```cpp\nint main() {\n  auto file = std::fstream{\"input.txt\"};      // wiring\n  auto reader = std::make_unique<Reader>{};   // diff wiring!\n  auto printer = Printer{std::cout};          // wiring\n  auto app = App{printer, std::move(reader)}; // diff wiring!\n  app.run();\n}\n```\n\n#####[Boost].DI - No changes!\n```cpp\nint main() {\n  di::make_injector().create<App>().run(); // same as before!\n}\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Implementing features by wiring\n\n```\nScenario 2: Value from an input file is displayed on the QtWindow\n Given an 'input.txt' file with an integer value in it\n   And the first command line argument equals to \"QtPrinter\"\n When the App runs\n Then the integer value from 'input.txt' should\n      be printed on the QtWindow\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Implementing features by wiring\n#####Weak interface\n\n```cpp\nclass QtPrinter {\npublic:\n  QtPrinter(int width, int height); // weak interface\n};\n```\n\n```cpp\nQtPrinter{600, 800}; // Okay\nQtPrinter{800, 600}; // Oops\n```\n\n#####Strong interface\n\n```cpp\nclass QtPrinter {\npublic:\n  QtPrinter(width, height); // 'strong typedefs'\n};\n```\n\n```cpp\nQtPrinter{width{500}, height{800}}; // Okay\nQtPrinter{height{500}, width{800}}; // Compile error, YAY\nQtPrinter{500, 800};                // Compile error, YAY\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Implementing features by wiring\n#####Configuration\n```cpp\nconst auto config = [](std::string_view printer) {\n  return di::make_injector(\n     di::bind<IReader>.to<FileReader>(),\n     di::bind<IPrinter>.to([&] { // we can also create using injector\n       return printer == \"QtPrinter\"\n         ? std::make_unique<QtPrinter>(width{1024}, height{768});\n         : std::make_unique<ConsolePrinter>();\n     })\n  );\n};\n```\n\n#####Usage\n```cpp\nint main(int argc, char** argv) {\n  config(argc == 2 ? argv[1] : nullptr).create<App>().run();\n}\n```\n\n----\n\n###Testing\n\n> \"If you liked it then you should have put a test on it\", Beyonce rule\n\n----\n\n## [[Boost].DI](https://github.com/boost-experimental/di) - Test Driven Development (TDD)\n\n####Unit Tests\n\n```cpp\n\"should print read text\"_test = [] {\n  constexpr auto value = 42;\n\n  auto [sut, mocks] = make<App>(); // creates System Under Test\n                                   // and mocks\n                                   // (C++17 Structured Bindings)\n\n  InSequence sequence;\n  EXPECT_CALL(mocks<IReader>(), read()).WillOnce(Return(value));\n  EXPECT_CALL(mocks<IPrinter>(), print(value));\n\n  sut.run();\n};\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - Behaviour Driven Development (BDD)\n\n####Integration/Acceptance Tests\n\n```cpp\n\"Given an input file\n When App is running\n Then value from input file should be printed\"_test = [] {\n  mocks_t mocks;\n  {\n      std::ofstream file{\"input.txt\"};\n      file << 42;\n  }\n  const auto injector = di::make_injector(\n    config(), // production wiring\n    di::bind<IPrinter>.to(GMock<IPrinter>(mocks)) [di::override]\n  );\n\n  EXPECT_CALL(mocks<IPrinter>(), print(42));\n\n  injector.create<App>().run();\n};\n```\n\n----\n\n###[[Boost].DI](https://github.com/boost-experimental/di) - features\n\n* Core ([Examples](http://boost-experimental.github.io/di/examples))\n    * Automatic Injection, Bindings (Multiple Bindings, Dynamic Bindings), Scopes (Scope Deduction), Named Parameters (Annotations), Modules, Providers, Policies\n* Extensions ([Examples](http://boost-experimental.github.io/di/extensions))\n    * Automatic Mocks injection, Smart Factories, Assisted Injection, XML Injection, Dependencies Diagram Generation, Automatic POD Serialization, ...\n\n==============================================================================\n\n###Summary\n\n----\n\n###Good practises are good practices for a reason!\n\n----\n\n###STUPID vs SOLID (Object Oriented design)\n\n<table><tr>\n <td>\n  <table>\n    <tr><td><b>S</b></td><td>Singleton</td></tr>\n    <tr><td><b>T</b></td><td>Tight Coupling</td></tr>\n    <tr><td><b>U</b></td><td>Untestability</td></tr>\n    <tr><td><b>P</b></td><td>Premature Optimization</td></tr>\n    <tr><td><b>I</b></td><td>Indescriptive Naming</td></tr>\n    <tr><td><b>D</b></td><td>Duplication</td></tr>\n  </table>\n </td>\n\n <td>\n  <table>\n    <tr><td><b>S</b></td><td><b>Single Responsibility</b></td></tr>\n    <tr><td><b>O</b></td><td>Open-close</td></tr>\n    <tr><td><b>L</b></td><td>Liskov substitution</td></tr>\n    <tr><td><b>I</b></td><td>Interface segregation</td></tr>\n    <tr><td><b>D</b></td><td><b>Dependency injection</b></td></tr>\n  </table>\n </td>\n\n </tr>\n</table>\n> \"Clean Code\", Uncle Bob\n\n----\n\n###Dependency Injection\n\n* A powerful design pattern helping with producing\n  * Loosely coupled code\n  * Easy to test code (TDD/BDD)\n\n* [[Boost].DI](https://github.com/boost-experimental/di)\n  * Removes/Cleanup the wiring mess (boilerplate code)\n  * Simplify refactoring (constructor parameters deduction)\n  * Make testing easier (automatic mocks injection)\n\n==============================================================================\n\n##Questions?\n\n| [Boost].DI |  |\n| ------- | ------------- |\n| Documentation | http://boost-experimental.github.io/di |\n| Source Code | https://github.com/boost-experimental/di |\n| Try it online! | http://boost-experimental.github.io/di/try_it |\n|                | https://godbolt.org/g/dvjJFI |\n<!-- .element: style=\"margin-left:-13%; width:125%\" -->\n\n-\n\n[kris@jusiak.net](mailto:kris@jusiak.net) | [@krisjusiak](https://twitter.com/krisjusiak) | [linkedin.com/in/kris-jusiak](https://www.linkedin.com/in/kris-jusiak)\n\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"lib/js/head.min.js\"></script>\n\t\t<script src=\"js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available at:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\n        // Display controls in the bottom right corner\n        controls: true,\n\n        // Display a presentation progress bar\n        progress: true,\n\n        // Display the page number of the current slide\n        slideNumber: true,\n\n        // Push each slide change to the browser history\n        history: true,\n\n        // Enable keyboard shortcuts for navigation\n        keyboard: true,\n\n        // Enable the slide overview mode\n        overview: true,\n\n        // Vertical centering of slides\n        center: true,\n\n        // Enables touch navigation on devices with touch input\n        touch: true,\n\n        // Loop the presentation\n        loop: false,\n\n        // Change the presentation direction to be RTL\n        rtl: false,\n\n        // Turns fragments on and off globally\n        fragments: false,\n\n        // Flags if the presentation is running in an embedded mode,\n        // i.e. contained within a limited portion of the screen\n        embedded: false,\n\n        // Flags if we should show a help overlay when the questionmark\n        // key is pressed\n        help: true,\n\n        // Flags if speaker notes should be visible to all viewers\n        showNotes: false,\n\n        // Number of milliseconds between automatically proceeding to the\n        // next slide, disabled when set to 0, this value can be overwritten\n        // by using a data-autoslide attribute on your slides\n        autoSlide: 0,\n\n        // Stop auto-sliding after user input\n        autoSlideStoppable: true,\n\n        // Enable slide navigation via mouse wheel\n        mouseWheel: true,\n\n        // Hides the address bar on mobile devices\n        hideAddressBar: true,\n\n        // Opens links in an iframe preview overlay\n        previewLinks: false,\n\n        // Transition style\n        transition: 'convex', // none/fade/slide/convex/concave/zoom\n\n        // Transition speed\n        transitionSpeed: 'default', // default/fast/slow\n\n        // Transition style for full page slide backgrounds\n        backgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n        // Number of slides away from the current that are visible\n        viewDistance: 3,\n\n        // Parallax background image\n        parallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n        // Parallax background size\n        parallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n        // Number of pixels to move the parallax background per slide\n        // - Calculated automatically unless specified\n        // - Set to 0 to disable movement along an axis\n        parallaxBackgroundHorizontal: null,\n        parallaxBackgroundVertical: null,\n\n\t\t\t\t// Optional reveal.js plugins\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\t\t\t\t\t{ src: 'plugin/notes/notes.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/js/reveal.js",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n(function( root, factory ) {\n\tif( typeof define === 'function' && define.amd ) {\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine( function() {\n\t\t\troot.Reveal = factory();\n\t\t\treturn root.Reveal;\n\t\t} );\n\t} else if( typeof exports === 'object' ) {\n\t\t// Node. Does not work with strict CommonJS.\n\t\tmodule.exports = factory();\n\t} else {\n\t\t// Browser globals.\n\t\troot.Reveal = factory();\n\t}\n}( this, function() {\n\n\t'use strict';\n\n\tvar Reveal;\n\n\tvar SLIDES_SELECTOR = '.slides section',\n\t\tHORIZONTAL_SLIDES_SELECTOR = '.slides>section',\n\t\tVERTICAL_SLIDES_SELECTOR = '.slides>section.present>section',\n\t\tHOME_SLIDE_SELECTOR = '.slides>section:first-of-type',\n\n\t\t// Configuration defaults, can be overridden at initialization time\n\t\tconfig = {\n\n\t\t\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t\t\t// when the presentation is scaled to fit different resolutions\n\t\t\twidth: 960,\n\t\t\theight: 700,\n\n\t\t\t// Factor of the display size that should remain empty around the content\n\t\t\tmargin: 0.1,\n\n\t\t\t// Bounds for smallest/largest possible scale to apply to content\n\t\t\tminScale: 0.2,\n\t\t\tmaxScale: 1.5,\n\n\t\t\t// Display controls in the bottom right corner\n\t\t\tcontrols: true,\n\n\t\t\t// Display a presentation progress bar\n\t\t\tprogress: true,\n\n\t\t\t// Display the page number of the current slide\n\t\t\tslideNumber: false,\n\n\t\t\t// Push each slide change to the browser history\n\t\t\thistory: false,\n\n\t\t\t// Enable keyboard shortcuts for navigation\n\t\t\tkeyboard: true,\n\n\t\t\t// Optional function that blocks keyboard events when retuning false\n\t\t\tkeyboardCondition: null,\n\n\t\t\t// Enable the slide overview mode\n\t\t\toverview: true,\n\n\t\t\t// Vertical centering of slides\n\t\t\tcenter: true,\n\n\t\t\t// Enables touch navigation on devices with touch input\n\t\t\ttouch: true,\n\n\t\t\t// Loop the presentation\n\t\t\tloop: false,\n\n\t\t\t// Change the presentation direction to be RTL\n\t\t\trtl: false,\n\n\t\t\t// Turns fragments on and off globally\n\t\t\tfragments: true,\n\n\t\t\t// Flags if the presentation is running in an embedded mode,\n\t\t\t// i.e. contained within a limited portion of the screen\n\t\t\tembedded: false,\n\n\t\t\t// Flags if we should show a help overlay when the questionmark\n\t\t\t// key is pressed\n\t\t\thelp: true,\n\n\t\t\t// Flags if it should be possible to pause the presentation (blackout)\n\t\t\tpause: true,\n\n\t\t\t// Flags if speaker notes should be visible to all viewers\n\t\t\tshowNotes: false,\n\n\t\t\t// Number of milliseconds between automatically proceeding to the\n\t\t\t// next slide, disabled when set to 0, this value can be overwritten\n\t\t\t// by using a data-autoslide attribute on your slides\n\t\t\tautoSlide: 0,\n\n\t\t\t// Stop auto-sliding after user input\n\t\t\tautoSlideStoppable: true,\n\n\t\t\t// Enable slide navigation via mouse wheel\n\t\t\tmouseWheel: false,\n\n\t\t\t// Apply a 3D roll to links on hover\n\t\t\trollingLinks: false,\n\n\t\t\t// Hides the address bar on mobile devices\n\t\t\thideAddressBar: true,\n\n\t\t\t// Opens links in an iframe preview overlay\n\t\t\tpreviewLinks: false,\n\n\t\t\t// Exposes the reveal.js API through window.postMessage\n\t\t\tpostMessage: true,\n\n\t\t\t// Dispatches all reveal.js events to the parent window through postMessage\n\t\t\tpostMessageEvents: false,\n\n\t\t\t// Focuses body when page changes visiblity to ensure keyboard shortcuts work\n\t\t\tfocusBodyOnPageVisibilityChange: true,\n\n\t\t\t// Transition style\n\t\t\ttransition: 'slide', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Transition speed\n\t\t\ttransitionSpeed: 'default', // default/fast/slow\n\n\t\t\t// Transition style for full page slide backgrounds\n\t\t\tbackgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Parallax background image\n\t\t\tparallaxBackgroundImage: '', // CSS syntax, e.g. \"a.jpg\"\n\n\t\t\t// Parallax background size\n\t\t\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"3000px 2000px\"\n\n\t\t\t// Amount of pixels to move the parallax background per slide step\n\t\t\tparallaxBackgroundHorizontal: null,\n\t\t\tparallaxBackgroundVertical: null,\n\n\t\t\t// Number of slides away from the current that are visible\n\t\t\tviewDistance: 3,\n\n\t\t\t// Script dependencies to load\n\t\t\tdependencies: []\n\n\t\t},\n\n\t\t// Flags if reveal.js is loaded (has dispatched the 'ready' event)\n\t\tloaded = false,\n\n\t\t// Flags if the overview mode is currently active\n\t\toverview = false,\n\n\t\t// The horizontal and vertical index of the currently active slide\n\t\tindexh,\n\t\tindexv,\n\n\t\t// The previous and current slide HTML elements\n\t\tpreviousSlide,\n\t\tcurrentSlide,\n\n\t\tpreviousBackground,\n\n\t\t// Slides may hold a data-state attribute which we pick up and apply\n\t\t// as a class to the body. This list contains the combined state of\n\t\t// all current slides.\n\t\tstate = [],\n\n\t\t// The current scale of the presentation (see width/height config)\n\t\tscale = 1,\n\n\t\t// CSS transform that is currently applied to the slides container,\n\t\t// split into two groups\n\t\tslidesTransform = { layout: '', overview: '' },\n\n\t\t// Cached references to DOM elements\n\t\tdom = {},\n\n\t\t// Features supported by the browser, see #checkCapabilities()\n\t\tfeatures = {},\n\n\t\t// Client is a mobile device, see #checkCapabilities()\n\t\tisMobileDevice,\n\n\t\t// Throttles mouse wheel navigation\n\t\tlastMouseWheelStep = 0,\n\n\t\t// Delays updates to the URL due to a Chrome thumbnailer bug\n\t\twriteURLTimeout = 0,\n\n\t\t// Flags if the interaction event listeners are bound\n\t\teventsAreBound = false,\n\n\t\t// The current auto-slide duration\n\t\tautoSlide = 0,\n\n\t\t// Auto slide properties\n\t\tautoSlidePlayer,\n\t\tautoSlideTimeout = 0,\n\t\tautoSlideStartTime = -1,\n\t\tautoSlidePaused = false,\n\n\t\t// Holds information about the currently ongoing touch input\n\t\ttouch = {\n\t\t\tstartX: 0,\n\t\t\tstartY: 0,\n\t\t\tstartSpan: 0,\n\t\t\tstartCount: 0,\n\t\t\tcaptured: false,\n\t\t\tthreshold: 40\n\t\t},\n\n\t\t// Holds information about the keyboard shortcuts\n\t\tkeyboardShortcuts = {\n\t\t\t'N  ,  SPACE':\t\t\t'Next slide',\n\t\t\t'P':\t\t\t\t\t'Previous slide',\n\t\t\t'&#8592;  ,  H':\t\t'Navigate left',\n\t\t\t'&#8594;  ,  L':\t\t'Navigate right',\n\t\t\t'&#8593;  ,  K':\t\t'Navigate up',\n\t\t\t'&#8595;  ,  J':\t\t'Navigate down',\n\t\t\t'Home':\t\t\t\t\t'First slide',\n\t\t\t'End':\t\t\t\t\t'Last slide',\n\t\t\t'B  ,  .':\t\t\t\t'Pause',\n\t\t\t'F':\t\t\t\t\t'Fullscreen',\n\t\t\t'ESC, O':\t\t\t\t'Slide overview'\n\t\t};\n\n\t/**\n\t * Starts up the presentation if the client is capable.\n\t */\n\tfunction initialize( options ) {\n\n\t\tcheckCapabilities();\n\n\t\tif( !features.transforms2d && !features.transforms3d ) {\n\t\t\tdocument.body.setAttribute( 'class', 'no-transforms' );\n\n\t\t\t// Since JS won't be running any further, we load all lazy\n\t\t\t// loading elements upfront\n\t\t\tvar images = toArray( document.getElementsByTagName( 'img' ) ),\n\t\t\t\tiframes = toArray( document.getElementsByTagName( 'iframe' ) );\n\n\t\t\tvar lazyLoadable = images.concat( iframes );\n\n\t\t\tfor( var i = 0, len = lazyLoadable.length; i < len; i++ ) {\n\t\t\t\tvar element = lazyLoadable[i];\n\t\t\t\tif( element.getAttribute( 'data-src' ) ) {\n\t\t\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\t\t\telement.removeAttribute( 'data-src' );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If the browser doesn't support core features we won't be\n\t\t\t// using JavaScript to control the presentation\n\t\t\treturn;\n\t\t}\n\n\t\t// Cache references to key DOM elements\n\t\tdom.wrapper = document.querySelector( '.reveal' );\n\t\tdom.slides = document.querySelector( '.reveal .slides' );\n\n\t\t// Force a layout when the whole page, incl fonts, has loaded\n\t\twindow.addEventListener( 'load', layout, false );\n\n\t\tvar query = Reveal.getQueryHash();\n\n\t\t// Do not accept new dependencies via query config to avoid\n\t\t// the potential of malicious script injection\n\t\tif( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies'];\n\n\t\t// Copy options over to our config object\n\t\textend( config, options );\n\t\textend( config, query );\n\n\t\t// Hide the address bar in mobile browsers\n\t\thideAddressBar();\n\n\t\t// Loads the dependencies and continues to #start() once done\n\t\tload();\n\n\t}\n\n\t/**\n\t * Inspect the client to see what it's capable of, this\n\t * should only happens once per runtime.\n\t */\n\tfunction checkCapabilities() {\n\n\t\tfeatures.transforms3d = 'WebkitPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'msPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'OPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'perspective' in document.body.style;\n\n\t\tfeatures.transforms2d = 'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\t\tfeatures.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;\n\t\tfeatures.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function';\n\n\t\tfeatures.canvas = !!document.createElement( 'canvas' ).getContext;\n\n\t\tfeatures.touch = !!( 'ontouchstart' in window );\n\n\t\t// Transitions in the overview are disabled in desktop and\n\t\t// mobile Safari due to lag\n\t\tfeatures.overviewTransitions = !/Version\\/[\\d\\.]+.*Safari/.test( navigator.userAgent );\n\n\t\tisMobileDevice = /(iphone|ipod|ipad|android)/gi.test( navigator.userAgent );\n\n\t}\n\n    /**\n     * Loads the dependencies of reveal.js. Dependencies are\n     * defined via the configuration option 'dependencies'\n     * and will be loaded prior to starting/binding reveal.js.\n     * Some dependencies may have an 'async' flag, if so they\n     * will load after reveal.js has been started up.\n     */\n\tfunction load() {\n\n\t\tvar scripts = [],\n\t\t\tscriptsAsync = [],\n\t\t\tscriptsToPreload = 0;\n\n\t\t// Called once synchronous scripts finish loading\n\t\tfunction proceed() {\n\t\t\tif( scriptsAsync.length ) {\n\t\t\t\t// Load asynchronous scripts\n\t\t\t\thead.js.apply( null, scriptsAsync );\n\t\t\t}\n\n\t\t\tstart();\n\t\t}\n\n\t\tfunction loadScript( s ) {\n\t\t\thead.ready( s.src.match( /([\\w\\d_\\-]*)\\.?js$|[^\\\\\\/]*$/i )[0], function() {\n\t\t\t\t// Extension may contain callback functions\n\t\t\t\tif( typeof s.callback === 'function' ) {\n\t\t\t\t\ts.callback.apply( this );\n\t\t\t\t}\n\n\t\t\t\tif( --scriptsToPreload === 0 ) {\n\t\t\t\t\tproceed();\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfor( var i = 0, len = config.dependencies.length; i < len; i++ ) {\n\t\t\tvar s = config.dependencies[i];\n\n\t\t\t// Load if there's no condition or the condition is truthy\n\t\t\tif( !s.condition || s.condition() ) {\n\t\t\t\tif( s.async ) {\n\t\t\t\t\tscriptsAsync.push( s.src );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tscripts.push( s.src );\n\t\t\t\t}\n\n\t\t\t\tloadScript( s );\n\t\t\t}\n\t\t}\n\n\t\tif( scripts.length ) {\n\t\t\tscriptsToPreload = scripts.length;\n\n\t\t\t// Load synchronous scripts\n\t\t\thead.js.apply( null, scripts );\n\t\t}\n\t\telse {\n\t\t\tproceed();\n\t\t}\n\n\t}\n\n\t/**\n\t * Starts up reveal.js by binding input events and navigating\n\t * to the current URL deeplink if there is one.\n\t */\n\tfunction start() {\n\n\t\t// Make sure we've got all the DOM elements we need\n\t\tsetupDOM();\n\n\t\t// Listen to messages posted to this window\n\t\tsetupPostMessage();\n\n\t\t// Prevent iframes from scrolling the slides out of view\n\t\tsetupIframeScrollPrevention();\n\n\t\t// Resets all vertical slides so that only the first is visible\n\t\tresetVerticalSlides();\n\n\t\t// Updates the presentation to match the current configuration values\n\t\tconfigure();\n\n\t\t// Read the initial hash\n\t\treadURL();\n\n\t\t// Update all backgrounds\n\t\tupdateBackground( true );\n\n\t\t// Notify listeners that the presentation is ready but use a 1ms\n\t\t// timeout to ensure it's not fired synchronously after #initialize()\n\t\tsetTimeout( function() {\n\t\t\t// Enable transitions now that we're loaded\n\t\t\tdom.slides.classList.remove( 'no-transition' );\n\n\t\t\tloaded = true;\n\n\t\t\tdispatchEvent( 'ready', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\t\t}, 1 );\n\n\t\t// Special setup and config is required when printing to PDF\n\t\tif( isPrintingPDF() ) {\n\t\t\tremoveEventListeners();\n\n\t\t\t// The document needs to have loaded for the PDF layout\n\t\t\t// measurements to be accurate\n\t\t\tif( document.readyState === 'complete' ) {\n\t\t\t\tsetupPDF();\n\t\t\t}\n\t\t\telse {\n\t\t\t\twindow.addEventListener( 'load', setupPDF );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Finds and stores references to DOM elements which are\n\t * required by the presentation. If a required element is\n\t * not found, it is created.\n\t */\n\tfunction setupDOM() {\n\n\t\t// Prevent transitions while we're loading\n\t\tdom.slides.classList.add( 'no-transition' );\n\n\t\t// Background element\n\t\tdom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null );\n\n\t\t// Progress bar\n\t\tdom.progress = createSingletonNode( dom.wrapper, 'div', 'progress', '<span></span>' );\n\t\tdom.progressbar = dom.progress.querySelector( 'span' );\n\n\t\t// Arrow controls\n\t\tcreateSingletonNode( dom.wrapper, 'aside', 'controls',\n\t\t\t'<button class=\"navigate-left\" aria-label=\"previous slide\"></button>' +\n\t\t\t'<button class=\"navigate-right\" aria-label=\"next slide\"></button>' +\n\t\t\t'<button class=\"navigate-up\" aria-label=\"above slide\"></button>' +\n\t\t\t'<button class=\"navigate-down\" aria-label=\"below slide\"></button>' );\n\n\t\t// Slide number\n\t\tdom.slideNumber = createSingletonNode( dom.wrapper, 'div', 'slide-number', '' );\n\n\t\t// Element containing notes that are visible to the audience\n\t\tdom.speakerNotes = createSingletonNode( dom.wrapper, 'div', 'speaker-notes', null );\n\t\tdom.speakerNotes.setAttribute( 'data-prevent-swipe', '' );\n\n\t\t// Overlay graphic which is displayed during the paused mode\n\t\tcreateSingletonNode( dom.wrapper, 'div', 'pause-overlay', null );\n\n\t\t// Cache references to elements\n\t\tdom.controls = document.querySelector( '.reveal .controls' );\n\t\tdom.theme = document.querySelector( '#theme' );\n\n\t\tdom.wrapper.setAttribute( 'role', 'application' );\n\n\t\t// There can be multiple instances of controls throughout the page\n\t\tdom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );\n\t\tdom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) );\n\t\tdom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );\n\t\tdom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) );\n\t\tdom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) );\n\t\tdom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );\n\n\t\tdom.statusDiv = createStatusDiv();\n\t}\n\n\t/**\n\t * Creates a hidden div with role aria-live to announce the\n\t * current slide content. Hide the div off-screen to make it\n\t * available only to Assistive Technologies.\n\t */\n\tfunction createStatusDiv() {\n\n\t\tvar statusDiv = document.getElementById( 'aria-status-div' );\n\t\tif( !statusDiv ) {\n\t\t\tstatusDiv = document.createElement( 'div' );\n\t\t\tstatusDiv.style.position = 'absolute';\n\t\t\tstatusDiv.style.height = '1px';\n\t\t\tstatusDiv.style.width = '1px';\n\t\t\tstatusDiv.style.overflow ='hidden';\n\t\t\tstatusDiv.style.clip = 'rect( 1px, 1px, 1px, 1px )';\n\t\t\tstatusDiv.setAttribute( 'id', 'aria-status-div' );\n\t\t\tstatusDiv.setAttribute( 'aria-live', 'polite' );\n\t\t\tstatusDiv.setAttribute( 'aria-atomic','true' );\n\t\t\tdom.wrapper.appendChild( statusDiv );\n\t\t}\n\t\treturn statusDiv;\n\n\t}\n\n\t/**\n\t * Configures the presentation for printing to a static\n\t * PDF.\n\t */\n\tfunction setupPDF() {\n\n\t\tvar slideSize = getComputedSlideSize( window.innerWidth, window.innerHeight );\n\n\t\t// Dimensions of the PDF pages\n\t\tvar pageWidth = Math.floor( slideSize.width * ( 1 + config.margin ) ),\n\t\t\tpageHeight = Math.floor( slideSize.height * ( 1 + config.margin  ) );\n\n\t\t// Dimensions of slides within the pages\n\t\tvar slideWidth = slideSize.width,\n\t\t\tslideHeight = slideSize.height;\n\n\t\t// Let the browser know what page size we want to print\n\t\tinjectStyleSheet( '@page{size:'+ pageWidth +'px '+ pageHeight +'px; margin: 0;}' );\n\n\t\t// Limit the size of certain elements to the dimensions of the slide\n\t\tinjectStyleSheet( '.reveal section>img, .reveal section>video, .reveal section>iframe{max-width: '+ slideWidth +'px; max-height:'+ slideHeight +'px}' );\n\n\t\tdocument.body.classList.add( 'print-pdf' );\n\t\tdocument.body.style.width = pageWidth + 'px';\n\t\tdocument.body.style.height = pageHeight + 'px';\n\n\t\t// Add each slide's index as attributes on itself, we need these\n\t\t// indices to generate slide numbers below\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\n\t\t// Slide and slide background layout\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\n\t\t\t// Vertical stacks are not centred since their section\n\t\t\t// children will be\n\t\t\tif( slide.classList.contains( 'stack' ) === false ) {\n\t\t\t\t// Center the slide inside of the page, giving the slide some margin\n\t\t\t\tvar left = ( pageWidth - slideWidth ) / 2,\n\t\t\t\t\ttop = ( pageHeight - slideHeight ) / 2;\n\n\t\t\t\tvar contentHeight = getAbsoluteHeight( slide );\n\t\t\t\tvar numberOfPages = Math.max( Math.ceil( contentHeight / pageHeight ), 1 );\n\n\t\t\t\t// Center slides vertically\n\t\t\t\tif( numberOfPages === 1 && config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\ttop = Math.max( ( pageHeight - contentHeight ) / 2, 0 );\n\t\t\t\t}\n\n\t\t\t\t// Position the slide inside of the page\n\t\t\t\tslide.style.left = left + 'px';\n\t\t\t\tslide.style.top = top + 'px';\n\t\t\t\tslide.style.width = slideWidth + 'px';\n\n\t\t\t\t// TODO Backgrounds need to be multiplied when the slide\n\t\t\t\t// stretches over multiple pages\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background ) {\n\t\t\t\t\tbackground.style.width = pageWidth + 'px';\n\t\t\t\t\tbackground.style.height = ( pageHeight * numberOfPages ) + 'px';\n\t\t\t\t\tbackground.style.top = -top + 'px';\n\t\t\t\t\tbackground.style.left = -left + 'px';\n\t\t\t\t}\n\n\t\t\t\t// Inject notes if `showNotes` is enabled\n\t\t\t\tif( config.showNotes ) {\n\t\t\t\t\tvar notes = getSlideNotes( slide );\n\t\t\t\t\tif( notes ) {\n\t\t\t\t\t\tvar notesSpacing = 8;\n\t\t\t\t\t\tvar notesElement = document.createElement( 'div' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes-pdf' );\n\t\t\t\t\t\tnotesElement.innerHTML = notes;\n\t\t\t\t\t\tnotesElement.style.left = ( notesSpacing - left ) + 'px';\n\t\t\t\t\t\tnotesElement.style.bottom = ( notesSpacing - top ) + 'px';\n\t\t\t\t\t\tnotesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px';\n\t\t\t\t\t\tslide.appendChild( notesElement );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Inject slide numbers if `slideNumbers` are enabled\n\t\t\t\tif( config.slideNumber ) {\n\t\t\t\t\tvar slideNumberH = parseInt( slide.getAttribute( 'data-index-h' ), 10 ) + 1,\n\t\t\t\t\t\tslideNumberV = parseInt( slide.getAttribute( 'data-index-v' ), 10 ) + 1;\n\n\t\t\t\t\tvar numberElement = document.createElement( 'div' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number-pdf' );\n\t\t\t\t\tnumberElement.innerHTML = formatSlideNumber( slideNumberH, '.', slideNumberV );\n\t\t\t\t\tbackground.appendChild( numberElement );\n\t\t\t\t}\n\t\t\t}\n\n\t\t} );\n\n\t\t// Show all fragments\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' .fragment' ) ).forEach( function( fragment ) {\n\t\t\tfragment.classList.add( 'visible' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * This is an unfortunate necessity. Iframes can trigger the\n\t * parent window to scroll, for example by focusing an input.\n\t * This scrolling can not be prevented by hiding overflow in\n\t * CSS so we have to resort to repeatedly checking if the\n\t * browser has decided to offset our slides :(\n\t */\n\tfunction setupIframeScrollPrevention() {\n\n\t\tif( dom.slides.querySelector( 'iframe' ) ) {\n\t\t\tsetInterval( function() {\n\t\t\t\tif( dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) {\n\t\t\t\t\tdom.wrapper.scrollTop = 0;\n\t\t\t\t\tdom.wrapper.scrollLeft = 0;\n\t\t\t\t}\n\t\t\t}, 500 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates an HTML element and returns a reference to it.\n\t * If the element already exists the existing instance will\n\t * be returned.\n\t */\n\tfunction createSingletonNode( container, tagname, classname, innerHTML ) {\n\n\t\t// Find all nodes matching the description\n\t\tvar nodes = container.querySelectorAll( '.' + classname );\n\n\t\t// Check all matches to find one which is a direct child of\n\t\t// the specified container\n\t\tfor( var i = 0; i < nodes.length; i++ ) {\n\t\t\tvar testNode = nodes[i];\n\t\t\tif( testNode.parentNode === container ) {\n\t\t\t\treturn testNode;\n\t\t\t}\n\t\t}\n\n\t\t// If no node was found, create it now\n\t\tvar node = document.createElement( tagname );\n\t\tnode.classList.add( classname );\n\t\tif( typeof innerHTML === 'string' ) {\n\t\t\tnode.innerHTML = innerHTML;\n\t\t}\n\t\tcontainer.appendChild( node );\n\n\t\treturn node;\n\n\t}\n\n\t/**\n\t * Creates the slide background elements and appends them\n\t * to the background container. One element is created per\n\t * slide no matter if the given slide has visible background.\n\t */\n\tfunction createBackgrounds() {\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\t// Clear prior backgrounds\n\t\tdom.background.innerHTML = '';\n\t\tdom.background.classList.add( 'no-transition' );\n\n\t\t// Iterate over all horizontal slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( slideh ) {\n\n\t\t\tvar backgroundStack;\n\n\t\t\tif( printMode ) {\n\t\t\t\tbackgroundStack = createBackground( slideh, slideh );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundStack = createBackground( slideh, dom.background );\n\t\t\t}\n\n\t\t\t// Iterate over all vertical slides\n\t\t\ttoArray( slideh.querySelectorAll( 'section' ) ).forEach( function( slidev ) {\n\n\t\t\t\tif( printMode ) {\n\t\t\t\t\tcreateBackground( slidev, slidev );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tcreateBackground( slidev, backgroundStack );\n\t\t\t\t}\n\n\t\t\t\tbackgroundStack.classList.add( 'stack' );\n\n\t\t\t} );\n\n\t\t} );\n\n\t\t// Add parallax background if specified\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tdom.background.style.backgroundImage = 'url(\"' + config.parallaxBackgroundImage + '\")';\n\t\t\tdom.background.style.backgroundSize = config.parallaxBackgroundSize;\n\n\t\t\t// Make sure the below properties are set on the element - these properties are\n\t\t\t// needed for proper transitions to be set on the element via CSS. To remove\n\t\t\t// annoying background slide-in effect when the presentation starts, apply\n\t\t\t// these properties after short time delay\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.wrapper.classList.add( 'has-parallax-background' );\n\t\t\t}, 1 );\n\n\t\t}\n\t\telse {\n\n\t\t\tdom.background.style.backgroundImage = '';\n\t\t\tdom.wrapper.classList.remove( 'has-parallax-background' );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates a background for the given slide.\n\t *\n\t * @param {HTMLElement} slide\n\t * @param {HTMLElement} container The element that the background\n\t * should be appended to\n\t */\n\tfunction createBackground( slide, container ) {\n\n\t\tvar data = {\n\t\t\tbackground: slide.getAttribute( 'data-background' ),\n\t\t\tbackgroundSize: slide.getAttribute( 'data-background-size' ),\n\t\t\tbackgroundImage: slide.getAttribute( 'data-background-image' ),\n\t\t\tbackgroundVideo: slide.getAttribute( 'data-background-video' ),\n\t\t\tbackgroundIframe: slide.getAttribute( 'data-background-iframe' ),\n\t\t\tbackgroundColor: slide.getAttribute( 'data-background-color' ),\n\t\t\tbackgroundRepeat: slide.getAttribute( 'data-background-repeat' ),\n\t\t\tbackgroundPosition: slide.getAttribute( 'data-background-position' ),\n\t\t\tbackgroundTransition: slide.getAttribute( 'data-background-transition' )\n\t\t};\n\n\t\tvar element = document.createElement( 'div' );\n\n\t\t// Carry over custom classes from the slide to the background\n\t\telement.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' );\n\n\t\tif( data.background ) {\n\t\t\t// Auto-wrap image urls in url(...)\n\t\t\tif( /^(http|file|\\/\\/)/gi.test( data.background ) || /\\.(svg|png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) {\n\t\t\t\tslide.setAttribute( 'data-background-image', data.background );\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.background = data.background;\n\t\t\t}\n\t\t}\n\n\t\t// Create a hash for this combination of background settings.\n\t\t// This is used to determine when two slide backgrounds are\n\t\t// the same.\n\t\tif( data.background || data.backgroundColor || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) {\n\t\t\telement.setAttribute( 'data-background-hash', data.background +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundSize +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundImage +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundVideo +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundIframe +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundColor +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundRepeat +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundPosition +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundTransition );\n\t\t}\n\n\t\t// Additional and optional background properties\n\t\tif( data.backgroundSize ) element.style.backgroundSize = data.backgroundSize;\n\t\tif( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;\n\t\tif( data.backgroundRepeat ) element.style.backgroundRepeat = data.backgroundRepeat;\n\t\tif( data.backgroundPosition ) element.style.backgroundPosition = data.backgroundPosition;\n\t\tif( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );\n\n\t\tcontainer.appendChild( element );\n\n\t\t// If backgrounds are being recreated, clear old classes\n\t\tslide.classList.remove( 'has-dark-background' );\n\t\tslide.classList.remove( 'has-light-background' );\n\n\t\t// If this slide has a background color, add a class that\n\t\t// signals if it is light or dark. If the slide has no background\n\t\t// color, no class will be set\n\t\tvar computedBackgroundColor = window.getComputedStyle( element ).backgroundColor;\n\t\tif( computedBackgroundColor ) {\n\t\t\tvar rgb = colorToRgb( computedBackgroundColor );\n\n\t\t\t// Ignore fully transparent backgrounds. Some browsers return\n\t\t\t// rgba(0,0,0,0) when reading the computed background color of\n\t\t\t// an element with no background\n\t\t\tif( rgb && rgb.a !== 0 ) {\n\t\t\t\tif( colorBrightness( computedBackgroundColor ) < 128 ) {\n\t\t\t\t\tslide.classList.add( 'has-dark-background' );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.classList.add( 'has-light-background' );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn element;\n\n\t}\n\n\t/**\n\t * Registers a listener to postMessage events, this makes it\n\t * possible to call all reveal.js API methods from another\n\t * window. For example:\n\t *\n\t * revealWindow.postMessage( JSON.stringify({\n\t *   method: 'slide',\n\t *   args: [ 2 ]\n\t * }), '*' );\n\t */\n\tfunction setupPostMessage() {\n\n\t\tif( config.postMessage ) {\n\t\t\twindow.addEventListener( 'message', function ( event ) {\n\t\t\t\tvar data = event.data;\n\n\t\t\t\t// Make sure we're dealing with JSON\n\t\t\t\tif( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) {\n\t\t\t\t\tdata = JSON.parse( data );\n\n\t\t\t\t\t// Check if the requested method can be found\n\t\t\t\t\tif( data.method && typeof Reveal[data.method] === 'function' ) {\n\t\t\t\t\t\tReveal[data.method].apply( Reveal, data.args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies the configuration settings from the config\n\t * object. May be called multiple times.\n\t */\n\tfunction configure( options ) {\n\n\t\tvar numberOfSlides = dom.wrapper.querySelectorAll( SLIDES_SELECTOR ).length;\n\n\t\tdom.wrapper.classList.remove( config.transition );\n\n\t\t// New config options may be passed when this method\n\t\t// is invoked through the API after initialization\n\t\tif( typeof options === 'object' ) extend( config, options );\n\n\t\t// Force linear transition based on browser capabilities\n\t\tif( features.transforms3d === false ) config.transition = 'linear';\n\n\t\tdom.wrapper.classList.add( config.transition );\n\n\t\tdom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );\n\t\tdom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition );\n\n\t\tdom.controls.style.display = config.controls ? 'block' : 'none';\n\t\tdom.progress.style.display = config.progress ? 'block' : 'none';\n\t\tdom.slideNumber.style.display = config.slideNumber && !isPrintingPDF() ? 'block' : 'none';\n\n\t\tif( config.rtl ) {\n\t\t\tdom.wrapper.classList.add( 'rtl' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'rtl' );\n\t\t}\n\n\t\tif( config.center ) {\n\t\t\tdom.wrapper.classList.add( 'center' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'center' );\n\t\t}\n\n\t\t// Exit the paused mode if it was configured off\n\t\tif( config.pause === false ) {\n\t\t\tresume();\n\t\t}\n\n\t\tif( config.showNotes ) {\n\t\t\tdom.speakerNotes.classList.add( 'visible' );\n\t\t}\n\t\telse {\n\t\t\tdom.speakerNotes.classList.remove( 'visible' );\n\t\t}\n\n\t\tif( config.mouseWheel ) {\n\t\t\tdocument.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.addEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\t\telse {\n\t\t\tdocument.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\n\t\t// Rolling 3D links\n\t\tif( config.rollingLinks ) {\n\t\t\tenableRollingLinks();\n\t\t}\n\t\telse {\n\t\t\tdisableRollingLinks();\n\t\t}\n\n\t\t// Iframe link previews\n\t\tif( config.previewLinks ) {\n\t\t\tenablePreviewLinks();\n\t\t}\n\t\telse {\n\t\t\tdisablePreviewLinks();\n\t\t\tenablePreviewLinks( '[data-preview-link]' );\n\t\t}\n\n\t\t// Remove existing auto-slide controls\n\t\tif( autoSlidePlayer ) {\n\t\t\tautoSlidePlayer.destroy();\n\t\t\tautoSlidePlayer = null;\n\t\t}\n\n\t\t// Generate auto-slide controls if needed\n\t\tif( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) {\n\t\t\tautoSlidePlayer = new Playback( dom.wrapper, function() {\n\t\t\t\treturn Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 );\n\t\t\t} );\n\n\t\t\tautoSlidePlayer.on( 'click', onAutoSlidePlayerClick );\n\t\t\tautoSlidePaused = false;\n\t\t}\n\n\t\t// When fragments are turned off they should be visible\n\t\tif( config.fragments === false ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( '.fragment' ) ).forEach( function( element ) {\n\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t} );\n\t\t}\n\n\t\tsync();\n\n\t}\n\n\t/**\n\t * Binds all event listeners.\n\t */\n\tfunction addEventListeners() {\n\n\t\teventsAreBound = true;\n\n\t\twindow.addEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.addEventListener( 'resize', onWindowResize, false );\n\n\t\tif( config.touch ) {\n\t\t\tdom.wrapper.addEventListener( 'touchstart', onTouchStart, false );\n\t\t\tdom.wrapper.addEventListener( 'touchmove', onTouchMove, false );\n\t\t\tdom.wrapper.addEventListener( 'touchend', onTouchEnd, false );\n\n\t\t\t// Support pointer-style touch interaction as well\n\t\t\tif( window.navigator.pointerEnabled ) {\n\t\t\t\t// IE 11 uses un-prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'pointerdown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointermove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointerup', onPointerUp, false );\n\t\t\t}\n\t\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\t\t// IE 10 uses prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t\t}\n\t\t}\n\n\t\tif( config.keyboard ) {\n\t\t\tdocument.addEventListener( 'keydown', onDocumentKeyDown, false );\n\t\t\tdocument.addEventListener( 'keypress', onDocumentKeyPress, false );\n\t\t}\n\n\t\tif( config.progress && dom.progress ) {\n\t\t\tdom.progress.addEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\tif( config.focusBodyOnPageVisibilityChange ) {\n\t\t\tvar visibilityChange;\n\n\t\t\tif( 'hidden' in document ) {\n\t\t\t\tvisibilityChange = 'visibilitychange';\n\t\t\t}\n\t\t\telse if( 'msHidden' in document ) {\n\t\t\t\tvisibilityChange = 'msvisibilitychange';\n\t\t\t}\n\t\t\telse if( 'webkitHidden' in document ) {\n\t\t\t\tvisibilityChange = 'webkitvisibilitychange';\n\t\t\t}\n\n\t\t\tif( visibilityChange ) {\n\t\t\t\tdocument.addEventListener( visibilityChange, onPageVisibilityChange, false );\n\t\t\t}\n\t\t}\n\n\t\t// Listen to both touch and click events, in case the device\n\t\t// supports both\n\t\tvar pointerEvents = [ 'touchstart', 'click' ];\n\n\t\t// Only support touch for Android, fixes double navigations in\n\t\t// stock browser\n\t\tif( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tpointerEvents = [ 'touchstart' ];\n\t\t}\n\n\t\tpointerEvents.forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbinds all event listeners.\n\t */\n\tfunction removeEventListeners() {\n\n\t\teventsAreBound = false;\n\n\t\tdocument.removeEventListener( 'keydown', onDocumentKeyDown, false );\n\t\tdocument.removeEventListener( 'keypress', onDocumentKeyPress, false );\n\t\twindow.removeEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.removeEventListener( 'resize', onWindowResize, false );\n\n\t\tdom.wrapper.removeEventListener( 'touchstart', onTouchStart, false );\n\t\tdom.wrapper.removeEventListener( 'touchmove', onTouchMove, false );\n\t\tdom.wrapper.removeEventListener( 'touchend', onTouchEnd, false );\n\n\t\t// IE11\n\t\tif( window.navigator.pointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'pointerdown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointermove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointerup', onPointerUp, false );\n\t\t}\n\t\t// IE10\n\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t}\n\n\t\tif ( config.progress && dom.progress ) {\n\t\t\tdom.progress.removeEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\t[ 'touchstart', 'click' ].forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Extend object a with the properties of object b.\n\t * If there's a conflict, object b takes precedence.\n\t */\n\tfunction extend( a, b ) {\n\n\t\tfor( var i in b ) {\n\t\t\ta[ i ] = b[ i ];\n\t\t}\n\n\t}\n\n\t/**\n\t * Converts the target object to an array.\n\t */\n\tfunction toArray( o ) {\n\n\t\treturn Array.prototype.slice.call( o );\n\n\t}\n\n\t/**\n\t * Utility for deserializing a value.\n\t */\n\tfunction deserialize( value ) {\n\n\t\tif( typeof value === 'string' ) {\n\t\t\tif( value === 'null' ) return null;\n\t\t\telse if( value === 'true' ) return true;\n\t\t\telse if( value === 'false' ) return false;\n\t\t\telse if( value.match( /^\\d+$/ ) ) return parseFloat( value );\n\t\t}\n\n\t\treturn value;\n\n\t}\n\n\t/**\n\t * Measures the distance in pixels between point a\n\t * and point b.\n\t *\n\t * @param {Object} a point with x/y properties\n\t * @param {Object} b point with x/y properties\n\t */\n\tfunction distanceBetween( a, b ) {\n\n\t\tvar dx = a.x - b.x,\n\t\t\tdy = a.y - b.y;\n\n\t\treturn Math.sqrt( dx*dx + dy*dy );\n\n\t}\n\n\t/**\n\t * Applies a CSS transform to the target element.\n\t */\n\tfunction transformElement( element, transform ) {\n\n\t\telement.style.WebkitTransform = transform;\n\t\telement.style.MozTransform = transform;\n\t\telement.style.msTransform = transform;\n\t\telement.style.transform = transform;\n\n\t}\n\n\t/**\n\t * Applies CSS transforms to the slides container. The container\n\t * is transformed from two separate sources: layout and the overview\n\t * mode.\n\t */\n\tfunction transformSlides( transforms ) {\n\n\t\t// Pick up new transforms from arguments\n\t\tif( typeof transforms.layout === 'string' ) slidesTransform.layout = transforms.layout;\n\t\tif( typeof transforms.overview === 'string' ) slidesTransform.overview = transforms.overview;\n\n\t\t// Apply the transforms to the slides container\n\t\tif( slidesTransform.layout ) {\n\t\t\ttransformElement( dom.slides, slidesTransform.layout + ' ' + slidesTransform.overview );\n\t\t}\n\t\telse {\n\t\t\ttransformElement( dom.slides, slidesTransform.overview );\n\t\t}\n\n\t}\n\n\t/**\n\t * Injects the given CSS styles into the DOM.\n\t */\n\tfunction injectStyleSheet( value ) {\n\n\t\tvar tag = document.createElement( 'style' );\n\t\ttag.type = 'text/css';\n\t\tif( tag.styleSheet ) {\n\t\t\ttag.styleSheet.cssText = value;\n\t\t}\n\t\telse {\n\t\t\ttag.appendChild( document.createTextNode( value ) );\n\t\t}\n\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( tag );\n\n\t}\n\n\t/**\n\t * Converts various color input formats to an {r:0,g:0,b:0} object.\n\t *\n\t * @param {String} color The string representation of a color,\n\t * the following formats are supported:\n\t * - #000\n\t * - #000000\n\t * - rgb(0,0,0)\n\t */\n\tfunction colorToRgb( color ) {\n\n\t\tvar hex3 = color.match( /^#([0-9a-f]{3})$/i );\n\t\tif( hex3 && hex3[1] ) {\n\t\t\thex3 = hex3[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex3.charAt( 0 ), 16 ) * 0x11,\n\t\t\t\tg: parseInt( hex3.charAt( 1 ), 16 ) * 0x11,\n\t\t\t\tb: parseInt( hex3.charAt( 2 ), 16 ) * 0x11\n\t\t\t};\n\t\t}\n\n\t\tvar hex6 = color.match( /^#([0-9a-f]{6})$/i );\n\t\tif( hex6 && hex6[1] ) {\n\t\t\thex6 = hex6[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex6.substr( 0, 2 ), 16 ),\n\t\t\t\tg: parseInt( hex6.substr( 2, 2 ), 16 ),\n\t\t\t\tb: parseInt( hex6.substr( 4, 2 ), 16 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgb = color.match( /^rgb\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\)$/i );\n\t\tif( rgb ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgb[1], 10 ),\n\t\t\t\tg: parseInt( rgb[2], 10 ),\n\t\t\t\tb: parseInt( rgb[3], 10 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgba = color.match( /^rgba\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\,\\s*([\\d]+|[\\d]*.[\\d]+)\\s*\\)$/i );\n\t\tif( rgba ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgba[1], 10 ),\n\t\t\t\tg: parseInt( rgba[2], 10 ),\n\t\t\t\tb: parseInt( rgba[3], 10 ),\n\t\t\t\ta: parseFloat( rgba[4] )\n\t\t\t};\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Calculates brightness on a scale of 0-255.\n\t *\n\t * @param color See colorStringToRgb for supported formats.\n\t */\n\tfunction colorBrightness( color ) {\n\n\t\tif( typeof color === 'string' ) color = colorToRgb( color );\n\n\t\tif( color ) {\n\t\t\treturn ( color.r * 299 + color.g * 587 + color.b * 114 ) / 1000;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the height of the given element by looking\n\t * at the position and height of its immediate children.\n\t */\n\tfunction getAbsoluteHeight( element ) {\n\n\t\tvar height = 0;\n\n\t\tif( element ) {\n\t\t\tvar absoluteChildren = 0;\n\n\t\t\ttoArray( element.childNodes ).forEach( function( child ) {\n\n\t\t\t\tif( typeof child.offsetTop === 'number' && child.style ) {\n\t\t\t\t\t// Count # of abs children\n\t\t\t\t\tif( window.getComputedStyle( child ).position === 'absolute' ) {\n\t\t\t\t\t\tabsoluteChildren += 1;\n\t\t\t\t\t}\n\n\t\t\t\t\theight = Math.max( height, child.offsetTop + child.offsetHeight );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t// If there are no absolute children, use offsetHeight\n\t\t\tif( absoluteChildren === 0 ) {\n\t\t\t\theight = element.offsetHeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Returns the remaining height within the parent of the\n\t * target element.\n\t *\n\t * remaining height = [ configured parent height ] - [ current parent height ]\n\t */\n\tfunction getRemainingHeight( element, height ) {\n\n\t\theight = height || 0;\n\n\t\tif( element ) {\n\t\t\tvar newHeight, oldHeight = element.style.height;\n\n\t\t\t// Change the .stretch element height to 0 in order find the height of all\n\t\t\t// the other elements\n\t\t\telement.style.height = '0px';\n\t\t\tnewHeight = height - element.parentNode.offsetHeight;\n\n\t\t\t// Restore the old height, just in case\n\t\t\telement.style.height = oldHeight + 'px';\n\n\t\t\treturn newHeight;\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Checks if this instance is being used to print a PDF.\n\t */\n\tfunction isPrintingPDF() {\n\n\t\treturn ( /print-pdf/gi ).test( window.location.search );\n\n\t}\n\n\t/**\n\t * Hides the address bar if we're on a mobile device.\n\t */\n\tfunction hideAddressBar() {\n\n\t\tif( config.hideAddressBar && isMobileDevice ) {\n\t\t\t// Events that should trigger the address bar to hide\n\t\t\twindow.addEventListener( 'load', removeAddressBar, false );\n\t\t\twindow.addEventListener( 'orientationchange', removeAddressBar, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Causes the address bar to hide on mobile devices,\n\t * more vertical space ftw.\n\t */\n\tfunction removeAddressBar() {\n\n\t\tsetTimeout( function() {\n\t\t\twindow.scrollTo( 0, 1 );\n\t\t}, 10 );\n\n\t}\n\n\t/**\n\t * Dispatches an event of the specified type from the\n\t * reveal DOM element.\n\t */\n\tfunction dispatchEvent( type, args ) {\n\n\t\tvar event = document.createEvent( 'HTMLEvents', 1, 2 );\n\t\tevent.initEvent( type, true, true );\n\t\textend( event, args );\n\t\tdom.wrapper.dispatchEvent( event );\n\n\t\t// If we're in an iframe, post each reveal.js event to the\n\t\t// parent window. Used by the notes plugin\n\t\tif( config.postMessageEvents && window.parent !== window.self ) {\n\t\t\twindow.parent.postMessage( JSON.stringify({ namespace: 'reveal', eventName: type, state: getState() }), '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Wrap all links in 3D goodness.\n\t */\n\tfunction enableRollingLinks() {\n\n\t\tif( features.transforms3d && !( 'msPerspective' in document.body.style ) ) {\n\t\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a' );\n\n\t\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\t\tvar anchor = anchors[i];\n\n\t\t\t\tif( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {\n\t\t\t\t\tvar span = document.createElement('span');\n\t\t\t\t\tspan.setAttribute('data-title', anchor.text);\n\t\t\t\t\tspan.innerHTML = anchor.innerHTML;\n\n\t\t\t\t\tanchor.classList.add( 'roll' );\n\t\t\t\t\tanchor.innerHTML = '';\n\t\t\t\t\tanchor.appendChild(span);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Unwrap all 3D links.\n\t */\n\tfunction disableRollingLinks() {\n\n\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );\n\n\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\tvar anchor = anchors[i];\n\t\t\tvar span = anchor.querySelector( 'span' );\n\n\t\t\tif( span ) {\n\t\t\t\tanchor.classList.remove( 'roll' );\n\t\t\t\tanchor.innerHTML = span.innerHTML;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Bind preview frame links.\n\t */\n\tfunction enablePreviewLinks( selector ) {\n\n\t\tvar anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.addEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbind preview frame links.\n\t */\n\tfunction disablePreviewLinks() {\n\n\t\tvar anchors = toArray( document.querySelectorAll( 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.removeEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Opens a preview window for the target URL.\n\t */\n\tfunction showPreview( url ) {\n\n\t\tcloseOverlay();\n\n\t\tdom.overlay = document.createElement( 'div' );\n\t\tdom.overlay.classList.add( 'overlay' );\n\t\tdom.overlay.classList.add( 'overlay-preview' );\n\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\tdom.overlay.innerHTML = [\n\t\t\t'<header>',\n\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'<a class=\"external\" href=\"'+ url +'\" target=\"_blank\"><span class=\"icon\"></span></a>',\n\t\t\t'</header>',\n\t\t\t'<div class=\"spinner\"></div>',\n\t\t\t'<div class=\"viewport\">',\n\t\t\t\t'<iframe src=\"'+ url +'\"></iframe>',\n\t\t\t'</div>'\n\t\t].join('');\n\n\t\tdom.overlay.querySelector( 'iframe' ).addEventListener( 'load', function( event ) {\n\t\t\tdom.overlay.classList.add( 'loaded' );\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t\tevent.preventDefault();\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.external' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t}, false );\n\n\t\tsetTimeout( function() {\n\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Opens a overlay window with help material.\n\t */\n\tfunction showHelp() {\n\n\t\tif( config.help ) {\n\n\t\t\tcloseOverlay();\n\n\t\t\tdom.overlay = document.createElement( 'div' );\n\t\t\tdom.overlay.classList.add( 'overlay' );\n\t\t\tdom.overlay.classList.add( 'overlay-help' );\n\t\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\t\tvar html = '<p class=\"title\">Keyboard Shortcuts</p><br/>';\n\n\t\t\thtml += '<table><th>KEY</th><th>ACTION</th>';\n\t\t\tfor( var key in keyboardShortcuts ) {\n\t\t\t\thtml += '<tr><td>' + key + '</td><td>' + keyboardShortcuts[ key ] + '</td></tr>';\n\t\t\t}\n\n\t\t\thtml += '</table>';\n\n\t\t\tdom.overlay.innerHTML = [\n\t\t\t\t'<header>',\n\t\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'</header>',\n\t\t\t\t'<div class=\"viewport\">',\n\t\t\t\t\t'<div class=\"viewport-inner\">'+ html +'</div>',\n\t\t\t\t'</div>'\n\t\t\t].join('');\n\n\t\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\t\tcloseOverlay();\n\t\t\t\tevent.preventDefault();\n\t\t\t}, false );\n\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t\t}, 1 );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Closes any currently open overlay.\n\t */\n\tfunction closeOverlay() {\n\n\t\tif( dom.overlay ) {\n\t\t\tdom.overlay.parentNode.removeChild( dom.overlay );\n\t\t\tdom.overlay = null;\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies JavaScript-controlled layout rules to the\n\t * presentation.\n\t */\n\tfunction layout() {\n\n\t\tif( dom.wrapper && !isPrintingPDF() ) {\n\n\t\t\tvar size = getComputedSlideSize();\n\n\t\t\tvar slidePadding = 20; // TODO Dig this out of DOM\n\n\t\t\t// Layout the contents of the slides\n\t\t\tlayoutSlideContents( config.width, config.height, slidePadding );\n\n\t\t\tdom.slides.style.width = size.width + 'px';\n\t\t\tdom.slides.style.height = size.height + 'px';\n\n\t\t\t// Determine scale of content to fit within available space\n\t\t\tscale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height );\n\n\t\t\t// Respect max/min scale settings\n\t\t\tscale = Math.max( scale, config.minScale );\n\t\t\tscale = Math.min( scale, config.maxScale );\n\n\t\t\t// Don't apply any scaling styles if scale is 1\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\tdom.slides.style.left = '';\n\t\t\t\tdom.slides.style.top = '';\n\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\tdom.slides.style.right = '';\n\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Use zoom to scale up in desktop Chrome so that content\n\t\t\t\t// remains crisp. We don't use zoom to scale down since that\n\t\t\t\t// can lead to shifts in text layout/line breaks.\n\t\t\t\tif( scale > 1 && !isMobileDevice && /chrome/i.test( navigator.userAgent ) && typeof dom.slides.style.zoom !== 'undefined' ) {\n\t\t\t\t\tdom.slides.style.zoom = scale;\n\t\t\t\t\tdom.slides.style.left = '';\n\t\t\t\t\tdom.slides.style.top = '';\n\t\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\t\tdom.slides.style.right = '';\n\t\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t\t}\n\t\t\t\t// Apply scale transform as a fallback\n\t\t\t\telse {\n\t\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\t\tdom.slides.style.left = '50%';\n\t\t\t\t\tdom.slides.style.top = '50%';\n\t\t\t\t\tdom.slides.style.bottom = 'auto';\n\t\t\t\t\tdom.slides.style.right = 'auto';\n\t\t\t\t\ttransformSlides( { layout: 'translate(-50%, -50%) scale('+ scale +')' } );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Select all slides, vertical and horizontal\n\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) );\n\n\t\t\tfor( var i = 0, len = slides.length; i < len; i++ ) {\n\t\t\t\tvar slide = slides[ i ];\n\n\t\t\t\t// Don't bother updating invisible slides\n\t\t\t\tif( slide.style.display === 'none' ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\t// Vertical stacks are not centred since their section\n\t\t\t\t\t// children will be\n\t\t\t\t\tif( slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\t\tslide.style.top = 0;\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tslide.style.top = Math.max( ( ( size.height - getAbsoluteHeight( slide ) ) / 2 ) - slidePadding, 0 ) + 'px';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.style.top = '';\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tupdateProgress();\n\t\t\tupdateParallax();\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies layout logic to the contents of all slides in\n\t * the presentation.\n\t */\n\tfunction layoutSlideContents( width, height, padding ) {\n\n\t\t// Handle sizing of elements with the 'stretch' class\n\t\ttoArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) {\n\n\t\t\t// Determine how much vertical space we can use\n\t\t\tvar remainingHeight = getRemainingHeight( element, height );\n\n\t\t\t// Consider the aspect ratio of media elements\n\t\t\tif( /(img|video)/gi.test( element.nodeName ) ) {\n\t\t\t\tvar nw = element.naturalWidth || element.videoWidth,\n\t\t\t\t\tnh = element.naturalHeight || element.videoHeight;\n\n\t\t\t\tvar es = Math.min( width / nw, remainingHeight / nh );\n\n\t\t\t\telement.style.width = ( nw * es ) + 'px';\n\t\t\t\telement.style.height = ( nh * es ) + 'px';\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.width = width + 'px';\n\t\t\t\telement.style.height = remainingHeight + 'px';\n\t\t\t}\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Calculates the computed pixel size of our slides. These\n\t * values are based on the width and height configuration\n\t * options.\n\t */\n\tfunction getComputedSlideSize( presentationWidth, presentationHeight ) {\n\n\t\tvar size = {\n\t\t\t// Slide size\n\t\t\twidth: config.width,\n\t\t\theight: config.height,\n\n\t\t\t// Presentation size\n\t\t\tpresentationWidth: presentationWidth || dom.wrapper.offsetWidth,\n\t\t\tpresentationHeight: presentationHeight || dom.wrapper.offsetHeight\n\t\t};\n\n\t\t// Reduce available space by margin\n\t\tsize.presentationWidth -= ( size.presentationWidth * config.margin );\n\t\tsize.presentationHeight -= ( size.presentationHeight * config.margin );\n\n\t\t// Slide width may be a percentage of available width\n\t\tif( typeof size.width === 'string' && /%$/.test( size.width ) ) {\n\t\t\tsize.width = parseInt( size.width, 10 ) / 100 * size.presentationWidth;\n\t\t}\n\n\t\t// Slide height may be a percentage of available height\n\t\tif( typeof size.height === 'string' && /%$/.test( size.height ) ) {\n\t\t\tsize.height = parseInt( size.height, 10 ) / 100 * size.presentationHeight;\n\t\t}\n\n\t\treturn size;\n\n\t}\n\n\t/**\n\t * Stores the vertical index of a stack so that the same\n\t * vertical slide can be selected when navigating to and\n\t * from the stack.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t * @param {int} v Index to memorize\n\t */\n\tfunction setPreviousVerticalIndex( stack, v ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {\n\t\t\tstack.setAttribute( 'data-previous-indexv', v || 0 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the vertical index which was stored using\n\t * #setPreviousVerticalIndex() or 0 if no previous index\n\t * exists.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t */\n\tfunction getPreviousVerticalIndex( stack ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {\n\t\t\t// Prefer manually defined start-indexv\n\t\t\tvar attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv';\n\n\t\t\treturn parseInt( stack.getAttribute( attributeName ) || 0, 10 );\n\t\t}\n\n\t\treturn 0;\n\n\t}\n\n\t/**\n\t * Displays the overview of slides (quick nav) by scaling\n\t * down and arranging all slide elements.\n\t */\n\tfunction activateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview && !isOverview() ) {\n\n\t\t\toverview = true;\n\n\t\t\tdom.wrapper.classList.add( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\n\t\t\tif( features.overviewTransitions ) {\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tdom.wrapper.classList.add( 'overview-animated' );\n\t\t\t\t}, 1 );\n\t\t\t}\n\n\t\t\t// Don't auto-slide while in overview mode\n\t\t\tcancelAutoSlide();\n\n\t\t\t// Move the backgrounds element into the slide container to\n\t\t\t// that the same scaling is applied\n\t\t\tdom.slides.appendChild( dom.background );\n\n\t\t\t// Clicking on an overview slide navigates to it\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\tif( !slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\tslide.addEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tupdateSlidesVisibility();\n\t\t\tlayoutOverview();\n\t\t\tupdateOverview();\n\n\t\t\tlayout();\n\n\t\t\t// Notify observers of the overview showing\n\t\t\tdispatchEvent( 'overviewshown', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Uses CSS transforms to position all slides in a grid for\n\t * display inside of the overview mode.\n\t */\n\tfunction layoutOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\t// Layout slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\t\t\ttransformElement( hslide, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\n\t\t\t\t\ttransformElement( vslide, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t\t} );\n\n\t\t\t}\n\t\t} );\n\n\t\t// Layout slide backgrounds\n\t\ttoArray( dom.background.childNodes ).forEach( function( hbackground, h ) {\n\t\t\ttransformElement( hbackground, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\ttoArray( hbackground.querySelectorAll( '.slide-background' ) ).forEach( function( vbackground, v ) {\n\t\t\t\ttransformElement( vbackground, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Moves the overview viewport to the current slides.\n\t * Called each time the current slide changes.\n\t */\n\tfunction updateOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\ttransformSlides( {\n\t\t\toverview: [\n\t\t\t\t'translateX('+ ( -indexh * slideWidth ) +'px)',\n\t\t\t\t'translateY('+ ( -indexv * slideHeight ) +'px)',\n\t\t\t\t'translateZ('+ ( window.innerWidth < 400 ? -1000 : -2500 ) +'px)'\n\t\t\t].join( ' ' )\n\t\t} );\n\n\t}\n\n\t/**\n\t * Exits the slide overview and enters the currently\n\t * active slide.\n\t */\n\tfunction deactivateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview ) {\n\n\t\t\toverview = false;\n\n\t\t\tdom.wrapper.classList.remove( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-animated' );\n\n\t\t\t// Temporarily add a class so that transitions can do different things\n\t\t\t// depending on whether they are exiting/entering overview, or just\n\t\t\t// moving from slide to slide\n\t\t\tdom.wrapper.classList.add( 'overview-deactivating' );\n\n\t\t\tsetTimeout( function () {\n\t\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\t\t\t}, 1 );\n\n\t\t\t// Move the background element back out\n\t\t\tdom.wrapper.appendChild( dom.background );\n\n\t\t\t// Clean up changes made to slides\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\ttransformElement( slide, '' );\n\n\t\t\t\tslide.removeEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t} );\n\n\t\t\t// Clean up changes made to backgrounds\n\t\t\ttoArray( dom.background.querySelectorAll( '.slide-background' ) ).forEach( function( background ) {\n\t\t\t\ttransformElement( background, '' );\n\t\t\t} );\n\n\t\t\ttransformSlides( { overview: '' } );\n\n\t\t\tslide( indexh, indexv );\n\n\t\t\tlayout();\n\n\t\t\tcueAutoSlide();\n\n\t\t\t// Notify observers of the overview hiding\n\t\t\tdispatchEvent( 'overviewhidden', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\t}\n\n\t/**\n\t * Toggles the slide overview mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which overrides the\n\t * toggle logic and forcibly sets the desired state. True means\n\t * overview is open, false means it's closed.\n\t */\n\tfunction toggleOverview( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? activateOverview() : deactivateOverview();\n\t\t}\n\t\telse {\n\t\t\tisOverview() ? deactivateOverview() : activateOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the overview is currently active.\n\t *\n\t * @return {Boolean} true if the overview is active,\n\t * false otherwise\n\t */\n\tfunction isOverview() {\n\n\t\treturn overview;\n\n\t}\n\n\t/**\n\t * Checks if the current or specified slide is vertical\n\t * (nested within another slide).\n\t *\n\t * @param {HTMLElement} slide [optional] The slide to check\n\t * orientation of\n\t */\n\tfunction isVerticalSlide( slide ) {\n\n\t\t// Prefer slide argument, otherwise use current slide\n\t\tslide = slide ? slide : currentSlide;\n\n\t\treturn slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i );\n\n\t}\n\n\t/**\n\t * Handling the fullscreen functionality via the fullscreen API\n\t *\n\t * @see http://fullscreen.spec.whatwg.org/\n\t * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode\n\t */\n\tfunction enterFullscreen() {\n\n\t\tvar element = document.body;\n\n\t\t// Check which implementation is available\n\t\tvar requestMethod = element.requestFullScreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullscreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullScreen ||\n\t\t\t\t\t\t\telement.mozRequestFullScreen ||\n\t\t\t\t\t\t\telement.msRequestFullscreen;\n\n\t\tif( requestMethod ) {\n\t\t\trequestMethod.apply( element );\n\t\t}\n\n\t}\n\n\t/**\n\t * Enters the paused mode which fades everything on screen to\n\t * black.\n\t */\n\tfunction pause() {\n\n\t\tif( config.pause ) {\n\t\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\n\t\t\tcancelAutoSlide();\n\t\t\tdom.wrapper.classList.add( 'paused' );\n\n\t\t\tif( wasPaused === false ) {\n\t\t\t\tdispatchEvent( 'paused' );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Exits from the paused mode.\n\t */\n\tfunction resume() {\n\n\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\t\tdom.wrapper.classList.remove( 'paused' );\n\n\t\tcueAutoSlide();\n\n\t\tif( wasPaused ) {\n\t\t\tdispatchEvent( 'resumed' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Toggles the paused mode on and off.\n\t */\n\tfunction togglePause( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? pause() : resume();\n\t\t}\n\t\telse {\n\t\t\tisPaused() ? resume() : pause();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if we are currently in the paused mode.\n\t */\n\tfunction isPaused() {\n\n\t\treturn dom.wrapper.classList.contains( 'paused' );\n\n\t}\n\n\t/**\n\t * Toggles the auto slide mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which sets the desired state.\n\t * True means autoplay starts, false means it stops.\n\t */\n\n\tfunction toggleAutoSlide( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t\telse {\n\t\t\tautoSlidePaused ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the auto slide mode is currently on.\n\t */\n\tfunction isAutoSliding() {\n\n\t\treturn !!( autoSlide && !autoSlidePaused );\n\n\t}\n\n\t/**\n\t * Steps from the current point in the presentation to the\n\t * slide which matches the specified horizontal and vertical\n\t * indices.\n\t *\n\t * @param {int} h Horizontal index of the target slide\n\t * @param {int} v Vertical index of the target slide\n\t * @param {int} f Optional index of a fragment within the\n\t * target slide to activate\n\t * @param {int} o Optional origin for use in multimaster environments\n\t */\n\tfunction slide( h, v, f, o ) {\n\n\t\t// Remember where we were at before\n\t\tpreviousSlide = currentSlide;\n\n\t\t// Query all horizontal slides in the deck\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );\n\n\t\t// If no vertical index is specified and the upcoming slide is a\n\t\t// stack, resume at its previous vertical index\n\t\tif( v === undefined && !isOverview() ) {\n\t\t\tv = getPreviousVerticalIndex( horizontalSlides[ h ] );\n\t\t}\n\n\t\t// If we were on a vertical stack, remember what vertical index\n\t\t// it was on so we can resume at the same position when returning\n\t\tif( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {\n\t\t\tsetPreviousVerticalIndex( previousSlide.parentNode, indexv );\n\t\t}\n\n\t\t// Remember the state before this slide\n\t\tvar stateBefore = state.concat();\n\n\t\t// Reset the state array\n\t\tstate.length = 0;\n\n\t\tvar indexhBefore = indexh || 0,\n\t\t\tindexvBefore = indexv || 0;\n\n\t\t// Activate and transition to the new slide\n\t\tindexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );\n\t\tindexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );\n\n\t\t// Update the visibility of slides now that the indices have changed\n\t\tupdateSlidesVisibility();\n\n\t\tlayout();\n\n\t\t// Apply the new state\n\t\tstateLoop: for( var i = 0, len = state.length; i < len; i++ ) {\n\t\t\t// Check if this state existed on the previous slide. If it\n\t\t\t// did, we will avoid adding it repeatedly\n\t\t\tfor( var j = 0; j < stateBefore.length; j++ ) {\n\t\t\t\tif( stateBefore[j] === state[i] ) {\n\t\t\t\t\tstateBefore.splice( j, 1 );\n\t\t\t\t\tcontinue stateLoop;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdocument.documentElement.classList.add( state[i] );\n\n\t\t\t// Dispatch custom event matching the state's name\n\t\t\tdispatchEvent( state[i] );\n\t\t}\n\n\t\t// Clean up the remains of the previous state\n\t\twhile( stateBefore.length ) {\n\t\t\tdocument.documentElement.classList.remove( stateBefore.pop() );\n\t\t}\n\n\t\t// Update the overview if it's currently active\n\t\tif( isOverview() ) {\n\t\t\tupdateOverview();\n\t\t}\n\n\t\t// Find the current horizontal slide and any possible vertical slides\n\t\t// within it\n\t\tvar currentHorizontalSlide = horizontalSlides[ indexh ],\n\t\t\tcurrentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );\n\n\t\t// Store references to the previous and current slides\n\t\tcurrentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;\n\n\t\t// Show fragment, if specified\n\t\tif( typeof f !== 'undefined' ) {\n\t\t\tnavigateFragment( f );\n\t\t}\n\n\t\t// Dispatch an event if the slide changed\n\t\tvar slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore );\n\t\tif( slideChanged ) {\n\t\t\tdispatchEvent( 'slidechanged', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'previousSlide': previousSlide,\n\t\t\t\t'currentSlide': currentSlide,\n\t\t\t\t'origin': o\n\t\t\t} );\n\t\t}\n\t\telse {\n\t\t\t// Ensure that the previous slide is never the same as the current\n\t\t\tpreviousSlide = null;\n\t\t}\n\n\t\t// Solves an edge case where the previous slide maintains the\n\t\t// 'present' class when navigating between adjacent vertical\n\t\t// stacks\n\t\tif( previousSlide ) {\n\t\t\tpreviousSlide.classList.remove( 'present' );\n\t\t\tpreviousSlide.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t// Reset all slides upon navigate to home\n\t\t\t// Issue: #285\n\t\t\tif ( dom.wrapper.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) {\n\t\t\t\t// Launch async task\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i;\n\t\t\t\t\tfor( i in slides ) {\n\t\t\t\t\t\tif( slides[i] ) {\n\t\t\t\t\t\t\t// Reset stack\n\t\t\t\t\t\t\tsetPreviousVerticalIndex( slides[i], 0 );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}, 0 );\n\t\t\t}\n\t\t}\n\n\t\t// Handle embedded content\n\t\tif( slideChanged || !previousSlide ) {\n\t\t\tstopEmbeddedContent( previousSlide );\n\t\t\tstartEmbeddedContent( currentSlide );\n\t\t}\n\n\t\t// Announce the current slide contents, for screen readers\n\t\tdom.statusDiv.textContent = currentSlide.textContent;\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground();\n\t\tupdateParallax();\n\t\tupdateSlideNumber();\n\t\tupdateNotes();\n\n\t\t// Update the URL hash\n\t\twriteURL();\n\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Syncs the presentation with the current DOM. Useful\n\t * when new slides or control elements are added or when\n\t * the configuration has changed.\n\t */\n\tfunction sync() {\n\n\t\t// Subscribe to input\n\t\tremoveEventListeners();\n\t\taddEventListeners();\n\n\t\t// Force a layout to make sure the current config is accounted for\n\t\tlayout();\n\n\t\t// Reflect the current autoSlide value\n\t\tautoSlide = config.autoSlide;\n\n\t\t// Start auto-sliding if it's enabled\n\t\tcueAutoSlide();\n\n\t\t// Re-create the slide backgrounds\n\t\tcreateBackgrounds();\n\n\t\t// Write the current hash to the URL\n\t\twriteURL();\n\n\t\tsortAllFragments();\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground( true );\n\t\tupdateSlideNumber();\n\t\tupdateSlidesVisibility();\n\t\tupdateNotes();\n\n\t\tformatEmbeddedContent();\n\t\tstartEmbeddedContent( currentSlide );\n\n\t\tif( isOverview() ) {\n\t\t\tlayoutOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Resets all vertical slides so that only the first\n\t * is visible.\n\t */\n\tfunction resetVerticalSlides() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tif( y > 0 ) {\n\t\t\t\t\tverticalSlide.classList.remove( 'present' );\n\t\t\t\t\tverticalSlide.classList.remove( 'past' );\n\t\t\t\t\tverticalSlide.classList.add( 'future' );\n\t\t\t\t\tverticalSlide.setAttribute( 'aria-hidden', 'true' );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Sorts and formats all of fragments in the\n\t * presentation.\n\t */\n\tfunction sortAllFragments() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tsortFragments( verticalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t\t} );\n\n\t\t\tif( verticalSlides.length === 0 ) sortFragments( horizontalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Updates one dimension of slides by showing the slide\n\t * with the specified index.\n\t *\n\t * @param {String} selector A CSS selector that will fetch\n\t * the group of slides we are working with\n\t * @param {Number} index The index of the slide that should be\n\t * shown\n\t *\n\t * @return {Number} The index of the slide that is now shown,\n\t * might differ from the passed in index if it was out of\n\t * bounds.\n\t */\n\tfunction updateSlides( selector, index ) {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar slides = toArray( dom.wrapper.querySelectorAll( selector ) ),\n\t\t\tslidesLength = slides.length;\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\tif( slidesLength ) {\n\n\t\t\t// Should the index loop?\n\t\t\tif( config.loop ) {\n\t\t\t\tindex %= slidesLength;\n\n\t\t\t\tif( index < 0 ) {\n\t\t\t\t\tindex = slidesLength + index;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Enforce max and minimum index bounds\n\t\t\tindex = Math.max( Math.min( index, slidesLength - 1 ), 0 );\n\n\t\t\tfor( var i = 0; i < slidesLength; i++ ) {\n\t\t\t\tvar element = slides[i];\n\n\t\t\t\tvar reverse = config.rtl && !isVerticalSlide( element );\n\n\t\t\t\telement.classList.remove( 'past' );\n\t\t\t\telement.classList.remove( 'present' );\n\t\t\t\telement.classList.remove( 'future' );\n\n\t\t\t\t// http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute\n\t\t\t\telement.setAttribute( 'hidden', '' );\n\t\t\t\telement.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t\t// If this element contains vertical slides\n\t\t\t\tif( element.querySelector( 'section' ) ) {\n\t\t\t\t\telement.classList.add( 'stack' );\n\t\t\t\t}\n\n\t\t\t\t// If we're printing static slides, all slides are \"present\"\n\t\t\t\tif( printMode ) {\n\t\t\t\t\telement.classList.add( 'present' );\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( i < index ) {\n\t\t\t\t\t// Any element previous to index is given the 'past' class\n\t\t\t\t\telement.classList.add( reverse ? 'future' : 'past' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar pastFragments = toArray( element.querySelectorAll( '.fragment' ) );\n\n\t\t\t\t\t\t// Show all fragments on prior slides\n\t\t\t\t\t\twhile( pastFragments.length ) {\n\t\t\t\t\t\t\tvar pastFragment = pastFragments.pop();\n\t\t\t\t\t\t\tpastFragment.classList.add( 'visible' );\n\t\t\t\t\t\t\tpastFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( i > index ) {\n\t\t\t\t\t// Any element subsequent to index is given the 'future' class\n\t\t\t\t\telement.classList.add( reverse ? 'past' : 'future' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar futureFragments = toArray( element.querySelectorAll( '.fragment.visible' ) );\n\n\t\t\t\t\t\t// No fragments in future slides should be visible ahead of time\n\t\t\t\t\t\twhile( futureFragments.length ) {\n\t\t\t\t\t\t\tvar futureFragment = futureFragments.pop();\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'visible' );\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Mark the current slide as present\n\t\t\tslides[index].classList.add( 'present' );\n\t\t\tslides[index].removeAttribute( 'hidden' );\n\t\t\tslides[index].removeAttribute( 'aria-hidden' );\n\n\t\t\t// If this slide has a state associated with it, add it\n\t\t\t// onto the current state of the deck\n\t\t\tvar slideState = slides[index].getAttribute( 'data-state' );\n\t\t\tif( slideState ) {\n\t\t\t\tstate = state.concat( slideState.split( ' ' ) );\n\t\t\t}\n\n\t\t}\n\t\telse {\n\t\t\t// Since there are no slides we can't be anywhere beyond the\n\t\t\t// zeroth index\n\t\t\tindex = 0;\n\t\t}\n\n\t\treturn index;\n\n\t}\n\n\t/**\n\t * Optimization method; hide all slides that are far away\n\t * from the present slide.\n\t */\n\tfunction updateSlidesVisibility() {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ),\n\t\t\thorizontalSlidesLength = horizontalSlides.length,\n\t\t\tdistanceX,\n\t\t\tdistanceY;\n\n\t\tif( horizontalSlidesLength && typeof indexh !== 'undefined' ) {\n\n\t\t\t// The number of steps away from the present slide that will\n\t\t\t// be visible\n\t\t\tvar viewDistance = isOverview() ? 10 : config.viewDistance;\n\n\t\t\t// Limit view distance on weaker devices\n\t\t\tif( isMobileDevice ) {\n\t\t\t\tviewDistance = isOverview() ? 6 : 2;\n\t\t\t}\n\n\t\t\t// All slides need to be visible when exporting to PDF\n\t\t\tif( isPrintingPDF() ) {\n\t\t\t\tviewDistance = Number.MAX_VALUE;\n\t\t\t}\n\n\t\t\tfor( var x = 0; x < horizontalSlidesLength; x++ ) {\n\t\t\t\tvar horizontalSlide = horizontalSlides[x];\n\n\t\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ),\n\t\t\t\t\tverticalSlidesLength = verticalSlides.length;\n\n\t\t\t\t// Determine how far away this slide is from the present\n\t\t\t\tdistanceX = Math.abs( ( indexh || 0 ) - x ) || 0;\n\n\t\t\t\t// If the presentation is looped, distance should measure\n\t\t\t\t// 1 between the first and last slides\n\t\t\t\tif( config.loop ) {\n\t\t\t\t\tdistanceX = Math.abs( ( ( indexh || 0 ) - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0;\n\t\t\t\t}\n\n\t\t\t\t// Show the horizontal slide if it's within the view distance\n\t\t\t\tif( distanceX < viewDistance ) {\n\t\t\t\t\tshowSlide( horizontalSlide );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\thideSlide( horizontalSlide );\n\t\t\t\t}\n\n\t\t\t\tif( verticalSlidesLength ) {\n\n\t\t\t\t\tvar oy = getPreviousVerticalIndex( horizontalSlide );\n\n\t\t\t\t\tfor( var y = 0; y < verticalSlidesLength; y++ ) {\n\t\t\t\t\t\tvar verticalSlide = verticalSlides[y];\n\n\t\t\t\t\t\tdistanceY = x === ( indexh || 0 ) ? Math.abs( ( indexv || 0 ) - y ) : Math.abs( y - oy );\n\n\t\t\t\t\t\tif( distanceX + distanceY < viewDistance ) {\n\t\t\t\t\t\t\tshowSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\thideSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Pick up notes from the current slide and display tham\n\t * to the viewer.\n\t *\n\t * @see `showNotes` config value\n\t */\n\tfunction updateNotes() {\n\n\t\tif( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) {\n\n\t\t\tdom.speakerNotes.innerHTML = getSlideNotes() || '';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the progress bar to reflect the current slide.\n\t */\n\tfunction updateProgress() {\n\n\t\t// Update progress if enabled\n\t\tif( config.progress && dom.progressbar ) {\n\n\t\t\tdom.progressbar.style.width = getProgress() * dom.wrapper.offsetWidth + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the slide number div to reflect the current slide.\n\t *\n\t * The following slide number formats are available:\n\t *  \"h.v\": \thorizontal . vertical slide number (default)\n\t *  \"h/v\": \thorizontal / vertical slide number\n\t *    \"c\": \tflattened slide number\n\t *  \"c/t\": \tflattened slide number / total slides\n\t */\n\tfunction updateSlideNumber() {\n\n\t\t// Update slide number if enabled\n\t\tif( config.slideNumber && dom.slideNumber ) {\n\n\t\t\tvar value = [];\n\t\t\tvar format = 'h.v';\n\n\t\t\t// Check if a custom number format is available\n\t\t\tif( typeof config.slideNumber === 'string' ) {\n\t\t\t\tformat = config.slideNumber;\n\t\t\t}\n\n\t\t\tswitch( format ) {\n\t\t\t\tcase 'c':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'c/t':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1, '/', getTotalSlides() );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'h/v':\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '/', indexv + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '.', indexv + 1 );\n\t\t\t}\n\n\t\t\tdom.slideNumber.innerHTML = formatSlideNumber( value[0], value[1], value[2] );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies HTML formatting to a slide number before it's\n\t * written to the DOM.\n\t */\n\tfunction formatSlideNumber( a, delimiter, b ) {\n\n\t\tif( typeof b === 'number' && !isNaN( b ) ) {\n\t\t\treturn  '<span class=\"slide-number-a\">'+ a +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-delimiter\">'+ delimiter +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-b\">'+ b +'</span>';\n\t\t}\n\t\telse {\n\t\t\treturn '<span class=\"slide-number-a\">'+ a +'</span>';\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the state of all control/navigation arrows.\n\t */\n\tfunction updateControls() {\n\n\t\tvar routes = availableRoutes();\n\t\tvar fragments = availableFragments();\n\n\t\t// Remove the 'enabled' class from all directions\n\t\tdom.controlsLeft.concat( dom.controlsRight )\n\t\t\t\t\t\t.concat( dom.controlsUp )\n\t\t\t\t\t\t.concat( dom.controlsDown )\n\t\t\t\t\t\t.concat( dom.controlsPrev )\n\t\t\t\t\t\t.concat( dom.controlsNext ).forEach( function( node ) {\n\t\t\tnode.classList.remove( 'enabled' );\n\t\t\tnode.classList.remove( 'fragmented' );\n\t\t} );\n\n\t\t// Add the 'enabled' class to the available routes\n\t\tif( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Prev/next buttons\n\t\tif( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Highlight fragment directions\n\t\tif( currentSlide ) {\n\n\t\t\t// Always apply fragment decorator to prev/next buttons\n\t\t\tif( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\tif( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\n\t\t\t// Apply fragment decorators to directional buttons based on\n\t\t\t// what slide axis they are in\n\t\t\tif( isVerticalSlide( currentSlide ) ) {\n\t\t\t\tif( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the background elements to reflect the current\n\t * slide.\n\t *\n\t * @param {Boolean} includeAll If true, the backgrounds of\n\t * all vertical slides (not just the present) will be updated.\n\t */\n\tfunction updateBackground( includeAll ) {\n\n\t\tvar currentBackground = null;\n\n\t\t// Reverse past/future classes when in RTL mode\n\t\tvar horizontalPast = config.rtl ? 'future' : 'past',\n\t\t\thorizontalFuture = config.rtl ? 'past' : 'future';\n\n\t\t// Update the classes of all backgrounds to match the\n\t\t// states of their slides (past/present/future)\n\t\ttoArray( dom.background.childNodes ).forEach( function( backgroundh, h ) {\n\n\t\t\tbackgroundh.classList.remove( 'past' );\n\t\t\tbackgroundh.classList.remove( 'present' );\n\t\t\tbackgroundh.classList.remove( 'future' );\n\n\t\t\tif( h < indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalPast );\n\t\t\t}\n\t\t\telse if ( h > indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalFuture );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundh.classList.add( 'present' );\n\n\t\t\t\t// Store a reference to the current background element\n\t\t\t\tcurrentBackground = backgroundh;\n\t\t\t}\n\n\t\t\tif( includeAll || h === indexh ) {\n\t\t\t\ttoArray( backgroundh.querySelectorAll( '.slide-background' ) ).forEach( function( backgroundv, v ) {\n\n\t\t\t\t\tbackgroundv.classList.remove( 'past' );\n\t\t\t\t\tbackgroundv.classList.remove( 'present' );\n\t\t\t\t\tbackgroundv.classList.remove( 'future' );\n\n\t\t\t\t\tif( v < indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'past' );\n\t\t\t\t\t}\n\t\t\t\t\telse if ( v > indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'future' );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tbackgroundv.classList.add( 'present' );\n\n\t\t\t\t\t\t// Only if this is the present horizontal and vertical slide\n\t\t\t\t\t\tif( h === indexh ) currentBackground = backgroundv;\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\t\t\t}\n\n\t\t} );\n\n\t\t// Stop any currently playing video background\n\t\tif( previousBackground ) {\n\n\t\t\tvar previousVideo = previousBackground.querySelector( 'video' );\n\t\t\tif( previousVideo ) previousVideo.pause();\n\n\t\t}\n\n\t\tif( currentBackground ) {\n\n\t\t\t// Start video playback\n\t\t\tvar currentVideo = currentBackground.querySelector( 'video' );\n\t\t\tif( currentVideo ) {\n\t\t\t\tif( currentVideo.currentTime > 0 ) currentVideo.currentTime = 0;\n\t\t\t\tcurrentVideo.play();\n\t\t\t}\n\n\t\t\tvar backgroundImageURL = currentBackground.style.backgroundImage || '';\n\n\t\t\t// Restart GIFs (doesn't work in Firefox)\n\t\t\tif( /\\.gif/i.test( backgroundImageURL ) ) {\n\t\t\t\tcurrentBackground.style.backgroundImage = '';\n\t\t\t\twindow.getComputedStyle( currentBackground ).opacity;\n\t\t\t\tcurrentBackground.style.backgroundImage = backgroundImageURL;\n\t\t\t}\n\n\t\t\t// Don't transition between identical backgrounds. This\n\t\t\t// prevents unwanted flicker.\n\t\t\tvar previousBackgroundHash = previousBackground ? previousBackground.getAttribute( 'data-background-hash' ) : null;\n\t\t\tvar currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' );\n\t\t\tif( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== previousBackground ) {\n\t\t\t\tdom.background.classList.add( 'no-transition' );\n\t\t\t}\n\n\t\t\tpreviousBackground = currentBackground;\n\n\t\t}\n\n\t\t// If there's a background brightness flag for this slide,\n\t\t// bubble it to the .reveal container\n\t\tif( currentSlide ) {\n\t\t\t[ 'has-light-background', 'has-dark-background' ].forEach( function( classToBubble ) {\n\t\t\t\tif( currentSlide.classList.contains( classToBubble ) ) {\n\t\t\t\t\tdom.wrapper.classList.add( classToBubble );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tdom.wrapper.classList.remove( classToBubble );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Allow the first background to apply without transition\n\t\tsetTimeout( function() {\n\t\t\tdom.background.classList.remove( 'no-transition' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Updates the position of the parallax background based\n\t * on the current slide index.\n\t */\n\tfunction updateParallax() {\n\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\t\tvar backgroundSize = dom.background.style.backgroundSize.split( ' ' ),\n\t\t\t\tbackgroundWidth, backgroundHeight;\n\n\t\t\tif( backgroundSize.length === 1 ) {\n\t\t\t\tbackgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundWidth = parseInt( backgroundSize[0], 10 );\n\t\t\t\tbackgroundHeight = parseInt( backgroundSize[1], 10 );\n\t\t\t}\n\n\t\t\tvar slideWidth = dom.background.offsetWidth,\n\t\t\t\thorizontalSlideCount = horizontalSlides.length,\n\t\t\t\thorizontalOffsetMultiplier,\n\t\t\t\thorizontalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundHorizontal === 'number' ) {\n\t\t\t\thorizontalOffsetMultiplier = config.parallaxBackgroundHorizontal;\n\t\t\t}\n\t\t\telse {\n\t\t\t\thorizontalOffsetMultiplier = ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 );\n\t\t\t}\n\n\t\t\thorizontalOffset = horizontalOffsetMultiplier * indexh * -1;\n\n\t\t\tvar slideHeight = dom.background.offsetHeight,\n\t\t\t\tverticalSlideCount = verticalSlides.length,\n\t\t\t\tverticalOffsetMultiplier,\n\t\t\t\tverticalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundVertical === 'number' ) {\n\t\t\t\tverticalOffsetMultiplier = config.parallaxBackgroundVertical;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tverticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 );\n\t\t\t}\n\n\t\t\tverticalOffset = verticalSlideCount > 0 ?  verticalOffsetMultiplier * indexv * 1 : 0;\n\n\t\t\tdom.background.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is within the configured view\n\t * distance. Shows the slide element and loads any content\n\t * that is set to load lazily (data-src).\n\t */\n\tfunction showSlide( slide ) {\n\n\t\t// Show the slide element\n\t\tslide.style.display = 'block';\n\n\t\t// Media elements with data-src attributes\n\t\ttoArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src]' ) ).forEach( function( element ) {\n\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\telement.removeAttribute( 'data-src' );\n\t\t} );\n\n\t\t// Media elements with <source> children\n\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( media ) {\n\t\t\tvar sources = 0;\n\n\t\t\ttoArray( media.querySelectorAll( 'source[data-src]' ) ).forEach( function( source ) {\n\t\t\t\tsource.setAttribute( 'src', source.getAttribute( 'data-src' ) );\n\t\t\t\tsource.removeAttribute( 'data-src' );\n\t\t\t\tsources += 1;\n\t\t\t} );\n\n\t\t\t// If we rewrote sources for this video/audio element, we need\n\t\t\t// to manually tell it to load from its new origin\n\t\t\tif( sources > 0 ) {\n\t\t\t\tmedia.load();\n\t\t\t}\n\t\t} );\n\n\n\t\t// Show the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'block';\n\n\t\t\t// If the background contains media, load it\n\t\t\tif( background.hasAttribute( 'data-loaded' ) === false ) {\n\t\t\t\tbackground.setAttribute( 'data-loaded', 'true' );\n\n\t\t\t\tvar backgroundImage = slide.getAttribute( 'data-background-image' ),\n\t\t\t\t\tbackgroundVideo = slide.getAttribute( 'data-background-video' ),\n\t\t\t\t\tbackgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ),\n\t\t\t\t\tbackgroundIframe = slide.getAttribute( 'data-background-iframe' );\n\n\t\t\t\t// Images\n\t\t\t\tif( backgroundImage ) {\n\t\t\t\t\tbackground.style.backgroundImage = 'url('+ backgroundImage +')';\n\t\t\t\t}\n\t\t\t\t// Videos\n\t\t\t\telse if ( backgroundVideo && !isSpeakerNotes() ) {\n\t\t\t\t\tvar video = document.createElement( 'video' );\n\n\t\t\t\t\tif( backgroundVideoLoop ) {\n\t\t\t\t\t\tvideo.setAttribute( 'loop', '' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support comma separated lists of video sources\n\t\t\t\t\tbackgroundVideo.split( ',' ).forEach( function( source ) {\n\t\t\t\t\t\tvideo.innerHTML += '<source src=\"'+ source +'\">';\n\t\t\t\t\t} );\n\n\t\t\t\t\tbackground.appendChild( video );\n\t\t\t\t}\n\t\t\t\t// Iframes\n\t\t\t\telse if( backgroundIframe ) {\n\t\t\t\t\tvar iframe = document.createElement( 'iframe' );\n\t\t\t\t\t\tiframe.setAttribute( 'src', backgroundIframe );\n\t\t\t\t\t\tiframe.style.width  = '100%';\n\t\t\t\t\t\tiframe.style.height = '100%';\n\t\t\t\t\t\tiframe.style.maxHeight = '100%';\n\t\t\t\t\t\tiframe.style.maxWidth = '100%';\n\n\t\t\t\t\tbackground.appendChild( iframe );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is moved outside of the\n\t * configured view distance.\n\t */\n\tfunction hideSlide( slide ) {\n\n\t\t// Hide the slide element\n\t\tslide.style.display = 'none';\n\n\t\t// Hide the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'none';\n\t\t}\n\n\t}\n\n\t/**\n\t * Determine what available routes there are for navigation.\n\t *\n\t * @return {Object} containing four booleans: left/right/up/down\n\t */\n\tfunction availableRoutes() {\n\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\tvar routes = {\n\t\t\tleft: indexh > 0 || config.loop,\n\t\t\tright: indexh < horizontalSlides.length - 1 || config.loop,\n\t\t\tup: indexv > 0,\n\t\t\tdown: indexv < verticalSlides.length - 1\n\t\t};\n\n\t\t// reverse horizontal controls for rtl\n\t\tif( config.rtl ) {\n\t\t\tvar left = routes.left;\n\t\t\troutes.left = routes.right;\n\t\t\troutes.right = left;\n\t\t}\n\n\t\treturn routes;\n\n\t}\n\n\t/**\n\t * Returns an object describing the available fragment\n\t * directions.\n\t *\n\t * @return {Object} two boolean properties: prev/next\n\t */\n\tfunction availableFragments() {\n\n\t\tif( currentSlide && config.fragments ) {\n\t\t\tvar fragments = currentSlide.querySelectorAll( '.fragment' );\n\t\t\tvar hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' );\n\n\t\t\treturn {\n\t\t\t\tprev: fragments.length - hiddenFragments.length > 0,\n\t\t\t\tnext: !!hiddenFragments.length\n\t\t\t};\n\t\t}\n\t\telse {\n\t\t\treturn { prev: false, next: false };\n\t\t}\n\n\t}\n\n\t/**\n\t * Enforces origin-specific format rules for embedded media.\n\t */\n\tfunction formatEmbeddedContent() {\n\n\t\tvar _appendParamToIframeSource = function( sourceAttribute, sourceURL, param ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( 'iframe['+ sourceAttribute +'*=\"'+ sourceURL +'\"]' ) ).forEach( function( el ) {\n\t\t\t\tvar src = el.getAttribute( sourceAttribute );\n\t\t\t\tif( src && src.indexOf( param ) === -1 ) {\n\t\t\t\t\tel.setAttribute( sourceAttribute, src + ( !/\\?/.test( src ) ? '?' : '&' ) + param );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\t// YouTube frames must include \"?enablejsapi=1\"\n\t\t_appendParamToIframeSource( 'src', 'youtube.com/embed/', 'enablejsapi=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'youtube.com/embed/', 'enablejsapi=1' );\n\n\t\t// Vimeo frames must include \"?api=1\"\n\t\t_appendParamToIframeSource( 'src', 'player.vimeo.com/', 'api=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'player.vimeo.com/', 'api=1' );\n\n\t}\n\n\t/**\n\t * Start playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction startEmbeddedContent( slide ) {\n\n\t\tif( slide && !isSpeakerNotes() ) {\n\t\t\t// Restart GIFs\n\t\t\ttoArray( slide.querySelectorAll( 'img[src$=\".gif\"]' ) ).forEach( function( el ) {\n\t\t\t\t// Setting the same unchanged source like this was confirmed\n\t\t\t\t// to work in Chrome, FF & Safari\n\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'src' ) );\n\t\t\t} );\n\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) && typeof el.play === 'function' ) {\n\t\t\t\t\tel.play();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Normal iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src]' ) ).forEach( function( el ) {\n\t\t\t\tstartEmbeddedIframe( { target: el } );\n\t\t\t} );\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\tif( el.getAttribute( 'src' ) !== el.getAttribute( 'data-src' ) ) {\n\t\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe ); // remove first to avoid dupes\n\t\t\t\t\tel.addEventListener( 'load', startEmbeddedIframe );\n\t\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'data-src' ) );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * \"Starts\" the content of an embedded iframe using the\n\t * postmessage API.\n\t */\n\tfunction startEmbeddedIframe( event ) {\n\n\t\tvar iframe = event.target;\n\n\t\t// YouTube postMessage API\n\t\tif( /youtube\\.com\\/embed\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"playVideo\",\"args\":\"\"}', '*' );\n\t\t}\n\t\t// Vimeo postMessage API\n\t\telse if( /player\\.vimeo\\.com\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"method\":\"play\"}', '*' );\n\t\t}\n\t\t// Generic postMessage API\n\t\telse {\n\t\t\tiframe.contentWindow.postMessage( 'slide:start', '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Stop playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction stopEmbeddedContent( slide ) {\n\n\t\tif( slide && slide.parentNode ) {\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) {\n\t\t\t\t\tel.pause();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Generic postMessage API for non-lazy loaded iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe' ) ).forEach( function( el ) {\n\t\t\t\tel.contentWindow.postMessage( 'slide:stop', '*' );\n\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe );\n\t\t\t});\n\n\t\t\t// YouTube postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"youtube.com/embed/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"pauseVideo\",\"args\":\"\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Vimeo postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"player.vimeo.com/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"method\":\"pause\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\t// Only removing the src doesn't actually unload the frame\n\t\t\t\t// in all browsers (Firefox) so we set it to blank first\n\t\t\t\tel.setAttribute( 'src', 'about:blank' );\n\t\t\t\tel.removeAttribute( 'src' );\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Returns the number of past slides. This can be used as a global\n\t * flattened index for slides.\n\t */\n\tfunction getSlidePastCount() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t// The number of past slides\n\t\tvar pastCount = 0;\n\n\t\t// Step through all slides and count the past ones\n\t\tmainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) {\n\n\t\t\tvar horizontalSlide = horizontalSlides[i];\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\n\t\t\tfor( var j = 0; j < verticalSlides.length; j++ ) {\n\n\t\t\t\t// Stop as soon as we arrive at the present\n\t\t\t\tif( verticalSlides[j].classList.contains( 'present' ) ) {\n\t\t\t\t\tbreak mainLoop;\n\t\t\t\t}\n\n\t\t\t\tpastCount++;\n\n\t\t\t}\n\n\t\t\t// Stop as soon as we arrive at the present\n\t\t\tif( horizontalSlide.classList.contains( 'present' ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// Don't count the wrapping section for vertical slides\n\t\t\tif( horizontalSlide.classList.contains( 'stack' ) === false ) {\n\t\t\t\tpastCount++;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount;\n\n\t}\n\n\t/**\n\t * Returns a value ranging from 0-1 that represents\n\t * how far into the presentation we have navigated.\n\t */\n\tfunction getProgress() {\n\n\t\t// The number of past and total slides\n\t\tvar totalCount = getTotalSlides();\n\t\tvar pastCount = getSlidePastCount();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar allFragments = currentSlide.querySelectorAll( '.fragment' );\n\n\t\t\t// If there are fragments in the current slide those should be\n\t\t\t// accounted for in the progress.\n\t\t\tif( allFragments.length > 0 ) {\n\t\t\t\tvar visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );\n\n\t\t\t\t// This value represents how big a portion of the slide progress\n\t\t\t\t// that is made up by its fragments (0-1)\n\t\t\t\tvar fragmentWeight = 0.9;\n\n\t\t\t\t// Add fragment progress to the past slide count\n\t\t\t\tpastCount += ( visibleFragments.length / allFragments.length ) * fragmentWeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount / ( totalCount - 1 );\n\n\t}\n\n\t/**\n\t * Checks if this presentation is running inside of the\n\t * speaker notes window.\n\t */\n\tfunction isSpeakerNotes() {\n\n\t\treturn !!window.location.search.match( /receiver/gi );\n\n\t}\n\n\t/**\n\t * Reads the current URL (hash) and navigates accordingly.\n\t */\n\tfunction readURL() {\n\n\t\tvar hash = window.location.hash;\n\n\t\t// Attempt to parse the hash as either an index or name\n\t\tvar bits = hash.slice( 2 ).split( '/' ),\n\t\t\tname = hash.replace( /#|\\//gi, '' );\n\n\t\t// If the first bit is invalid and there is a name we can\n\t\t// assume that this is a named link\n\t\tif( isNaN( parseInt( bits[0], 10 ) ) && name.length ) {\n\t\t\tvar element;\n\n\t\t\t// Ensure the named link is a valid HTML ID attribute\n\t\t\tif( /^[a-zA-Z][\\w:.-]*$/.test( name ) ) {\n\t\t\t\t// Find the slide with the specified ID\n\t\t\t\telement = document.getElementById( name );\n\t\t\t}\n\n\t\t\tif( element ) {\n\t\t\t\t// Find the position of the named slide and navigate to it\n\t\t\t\tvar indices = Reveal.getIndices( element );\n\t\t\t\tslide( indices.h, indices.v );\n\t\t\t}\n\t\t\t// If the slide doesn't exist, navigate to the current slide\n\t\t\telse {\n\t\t\t\tslide( indexh || 0, indexv || 0 );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Read the index components of the hash\n\t\t\tvar h = parseInt( bits[0], 10 ) || 0,\n\t\t\t\tv = parseInt( bits[1], 10 ) || 0;\n\n\t\t\tif( h !== indexh || v !== indexv ) {\n\t\t\t\tslide( h, v );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the page URL (hash) to reflect the current\n\t * state.\n\t *\n\t * @param {Number} delay The time in ms to wait before\n\t * writing the hash\n\t */\n\tfunction writeURL( delay ) {\n\n\t\tif( config.history ) {\n\n\t\t\t// Make sure there's never more than one timeout running\n\t\t\tclearTimeout( writeURLTimeout );\n\n\t\t\t// If a delay is specified, timeout this call\n\t\t\tif( typeof delay === 'number' ) {\n\t\t\t\twriteURLTimeout = setTimeout( writeURL, delay );\n\t\t\t}\n\t\t\telse if( currentSlide ) {\n\t\t\t\tvar url = '/';\n\n\t\t\t\t// Attempt to create a named link based on the slide's ID\n\t\t\t\tvar id = currentSlide.getAttribute( 'id' );\n\t\t\t\tif( id ) {\n\t\t\t\t\tid = id.replace( /[^a-zA-Z0-9\\-\\_\\:\\.]/g, '' );\n\t\t\t\t}\n\n\t\t\t\t// If the current slide has an ID, use that as a named link\n\t\t\t\tif( typeof id === 'string' && id.length ) {\n\t\t\t\t\turl = '/' + id;\n\t\t\t\t}\n\t\t\t\t// Otherwise use the /h/v index\n\t\t\t\telse {\n\t\t\t\t\tif( indexh > 0 || indexv > 0 ) url += indexh;\n\t\t\t\t\tif( indexv > 0 ) url += '/' + indexv;\n\t\t\t\t}\n\n\t\t\t\twindow.location.hash = url;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the h/v location of the current, or specified,\n\t * slide.\n\t *\n\t * @param {HTMLElement} slide If specified, the returned\n\t * index will be for this slide rather than the currently\n\t * active one\n\t *\n\t * @return {Object} { h: <int>, v: <int>, f: <int> }\n\t */\n\tfunction getIndices( slide ) {\n\n\t\t// By default, return the current indices\n\t\tvar h = indexh,\n\t\t\tv = indexv,\n\t\t\tf;\n\n\t\t// If a slide is specified, return the indices of that slide\n\t\tif( slide ) {\n\t\t\tvar isVertical = isVerticalSlide( slide );\n\t\t\tvar slideh = isVertical ? slide.parentNode : slide;\n\n\t\t\t// Select all horizontal slides\n\t\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t\t// Now that we know which the horizontal slide is, get its index\n\t\t\th = Math.max( horizontalSlides.indexOf( slideh ), 0 );\n\n\t\t\t// Assume we're not vertical\n\t\t\tv = undefined;\n\n\t\t\t// If this is a vertical slide, grab the vertical index\n\t\t\tif( isVertical ) {\n\t\t\t\tv = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 );\n\t\t\t}\n\t\t}\n\n\t\tif( !slide && currentSlide ) {\n\t\t\tvar hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0;\n\t\t\tif( hasFragments ) {\n\t\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\t\t\t\tif( currentFragment && currentFragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\tf = parseInt( currentFragment.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tf = currentSlide.querySelectorAll( '.fragment.visible' ).length - 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn { h: h, v: v, f: f };\n\n\t}\n\n\t/**\n\t * Retrieves the total number of slides in this presentation.\n\t */\n\tfunction getTotalSlides() {\n\n\t\treturn dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;\n\n\t}\n\n\t/**\n\t * Returns the slide element matching the specified index.\n\t */\n\tfunction getSlide( x, y ) {\n\n\t\tvar horizontalSlide = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];\n\t\tvar verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );\n\n\t\tif( verticalSlides && verticalSlides.length && typeof y === 'number' ) {\n\t\t\treturn verticalSlides ? verticalSlides[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalSlide;\n\n\t}\n\n\t/**\n\t * Returns the background element for the given slide.\n\t * All slides, even the ones with no background properties\n\t * defined, have a background element so as long as the\n\t * index is valid an element will be returned.\n\t */\n\tfunction getSlideBackground( x, y ) {\n\n\t\t// When printing to PDF the slide backgrounds are nested\n\t\t// inside of the slides\n\t\tif( isPrintingPDF() ) {\n\t\t\tvar slide = getSlide( x, y );\n\t\t\tif( slide ) {\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background && background.parentNode === slide ) {\n\t\t\t\t\treturn background;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn undefined;\n\t\t}\n\n\t\tvar horizontalBackground = dom.wrapper.querySelectorAll( '.backgrounds>.slide-background' )[ x ];\n\t\tvar verticalBackgrounds = horizontalBackground && horizontalBackground.querySelectorAll( '.slide-background' );\n\n\t\tif( verticalBackgrounds && verticalBackgrounds.length && typeof y === 'number' ) {\n\t\t\treturn verticalBackgrounds ? verticalBackgrounds[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalBackground;\n\n\t}\n\n\t/**\n\t * Retrieves the speaker notes from a slide. Notes can be\n\t * defined in two ways:\n\t * 1. As a data-notes attribute on the slide <section>\n\t * 2. As an <aside class=\"notes\"> inside of the slide\n\t */\n\tfunction getSlideNotes( slide ) {\n\n\t\t// Default to the current slide\n\t\tslide = slide || currentSlide;\n\n\t\t// Notes can be specified via the data-notes attribute...\n\t\tif( slide.hasAttribute( 'data-notes' ) ) {\n\t\t\treturn slide.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// ... or using an <aside class=\"notes\"> element\n\t\tvar notesElement = slide.querySelector( 'aside.notes' );\n\t\tif( notesElement ) {\n\t\t\treturn notesElement.innerHTML;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the current state of the presentation as\n\t * an object. This state can then be restored at any\n\t * time.\n\t */\n\tfunction getState() {\n\n\t\tvar indices = getIndices();\n\n\t\treturn {\n\t\t\tindexh: indices.h,\n\t\t\tindexv: indices.v,\n\t\t\tindexf: indices.f,\n\t\t\tpaused: isPaused(),\n\t\t\toverview: isOverview()\n\t\t};\n\n\t}\n\n\t/**\n\t * Restores the presentation to the given state.\n\t *\n\t * @param {Object} state As generated by getState()\n\t */\n\tfunction setState( state ) {\n\n\t\tif( typeof state === 'object' ) {\n\t\t\tslide( deserialize( state.indexh ), deserialize( state.indexv ), deserialize( state.indexf ) );\n\n\t\t\tvar pausedFlag = deserialize( state.paused ),\n\t\t\t\toverviewFlag = deserialize( state.overview );\n\n\t\t\tif( typeof pausedFlag === 'boolean' && pausedFlag !== isPaused() ) {\n\t\t\t\ttogglePause( pausedFlag );\n\t\t\t}\n\n\t\t\tif( typeof overviewFlag === 'boolean' && overviewFlag !== isOverview() ) {\n\t\t\t\ttoggleOverview( overviewFlag );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Return a sorted fragments list, ordered by an increasing\n\t * \"data-fragment-index\" attribute.\n\t *\n\t * Fragments will be revealed in the order that they are returned by\n\t * this function, so you can use the index attributes to control the\n\t * order of fragment appearance.\n\t *\n\t * To maintain a sensible default fragment order, fragments are presumed\n\t * to be passed in document order. This function adds a \"fragment-index\"\n\t * attribute to each node if such an attribute is not already present,\n\t * and sets that attribute to an integer value which is the position of\n\t * the fragment within the fragments list.\n\t */\n\tfunction sortFragments( fragments ) {\n\n\t\tfragments = toArray( fragments );\n\n\t\tvar ordered = [],\n\t\t\tunordered = [],\n\t\t\tsorted = [];\n\n\t\t// Group ordered and unordered elements\n\t\tfragments.forEach( function( fragment, i ) {\n\t\t\tif( fragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\tvar index = parseInt( fragment.getAttribute( 'data-fragment-index' ), 10 );\n\n\t\t\t\tif( !ordered[index] ) {\n\t\t\t\t\tordered[index] = [];\n\t\t\t\t}\n\n\t\t\t\tordered[index].push( fragment );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tunordered.push( [ fragment ] );\n\t\t\t}\n\t\t} );\n\n\t\t// Append fragments without explicit indices in their\n\t\t// DOM order\n\t\tordered = ordered.concat( unordered );\n\n\t\t// Manually count the index up per group to ensure there\n\t\t// are no gaps\n\t\tvar index = 0;\n\n\t\t// Push all fragments in their sorted order to an array,\n\t\t// this flattens the groups\n\t\tordered.forEach( function( group ) {\n\t\t\tgroup.forEach( function( fragment ) {\n\t\t\t\tsorted.push( fragment );\n\t\t\t\tfragment.setAttribute( 'data-fragment-index', index );\n\t\t\t} );\n\n\t\t\tindex ++;\n\t\t} );\n\n\t\treturn sorted;\n\n\t}\n\n\t/**\n\t * Navigate to the specified slide fragment.\n\t *\n\t * @param {Number} index The index of the fragment that\n\t * should be shown, -1 means all are invisible\n\t * @param {Number} offset Integer offset to apply to the\n\t * fragment index\n\t *\n\t * @return {Boolean} true if a change was made in any\n\t * fragments visibility as part of this call\n\t */\n\tfunction navigateFragment( index, offset ) {\n\n\t\tif( currentSlide && config.fragments ) {\n\n\t\t\tvar fragments = sortFragments( currentSlide.querySelectorAll( '.fragment' ) );\n\t\t\tif( fragments.length ) {\n\n\t\t\t\t// If no index is specified, find the current\n\t\t\t\tif( typeof index !== 'number' ) {\n\t\t\t\t\tvar lastVisibleFragment = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) ).pop();\n\n\t\t\t\t\tif( lastVisibleFragment ) {\n\t\t\t\t\t\tindex = parseInt( lastVisibleFragment.getAttribute( 'data-fragment-index' ) || 0, 10 );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tindex = -1;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If an offset is specified, apply it to the index\n\t\t\t\tif( typeof offset === 'number' ) {\n\t\t\t\t\tindex += offset;\n\t\t\t\t}\n\n\t\t\t\tvar fragmentsShown = [],\n\t\t\t\t\tfragmentsHidden = [];\n\n\t\t\t\ttoArray( fragments ).forEach( function( element, i ) {\n\n\t\t\t\t\tif( element.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\t\ti = parseInt( element.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Visible fragments\n\t\t\t\t\tif( i <= index ) {\n\t\t\t\t\t\tif( !element.classList.contains( 'visible' ) ) fragmentsShown.push( element );\n\t\t\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\n\t\t\t\t\t\t// Announce the fragments one by one to the Screen Reader\n\t\t\t\t\t\tdom.statusDiv.textContent = element.textContent;\n\n\t\t\t\t\t\tif( i === index ) {\n\t\t\t\t\t\t\telement.classList.add( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Hidden fragments\n\t\t\t\t\telse {\n\t\t\t\t\t\tif( element.classList.contains( 'visible' ) ) fragmentsHidden.push( element );\n\t\t\t\t\t\telement.classList.remove( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t\t\t}\n\n\n\t\t\t\t} );\n\n\t\t\t\tif( fragmentsHidden.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmenthidden', { fragment: fragmentsHidden[0], fragments: fragmentsHidden } );\n\t\t\t\t}\n\n\t\t\t\tif( fragmentsShown.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmentshown', { fragment: fragmentsShown[0], fragments: fragmentsShown } );\n\t\t\t\t}\n\n\t\t\t\tupdateControls();\n\t\t\t\tupdateProgress();\n\n\t\t\t\treturn !!( fragmentsShown.length || fragmentsHidden.length );\n\n\t\t\t}\n\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Navigate to the next slide fragment.\n\t *\n\t * @return {Boolean} true if there was a next fragment,\n\t * false otherwise\n\t */\n\tfunction nextFragment() {\n\n\t\treturn navigateFragment( null, 1 );\n\n\t}\n\n\t/**\n\t * Navigate to the previous slide fragment.\n\t *\n\t * @return {Boolean} true if there was a previous fragment,\n\t * false otherwise\n\t */\n\tfunction previousFragment() {\n\n\t\treturn navigateFragment( null, -1 );\n\n\t}\n\n\t/**\n\t * Cues a new automated slide if enabled in the config.\n\t */\n\tfunction cueAutoSlide() {\n\n\t\tcancelAutoSlide();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\n\t\t\tvar fragmentAutoSlide = currentFragment ? currentFragment.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar parentAutoSlide = currentSlide.parentNode ? currentSlide.parentNode.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar slideAutoSlide = currentSlide.getAttribute( 'data-autoslide' );\n\n\t\t\t// Pick value in the following priority order:\n\t\t\t// 1. Current fragment's data-autoslide\n\t\t\t// 2. Current slide's data-autoslide\n\t\t\t// 3. Parent slide's data-autoslide\n\t\t\t// 4. Global autoSlide setting\n\t\t\tif( fragmentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( fragmentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( slideAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( slideAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( parentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( parentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tautoSlide = config.autoSlide;\n\t\t\t}\n\n\t\t\t// If there are media elements with data-autoplay,\n\t\t\t// automatically set the autoSlide duration to the\n\t\t\t// length of that media. Not applicable if the slide\n\t\t\t// is divided up into fragments.\n\t\t\tif( currentSlide.querySelectorAll( '.fragment' ).length === 0 ) {\n\t\t\t\ttoArray( currentSlide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) ) {\n\t\t\t\t\t\tif( autoSlide && el.duration * 1000 > autoSlide ) {\n\t\t\t\t\t\t\tautoSlide = ( el.duration * 1000 ) + 1000;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Cue the next auto-slide if:\n\t\t\t// - There is an autoSlide value\n\t\t\t// - Auto-sliding isn't paused by the user\n\t\t\t// - The presentation isn't paused\n\t\t\t// - The overview isn't active\n\t\t\t// - The presentation isn't over\n\t\t\tif( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || availableFragments().next || config.loop === true ) ) {\n\t\t\t\tautoSlideTimeout = setTimeout( navigateNext, autoSlide );\n\t\t\t\tautoSlideStartTime = Date.now();\n\t\t\t}\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( autoSlideTimeout !== -1 );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Cancels any ongoing request to auto-slide.\n\t */\n\tfunction cancelAutoSlide() {\n\n\t\tclearTimeout( autoSlideTimeout );\n\t\tautoSlideTimeout = -1;\n\n\t}\n\n\tfunction pauseAutoSlide() {\n\n\t\tif( autoSlide && !autoSlidePaused ) {\n\t\t\tautoSlidePaused = true;\n\t\t\tdispatchEvent( 'autoslidepaused' );\n\t\t\tclearTimeout( autoSlideTimeout );\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( false );\n\t\t\t}\n\t\t}\n\n\t}\n\n\tfunction resumeAutoSlide() {\n\n\t\tif( autoSlide && autoSlidePaused ) {\n\t\t\tautoSlidePaused = false;\n\t\t\tdispatchEvent( 'autoslideresumed' );\n\t\t\tcueAutoSlide();\n\t\t}\n\n\t}\n\n\tfunction navigateLeft() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().left ) {\n\t\t\t\tslide( indexh + 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || previousFragment() === false ) && availableRoutes().left ) {\n\t\t\tslide( indexh - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateRight() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().right ) {\n\t\t\t\tslide( indexh - 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || nextFragment() === false ) && availableRoutes().right ) {\n\t\t\tslide( indexh + 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateUp() {\n\n\t\t// Prioritize hiding fragments\n\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().up ) {\n\t\t\tslide( indexh, indexv - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateDown() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().down ) {\n\t\t\tslide( indexh, indexv + 1 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Navigates backwards, prioritized in the following order:\n\t * 1) Previous fragment\n\t * 2) Previous vertical slide\n\t * 3) Previous horizontal slide\n\t */\n\tfunction navigatePrev() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( previousFragment() === false ) {\n\t\t\tif( availableRoutes().up ) {\n\t\t\t\tnavigateUp();\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Fetch the previous horizontal slide, if there is one\n\t\t\t\tvar previousSlide;\n\n\t\t\t\tif( config.rtl ) {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.future' ) ).pop();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.past' ) ).pop();\n\t\t\t\t}\n\n\t\t\t\tif( previousSlide ) {\n\t\t\t\t\tvar v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;\n\t\t\t\t\tvar h = indexh - 1;\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * The reverse of #navigatePrev().\n\t */\n\tfunction navigateNext() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( nextFragment() === false ) {\n\t\t\tif( availableRoutes().down ) {\n\t\t\t\tnavigateDown();\n\t\t\t}\n\t\t\telse if( config.rtl ) {\n\t\t\t\tnavigateLeft();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigateRight();\n\t\t\t}\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Checks if the target element prevents the triggering of\n\t * swipe navigation.\n\t */\n\tfunction isSwipePrevented( target ) {\n\n\t\twhile( target && typeof target.hasAttribute === 'function' ) {\n\t\t\tif( target.hasAttribute( 'data-prevent-swipe' ) ) return true;\n\t\t\ttarget = target.parentNode;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ----------------------------- EVENTS -------------------------------//\n\t// --------------------------------------------------------------------//\n\n\t/**\n\t * Called by all event handlers that are based on user\n\t * input.\n\t */\n\tfunction onUserInput( event ) {\n\n\t\tif( config.autoSlideStoppable ) {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keypress' event.\n\t */\n\tfunction onDocumentKeyPress( event ) {\n\n\t\t// Check if the pressed key is question mark\n\t\tif( event.shiftKey && event.charCode === 63 ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tshowHelp( true );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keydown' event.\n\t */\n\tfunction onDocumentKeyDown( event ) {\n\n\t\t// If there's a condition specified and it returns false,\n\t\t// ignore this event\n\t\tif( typeof config.keyboardCondition === 'function' && config.keyboardCondition() === false ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Remember if auto-sliding was paused so we can toggle it\n\t\tvar autoSlideWasPaused = autoSlidePaused;\n\n\t\tonUserInput( event );\n\n\t\t// Check if there's a focused element that could be using\n\t\t// the keyboard\n\t\tvar activeElementIsCE = document.activeElement && document.activeElement.contentEditable !== 'inherit';\n\t\tvar activeElementIsInput = document.activeElement && document.activeElement.tagName && /input|textarea/i.test( document.activeElement.tagName );\n\n\t\t// Disregard the event if there's a focused element or a\n\t\t// keyboard modifier key is present\n\t\tif( activeElementIsCE || activeElementIsInput || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t// While paused only allow resume keyboard events; 'b', '.''\n\t\tvar resumeKeyCodes = [66,190,191];\n\t\tvar key;\n\n\t\t// Custom key bindings for togglePause should be able to resume\n\t\tif( typeof config.keyboard === 'object' ) {\n\t\t\tfor( key in config.keyboard ) {\n\t\t\t\tif( config.keyboard[key] === 'togglePause' ) {\n\t\t\t\t\tresumeKeyCodes.push( parseInt( key, 10 ) );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif( isPaused() && resumeKeyCodes.indexOf( event.keyCode ) === -1 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar triggered = false;\n\n\t\t// 1. User defined key bindings\n\t\tif( typeof config.keyboard === 'object' ) {\n\n\t\t\tfor( key in config.keyboard ) {\n\n\t\t\t\t// Check if this binding matches the pressed key\n\t\t\t\tif( parseInt( key, 10 ) === event.keyCode ) {\n\n\t\t\t\t\tvar value = config.keyboard[ key ];\n\n\t\t\t\t\t// Callback function\n\t\t\t\t\tif( typeof value === 'function' ) {\n\t\t\t\t\t\tvalue.apply( null, [ event ] );\n\t\t\t\t\t}\n\t\t\t\t\t// String shortcuts to reveal.js API\n\t\t\t\t\telse if( typeof value === 'string' && typeof Reveal[ value ] === 'function' ) {\n\t\t\t\t\t\tReveal[ value ].call();\n\t\t\t\t\t}\n\n\t\t\t\t\ttriggered = true;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// 2. System defined key bindings\n\t\tif( triggered === false ) {\n\n\t\t\t// Assume true and try to prove false\n\t\t\ttriggered = true;\n\n\t\t\tswitch( event.keyCode ) {\n\t\t\t\t// p, page up\n\t\t\t\tcase 80: case 33: navigatePrev(); break;\n\t\t\t\t// n, page down\n\t\t\t\tcase 78: case 34: navigateNext(); break;\n\t\t\t\t// h, left\n\t\t\t\tcase 72: case 37: navigateLeft(); break;\n\t\t\t\t// l, right\n\t\t\t\tcase 76: case 39: navigateRight(); break;\n\t\t\t\t// k, up\n\t\t\t\tcase 75: case 38: navigateUp(); break;\n\t\t\t\t// j, down\n\t\t\t\tcase 74: case 40: navigateDown(); break;\n\t\t\t\t// home\n\t\t\t\tcase 36: slide( 0 ); break;\n\t\t\t\t// end\n\t\t\t\tcase 35: slide( Number.MAX_VALUE ); break;\n\t\t\t\t// space\n\t\t\t\tcase 32: isOverview() ? deactivateOverview() : event.shiftKey ? navigatePrev() : navigateNext(); break;\n\t\t\t\t// return\n\t\t\t\tcase 13: isOverview() ? deactivateOverview() : triggered = false; break;\n\t\t\t\t// two-spot, semicolon, b, period, Logitech presenter tools \"black screen\" button\n\t\t\t\tcase 58: case 59: case 66: case 190: case 191: togglePause(); break;\n\t\t\t\t// f\n\t\t\t\tcase 70: enterFullscreen(); break;\n\t\t\t\t// a\n\t\t\t\tcase 65: if ( config.autoSlideStoppable ) toggleAutoSlide( autoSlideWasPaused ); break;\n\t\t\t\tdefault:\n\t\t\t\t\ttriggered = false;\n\t\t\t}\n\n\t\t}\n\n\t\t// If the input resulted in a triggered action we should prevent\n\t\t// the browsers default behavior\n\t\tif( triggered ) {\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\t\t// ESC or O key\n\t\telse if ( ( event.keyCode === 27 || event.keyCode === 79 ) && features.transforms3d ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\ttoggleOverview();\n\t\t\t}\n\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Handler for the 'touchstart' event, enables support for\n\t * swipe and pinch gestures.\n\t */\n\tfunction onTouchStart( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\ttouch.startX = event.touches[0].clientX;\n\t\ttouch.startY = event.touches[0].clientY;\n\t\ttouch.startCount = event.touches.length;\n\n\t\t// If there's two touches we need to memorize the distance\n\t\t// between those two points to detect pinching\n\t\tif( event.touches.length === 2 && config.overview ) {\n\t\t\ttouch.startSpan = distanceBetween( {\n\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\ty: event.touches[1].clientY\n\t\t\t}, {\n\t\t\t\tx: touch.startX,\n\t\t\t\ty: touch.startY\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchmove' event.\n\t */\n\tfunction onTouchMove( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\t// Each touch should only trigger one action\n\t\tif( !touch.captured ) {\n\t\t\tonUserInput( event );\n\n\t\t\tvar currentX = event.touches[0].clientX;\n\t\t\tvar currentY = event.touches[0].clientY;\n\n\t\t\t// If the touch started with two points and still has\n\t\t\t// two active touches; test for the pinch gesture\n\t\t\tif( event.touches.length === 2 && touch.startCount === 2 && config.overview ) {\n\n\t\t\t\t// The current distance in pixels between the two touch points\n\t\t\t\tvar currentSpan = distanceBetween( {\n\t\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\t\ty: event.touches[1].clientY\n\t\t\t\t}, {\n\t\t\t\t\tx: touch.startX,\n\t\t\t\t\ty: touch.startY\n\t\t\t\t} );\n\n\t\t\t\t// If the span is larger than the desire amount we've got\n\t\t\t\t// ourselves a pinch\n\t\t\t\tif( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\n\t\t\t\t\tif( currentSpan < touch.startSpan ) {\n\t\t\t\t\t\tactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tdeactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tevent.preventDefault();\n\n\t\t\t}\n\t\t\t// There was only one touch point, look for a swipe\n\t\t\telse if( event.touches.length === 1 && touch.startCount !== 2 ) {\n\n\t\t\t\tvar deltaX = currentX - touch.startX,\n\t\t\t\t\tdeltaY = currentY - touch.startY;\n\n\t\t\t\tif( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateLeft();\n\t\t\t\t}\n\t\t\t\telse if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateRight();\n\t\t\t\t}\n\t\t\t\telse if( deltaY > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateUp();\n\t\t\t\t}\n\t\t\t\telse if( deltaY < -touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateDown();\n\t\t\t\t}\n\n\t\t\t\t// If we're embedded, only block touch events if they have\n\t\t\t\t// triggered an action\n\t\t\t\tif( config.embedded ) {\n\t\t\t\t\tif( touch.captured || isVerticalSlide( currentSlide ) ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Not embedded? Block them all to avoid needless tossing\n\t\t\t\t// around of the viewport in iOS\n\t\t\t\telse {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t\t// There's a bug with swiping on some Android devices unless\n\t\t// the default action is always prevented\n\t\telse if( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchend' event.\n\t */\n\tfunction onTouchEnd( event ) {\n\n\t\ttouch.captured = false;\n\n\t}\n\n\t/**\n\t * Convert pointer down to touch start.\n\t */\n\tfunction onPointerDown( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" ) {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchStart( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer move to touch move.\n\t */\n\tfunction onPointerMove( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchMove( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer up to touch end.\n\t */\n\tfunction onPointerUp( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchEnd( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles mouse wheel scrolling, throttled to avoid skipping\n\t * multiple slides.\n\t */\n\tfunction onDocumentMouseScroll( event ) {\n\n\t\tif( Date.now() - lastMouseWheelStep > 600 ) {\n\n\t\t\tlastMouseWheelStep = Date.now();\n\n\t\t\tvar delta = event.detail || -event.wheelDelta;\n\t\t\tif( delta > 0 ) {\n\t\t\t\tnavigateNext();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigatePrev();\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Clicking on the progress bar results in a navigation to the\n\t * closest approximate horizontal slide using this equation:\n\t *\n\t * ( clickX / presentationWidth ) * numberOfSlides\n\t */\n\tfunction onProgressClicked( event ) {\n\n\t\tonUserInput( event );\n\n\t\tevent.preventDefault();\n\n\t\tvar slidesTotal = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length;\n\t\tvar slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal );\n\n\t\tif( config.rtl ) {\n\t\t\tslideIndex = slidesTotal - slideIndex;\n\t\t}\n\n\t\tslide( slideIndex );\n\n\t}\n\n\t/**\n\t * Event handler for navigation control buttons.\n\t */\n\tfunction onNavigateLeftClicked( event ) { event.preventDefault(); onUserInput(); navigateLeft(); }\n\tfunction onNavigateRightClicked( event ) { event.preventDefault(); onUserInput(); navigateRight(); }\n\tfunction onNavigateUpClicked( event ) { event.preventDefault(); onUserInput(); navigateUp(); }\n\tfunction onNavigateDownClicked( event ) { event.preventDefault(); onUserInput(); navigateDown(); }\n\tfunction onNavigatePrevClicked( event ) { event.preventDefault(); onUserInput(); navigatePrev(); }\n\tfunction onNavigateNextClicked( event ) { event.preventDefault(); onUserInput(); navigateNext(); }\n\n\t/**\n\t * Handler for the window level 'hashchange' event.\n\t */\n\tfunction onWindowHashChange( event ) {\n\n\t\treadURL();\n\n\t}\n\n\t/**\n\t * Handler for the window level 'resize' event.\n\t */\n\tfunction onWindowResize( event ) {\n\n\t\tlayout();\n\n\t}\n\n\t/**\n\t * Handle for the window level 'visibilitychange' event.\n\t */\n\tfunction onPageVisibilityChange( event ) {\n\n\t\tvar isHidden =  document.webkitHidden ||\n\t\t\t\t\t\tdocument.msHidden ||\n\t\t\t\t\t\tdocument.hidden;\n\n\t\t// If, after clicking a link or similar and we're coming back,\n\t\t// focus the document.body to ensure we can use keyboard shortcuts\n\t\tif( isHidden === false && document.activeElement !== document.body ) {\n\t\t\t// Not all elements support .blur() - SVGs among them.\n\t\t\tif( typeof document.activeElement.blur === 'function' ) {\n\t\t\t\tdocument.activeElement.blur();\n\t\t\t}\n\t\t\tdocument.body.focus();\n\t\t}\n\n\t}\n\n\t/**\n\t * Invoked when a slide is and we're in the overview.\n\t */\n\tfunction onOverviewSlideClicked( event ) {\n\n\t\t// TODO There's a bug here where the event listeners are not\n\t\t// removed after deactivating the overview.\n\t\tif( eventsAreBound && isOverview() ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar element = event.target;\n\n\t\t\twhile( element && !element.nodeName.match( /section/gi ) ) {\n\t\t\t\telement = element.parentNode;\n\t\t\t}\n\n\t\t\tif( element && !element.classList.contains( 'disabled' ) ) {\n\n\t\t\t\tdeactivateOverview();\n\n\t\t\t\tif( element.nodeName.match( /section/gi ) ) {\n\t\t\t\t\tvar h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),\n\t\t\t\t\t\tv = parseInt( element.getAttribute( 'data-index-v' ), 10 );\n\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles clicks on links that are set to preview in the\n\t * iframe overlay.\n\t */\n\tfunction onPreviewLinkClicked( event ) {\n\n\t\tif( event.currentTarget && event.currentTarget.hasAttribute( 'href' ) ) {\n\t\t\tvar url = event.currentTarget.getAttribute( 'href' );\n\t\t\tif( url ) {\n\t\t\t\tshowPreview( url );\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles click on the auto-sliding controls element.\n\t */\n\tfunction onAutoSlidePlayerClick( event ) {\n\n\t\t// Replay\n\t\tif( Reveal.isLastSlide() && config.loop === false ) {\n\t\t\tslide( 0, 0 );\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Resume\n\t\telse if( autoSlidePaused ) {\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Pause\n\t\telse {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------ PLAYBACK COMPONENT ------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\t/**\n\t * Constructor for the playback component, which displays\n\t * play/pause/progress controls.\n\t *\n\t * @param {HTMLElement} container The component will append\n\t * itself to this\n\t * @param {Function} progressCheck A method which will be\n\t * called frequently to get the current progress on a range\n\t * of 0-1\n\t */\n\tfunction Playback( container, progressCheck ) {\n\n\t\t// Cosmetics\n\t\tthis.diameter = 50;\n\t\tthis.thickness = 3;\n\n\t\t// Flags if we are currently playing\n\t\tthis.playing = false;\n\n\t\t// Current progress on a 0-1 range\n\t\tthis.progress = 0;\n\n\t\t// Used to loop the animation smoothly\n\t\tthis.progressOffset = 1;\n\n\t\tthis.container = container;\n\t\tthis.progressCheck = progressCheck;\n\n\t\tthis.canvas = document.createElement( 'canvas' );\n\t\tthis.canvas.className = 'playback';\n\t\tthis.canvas.width = this.diameter;\n\t\tthis.canvas.height = this.diameter;\n\t\tthis.context = this.canvas.getContext( '2d' );\n\n\t\tthis.container.appendChild( this.canvas );\n\n\t\tthis.render();\n\n\t}\n\n\tPlayback.prototype.setPlaying = function( value ) {\n\n\t\tvar wasPlaying = this.playing;\n\n\t\tthis.playing = value;\n\n\t\t// Start repainting if we weren't already\n\t\tif( !wasPlaying && this.playing ) {\n\t\t\tthis.animate();\n\t\t}\n\t\telse {\n\t\t\tthis.render();\n\t\t}\n\n\t};\n\n\tPlayback.prototype.animate = function() {\n\n\t\tvar progressBefore = this.progress;\n\n\t\tthis.progress = this.progressCheck();\n\n\t\t// When we loop, offset the progress so that it eases\n\t\t// smoothly rather than immediately resetting\n\t\tif( progressBefore > 0.8 && this.progress < 0.2 ) {\n\t\t\tthis.progressOffset = this.progress;\n\t\t}\n\n\t\tthis.render();\n\n\t\tif( this.playing ) {\n\t\t\tfeatures.requestAnimationFrameMethod.call( window, this.animate.bind( this ) );\n\t\t}\n\n\t};\n\n\t/**\n\t * Renders the current progress and playback state.\n\t */\n\tPlayback.prototype.render = function() {\n\n\t\tvar progress = this.playing ? this.progress : 0,\n\t\t\tradius = ( this.diameter / 2 ) - this.thickness,\n\t\t\tx = this.diameter / 2,\n\t\t\ty = this.diameter / 2,\n\t\t\ticonSize = 14;\n\n\t\t// Ease towards 1\n\t\tthis.progressOffset += ( 1 - this.progressOffset ) * 0.1;\n\n\t\tvar endAngle = ( - Math.PI / 2 ) + ( progress * ( Math.PI * 2 ) );\n\t\tvar startAngle = ( - Math.PI / 2 ) + ( this.progressOffset * ( Math.PI * 2 ) );\n\n\t\tthis.context.save();\n\t\tthis.context.clearRect( 0, 0, this.diameter, this.diameter );\n\n\t\t// Solid background color\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius + 2, 0, Math.PI * 2, false );\n\t\tthis.context.fillStyle = 'rgba( 0, 0, 0, 0.4 )';\n\t\tthis.context.fill();\n\n\t\t// Draw progress track\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius, 0, Math.PI * 2, false );\n\t\tthis.context.lineWidth = this.thickness;\n\t\tthis.context.strokeStyle = '#666';\n\t\tthis.context.stroke();\n\n\t\tif( this.playing ) {\n\t\t\t// Draw progress on top of track\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.arc( x, y, radius, startAngle, endAngle, false );\n\t\t\tthis.context.lineWidth = this.thickness;\n\t\t\tthis.context.strokeStyle = '#fff';\n\t\t\tthis.context.stroke();\n\t\t}\n\n\t\tthis.context.translate( x - ( iconSize / 2 ), y - ( iconSize / 2 ) );\n\n\t\t// Draw play/pause icons\n\t\tif( this.playing ) {\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fillRect( 0, 0, iconSize / 2 - 2, iconSize );\n\t\t\tthis.context.fillRect( iconSize / 2 + 2, 0, iconSize / 2 - 2, iconSize );\n\t\t}\n\t\telse {\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.translate( 2, 0 );\n\t\t\tthis.context.moveTo( 0, 0 );\n\t\t\tthis.context.lineTo( iconSize - 2, iconSize / 2 );\n\t\t\tthis.context.lineTo( 0, iconSize );\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fill();\n\t\t}\n\n\t\tthis.context.restore();\n\n\t};\n\n\tPlayback.prototype.on = function( type, listener ) {\n\t\tthis.canvas.addEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.off = function( type, listener ) {\n\t\tthis.canvas.removeEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.destroy = function() {\n\n\t\tthis.playing = false;\n\n\t\tif( this.canvas.parentNode ) {\n\t\t\tthis.container.removeChild( this.canvas );\n\t\t}\n\n\t};\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------------- API --------------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\tReveal = {\n\t\tinitialize: initialize,\n\t\tconfigure: configure,\n\t\tsync: sync,\n\n\t\t// Navigation methods\n\t\tslide: slide,\n\t\tleft: navigateLeft,\n\t\tright: navigateRight,\n\t\tup: navigateUp,\n\t\tdown: navigateDown,\n\t\tprev: navigatePrev,\n\t\tnext: navigateNext,\n\n\t\t// Fragment methods\n\t\tnavigateFragment: navigateFragment,\n\t\tprevFragment: previousFragment,\n\t\tnextFragment: nextFragment,\n\n\t\t// Deprecated aliases\n\t\tnavigateTo: slide,\n\t\tnavigateLeft: navigateLeft,\n\t\tnavigateRight: navigateRight,\n\t\tnavigateUp: navigateUp,\n\t\tnavigateDown: navigateDown,\n\t\tnavigatePrev: navigatePrev,\n\t\tnavigateNext: navigateNext,\n\n\t\t// Forces an update in slide layout\n\t\tlayout: layout,\n\n\t\t// Returns an object with the available routes as booleans (left/right/top/bottom)\n\t\tavailableRoutes: availableRoutes,\n\n\t\t// Returns an object with the available fragments as booleans (prev/next)\n\t\tavailableFragments: availableFragments,\n\n\t\t// Toggles the overview mode on/off\n\t\ttoggleOverview: toggleOverview,\n\n\t\t// Toggles the \"black screen\" mode on/off\n\t\ttogglePause: togglePause,\n\n\t\t// Toggles the auto slide mode on/off\n\t\ttoggleAutoSlide: toggleAutoSlide,\n\n\t\t// State checks\n\t\tisOverview: isOverview,\n\t\tisPaused: isPaused,\n\t\tisAutoSliding: isAutoSliding,\n\n\t\t// Adds or removes all internal event listeners (such as keyboard)\n\t\taddEventListeners: addEventListeners,\n\t\tremoveEventListeners: removeEventListeners,\n\n\t\t// Facility for persisting and restoring the presentation state\n\t\tgetState: getState,\n\t\tsetState: setState,\n\n\t\t// Presentation progress on range of 0-1\n\t\tgetProgress: getProgress,\n\n\t\t// Returns the indices of the current, or specified, slide\n\t\tgetIndices: getIndices,\n\n\t\tgetTotalSlides: getTotalSlides,\n\n\t\t// Returns the slide element at the specified index\n\t\tgetSlide: getSlide,\n\n\t\t// Returns the slide background element at the specified index\n\t\tgetSlideBackground: getSlideBackground,\n\n\t\t// Returns the speaker notes string for a slide, or null\n\t\tgetSlideNotes: getSlideNotes,\n\n\t\t// Returns the previous slide element, may be null\n\t\tgetPreviousSlide: function() {\n\t\t\treturn previousSlide;\n\t\t},\n\n\t\t// Returns the current slide element\n\t\tgetCurrentSlide: function() {\n\t\t\treturn currentSlide;\n\t\t},\n\n\t\t// Returns the current scale of the presentation content\n\t\tgetScale: function() {\n\t\t\treturn scale;\n\t\t},\n\n\t\t// Returns the current configuration object\n\t\tgetConfig: function() {\n\t\t\treturn config;\n\t\t},\n\n\t\t// Helper method, retrieves query string as a key/value hash\n\t\tgetQueryHash: function() {\n\t\t\tvar query = {};\n\n\t\t\tlocation.search.replace( /[A-Z0-9]+?=([\\w\\.%-]*)/gi, function(a) {\n\t\t\t\tquery[ a.split( '=' ).shift() ] = a.split( '=' ).pop();\n\t\t\t} );\n\n\t\t\t// Basic deserialization\n\t\t\tfor( var i in query ) {\n\t\t\t\tvar value = query[ i ];\n\n\t\t\t\tquery[ i ] = deserialize( unescape( value ) );\n\t\t\t}\n\n\t\t\treturn query;\n\t\t},\n\n\t\t// Returns true if we're currently on the first slide\n\t\tisFirstSlide: function() {\n\t\t\treturn ( indexh === 0 && indexv === 0 );\n\t\t},\n\n\t\t// Returns true if we're currently on the last slide\n\t\tisLastSlide: function() {\n\t\t\tif( currentSlide ) {\n\t\t\t\t// Does this slide has next a sibling?\n\t\t\t\tif( currentSlide.nextElementSibling ) return false;\n\n\t\t\t\t// If it's vertical, does its parent have a next sibling?\n\t\t\t\tif( isVerticalSlide( currentSlide ) && currentSlide.parentNode.nextElementSibling ) return false;\n\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\n\t\t// Checks if reveal.js has been loaded and is ready for use\n\t\tisReady: function() {\n\t\t\treturn loaded;\n\t\t},\n\n\t\t// Forward event binding to the reveal DOM element\n\t\taddEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\t\tremoveEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\n\t\t// Programatically triggers a keyboard event\n\t\ttriggerKey: function( keyCode ) {\n\t\t\tonDocumentKeyDown( { keyCode: keyCode } );\n\t\t}\n\t};\n\n\treturn Reveal;\n\n}));\n"
  },
  {
    "path": "doc/cpp-london-2017/lib/css/zenburn.css",
    "content": "/*\nZenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>\nbased on dark.css by Ivan Sagalaev\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #3f3f3f;\n  color: #dcdcdc;\n  -webkit-text-size-adjust: none;\n}\n\n.hljs-keyword,\n.hljs-tag,\n.css .hljs-class,\n.css .hljs-id,\n.lisp .hljs-title,\n.nginx .hljs-title,\n.hljs-request,\n.hljs-status,\n.clojure .hljs-attribute {\n  color: #e3ceab;\n}\n\n.django .hljs-template_tag,\n.django .hljs-variable,\n.django .hljs-filter .hljs-argument {\n  color: #dcdcdc;\n}\n\n.hljs-number,\n.hljs-date {\n  color: #8cd0d3;\n}\n\n.dos .hljs-envvar,\n.dos .hljs-stream,\n.hljs-variable,\n.apache .hljs-sqbracket,\n.hljs-name {\n  color: #efdcbc;\n}\n\n.dos .hljs-flow,\n.diff .hljs-change,\n.python .exception,\n.python .hljs-built_in,\n.hljs-literal,\n.tex .hljs-special {\n  color: #efefaf;\n}\n\n.diff .hljs-chunk,\n.hljs-subst {\n  color: #8f8f8f;\n}\n\n.dos .hljs-keyword,\n.hljs-decorator,\n.hljs-title,\n.hljs-type,\n.diff .hljs-header,\n.ruby .hljs-class .hljs-parent,\n.apache .hljs-tag,\n.nginx .hljs-built_in,\n.tex .hljs-command,\n.hljs-prompt {\n  color: #efef8f;\n}\n\n.dos .hljs-winutils,\n.ruby .hljs-symbol,\n.ruby .hljs-symbol .hljs-string,\n.ruby .hljs-string {\n  color: #dca3a3;\n}\n\n.diff .hljs-deletion,\n.hljs-string,\n.hljs-tag .hljs-value,\n.hljs-preprocessor,\n.hljs-pragma,\n.hljs-built_in,\n.smalltalk .hljs-class,\n.smalltalk .hljs-localvars,\n.smalltalk .hljs-array,\n.css .hljs-rule .hljs-value,\n.hljs-attr_selector,\n.hljs-pseudo,\n.apache .hljs-cbracket,\n.tex .hljs-formula,\n.coffeescript .hljs-attribute {\n  color: #cc9393;\n}\n\n.hljs-shebang,\n.diff .hljs-addition,\n.hljs-comment,\n.hljs-annotation,\n.hljs-pi,\n.hljs-doctype {\n  color: #7f9f7f;\n}\n\n.coffeescript .javascript,\n.javascript .xml,\n.tex .hljs-formula,\n.xml .javascript,\n.xml .vbscript,\n.xml .css,\n.xml .hljs-cdata {\n  opacity: 0.5;\n}"
  },
  {
    "path": "doc/cpp-london-2017/lib/font/league-gothic/LICENSE",
    "content": "SIL Open Font License (OFL)\nhttp://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL\n"
  },
  {
    "path": "doc/cpp-london-2017/lib/font/league-gothic/league-gothic.css",
    "content": "@font-face {\n    font-family: 'League Gothic';\n    src: url('league-gothic.eot');\n    src: url('league-gothic.eot?#iefix') format('embedded-opentype'),\n         url('league-gothic.woff') format('woff'),\n         url('league-gothic.ttf') format('truetype');\n\n    font-weight: normal;\n    font-style: normal;\n}"
  },
  {
    "path": "doc/cpp-london-2017/lib/font/source-sans-pro/LICENSE",
    "content": "SIL Open Font License\n\nCopyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL\n\n—————————————————————————————-\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n—————————————————————————————-\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.\n\nDEFINITIONS\n“Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.\n\n“Reserved Font Name” refers to any names specified as such after the copyright statement(s).\n\n“Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).\n\n“Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.\n\n“Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.\n\n5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are not met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE."
  },
  {
    "path": "doc/cpp-london-2017/lib/font/source-sans-pro/source-sans-pro.css",
    "content": "@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-regular.eot');\n    src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-regular.woff') format('woff'),\n         url('source-sans-pro-regular.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-italic.eot');\n    src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-italic.woff') format('woff'),\n         url('source-sans-pro-italic.ttf') format('truetype');\n    font-weight: normal;\n    font-style: italic;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibold.eot');\n    src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibold.woff') format('woff'),\n         url('source-sans-pro-semibold.ttf') format('truetype');\n    font-weight: 600;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibolditalic.eot');\n    src: url('source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibolditalic.woff') format('woff'),\n         url('source-sans-pro-semibolditalic.ttf') format('truetype');\n    font-weight: 600;\n    font-style: italic;\n}"
  },
  {
    "path": "doc/cpp-london-2017/lib/js/classList.js",
    "content": "/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/\nif(typeof document!==\"undefined\"&&!(\"classList\" in document.createElement(\"a\"))){(function(j){var a=\"classList\",f=\"prototype\",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\\s+|\\s+$/g,\"\")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p<o;p++){if(p in this&&this[p]===q){return p}}return -1},n=function(o,p){this.name=o;this.code=DOMException[o];this.message=p},g=function(p,o){if(o===\"\"){throw new n(\"SYNTAX_ERR\",\"An invalid or illegal string was specified\")}if(/\\s/.test(o)){throw new n(\"INVALID_CHARACTER_ERR\",\"String contains an invalid character\")}return c.call(p,o)},d=function(s){var r=k.call(s.className),q=r?r.split(/\\s+/):[],p=0,o=q.length;for(;p<o;p++){this.push(q[p])}this._updateClassName=function(){s.className=this.toString()}},e=d[f]=[],i=function(){return new d(this)};n[f]=Error[f];e.item=function(o){return this[o]||null};e.contains=function(o){o+=\"\";return g(this,o)!==-1};e.add=function(o){o+=\"\";if(g(this,o)===-1){this.push(o);this._updateClassName()}};e.remove=function(p){p+=\"\";var o=g(this,p);if(o!==-1){this.splice(o,1);this._updateClassName()}};e.toggle=function(o){o+=\"\";if(g(this,o)===-1){this.add(o)}else{this.remove(o)}};e.toString=function(){return this.join(\" \")};if(b.defineProperty){var l={get:i,enumerable:true,configurable:true};try{b.defineProperty(m,a,l)}catch(h){if(h.number===-2146823252){l.enumerable=false;b.defineProperty(m,a,l)}}}else{if(b[f].__defineGetter__){m.__defineGetter__(a,i)}}}(self))};"
  },
  {
    "path": "doc/cpp-london-2017/lib/js/html5shiv.js",
    "content": "document.createElement('header');\ndocument.createElement('nav');\ndocument.createElement('section');\ndocument.createElement('article');\ndocument.createElement('aside');\ndocument.createElement('footer');\ndocument.createElement('hgroup');"
  },
  {
    "path": "doc/cpp-london-2017/package.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"homepage\": \"http://lab.hakim.se/reveal-js\",\n  \"subdomain\": \"revealjs\",\n  \"main\": \"js/reveal.js\",\n  \"scripts\": {\n    \"test\": \"grunt test\",\n    \"start\": \"grunt serve\"\n  },\n  \"author\": {\n    \"name\": \"Hakim El Hattab\",\n    \"email\": \"hakim.elhattab@gmail.com\",\n    \"web\": \"http://hakim.se\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"engines\": {\n    \"node\": \"~4.1.1\"\n  },\n  \"dependencies\": {\n    \"underscore\": \"~1.8.3\",\n    \"express\": \"~4.13.3\",\n    \"mustache\": \"~2.1.3\",\n    \"socket.io\": \"~1.3.7\"\n  },\n  \"devDependencies\": {\n    \"grunt-contrib-qunit\": \"~0.7.0\",\n    \"grunt-contrib-jshint\": \"~0.11.3\",\n    \"grunt-contrib-cssmin\": \"~0.14.0\",\n    \"grunt-contrib-uglify\": \"~0.9.2\",\n    \"grunt-contrib-watch\": \"~0.6.1\",\n    \"grunt-sass\": \"~1.1.0-beta\",\n    \"grunt-contrib-connect\": \"~0.11.2\",\n    \"grunt-autoprefixer\": \"~3.0.3\",\n    \"grunt-zip\": \"~0.17.1\",\n    \"grunt\": \"~0.4.5\",\n    \"node-sass\": \"~3.3.3\"\n  },\n  \n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/highlight/highlight.js",
    "content": "// START CUSTOM REVEAL.JS INTEGRATION\n(function() {\n\tif( typeof window.addEventListener === 'function' ) {\n\t\tvar hljs_nodes = document.querySelectorAll( 'pre code' );\n\n\t\tfor( var i = 0, len = hljs_nodes.length; i < len; i++ ) {\n\t\t\tvar element = hljs_nodes[i];\n\n\t\t\t// trim whitespace if data-trim attribute is present\n\t\t\tif( element.hasAttribute( 'data-trim' ) && typeof element.innerHTML.trim === 'function' ) {\n\t\t\t\telement.innerHTML = element.innerHTML.trim();\n\t\t\t}\n\n\t\t\t// Now escape html unless prevented by author\n\t\t\tif( ! element.hasAttribute( 'data-noescape' )) {\n\t\t\t\telement.innerHTML = element.innerHTML.replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\");\n\t\t\t}\n\n\t\t\t// re-highlight when focus is lost (for edited code)\n\t\t\telement.addEventListener( 'focusout', function( event ) {\n\t\t\t\thljs.highlightBlock( event.currentTarget );\n\t\t\t}, false );\n\t\t}\n\t}\n})();\n// END CUSTOM REVEAL.JS INTEGRATION\n\n// highlight.js v8.9.1 with support for all available languages\n\n!function(e){\"undefined\"!=typeof exports?e(exports):(window.hljs=e({}),\"function\"==typeof define&&define.amd&&define(\"hljs\",[],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var n,t,r,i=e.className+\" \";if(i+=e.parentNode?e.parentNode.className:\"\",t=/\\blang(?:uage)?-([\\w-]+)\\b/i.exec(i))return w(t[1])?t[1]:\"no-highlight\";for(i=i.split(/\\s+/),n=0,r=i.length;r>n;n++)if(w(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+Array.prototype.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"==e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else\"start\"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\b\\w+\\b/,!0),i&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&i.tE&&(a.tE+=(a.e?\"|\":\"\")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push(\"self\"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?\"\":E.classPrefix,i='<span class=\"'+a,o=t?\"\":\"</span>\";return i+=e+'\">',i+n+o}function p(){if(!L.k)return n(M);var e=\"\",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(M);r;){e+=n(M.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=h(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(M)}return e+n(M.substr(t))}function d(){var e=\"string\"==typeof L.sL;if(e&&!x[L.sL])return n(M);var t=e?l(L.sL,M,!0,y[L.sL]):f(M,L.sL.length?L.sL:void 0);return L.r>0&&(B+=t.r),e&&(y[L.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){return void 0!==L.sL?d():p()}function v(e,t){var r=e.cN?h(e.cN,\"\",!0):\"\";e.rB?(k+=r,M=\"\"):e.eB?(k+=n(t)+r,M=\"\"):(k+=r,M=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(M+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(M+=t),k+=b();do L.cN&&(k+=\"</span>\"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),M=\"\",a.starts&&v(a.starts,\"\"),i.rE?0:t.length}if(c(t,L))throw new Error('Illegal lexeme \"'+t+'\" for mode \"'+(L.cN||\"<unnamed>\")+'\"');return M+=t,t.length||1}var N=w(e);if(!N)throw new Error('Unknown language: \"'+e+'\"');s(N);var R,L=i||N,y={},k=\"\";for(R=L;R!=N;R=R.parent)R.cN&&(k=h(R.cN,\"\",!0)+k);var M=\"\",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+=\"</span>\");return{r:B,value:k,language:e,top:L}}catch(O){if(-1!=O.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw O}}function f(e,t){t=t||E.languages||Object.keys(x);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(w(n)){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return E.tabReplace&&(e=e.replace(/^((<[^>]+>|\\t)+)/gm,function(e,n){return n.replace(/\\t/g,E.tabReplace)})),E.useBR&&(e=e.replace(/\\n/g,\"<br>\")),e}function h(e,n,t){var r=n?R[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n=i(e);if(!a(n)){var t;E.useBR?(t=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),t.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):t=e;var r=t.textContent,o=n?l(n,r,!0):f(r),s=u(t);if(s.length){var p=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\");p.innerHTML=o.value,o.value=c(s,u(p),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=h(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){E=o(E,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll(\"pre code\");Array.prototype.forEach.call(e,p)}}function v(){addEventListener(\"DOMContentLoaded\",b,!1),addEventListener(\"load\",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){R[e]=n})}function N(){return Object.keys(x)}function w(e){return e=(e||\"\").toLowerCase(),x[e]||x[R[e]]}var E={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},x={},R={};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=w,e.inherit=o,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:\"doctag\",b:\"(?:TODO|FIXME|NOTE|BUG|XXX):\",r:0}),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e});hljs.registerLanguage(\"cs\",function(e){var r=\"abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield\",t=e.IR+\"(<\"+e.IR+\">)?\";return{aliases:[\"csharp\"],k:r,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line region endregion pragma checksum\"},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},e.ASM,e.QSM,e.CNM,{bK:\"class interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"namespace\",e:/[{;=]/,i:/[^\\s:]/,c:[{cN:\"title\",b:\"[a-zA-Z](\\\\.?\\\\w)*\",r:0},e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage(\"tp\",function(O){var R={cN:\"number\",b:\"[1-9][0-9]*\",r:0},E={cN:\"comment\",b:\":[^\\\\]]+\"},T={cN:\"built_in\",b:\"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|    TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\\\[\",e:\"\\\\]\",c:[\"self\",R,E]},N={cN:\"built_in\",b:\"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\\\[\",e:\"\\\\]\",c:[\"self\",R,O.QSM,E]};return{k:{keyword:\"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET\",constant:\"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET\"},c:[T,N,{cN:\"keyword\",b:\"/(PROG|ATTR|MN|POS|END)\\\\b\"},{cN:\"keyword\",b:\"(CALL|RUN|POINT_LOGIC|LBL)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)\"},{cN:\"number\",b:\"\\\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\\\b\",r:0},O.C(\"//\",\"[;$]\"),O.C(\"!\",\"[;$]\"),O.C(\"--eg:\",\"$\"),O.QSM,{cN:\"string\",b:\"'\",e:\"'\"},O.CNM,{cN:\"variable\",b:\"\\\\$[A-Za-z0-9_]+\"}]}});hljs.registerLanguage(\"irpf90\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here\"};return{cI:!0,k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),e.C(\"begin_doc\",\"end_doc\",{r:10}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"groovy\",function(e){return{k:{typename:\"byte short char int long boolean float double void\",literal:\"true false null\",keyword:\"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},{cN:\"string\",b:\"'''\",e:\"'''\"},{cN:\"string\",b:\"\\\\$/\",e:\"/\\\\$\",r:10},e.ASM,{cN:\"regexp\",b:/~?\\/[^\\/\\n]+\\//,c:[e.BE]},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.BNM,{cN:\"class\",bK:\"class interface trait enum\",e:\"{\",i:\":\",c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{cN:\"string\",b:/[^\\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\\?/,e:/\\:/},{cN:\"label\",b:\"^\\\\s*[A-Za-z0-9_$]+:\",r:0}],i:/#/}});hljs.registerLanguage(\"stata\",function(e){return{aliases:[\"do\",\"ado\"],cI:!0,k:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",c:[{cN:\"label\",v:[{b:\"\\\\$\\\\{?[a-zA-Z0-9_]+\\\\}?\"},{b:\"`[a-zA-Z0-9_]+'\"}]},{cN:\"string\",v:[{b:'`\"[^\\r\\n]*?\"\\''},{b:'\"[^\\r\\n\"]*\"'}]},{cN:\"literal\",v:[{b:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\(|$)\"}]},e.C(\"^[ \t]*\\\\*.*$\",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\.]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",operator:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"shebang\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage(\"handlebars\",function(e){var a=\"each in with if else unless bindattr action collection debugger log outlet template unbound view yield\";return{aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{{\",e:\"}}\",c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a}]}]}});hljs.registerLanguage(\"elm\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],i={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"}].concat(c)},t={cN:\"container\",b:\"{\",e:\"}\",c:n.c};return{k:\"let in if then else case of where module import exposing type alias as infix infixl infixr port\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 as exposing\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"typedef\",b:\"\\\\btype\\\\b\",e:\"$\",k:\"type alias\",c:[i,n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bport\\\\b\",e:\"$\",k:\"port\",c:c},e.QSM,e.CNM,i,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"javascript\",function(e){return{aliases:[\"js\"],k:{keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},c:[{cN:\"pi\",r:10,b:/^\\s*['\"]use (strict|asm)['\"]/},e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,{cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\"}]},e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\\s*[);\\]]/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\\[|%/},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0},{bK:\"import\",e:\"[;$]\",k:\"import from as\",c:[e.ASM,e.QSM]},{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]}],i:/#/}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"tag\",b:\"</?\",e:\">\"},{cN:\"keyword\",b:/\\w+/,r:0,k:{common:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"sqbracket\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"cbracket\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"vhdl\",function(e){var t=\"\\\\d(_|\\\\d)*\",r=\"[eE][-+]?\"+t,n=t+\"(\\\\.\"+t+\")?(\"+r+\")?\",o=\"\\\\w+\",i=t+\"#\"+o+\"(\\\\.\"+o+\")?#(\"+r+\")?\",a=\"\\\\b(\"+i+\"|\"+n+\")\";return{cI:!0,k:{keyword:\"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor\",typename:\"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector\"},i:\"{\",c:[e.CBCM,e.C(\"--\",\"$\"),e.QSM,{cN:\"number\",b:a,r:0},{cN:\"literal\",b:\"'(U|X|0|1|Z|W|L|H|-)'\",c:[e.BE]},{cN:\"attribute\",b:\"'[A-Za-z](_?[A-Za-z0-9])*\",c:[e.BE]}]}});hljs.registerLanguage(\"typescript\",function(e){var r={keyword:\"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void\"};return{aliases:[\"ts\"],k:r,c:[{cN:\"pi\",b:/^\\s*['\"]use strict['\"]/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM],r:0},{cN:\"function\",b:\"function\",e:/[\\{;]/,eE:!0,k:r,c:[\"self\",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/,r:0},{cN:\"constructor\",bK:\"constructor\",e:/\\{/,eE:!0,r:10},{cN:\"module\",bK:\"module\",e:/\\{/,eE:!0},{cN:\"interface\",bK:\"interface\",e:/\\{/,eE:!0,k:\"interface extends\"},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0}]}});hljs.registerLanguage(\"x86asm\",function(s){return{cI:!0,l:\"\\\\.?\"+s.IR,k:{keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",literal:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0  xmm1  xmm2  xmm3  xmm4  xmm5  xmm6  xmm7  xmm8  xmm9 xmm10  xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0  ymm1  ymm2  ymm3  ymm4  ymm5  ymm6  ymm7  ymm8  ymm9 ymm10  ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0  zmm1  zmm2  zmm3  zmm4  zmm5  zmm6  zmm7  zmm8  zmm9 zmm10  zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l\",pseudo:\"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times\",preprocessor:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__  __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__  __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public \",built_in:\"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},c:[s.C(\";\",\"$\",{r:0}),{cN:\"number\",v:[{b:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",r:0},{b:\"\\\\$[0-9][0-9A-Fa-f]*\",r:0},{b:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{b:\"\\\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"}]},s.QSM,{cN:\"string\",v:[{b:\"'\",e:\"[^\\\\\\\\]'\"},{b:\"`\",e:\"[^\\\\\\\\]`\"},{b:\"\\\\.[A-Za-z0-9]+\"}],r:0},{cN:\"label\",v:[{b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\"},{b:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\"}],r:0},{cN:\"argument\",b:\"%[0-9]+\",r:0},{cN:\"built_in\",b:\"%!S+\",r:0}]}});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{cN:\"constant\",e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"title\",b:/^[\\w]+:\\s*$/},{cN:\"phony\",b:/^\\.PHONY:/,e:/$/,k:\".PHONY\",l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"delphi\",function(e){var r=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure\",t=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],i={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:\"string\",b:/(#\\d+)+/},o={b:e.IR+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",rB:!0,c:[e.TM]},n={cN:\"function\",bK:\"function constructor destructor procedure\",e:/[:;]/,k:\"function constructor|10 destructor|10 procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage(\"erb\",function(e){return{sL:\"xml\",c:[e.C(\"<%#\",\"%>\"),{b:\"<%[%=-]?\",e:\"[%-]?%>\",sL:\"ruby\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\\\w+\"},i={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n=\"@interface @class @protocol @implementation\";return{aliases:[\"mm\",\"objc\",\"obj-c\"],k:i,l:o,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"preprocessor\",b:\"#\",e:\"$\",c:[{cN:\"title\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+n.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:n,l:o,c:[e.UTM]},{cN:\"variable\",b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"fortran\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image\"};return{cI:!0,aliases:[\"f90\",\"f95\"],k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"swift\",function(e){var i={keyword:\"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet\",literal:\"true false nil\",built_in:\"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip\"},t={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n=e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),r={cN:\"subst\",b:/\\\\\\(/,e:\"\\\\)\",k:i,c:[]},a={cN:\"number\",b:\"\\\\b([\\\\d_]+(\\\\.[\\\\deE_]+)?|0x[a-fA-F0-9_]+(\\\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\\\b\",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[a],{k:i,c:[o,e.CLCM,n,t,a,{cN:\"func\",bK:\"func\",e:\"{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\\(/}),{cN:\"generics\",b:/</,e:/>/,i:/>/},{cN:\"params\",b:/\\(/,e:/\\)/,endsParent:!0,k:i,c:[\"self\",a,o,e.CBCM,{b:\":\"}],i:/[\"']/}],i:/\\[|%/},{cN:\"class\",bK:\"struct protocol class extension enum\",k:i,e:\"\\\\{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:\"preprocessor\",b:\"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)\"},{bK:\"import\",e:/$/,c:[e.CLCM,n]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",r={cN:\"subst\",b:/#\\{/,e:/}/,k:c},t=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,r]},{b:/\"/,e:/\"/,c:[e.BE,r]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[r,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];r.c=t;var s=e.inherit(e.TM,{b:n}),i=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(t)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:t.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+i,e:\"[-=]>\",rB:!0,c:[s,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:i,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[s]},s]},{cN:\"attribute\",b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"puppet\",function(e){var s={keyword:\"and case default else elsif false if in import enherits node or true undef unless main settings $string \",literal:\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},r=e.C(\"#\",\"$\"),a=\"([A-Za-z_]|::)(\\\\w|::)*\",i=e.inherit(e.TM,{b:a}),o={cN:\"variable\",b:\"\\\\$\"+a},t={cN:\"string\",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]};return{aliases:[\"pp\"],c:[r,o,t,{bK:\"class\",e:\"\\\\{|;\",i:/=/,c:[i,r]},{bK:\"define\",e:/\\{/,c:[{cN:\"title\",b:e.IR,endsParent:!0}]},{b:e.IR+\"\\\\s+\\\\{\",rB:!0,e:/\\S/,c:[{cN:\"name\",b:e.IR},{b:/\\{/,e:/\\}/,k:s,r:0,c:[t,r,{b:\"[a-zA-Z_]+\\\\s*=>\"},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},o]}],r:0}]}});hljs.registerLanguage(\"tex\",function(c){var e={cN:\"command\",b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]?\"},m={cN:\"command\",b:\"\\\\\\\\[^a-zA-Zа-яА-я0-9]\"},r={cN:\"special\",b:\"[{}\\\\[\\\\]\\\\&#~]\",r:0};return{c:[{b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]? *= *-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",rB:!0,c:[e,m,{cN:\"number\",b:\" *=\",e:\"-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",eB:!0}],r:10},e,m,r,{cN:\"formula\",b:\"\\\\$\\\\$\",e:\"\\\\$\\\\$\",c:[e,m,r],r:0},{cN:\"formula\",b:\"\\\\$\",e:\"\\\\$\",c:[e,m,r],r:0},c.C(\"%\",\"$\",{r:0})]}});hljs.registerLanguage(\"glsl\",function(e){return{k:{keyword:\"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly\",built_in:\"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse\",literal:\"true false\"},i:'\"',c:[e.CLCM,e.CBCM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"}]}});hljs.registerLanguage(\"1c\",function(c){var e=\"[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*\",r=\"возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт\",t=\"ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку  стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон\",i={cN:\"dquote\",b:'\"\"'},n={cN:\"string\",b:'\"',e:'\"|$',c:[i]},a={cN:\"string\",b:\"\\\\|\",e:'\"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:\"function\",b:\"(процедура|функция)\",e:\"$\",l:e,k:\"процедура функция\",c:[c.inherit(c.TM,{b:e}),{cN:\"tail\",eW:!0,c:[{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:e,k:\"знач\",c:[n,a]},{cN:\"export\",b:\"экспорт\",eW:!0,l:e,k:\"экспорт\",c:[c.CLCM]}]},c.CLCM]},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"date\",b:\"'\\\\d{2}\\\\.\\\\d{2}\\\\.(\\\\d{2}|\\\\d{4})'\"}]}});hljs.registerLanguage(\"nsis\",function(e){var t={cN:\"symbol\",b:\"\\\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)\"},n={cN:\"constant\",b:\"\\\\$+{[a-zA-Z0-9_]+}\"},i={cN:\"variable\",b:\"\\\\$+[a-zA-Z0-9_]+\",i:\"\\\\(\\\\){}\"},r={cN:\"constant\",b:\"\\\\$+\\\\([a-zA-Z0-9_]+\\\\)\"},o={cN:\"params\",b:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},l={cN:\"constant\",b:\"\\\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)\"};return{cI:!1,k:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user \"},c:[e.HCM,e.CBCM,{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[{cN:\"symbol\",b:\"\\\\$(\\\\\\\\(n|r|t)|\\\\$)\"},t,n,i,r]},e.C(\";\",\"$\",{r:0}),{cN:\"function\",bK:\"Function PageEx Section SectionGroup SubSection\",e:\"$\"},l,n,i,r,o,e.NM,{cN:\"literal\",b:e.IR+\"::\"+e.IR}]}});hljs.registerLanguage(\"axapta\",function(e){return{k:\"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod\",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:\":\",c:[{bK:\"extends implements\"},e.UTM]}]}});hljs.registerLanguage(\"php\",function(e){var c={cN:\"variable\",b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},a={cN:\"preprocessor\",b:/<\\?(php)?|\\?>/},i={cN:\"string\",c:[e.BE,a],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},t={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"},a]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:/<<<['\"]?\\w+['\"]?$/,e:/^\\w+;?$/,c:[e.BE,{cN:\"subst\",v:[{b:/\\$\\w+/},{b:/\\{\\$/,e:/\\}/}]}]},a,c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,i,t]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,t]}});hljs.registerLanguage(\"go\",function(e){var t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer\",constant:\"true false iota nil\",typename:\"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{aliases:[\"golang\"],k:t,i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\"},{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"number\",b:e.CNR+\"[dflsi]?\",r:0},e.CNM]}});hljs.registerLanguage(\"dust\",function(e){var t=\"if eq ne lt lte gt gte select default math sep\";return{aliases:[\"dst\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{\",e:\"}\",r:0,c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:t},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:t},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:t,r:0}]}]}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"chunk\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"header\",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\\-\\-\\-/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+\\+\\+/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"haskell\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],a={cN:\"pragma\",b:\"{-#\",e:\"#-}\"},i={cN:\"preprocessor\",b:\"^#\",e:\"$\"},n={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},t={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[a,i,{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TM,{b:\"[_a-z][\\\\w']*\"})].concat(c)},l={cN:\"container\",b:\"{\",e:\"}\",c:t.c};return{aliases:[\"hs\"],k:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 qualified as hiding\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"class\",b:\"^(\\\\s*)?(class|instance)\\\\b\",e:\"where\",k:\"class family instance where\",c:[n,t].concat(c)},{cN:\"typedef\",b:\"\\\\b(data|(new)?type)\\\\b\",e:\"$\",k:\"data family type newtype deriving\",c:[a,n,t,l].concat(c)},{cN:\"default\",bK:\"default\",e:\"$\",c:[n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bforeign\\\\b\",e:\"$\",k:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",c:[n,e.QSM].concat(c)},{cN:\"shebang\",b:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",e:\"$\"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"erlang-repl\",function(r){return{k:{special_functions:\"spawn spawn_link self\",reserved:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},c:[{cN:\"prompt\",b:\"^[0-9]+> \",r:10},r.C(\"%\",\"$\"),{cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},r.ASM,r.QSM,{cN:\"constant\",b:\"\\\\?(::)?([A-Z]\\\\w*(::)?)+\"},{cN:\"arrow\",b:\"->\"},{cN:\"ok\",b:\"ok\"},{cN:\"exclamation_mark\",b:\"!\"},{cN:\"function_or_atom\",b:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",r:0},{cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_']*\",r:0}]}});hljs.registerLanguage(\"haxe\",function(e){var r=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\";return{aliases:[\"hx\"],k:{keyword:\"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while\",literal:\"true false null\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end error\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:\"type\",b:\":\",e:r,r:10}]}]}});hljs.registerLanguage(\"stylus\",function(t){var e={cN:\"variable\",b:\"\\\\$\"+t.IR},o={cN:\"hexcolor\",b:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\",r:10},i=[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"],r=[\"after\",\"before\",\"first-letter\",\"first-line\",\"active\",\"first-child\",\"focus\",\"hover\",\"lang\",\"link\",\"visited\"],n=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],a=\"[\\\\.\\\\s\\\\n\\\\[\\\\:,]\",l=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"],d=[\"\\\\{\",\"\\\\}\",\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"];return{aliases:[\"styl\"],cI:!1,i:\"(\"+d.join(\"|\")+\")\",k:\"if else for in\",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"class\",b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"id\",b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\b(\"+n.join(\"|\")+\")\"+a,rB:!0,c:[{cN:\"tag\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"}]},{cN:\"pseudo\",b:\"&?:?:\\\\b(\"+r.join(\"|\")+\")\"+a},{cN:\"at_rule\",b:\"@(\"+i.join(\"|\")+\")\\\\b\"},e,t.CSSNM,t.NM,{cN:\"function\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",i:\"[\\\\n]\",rB:!0,c:[{cN:\"title\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{cN:\"params\",b:/\\(/,e:/\\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:\"attribute\",b:\"\\\\b(\"+l.reverse().join(\"|\")+\")\\\\b\"}]}});hljs.registerLanguage(\"inform7\",function(e){var r=\"\\\\[\",o=\"\\\\]\";return{aliases:[\"i7\"],cI:!0,k:{keyword:\"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule\"},c:[{cN:\"string\",b:'\"',e:'\"',r:0,c:[{cN:\"subst\",b:r,e:o}]},{cN:\"title\",b:/^(Volume|Book|Part|Chapter|Section|Table)\\b/,e:\"$\"},{b:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b/,e:\":\",c:[{b:\"\\\\b\\\\(This\",e:\"\\\\)\"}]},{cN:\"comment\",b:r,e:o,c:[\"self\"]}]}});hljs.registerLanguage(\"ini\",function(e){var c={cN:\"string\",c:[e.BE],v:[{b:\"'''\",e:\"'''\",r:10},{b:'\"\"\"',e:'\"\"\"',r:10},{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]};return{aliases:[\"toml\"],cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),e.HCM,{cN:\"title\",b:/^\\s*\\[+/,e:/\\]+/},{cN:\"setting\",b:/^[a-z0-9\\[\\]_-]+\\s*=\\s*/,e:\"$\",c:[{cN:\"value\",eW:!0,k:\"on off true false yes no\",c:[{cN:\"variable\",v:[{b:/\\$[\\w\\d\"][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},c,{cN:\"number\",b:/([\\+\\-]+)?[\\d]+_[\\d_]+/},e.NM],r:0}]}]}});hljs.registerLanguage(\"sqf\",function(e){var t=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"or\",\"plus\",\"^\",\":\",\">>\",\"abs\",\"accTime\",\"acos\",\"action\",\"actionKeys\",\"actionKeysImages\",\"actionKeysNames\",\"actionKeysNamesArray\",\"actionName\",\"activateAddons\",\"activatedAddons\",\"activateKey\",\"addAction\",\"addBackpack\",\"addBackpackCargo\",\"addBackpackCargoGlobal\",\"addBackpackGlobal\",\"addCamShake\",\"addCuratorAddons\",\"addCuratorCameraArea\",\"addCuratorEditableObjects\",\"addCuratorEditingArea\",\"addCuratorPoints\",\"addEditorObject\",\"addEventHandler\",\"addGoggles\",\"addGroupIcon\",\"addHandgunItem\",\"addHeadgear\",\"addItem\",\"addItemCargo\",\"addItemCargoGlobal\",\"addItemPool\",\"addItemToBackpack\",\"addItemToUniform\",\"addItemToVest\",\"addLiveStats\",\"addMagazine\",\"addMagazine array\",\"addMagazineAmmoCargo\",\"addMagazineCargo\",\"addMagazineCargoGlobal\",\"addMagazineGlobal\",\"addMagazinePool\",\"addMagazines\",\"addMagazineTurret\",\"addMenu\",\"addMenuItem\",\"addMissionEventHandler\",\"addMPEventHandler\",\"addMusicEventHandler\",\"addPrimaryWeaponItem\",\"addPublicVariableEventHandler\",\"addRating\",\"addResources\",\"addScore\",\"addScoreSide\",\"addSecondaryWeaponItem\",\"addSwitchableUnit\",\"addTeamMember\",\"addToRemainsCollector\",\"addUniform\",\"addVehicle\",\"addVest\",\"addWaypoint\",\"addWeapon\",\"addWeaponCargo\",\"addWeaponCargoGlobal\",\"addWeaponGlobal\",\"addWeaponPool\",\"addWeaponTurret\",\"agent\",\"agents\",\"AGLToASL\",\"aimedAtTarget\",\"aimPos\",\"airDensityRTD\",\"airportSide\",\"AISFinishHeal\",\"alive\",\"allControls\",\"allCurators\",\"allDead\",\"allDeadMen\",\"allDisplays\",\"allGroups\",\"allMapMarkers\",\"allMines\",\"allMissionObjects\",\"allow3DMode\",\"allowCrewInImmobile\",\"allowCuratorLogicIgnoreAreas\",\"allowDamage\",\"allowDammage\",\"allowFileOperations\",\"allowFleeing\",\"allowGetIn\",\"allPlayers\",\"allSites\",\"allTurrets\",\"allUnits\",\"allUnitsUAV\",\"allVariables\",\"ammo\",\"and\",\"animate\",\"animateDoor\",\"animationPhase\",\"animationState\",\"append\",\"armoryPoints\",\"arrayIntersect\",\"asin\",\"ASLToAGL\",\"ASLToATL\",\"assert\",\"assignAsCargo\",\"assignAsCargoIndex\",\"assignAsCommander\",\"assignAsDriver\",\"assignAsGunner\",\"assignAsTurret\",\"assignCurator\",\"assignedCargo\",\"assignedCommander\",\"assignedDriver\",\"assignedGunner\",\"assignedItems\",\"assignedTarget\",\"assignedTeam\",\"assignedVehicle\",\"assignedVehicleRole\",\"assignItem\",\"assignTeam\",\"assignToAirport\",\"atan\",\"atan2\",\"atg\",\"ATLToASL\",\"attachedObject\",\"attachedObjects\",\"attachedTo\",\"attachObject\",\"attachTo\",\"attackEnabled\",\"backpack\",\"backpackCargo\",\"backpackContainer\",\"backpackItems\",\"backpackMagazines\",\"backpackSpaceFor\",\"behaviour\",\"benchmark\",\"binocular\",\"blufor\",\"boundingBox\",\"boundingBoxReal\",\"boundingCenter\",\"breakOut\",\"breakTo\",\"briefingName\",\"buildingExit\",\"buildingPos\",\"buttonAction\",\"buttonSetAction\",\"cadetMode\",\"call\",\"callExtension\",\"camCommand\",\"camCommit\",\"camCommitPrepared\",\"camCommitted\",\"camConstuctionSetParams\",\"camCreate\",\"camDestroy\",\"cameraEffect\",\"cameraEffectEnableHUD\",\"cameraInterest\",\"cameraOn\",\"cameraView\",\"campaignConfigFile\",\"camPreload\",\"camPreloaded\",\"camPrepareBank\",\"camPrepareDir\",\"camPrepareDive\",\"camPrepareFocus\",\"camPrepareFov\",\"camPrepareFovRange\",\"camPreparePos\",\"camPrepareRelPos\",\"camPrepareTarget\",\"camSetBank\",\"camSetDir\",\"camSetDive\",\"camSetFocus\",\"camSetFov\",\"camSetFovRange\",\"camSetPos\",\"camSetRelPos\",\"camSetTarget\",\"camTarget\",\"camUseNVG\",\"canAdd\",\"canAddItemToBackpack\",\"canAddItemToUniform\",\"canAddItemToVest\",\"cancelSimpleTaskDestination\",\"canFire\",\"canMove\",\"canSlingLoad\",\"canStand\",\"canUnloadInCombat\",\"captive\",\"captiveNum\",\"case\",\"catch\",\"cbChecked\",\"cbSetChecked\",\"ceil\",\"cheatsEnabled\",\"checkAIFeature\",\"civilian\",\"className\",\"clearAllItemsFromBackpack\",\"clearBackpackCargo\",\"clearBackpackCargoGlobal\",\"clearGroupIcons\",\"clearItemCargo\",\"clearItemCargoGlobal\",\"clearItemPool\",\"clearMagazineCargo\",\"clearMagazineCargoGlobal\",\"clearMagazinePool\",\"clearOverlay\",\"clearRadio\",\"clearWeaponCargo\",\"clearWeaponCargoGlobal\",\"clearWeaponPool\",\"closeDialog\",\"closeDisplay\",\"closeOverlay\",\"collapseObjectTree\",\"combatMode\",\"commandArtilleryFire\",\"commandChat\",\"commander\",\"commandFire\",\"commandFollow\",\"commandFSM\",\"commandGetOut\",\"commandingMenu\",\"commandMove\",\"commandRadio\",\"commandStop\",\"commandTarget\",\"commandWatch\",\"comment\",\"commitOverlay\",\"compile\",\"compileFinal\",\"completedFSM\",\"composeText\",\"configClasses\",\"configFile\",\"configHierarchy\",\"configName\",\"configProperties\",\"configSourceMod\",\"configSourceModList\",\"connectTerminalToUAV\",\"controlNull\",\"controlsGroupCtrl\",\"copyFromClipboard\",\"copyToClipboard\",\"copyWaypoints\",\"cos\",\"count\",\"countEnemy\",\"countFriendly\",\"countSide\",\"countType\",\"countUnknown\",\"createAgent\",\"createCenter\",\"createDialog\",\"createDiaryLink\",\"createDiaryRecord\",\"createDiarySubject\",\"createDisplay\",\"createGearDialog\",\"createGroup\",\"createGuardedPoint\",\"createLocation\",\"createMarker\",\"createMarkerLocal\",\"createMenu\",\"createMine\",\"createMissionDisplay\",\"createSimpleTask\",\"createSite\",\"createSoundSource\",\"createTask\",\"createTeam\",\"createTrigger\",\"createUnit\",\"createUnit array\",\"createVehicle\",\"createVehicle array\",\"createVehicleCrew\",\"createVehicleLocal\",\"crew\",\"ctrlActivate\",\"ctrlAddEventHandler\",\"ctrlAutoScrollDelay\",\"ctrlAutoScrollRewind\",\"ctrlAutoScrollSpeed\",\"ctrlChecked\",\"ctrlClassName\",\"ctrlCommit\",\"ctrlCommitted\",\"ctrlCreate\",\"ctrlDelete\",\"ctrlEnable\",\"ctrlEnabled\",\"ctrlFade\",\"ctrlHTMLLoaded\",\"ctrlIDC\",\"ctrlIDD\",\"ctrlMapAnimAdd\",\"ctrlMapAnimClear\",\"ctrlMapAnimCommit\",\"ctrlMapAnimDone\",\"ctrlMapCursor\",\"ctrlMapMouseOver\",\"ctrlMapScale\",\"ctrlMapScreenToWorld\",\"ctrlMapWorldToScreen\",\"ctrlModel\",\"ctrlModelDirAndUp\",\"ctrlModelScale\",\"ctrlParent\",\"ctrlPosition\",\"ctrlRemoveAllEventHandlers\",\"ctrlRemoveEventHandler\",\"ctrlScale\",\"ctrlSetActiveColor\",\"ctrlSetAutoScrollDelay\",\"ctrlSetAutoScrollRewind\",\"ctrlSetAutoScrollSpeed\",\"ctrlSetBackgroundColor\",\"ctrlSetChecked\",\"ctrlSetEventHandler\",\"ctrlSetFade\",\"ctrlSetFocus\",\"ctrlSetFont\",\"ctrlSetFontH1\",\"ctrlSetFontH1B\",\"ctrlSetFontH2\",\"ctrlSetFontH2B\",\"ctrlSetFontH3\",\"ctrlSetFontH3B\",\"ctrlSetFontH4\",\"ctrlSetFontH4B\",\"ctrlSetFontH5\",\"ctrlSetFontH5B\",\"ctrlSetFontH6\",\"ctrlSetFontH6B\",\"ctrlSetFontHeight\",\"ctrlSetFontHeightH1\",\"ctrlSetFontHeightH2\",\"ctrlSetFontHeightH3\",\"ctrlSetFontHeightH4\",\"ctrlSetFontHeightH5\",\"ctrlSetFontHeightH6\",\"ctrlSetFontP\",\"ctrlSetFontPB\",\"ctrlSetForegroundColor\",\"ctrlSetModel\",\"ctrlSetModelDirAndUp\",\"ctrlSetModelScale\",\"ctrlSetPosition\",\"ctrlSetScale\",\"ctrlSetStructuredText\",\"ctrlSetText\",\"ctrlSetTextColor\",\"ctrlSetTooltip\",\"ctrlSetTooltipColorBox\",\"ctrlSetTooltipColorShade\",\"ctrlSetTooltipColorText\",\"ctrlShow\",\"ctrlShown\",\"ctrlText\",\"ctrlTextHeight\",\"ctrlType\",\"ctrlVisible\",\"curatorAddons\",\"curatorCamera\",\"curatorCameraArea\",\"curatorCameraAreaCeiling\",\"curatorCoef\",\"curatorEditableObjects\",\"curatorEditingArea\",\"curatorEditingAreaType\",\"curatorMouseOver\",\"curatorPoints\",\"curatorRegisteredObjects\",\"curatorSelected\",\"curatorWaypointCost\",\"currentChannel\",\"currentCommand\",\"currentMagazine\",\"currentMagazineDetail\",\"currentMagazineDetailTurret\",\"currentMagazineTurret\",\"currentMuzzle\",\"currentNamespace\",\"currentTask\",\"currentTasks\",\"currentThrowable\",\"currentVisionMode\",\"currentWaypoint\",\"currentWeapon\",\"currentWeaponMode\",\"currentWeaponTurret\",\"currentZeroing\",\"cursorTarget\",\"customChat\",\"customRadio\",\"cutFadeOut\",\"cutObj\",\"cutRsc\",\"cutText\",\"damage\",\"date\",\"dateToNumber\",\"daytime\",\"deActivateKey\",\"debriefingText\",\"debugFSM\",\"debugLog\",\"default\",\"deg\",\"deleteAt\",\"deleteCenter\",\"deleteCollection\",\"deleteEditorObject\",\"deleteGroup\",\"deleteIdentity\",\"deleteLocation\",\"deleteMarker\",\"deleteMarkerLocal\",\"deleteRange\",\"deleteResources\",\"deleteSite\",\"deleteStatus\",\"deleteTeam\",\"deleteVehicle\",\"deleteVehicleCrew\",\"deleteWaypoint\",\"detach\",\"detectedMines\",\"diag activeMissionFSMs\",\"diag activeSQFScripts\",\"diag activeSQSScripts\",\"diag captureFrame\",\"diag captureSlowFrame\",\"diag fps\",\"diag fpsMin\",\"diag frameNo\",\"diag log\",\"diag logSlowFrame\",\"diag tickTime\",\"dialog\",\"diarySubjectExists\",\"didJIP\",\"didJIPOwner\",\"difficulty\",\"difficultyEnabled\",\"difficultyEnabledRTD\",\"direction\",\"directSay\",\"disableAI\",\"disableCollisionWith\",\"disableConversation\",\"disableDebriefingStats\",\"disableSerialization\",\"disableTIEquipment\",\"disableUAVConnectability\",\"disableUserInput\",\"displayAddEventHandler\",\"displayCtrl\",\"displayNull\",\"displayRemoveAllEventHandlers\",\"displayRemoveEventHandler\",\"displaySetEventHandler\",\"dissolveTeam\",\"distance\",\"distance2D\",\"distanceSqr\",\"distributionRegion\",\"do\",\"doArtilleryFire\",\"doFire\",\"doFollow\",\"doFSM\",\"doGetOut\",\"doMove\",\"doorPhase\",\"doStop\",\"doTarget\",\"doWatch\",\"drawArrow\",\"drawEllipse\",\"drawIcon\",\"drawIcon3D\",\"drawLine\",\"drawLine3D\",\"drawLink\",\"drawLocation\",\"drawRectangle\",\"driver\",\"drop\",\"east\",\"echo\",\"editObject\",\"editorSetEventHandler\",\"effectiveCommander\",\"else\",\"emptyPositions\",\"enableAI\",\"enableAIFeature\",\"enableAttack\",\"enableCamShake\",\"enableCaustics\",\"enableCollisionWith\",\"enableCopilot\",\"enableDebriefingStats\",\"enableDiagLegend\",\"enableEndDialog\",\"enableEngineArtillery\",\"enableEnvironment\",\"enableFatigue\",\"enableGunLights\",\"enableIRLasers\",\"enableMimics\",\"enablePersonTurret\",\"enableRadio\",\"enableReload\",\"enableRopeAttach\",\"enableSatNormalOnDetail\",\"enableSaving\",\"enableSentences\",\"enableSimulation\",\"enableSimulationGlobal\",\"enableTeamSwitch\",\"enableUAVConnectability\",\"enableUAVWaypoints\",\"endLoadingScreen\",\"endMission\",\"engineOn\",\"enginesIsOnRTD\",\"enginesRpmRTD\",\"enginesTorqueRTD\",\"entities\",\"estimatedEndServerTime\",\"estimatedTimeLeft\",\"evalObjectArgument\",\"everyBackpack\",\"everyContainer\",\"exec\",\"execEditorScript\",\"execFSM\",\"execVM\",\"exit\",\"exitWith\",\"exp\",\"expectedDestination\",\"eyeDirection\",\"eyePos\",\"face\",\"faction\",\"fadeMusic\",\"fadeRadio\",\"fadeSound\",\"fadeSpeech\",\"failMission\",\"false\",\"fillWeaponsFromPool\",\"find\",\"findCover\",\"findDisplay\",\"findEditorObject\",\"findEmptyPosition\",\"findEmptyPositionReady\",\"findNearestEnemy\",\"finishMissionInit\",\"finite\",\"fire\",\"fireAtTarget\",\"firstBackpack\",\"flag\",\"flagOwner\",\"fleeing\",\"floor\",\"flyInHeight\",\"fog\",\"fogForecast\",\"fogParams\",\"for\",\"forceAddUniform\",\"forceEnd\",\"forceMap\",\"forceRespawn\",\"forceSpeed\",\"forceWalk\",\"forceWeaponFire\",\"forceWeatherChange\",\"forEach\",\"forEachMember\",\"forEachMemberAgent\",\"forEachMemberTeam\",\"format\",\"formation\",\"formationDirection\",\"formationLeader\",\"formationMembers\",\"formationPosition\",\"formationTask\",\"formatText\",\"formLeader\",\"freeLook\",\"from\",\"fromEditor\",\"fuel\",\"fullCrew\",\"gearSlotAmmoCount\",\"gearSlotData\",\"getAllHitPointsDamage\",\"getAmmoCargo\",\"getArray\",\"getArtilleryAmmo\",\"getArtilleryComputerSettings\",\"getArtilleryETA\",\"getAssignedCuratorLogic\",\"getAssignedCuratorUnit\",\"getBackpackCargo\",\"getBleedingRemaining\",\"getBurningValue\",\"getCargoIndex\",\"getCenterOfMass\",\"getClientState\",\"getConnectedUAV\",\"getDammage\",\"getDescription\",\"getDir\",\"getDirVisual\",\"getDLCs\",\"getEditorCamera\",\"getEditorMode\",\"getEditorObjectScope\",\"getElevationOffset\",\"getFatigue\",\"getFriend\",\"getFSMVariable\",\"getFuelCargo\",\"getGroupIcon\",\"getGroupIconParams\",\"getGroupIcons\",\"getHideFrom\",\"getHit\",\"getHitIndex\",\"getHitPointDamage\",\"getItemCargo\",\"getMagazineCargo\",\"getMarkerColor\",\"getMarkerPos\",\"getMarkerSize\",\"getMarkerType\",\"getMass\",\"getModelInfo\",\"getNumber\",\"getObjectArgument\",\"getObjectChildren\",\"getObjectDLC\",\"getObjectMaterials\",\"getObjectProxy\",\"getObjectTextures\",\"getObjectType\",\"getObjectViewDistance\",\"getOxygenRemaining\",\"getPersonUsedDLCs\",\"getPlayerChannel\",\"getPlayerUID\",\"getPos\",\"getPosASL\",\"getPosASLVisual\",\"getPosASLW\",\"getPosATL\",\"getPosATLVisual\",\"getPosVisual\",\"getPosWorld\",\"getRepairCargo\",\"getResolution\",\"getShadowDistance\",\"getSlingLoad\",\"getSpeed\",\"getSuppression\",\"getTerrainHeightASL\",\"getText\",\"getVariable\",\"getWeaponCargo\",\"getWPPos\",\"glanceAt\",\"globalChat\",\"globalRadio\",\"goggles\",\"goto\",\"group\",\"groupChat\",\"groupFromNetId\",\"groupIconSelectable\",\"groupIconsVisible\",\"groupId\",\"groupOwner\",\"groupRadio\",\"groupSelectedUnits\",\"groupSelectUnit\",\"grpNull\",\"gunner\",\"gusts\",\"halt\",\"handgunItems\",\"handgunMagazine\",\"handgunWeapon\",\"handsHit\",\"hasInterface\",\"hasWeapon\",\"hcAllGroups\",\"hcGroupParams\",\"hcLeader\",\"hcRemoveAllGroups\",\"hcRemoveGroup\",\"hcSelected\",\"hcSelectGroup\",\"hcSetGroup\",\"hcShowBar\",\"hcShownBar\",\"headgear\",\"hideBody\",\"hideObject\",\"hideObjectGlobal\",\"hint\",\"hintC\",\"hintCadet\",\"hintSilent\",\"hmd\",\"hostMission\",\"htmlLoad\",\"HUDMovementLevels\",\"humidity\",\"if\",\"image\",\"importAllGroups\",\"importance\",\"in\",\"incapacitatedState\",\"independent\",\"inflame\",\"inflamed\",\"inGameUISetEventHandler\",\"inheritsFrom\",\"initAmbientLife\",\"inputAction\",\"inRangeOfArtillery\",\"insertEditorObject\",\"intersect\",\"isAbleToBreathe\",\"isAgent\",\"isArray\",\"isAutoHoverOn\",\"isAutonomous\",\"isAutotest\",\"isBleeding\",\"isBurning\",\"isClass\",\"isCollisionLightOn\",\"isCopilotEnabled\",\"isDedicated\",\"isDLCAvailable\",\"isEngineOn\",\"isEqualTo\",\"isFlashlightOn\",\"isFlatEmpty\",\"isForcedWalk\",\"isFormationLeader\",\"isHidden\",\"isInRemainsCollector\",\"isInstructorFigureEnabled\",\"isIRLaserOn\",\"isKeyActive\",\"isKindOf\",\"isLightOn\",\"isLocalized\",\"isManualFire\",\"isMarkedForCollection\",\"isMultiplayer\",\"isNil\",\"isNull\",\"isNumber\",\"isObjectHidden\",\"isObjectRTD\",\"isOnRoad\",\"isPipEnabled\",\"isPlayer\",\"isRealTime\",\"isServer\",\"isShowing3DIcons\",\"isSteamMission\",\"isStreamFriendlyUIEnabled\",\"isText\",\"isTouchingGround\",\"isTurnedOut\",\"isTutHintsEnabled\",\"isUAVConnectable\",\"isUAVConnected\",\"isUniformAllowed\",\"isWalking\",\"isWeaponDeployed\",\"isWeaponRested\",\"itemCargo\",\"items\",\"itemsWithMagazines\",\"join\",\"joinAs\",\"joinAsSilent\",\"joinSilent\",\"joinString\",\"kbAddDatabase\",\"kbAddDatabaseTargets\",\"kbAddTopic\",\"kbHasTopic\",\"kbReact\",\"kbRemoveTopic\",\"kbTell\",\"kbWasSaid\",\"keyImage\",\"keyName\",\"knowsAbout\",\"land\",\"landAt\",\"landResult\",\"language\",\"laserTarget\",\"lbAdd\",\"lbClear\",\"lbColor\",\"lbCurSel\",\"lbData\",\"lbDelete\",\"lbIsSelected\",\"lbPicture\",\"lbSelection\",\"lbSetColor\",\"lbSetCurSel\",\"lbSetData\",\"lbSetPicture\",\"lbSetPictureColor\",\"lbSetPictureColorDisabled\",\"lbSetPictureColorSelected\",\"lbSetSelectColor\",\"lbSetSelectColorRight\",\"lbSetSelected\",\"lbSetTooltip\",\"lbSetValue\",\"lbSize\",\"lbSort\",\"lbSortByValue\",\"lbText\",\"lbValue\",\"leader\",\"leaderboardDeInit\",\"leaderboardGetRows\",\"leaderboardInit\",\"leaveVehicle\",\"libraryCredits\",\"libraryDisclaimers\",\"lifeState\",\"lightAttachObject\",\"lightDetachObject\",\"lightIsOn\",\"lightnings\",\"limitSpeed\",\"linearConversion\",\"lineBreak\",\"lineIntersects\",\"lineIntersectsObjs\",\"lineIntersectsSurfaces\",\"lineIntersectsWith\",\"linkItem\",\"list\",\"listObjects\",\"ln\",\"lnbAddArray\",\"lnbAddColumn\",\"lnbAddRow\",\"lnbClear\",\"lnbColor\",\"lnbCurSelRow\",\"lnbData\",\"lnbDeleteColumn\",\"lnbDeleteRow\",\"lnbGetColumnsPosition\",\"lnbPicture\",\"lnbSetColor\",\"lnbSetColumnsPos\",\"lnbSetCurSelRow\",\"lnbSetData\",\"lnbSetPicture\",\"lnbSetText\",\"lnbSetValue\",\"lnbSize\",\"lnbText\",\"lnbValue\",\"load\",\"loadAbs\",\"loadBackpack\",\"loadFile\",\"loadGame\",\"loadIdentity\",\"loadMagazine\",\"loadOverlay\",\"loadStatus\",\"loadUniform\",\"loadVest\",\"local\",\"localize\",\"locationNull\",\"locationPosition\",\"lock\",\"lockCameraTo\",\"lockCargo\",\"lockDriver\",\"locked\",\"lockedCargo\",\"lockedDriver\",\"lockedTurret\",\"lockTurret\",\"lockWP\",\"log\",\"logEntities\",\"lookAt\",\"lookAtPos\",\"magazineCargo\",\"magazines\",\"magazinesAllTurrets\",\"magazinesAmmo\",\"magazinesAmmoCargo\",\"magazinesAmmoFull\",\"magazinesDetail\",\"magazinesDetailBackpack\",\"magazinesDetailUniform\",\"magazinesDetailVest\",\"magazinesTurret\",\"magazineTurretAmmo\",\"mapAnimAdd\",\"mapAnimClear\",\"mapAnimCommit\",\"mapAnimDone\",\"mapCenterOnCamera\",\"mapGridPosition\",\"markAsFinishedOnSteam\",\"markerAlpha\",\"markerBrush\",\"markerColor\",\"markerDir\",\"markerPos\",\"markerShape\",\"markerSize\",\"markerText\",\"markerType\",\"max\",\"members\",\"min\",\"mineActive\",\"mineDetectedBy\",\"missionConfigFile\",\"missionName\",\"missionNamespace\",\"missionStart\",\"mod\",\"modelToWorld\",\"modelToWorldVisual\",\"moonIntensity\",\"morale\",\"move\",\"moveInAny\",\"moveInCargo\",\"moveInCommander\",\"moveInDriver\",\"moveInGunner\",\"moveInTurret\",\"moveObjectToEnd\",\"moveOut\",\"moveTime\",\"moveTo\",\"moveToCompleted\",\"moveToFailed\",\"musicVolume\",\"name\",\"name location\",\"nameSound\",\"nearEntities\",\"nearestBuilding\",\"nearestLocation\",\"nearestLocations\",\"nearestLocationWithDubbing\",\"nearestObject\",\"nearestObjects\",\"nearObjects\",\"nearObjectsReady\",\"nearRoads\",\"nearSupplies\",\"nearTargets\",\"needReload\",\"netId\",\"netObjNull\",\"newOverlay\",\"nextMenuItemIndex\",\"nextWeatherChange\",\"nil\",\"nMenuItems\",\"not\",\"numberToDate\",\"objectCurators\",\"objectFromNetId\",\"objectParent\",\"objNull\",\"objStatus\",\"onBriefingGroup\",\"onBriefingNotes\",\"onBriefingPlan\",\"onBriefingTeamSwitch\",\"onCommandModeChanged\",\"onDoubleClick\",\"onEachFrame\",\"onGroupIconClick\",\"onGroupIconOverEnter\",\"onGroupIconOverLeave\",\"onHCGroupSelectionChanged\",\"onMapSingleClick\",\"onPlayerConnected\",\"onPlayerDisconnected\",\"onPreloadFinished\",\"onPreloadStarted\",\"onShowNewObject\",\"onTeamSwitch\",\"openCuratorInterface\",\"openMap\",\"openYoutubeVideo\",\"opfor\",\"or\",\"orderGetIn\",\"overcast\",\"overcastForecast\",\"owner\",\"param\",\"params\",\"parseNumber\",\"parseText\",\"parsingNamespace\",\"particlesQuality\",\"pi\",\"pickWeaponPool\",\"pitch\",\"playableSlotsNumber\",\"playableUnits\",\"playAction\",\"playActionNow\",\"player\",\"playerRespawnTime\",\"playerSide\",\"playersNumber\",\"playGesture\",\"playMission\",\"playMove\",\"playMoveNow\",\"playMusic\",\"playScriptedMission\",\"playSound\",\"playSound3D\",\"position\",\"positionCameraToWorld\",\"posScreenToWorld\",\"posWorldToScreen\",\"ppEffectAdjust\",\"ppEffectCommit\",\"ppEffectCommitted\",\"ppEffectCreate\",\"ppEffectDestroy\",\"ppEffectEnable\",\"ppEffectForceInNVG\",\"precision\",\"preloadCamera\",\"preloadObject\",\"preloadSound\",\"preloadTitleObj\",\"preloadTitleRsc\",\"preprocessFile\",\"preprocessFileLineNumbers\",\"primaryWeapon\",\"primaryWeaponItems\",\"primaryWeaponMagazine\",\"priority\",\"private\",\"processDiaryLink\",\"productVersion\",\"profileName\",\"profileNamespace\",\"profileNameSteam\",\"progressLoadingScreen\",\"progressPosition\",\"progressSetPosition\",\"publicVariable\",\"publicVariableClient\",\"publicVariableServer\",\"pushBack\",\"putWeaponPool\",\"queryItemsPool\",\"queryMagazinePool\",\"queryWeaponPool\",\"rad\",\"radioChannelAdd\",\"radioChannelCreate\",\"radioChannelRemove\",\"radioChannelSetCallSign\",\"radioChannelSetLabel\",\"radioVolume\",\"rain\",\"rainbow\",\"random\",\"rank\",\"rankId\",\"rating\",\"rectangular\",\"registeredTasks\",\"registerTask\",\"reload\",\"reloadEnabled\",\"remoteControl\",\"remoteExec\",\"remoteExecCall\",\"removeAction\",\"removeAllActions\",\"removeAllAssignedItems\",\"removeAllContainers\",\"removeAllCuratorAddons\",\"removeAllCuratorCameraAreas\",\"removeAllCuratorEditingAreas\",\"removeAllEventHandlers\",\"removeAllHandgunItems\",\"removeAllItems\",\"removeAllItemsWithMagazines\",\"removeAllMissionEventHandlers\",\"removeAllMPEventHandlers\",\"removeAllMusicEventHandlers\",\"removeAllPrimaryWeaponItems\",\"removeAllWeapons\",\"removeBackpack\",\"removeBackpackGlobal\",\"removeCuratorAddons\",\"removeCuratorCameraArea\",\"removeCuratorEditableObjects\",\"removeCuratorEditingArea\",\"removeDrawIcon\",\"removeDrawLinks\",\"removeEventHandler\",\"removeFromRemainsCollector\",\"removeGoggles\",\"removeGroupIcon\",\"removeHandgunItem\",\"removeHeadgear\",\"removeItem\",\"removeItemFromBackpack\",\"removeItemFromUniform\",\"removeItemFromVest\",\"removeItems\",\"removeMagazine\",\"removeMagazineGlobal\",\"removeMagazines\",\"removeMagazinesTurret\",\"removeMagazineTurret\",\"removeMenuItem\",\"removeMissionEventHandler\",\"removeMPEventHandler\",\"removeMusicEventHandler\",\"removePrimaryWeaponItem\",\"removeSecondaryWeaponItem\",\"removeSimpleTask\",\"removeSwitchableUnit\",\"removeTeamMember\",\"removeUniform\",\"removeVest\",\"removeWeapon\",\"removeWeaponGlobal\",\"removeWeaponTurret\",\"requiredVersion\",\"resetCamShake\",\"resetSubgroupDirection\",\"resistance\",\"resize\",\"resources\",\"respawnVehicle\",\"restartEditorCamera\",\"reveal\",\"revealMine\",\"reverse\",\"reversedMouseY\",\"roadsConnectedTo\",\"roleDescription\",\"ropeAttachedObjects\",\"ropeAttachedTo\",\"ropeAttachEnabled\",\"ropeAttachTo\",\"ropeCreate\",\"ropeCut\",\"ropeEndPosition\",\"ropeLength\",\"ropes\",\"ropeUnwind\",\"ropeUnwound\",\"rotorsForcesRTD\",\"rotorsRpmRTD\",\"round\",\"runInitScript\",\"safeZoneH\",\"safeZoneW\",\"safeZoneWAbs\",\"safeZoneX\",\"safeZoneXAbs\",\"safeZoneY\",\"saveGame\",\"saveIdentity\",\"saveJoysticks\",\"saveOverlay\",\"saveProfileNamespace\",\"saveStatus\",\"saveVar\",\"savingEnabled\",\"say\",\"say2D\",\"say3D\",\"scopeName\",\"score\",\"scoreSide\",\"screenToWorld\",\"scriptDone\",\"scriptName\",\"scriptNull\",\"scudState\",\"secondaryWeapon\",\"secondaryWeaponItems\",\"secondaryWeaponMagazine\",\"select\",\"selectBestPlaces\",\"selectDiarySubject\",\"selectedEditorObjects\",\"selectEditorObject\",\"selectionPosition\",\"selectLeader\",\"selectNoPlayer\",\"selectPlayer\",\"selectWeapon\",\"selectWeaponTurret\",\"sendAUMessage\",\"sendSimpleCommand\",\"sendTask\",\"sendTaskResult\",\"sendUDPMessage\",\"serverCommand\",\"serverCommandAvailable\",\"serverCommandExecutable\",\"serverName\",\"serverTime\",\"set\",\"setAccTime\",\"setAirportSide\",\"setAmmo\",\"setAmmoCargo\",\"setAperture\",\"setApertureNew\",\"setArmoryPoints\",\"setAttributes\",\"setAutonomous\",\"setBehaviour\",\"setBleedingRemaining\",\"setCameraInterest\",\"setCamShakeDefParams\",\"setCamShakeParams\",\"setCamUseTi\",\"setCaptive\",\"setCenterOfMass\",\"setCollisionLight\",\"setCombatMode\",\"setCompassOscillation\",\"setCuratorCameraAreaCeiling\",\"setCuratorCoef\",\"setCuratorEditingAreaType\",\"setCuratorWaypointCost\",\"setCurrentChannel\",\"setCurrentTask\",\"setCurrentWaypoint\",\"setDamage\",\"setDammage\",\"setDate\",\"setDebriefingText\",\"setDefaultCamera\",\"setDestination\",\"setDetailMapBlendPars\",\"setDir\",\"setDirection\",\"setDrawIcon\",\"setDropInterval\",\"setEditorMode\",\"setEditorObjectScope\",\"setEffectCondition\",\"setFace\",\"setFaceAnimation\",\"setFatigue\",\"setFlagOwner\",\"setFlagSide\",\"setFlagTexture\",\"setFog\",\"setFog array\",\"setFormation\",\"setFormationTask\",\"setFormDir\",\"setFriend\",\"setFromEditor\",\"setFSMVariable\",\"setFuel\",\"setFuelCargo\",\"setGroupIcon\",\"setGroupIconParams\",\"setGroupIconsSelectable\",\"setGroupIconsVisible\",\"setGroupId\",\"setGroupIdGlobal\",\"setGroupOwner\",\"setGusts\",\"setHideBehind\",\"setHit\",\"setHitIndex\",\"setHitPointDamage\",\"setHorizonParallaxCoef\",\"setHUDMovementLevels\",\"setIdentity\",\"setImportance\",\"setLeader\",\"setLightAmbient\",\"setLightAttenuation\",\"setLightBrightness\",\"setLightColor\",\"setLightDayLight\",\"setLightFlareMaxDistance\",\"setLightFlareSize\",\"setLightIntensity\",\"setLightnings\",\"setLightUseFlare\",\"setLocalWindParams\",\"setMagazineTurretAmmo\",\"setMarkerAlpha\",\"setMarkerAlphaLocal\",\"setMarkerBrush\",\"setMarkerBrushLocal\",\"setMarkerColor\",\"setMarkerColorLocal\",\"setMarkerDir\",\"setMarkerDirLocal\",\"setMarkerPos\",\"setMarkerPosLocal\",\"setMarkerShape\",\"setMarkerShapeLocal\",\"setMarkerSize\",\"setMarkerSizeLocal\",\"setMarkerText\",\"setMarkerTextLocal\",\"setMarkerType\",\"setMarkerTypeLocal\",\"setMass\",\"setMimic\",\"setMousePosition\",\"setMusicEffect\",\"setMusicEventHandler\",\"setName\",\"setNameSound\",\"setObjectArguments\",\"setObjectMaterial\",\"setObjectProxy\",\"setObjectTexture\",\"setObjectTextureGlobal\",\"setObjectViewDistance\",\"setOvercast\",\"setOwner\",\"setOxygenRemaining\",\"setParticleCircle\",\"setParticleClass\",\"setParticleFire\",\"setParticleParams\",\"setParticleRandom\",\"setPilotLight\",\"setPiPEffect\",\"setPitch\",\"setPlayable\",\"setPlayerRespawnTime\",\"setPos\",\"setPosASL\",\"setPosASL2\",\"setPosASLW\",\"setPosATL\",\"setPosition\",\"setPosWorld\",\"setRadioMsg\",\"setRain\",\"setRainbow\",\"setRandomLip\",\"setRank\",\"setRectangular\",\"setRepairCargo\",\"setShadowDistance\",\"setSide\",\"setSimpleTaskDescription\",\"setSimpleTaskDestination\",\"setSimpleTaskTarget\",\"setSimulWeatherLayers\",\"setSize\",\"setSkill\",\"setSkill array\",\"setSlingLoad\",\"setSoundEffect\",\"setSpeaker\",\"setSpeech\",\"setSpeedMode\",\"setStatValue\",\"setSuppression\",\"setSystemOfUnits\",\"setTargetAge\",\"setTaskResult\",\"setTaskState\",\"setTerrainGrid\",\"setText\",\"setTimeMultiplier\",\"setTitleEffect\",\"setTriggerActivation\",\"setTriggerArea\",\"setTriggerStatements\",\"setTriggerText\",\"setTriggerTimeout\",\"setTriggerType\",\"setType\",\"setUnconscious\",\"setUnitAbility\",\"setUnitPos\",\"setUnitPosWeak\",\"setUnitRank\",\"setUnitRecoilCoefficient\",\"setUnloadInCombat\",\"setUserActionText\",\"setVariable\",\"setVectorDir\",\"setVectorDirAndUp\",\"setVectorUp\",\"setVehicleAmmo\",\"setVehicleAmmoDef\",\"setVehicleArmor\",\"setVehicleId\",\"setVehicleLock\",\"setVehiclePosition\",\"setVehicleTiPars\",\"setVehicleVarName\",\"setVelocity\",\"setVelocityTransformation\",\"setViewDistance\",\"setVisibleIfTreeCollapsed\",\"setWaves\",\"setWaypointBehaviour\",\"setWaypointCombatMode\",\"setWaypointCompletionRadius\",\"setWaypointDescription\",\"setWaypointFormation\",\"setWaypointHousePosition\",\"setWaypointLoiterRadius\",\"setWaypointLoiterType\",\"setWaypointName\",\"setWaypointPosition\",\"setWaypointScript\",\"setWaypointSpeed\",\"setWaypointStatements\",\"setWaypointTimeout\",\"setWaypointType\",\"setWaypointVisible\",\"setWeaponReloadingTime\",\"setWind\",\"setWindDir\",\"setWindForce\",\"setWindStr\",\"setWPPos\",\"show3DIcons\",\"showChat\",\"showCinemaBorder\",\"showCommandingMenu\",\"showCompass\",\"showCuratorCompass\",\"showGPS\",\"showHUD\",\"showLegend\",\"showMap\",\"shownArtilleryComputer\",\"shownChat\",\"shownCompass\",\"shownCuratorCompass\",\"showNewEditorObject\",\"shownGPS\",\"shownHUD\",\"shownMap\",\"shownPad\",\"shownRadio\",\"shownUAVFeed\",\"shownWarrant\",\"shownWatch\",\"showPad\",\"showRadio\",\"showSubtitles\",\"showUAVFeed\",\"showWarrant\",\"showWatch\",\"showWaypoint\",\"side\",\"sideChat\",\"sideEnemy\",\"sideFriendly\",\"sideLogic\",\"sideRadio\",\"sideUnknown\",\"simpleTasks\",\"simulationEnabled\",\"simulCloudDensity\",\"simulCloudOcclusion\",\"simulInClouds\",\"simulWeatherSync\",\"sin\",\"size\",\"sizeOf\",\"skill\",\"skillFinal\",\"skipTime\",\"sleep\",\"sliderPosition\",\"sliderRange\",\"sliderSetPosition\",\"sliderSetRange\",\"sliderSetSpeed\",\"sliderSpeed\",\"slingLoadAssistantShown\",\"soldierMagazines\",\"someAmmo\",\"sort\",\"soundVolume\",\"spawn\",\"speaker\",\"speed\",\"speedMode\",\"splitString\",\"sqrt\",\"squadParams\",\"stance\",\"startLoadingScreen\",\"step\",\"stop\",\"stopped\",\"str\",\"sunOrMoon\",\"supportInfo\",\"suppressFor\",\"surfaceIsWater\",\"surfaceNormal\",\"surfaceType\",\"swimInDepth\",\"switch\",\"switchableUnits\",\"switchAction\",\"switchCamera\",\"switchGesture\",\"switchLight\",\"switchMove\",\"synchronizedObjects\",\"synchronizedTriggers\",\"synchronizedWaypoints\",\"synchronizeObjectsAdd\",\"synchronizeObjectsRemove\",\"synchronizeTrigger\",\"synchronizeWaypoint\",\"synchronizeWaypoint trigger\",\"systemChat\",\"systemOfUnits\",\"tan\",\"targetKnowledge\",\"targetsAggregate\",\"targetsQuery\",\"taskChildren\",\"taskCompleted\",\"taskDescription\",\"taskDestination\",\"taskHint\",\"taskNull\",\"taskParent\",\"taskResult\",\"taskState\",\"teamMember\",\"teamMemberNull\",\"teamName\",\"teams\",\"teamSwitch\",\"teamSwitchEnabled\",\"teamType\",\"terminate\",\"terrainIntersect\",\"terrainIntersectASL\",\"text\",\"text location\",\"textLog\",\"textLogFormat\",\"tg\",\"then\",\"throw\",\"time\",\"timeMultiplier\",\"titleCut\",\"titleFadeOut\",\"titleObj\",\"titleRsc\",\"titleText\",\"to\",\"toArray\",\"toLower\",\"toString\",\"toUpper\",\"triggerActivated\",\"triggerActivation\",\"triggerArea\",\"triggerAttachedVehicle\",\"triggerAttachObject\",\"triggerAttachVehicle\",\"triggerStatements\",\"triggerText\",\"triggerTimeout\",\"triggerTimeoutCurrent\",\"triggerType\",\"true\",\"try\",\"turretLocal\",\"turretOwner\",\"turretUnit\",\"tvAdd\",\"tvClear\",\"tvCollapse\",\"tvCount\",\"tvCurSel\",\"tvData\",\"tvDelete\",\"tvExpand\",\"tvPicture\",\"tvSetCurSel\",\"tvSetData\",\"tvSetPicture\",\"tvSetPictureColor\",\"tvSetTooltip\",\"tvSetValue\",\"tvSort\",\"tvSortByValue\",\"tvText\",\"tvValue\",\"type\",\"typeName\",\"typeOf\",\"UAVControl\",\"uiNamespace\",\"uiSleep\",\"unassignCurator\",\"unassignItem\",\"unassignTeam\",\"unassignVehicle\",\"underwater\",\"uniform\",\"uniformContainer\",\"uniformItems\",\"uniformMagazines\",\"unitAddons\",\"unitBackpack\",\"unitPos\",\"unitReady\",\"unitRecoilCoefficient\",\"units\",\"unitsBelowHeight\",\"unlinkItem\",\"unlockAchievement\",\"unregisterTask\",\"updateDrawIcon\",\"updateMenuItem\",\"updateObjectTree\",\"useAudioTimeForMoves\",\"vectorAdd\",\"vectorCos\",\"vectorCrossProduct\",\"vectorDiff\",\"vectorDir\",\"vectorDirVisual\",\"vectorDistance\",\"vectorDistanceSqr\",\"vectorDotProduct\",\"vectorFromTo\",\"vectorMagnitude\",\"vectorMagnitudeSqr\",\"vectorMultiply\",\"vectorNormalized\",\"vectorUp\",\"vectorUpVisual\",\"vehicle\",\"vehicleChat\",\"vehicleRadio\",\"vehicles\",\"vehicleVarName\",\"velocity\",\"velocityModelSpace\",\"verifySignature\",\"vest\",\"vestContainer\",\"vestItems\",\"vestMagazines\",\"viewDistance\",\"visibleCompass\",\"visibleGPS\",\"visibleMap\",\"visiblePosition\",\"visiblePositionASL\",\"visibleWatch\",\"waitUntil\",\"waves\",\"waypointAttachedObject\",\"waypointAttachedVehicle\",\"waypointAttachObject\",\"waypointAttachVehicle\",\"waypointBehaviour\",\"waypointCombatMode\",\"waypointCompletionRadius\",\"waypointDescription\",\"waypointFormation\",\"waypointHousePosition\",\"waypointLoiterRadius\",\"waypointLoiterType\",\"waypointName\",\"waypointPosition\",\"waypoints\",\"waypointScript\",\"waypointsEnabledUAV\",\"waypointShow\",\"waypointSpeed\",\"waypointStatements\",\"waypointTimeout\",\"waypointTimeoutCurrent\",\"waypointType\",\"waypointVisible\",\"weaponAccessories\",\"weaponCargo\",\"weaponDirection\",\"weaponLowered\",\"weapons\",\"weaponsItems\",\"weaponsItemsCargo\",\"weaponState\",\"weaponsTurret\",\"weightRTD\",\"west\",\"WFSideText\",\"while\",\"wind\",\"windDir\",\"windStr\",\"wingsForcesRTD\",\"with\",\"worldName\",\"worldSize\",\"worldToModel\",\"worldToModelVisual\",\"worldToScreen\"],a=[\"case\",\"catch\",\"default\",\"do\",\"else\",\"exit\",\"exitWith|5\",\"for\",\"forEach\",\"from\",\"if\",\"switch\",\"then\",\"throw\",\"to\",\"try\",\"while\",\"with\"],r=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"^\",\":\",\">>\"],o=[\"_forEachIndex|10\",\"_this|10\",\"_x|10\"],i=[\"true\",\"false\",\"nil\"],n=t.filter(function(e){return-1==a.indexOf(e)&&-1==i.indexOf(e)&&-1==r.indexOf(e)});n=n.concat(o);var s={cN:\"string\",r:0,v:[{b:'\"',e:'\"',c:[{b:'\"\"'}]},{b:\"'\",e:\"'\",c:[{b:\"''\"}]}]},l={cN:\"number\",b:e.NR,r:0},c={cN:\"string\",v:[e.QSM,{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},d={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[c,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},c,l,e.CLCM,e.CBCM]};return{aliases:[\"sqf\"],cI:!0,k:{keyword:a.join(\" \"),built_in:n.join(\" \"),literal:i.join(\" \")},c:[e.CLCM,e.CBCM,l,s,d]}});hljs.registerLanguage(\"vbscript-html\",function(r){return{sL:\"xml\",c:[{b:\"<%\",e:\"%>\",sL:\"vbscript\"}]}});hljs.registerLanguage(\"cal\",function(e){var r=\"div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var\",t=\"false true\",a=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],c={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},o={cN:\"string\",b:/(#\\d+)+/},n={cN:\"date\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(DT|D|T)\",r:0},i={cN:\"variable\",b:'\"',e:'\"'},d={cN:\"function\",bK:\"procedure\",e:/[:;]/,k:\"procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[c,o]}].concat(a)},b={cN:\"class\",b:\"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\\\d+) ([^\\\\r\\\\n]+)\",rB:!0,c:[e.TM,d]};return{cI:!0,k:{keyword:r,literal:t},i:/\\/\\*/,c:[c,o,n,i,e.NM,b,d]}});hljs.registerLanguage(\"mojolicious\",function(e){return{sL:\"xml\",c:[{cN:\"preprocessor\",b:\"^__(END|DATA)__$\"},{b:\"^\\\\s*%{1,2}={0,2}\",e:\"$\",sL:\"perl\"},{b:\"<%{1,2}={0,2}\",e:\"={0,1}%>\",sL:\"perl\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"clojure\",function(e){var t={built_in:\"def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},r=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+r+\"][\"+r+\"0-9/;:]*\",a=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",o={b:n,r:0},s={cN:\"number\",b:a,r:0},c=e.inherit(e.QSM,{i:null}),i=e.C(\";\",\"$\",{r:0}),d={cN:\"literal\",b:/\\b(true|false|nil)\\b/},l={cN:\"collection\",b:\"[\\\\[\\\\{]\",e:\"[\\\\]\\\\}]\"},m={cN:\"comment\",b:\"\\\\^\"+n},p=e.C(\"\\\\^\\\\{\",\"\\\\}\"),u={cN:\"attribute\",b:\"[:]\"+n},f={cN:\"list\",b:\"\\\\(\",e:\"\\\\)\"},h={eW:!0,r:0},y={k:t,l:n,cN:\"keyword\",b:n,starts:h},b=[f,c,m,p,i,u,l,s,d,o];return f.c=[e.C(\"comment\",\"\"),y,h],h.c=b,l.c=b,{aliases:[\"clj\"],i:/\\S/,c:[f,c,m,p,i,u,l,s,d]}});hljs.registerLanguage(\"dart\",function(e){var t={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"}\",k:\"true false null this is new super\"},r={cN:\"string\",v:[{b:\"r'''\",e:\"'''\"},{b:'r\"\"\"',e:'\"\"\"'},{b:\"r'\",e:\"'\",i:\"\\\\n\"},{b:'r\"',e:'\"',i:\"\\\\n\"},{b:\"'''\",e:\"'''\",c:[e.BE,t]},{b:'\"\"\"',e:'\"\"\"',c:[e.BE,t]},{b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE,t]},{b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:\"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with\",literal:\"abstract as dynamic export external factory get implements import library operator part set static typedef\",built_in:\"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList\"};return{k:n,c:[r,e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{sL:\"markdown\"}),e.C(\"///\",\"$\",{sL:\"markdown\"}),e.CLCM,e.CBCM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{b:\"=>\"}]}});hljs.registerLanguage(\"ruleslanguage\",function(T){return{k:{keyword:\"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING\",built_in:\"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME\"},c:[T.CLCM,T.CBCM,T.ASM,T.QSM,T.CNM,{cN:\"array\",v:[{b:\"#\\\\s+[a-zA-Z\\\\ \\\\.]*\",r:0},{b:\"#[a-zA-Z\\\\ \\\\.]+\"}]}]}});hljs.registerLanguage(\"applescript\",function(e){var t=e.inherit(e.QSM,{i:\"\"}),r={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CNM,t]},o=e.C(\"--\",\"$\"),n=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\",o]}),a=[o,n,e.HCM];return{aliases:[\"osascript\"],k:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",constant:\"AppleScript false linefeed return pi quote result space tab true\",type:\"alias application boolean class constant date file integer list number real record string text\",command:\"activate beep count delay launch log offset read round run say summarize write\",property:\"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},c:[t,e.CNM,{cN:\"type\",b:\"\\\\bPOSIX file\\\\b\"},{cN:\"command\",b:\"\\\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\\\b|^\\\\s*return\\\\b\"},{cN:\"constant\",b:\"\\\\b(text item delimiters|current application|missing value)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\\\b\"},{cN:\"property\",b:\"\\\\b(POSIX path|(date|time) string|quoted form)\\\\b\"},{cN:\"function_start\",bK:\"on\",i:\"[${=;\\\\n]\",c:[e.UTM,r]}].concat(a),i:\"//|->|=>|\\\\[\\\\[\"}});hljs.registerLanguage(\"xml\",function(t){var s=\"[A-Za-z0-9\\\\._:-]+\",c={b:/<\\?(php)?(?!\\w)/,e:/\\?>/,sL:\"php\"},e={eW:!0,i:/</,r:0,c:[c,{cN:\"attribute\",b:s,r:0},{b:\"=\",r:0,c:[{cN:\"value\",c:[c],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\\/>]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},t.C(\"<!--\",\"-->\",{r:10}),{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[e],starts:{e:\"</style>\",rE:!0,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[e],starts:{e:\"</script>\",rE:!0,sL:[\"actionscript\",\"javascript\",\"handlebars\"]}},c,{cN:\"pi\",b:/<\\?\\w+/,e:/\\?>/,r:10},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:/[^ \\/><\\n\\t]+/,r:0},e]}]}});hljs.registerLanguage(\"elixir\",function(e){var n=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\",r=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",b=\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote\",c={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:n,k:b},a={cN:\"string\",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},i={cN:\"function\",bK:\"def defp defmacro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:\"class\",bK:\"defmodule defrecord\",e:/\\bdo\\b|$|;/}),l=[a,e.HCM,s,i,{cN:\"constant\",b:\"(\\\\b[A-Z_]\\\\w*(.)?)+\",r:0},{cN:\"symbol\",b:\":\",c:[a,{b:r}],r:0},{cN:\"symbol\",b:n+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"->\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[e.HCM,{cN:\"regexp\",i:\"\\\\n\",c:[e.BE,c],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage(\"autoit\",function(e){var t=\"ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With\",r=\"True False And Null Not Or\",i=\"Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Opt Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown TCPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend UDPShutdown UDPStartup VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait WinWaitActive WinWaitClose WinWaitNotActive Array1DToHistogram ArrayAdd ArrayBinarySearch ArrayColDelete ArrayColInsert ArrayCombinations ArrayConcatenate ArrayDelete ArrayDisplay ArrayExtract ArrayFindAll ArrayInsert ArrayMax ArrayMaxIndex ArrayMin ArrayMinIndex ArrayPermute ArrayPop ArrayPush ArrayReverse ArraySearch ArrayShuffle ArraySort ArraySwap ArrayToClip ArrayToString ArrayTranspose ArrayTrim ArrayUnique Assert ChooseColor ChooseFont ClipBoard_ChangeChain ClipBoard_Close ClipBoard_CountFormats ClipBoard_Empty ClipBoard_EnumFormats ClipBoard_FormatStr ClipBoard_GetData ClipBoard_GetDataEx ClipBoard_GetFormatName ClipBoard_GetOpenWindow ClipBoard_GetOwner ClipBoard_GetPriorityFormat ClipBoard_GetSequenceNumber ClipBoard_GetViewer ClipBoard_IsFormatAvailable ClipBoard_Open ClipBoard_RegisterFormat ClipBoard_SetData ClipBoard_SetDataEx ClipBoard_SetViewer ClipPutFile ColorConvertHSLtoRGB ColorConvertRGBtoHSL ColorGetBlue ColorGetCOLORREF ColorGetGreen ColorGetRed ColorGetRGB ColorSetCOLORREF ColorSetRGB Crypt_DecryptData Crypt_DecryptFile Crypt_DeriveKey Crypt_DestroyKey Crypt_EncryptData Crypt_EncryptFile Crypt_GenRandom Crypt_HashData Crypt_HashFile Crypt_Shutdown Crypt_Startup DateAdd DateDayOfWeek DateDaysInMonth DateDiff DateIsLeapYear DateIsValid DateTimeFormat DateTimeSplit DateToDayOfWeek DateToDayOfWeekISO DateToDayValue DateToMonth Date_Time_CompareFileTime Date_Time_DOSDateTimeToArray Date_Time_DOSDateTimeToFileTime Date_Time_DOSDateTimeToStr Date_Time_DOSDateToArray Date_Time_DOSDateToStr Date_Time_DOSTimeToArray Date_Time_DOSTimeToStr Date_Time_EncodeFileTime Date_Time_EncodeSystemTime Date_Time_FileTimeToArray Date_Time_FileTimeToDOSDateTime Date_Time_FileTimeToLocalFileTime Date_Time_FileTimeToStr Date_Time_FileTimeToSystemTime Date_Time_GetFileTime Date_Time_GetLocalTime Date_Time_GetSystemTime Date_Time_GetSystemTimeAdjustment Date_Time_GetSystemTimeAsFileTime Date_Time_GetSystemTimes Date_Time_GetTickCount Date_Time_GetTimeZoneInformation Date_Time_LocalFileTimeToFileTime Date_Time_SetFileTime Date_Time_SetLocalTime Date_Time_SetSystemTime Date_Time_SetSystemTimeAdjustment Date_Time_SetTimeZoneInformation Date_Time_SystemTimeToArray Date_Time_SystemTimeToDateStr Date_Time_SystemTimeToDateTimeStr Date_Time_SystemTimeToFileTime Date_Time_SystemTimeToTimeStr Date_Time_SystemTimeToTzSpecificLocalTime Date_Time_TzSpecificLocalTimeToSystemTime DayValueToDate DebugBugReportEnv DebugCOMError DebugOut DebugReport DebugReportEx DebugReportVar DebugSetup Degree EventLog__Backup EventLog__Clear EventLog__Close EventLog__Count EventLog__DeregisterSource EventLog__Full EventLog__Notify EventLog__Oldest EventLog__Open EventLog__OpenBackup EventLog__Read EventLog__RegisterSource EventLog__Report Excel_BookAttach Excel_BookClose Excel_BookList Excel_BookNew Excel_BookOpen Excel_BookOpenText Excel_BookSave Excel_BookSaveAs Excel_Close Excel_ColumnToLetter Excel_ColumnToNumber Excel_ConvertFormula Excel_Export Excel_FilterGet Excel_FilterSet Excel_Open Excel_PictureAdd Excel_Print Excel_RangeCopyPaste Excel_RangeDelete Excel_RangeFind Excel_RangeInsert Excel_RangeLinkAddRemove Excel_RangeRead Excel_RangeReplace Excel_RangeSort Excel_RangeValidate Excel_RangeWrite Excel_SheetAdd Excel_SheetCopyMove Excel_SheetDelete Excel_SheetList FileCountLines FileCreate FileListToArray FileListToArrayRec FilePrint FileReadToArray FileWriteFromArray FileWriteLog FileWriteToLine FTP_Close FTP_Command FTP_Connect FTP_DecodeInternetStatus FTP_DirCreate FTP_DirDelete FTP_DirGetCurrent FTP_DirPutContents FTP_DirSetCurrent FTP_FileClose FTP_FileDelete FTP_FileGet FTP_FileGetSize FTP_FileOpen FTP_FilePut FTP_FileRead FTP_FileRename FTP_FileTimeLoHiToStr FTP_FindFileClose FTP_FindFileFirst FTP_FindFileNext FTP_GetLastResponseInfo FTP_ListToArray FTP_ListToArray2D FTP_ListToArrayEx FTP_Open FTP_ProgressDownload FTP_ProgressUpload FTP_SetStatusCallback GDIPlus_ArrowCapCreate GDIPlus_ArrowCapDispose GDIPlus_ArrowCapGetFillState GDIPlus_ArrowCapGetHeight GDIPlus_ArrowCapGetMiddleInset GDIPlus_ArrowCapGetWidth GDIPlus_ArrowCapSetFillState GDIPlus_ArrowCapSetHeight GDIPlus_ArrowCapSetMiddleInset GDIPlus_ArrowCapSetWidth GDIPlus_BitmapApplyEffect GDIPlus_BitmapApplyEffectEx GDIPlus_BitmapCloneArea GDIPlus_BitmapConvertFormat GDIPlus_BitmapCreateApplyEffect GDIPlus_BitmapCreateApplyEffectEx GDIPlus_BitmapCreateDIBFromBitmap GDIPlus_BitmapCreateFromFile GDIPlus_BitmapCreateFromGraphics GDIPlus_BitmapCreateFromHBITMAP GDIPlus_BitmapCreateFromHICON GDIPlus_BitmapCreateFromHICON32 GDIPlus_BitmapCreateFromMemory GDIPlus_BitmapCreateFromResource GDIPlus_BitmapCreateFromScan0 GDIPlus_BitmapCreateFromStream GDIPlus_BitmapCreateHBITMAPFromBitmap GDIPlus_BitmapDispose GDIPlus_BitmapGetHistogram GDIPlus_BitmapGetHistogramEx GDIPlus_BitmapGetHistogramSize GDIPlus_BitmapGetPixel GDIPlus_BitmapLockBits GDIPlus_BitmapSetPixel GDIPlus_BitmapUnlockBits GDIPlus_BrushClone GDIPlus_BrushCreateSolid GDIPlus_BrushDispose GDIPlus_BrushGetSolidColor GDIPlus_BrushGetType GDIPlus_BrushSetSolidColor GDIPlus_ColorMatrixCreate GDIPlus_ColorMatrixCreateGrayScale GDIPlus_ColorMatrixCreateNegative GDIPlus_ColorMatrixCreateSaturation GDIPlus_ColorMatrixCreateScale GDIPlus_ColorMatrixCreateTranslate GDIPlus_CustomLineCapClone GDIPlus_CustomLineCapCreate GDIPlus_CustomLineCapDispose GDIPlus_CustomLineCapGetStrokeCaps GDIPlus_CustomLineCapSetStrokeCaps GDIPlus_Decoders GDIPlus_DecodersGetCount GDIPlus_DecodersGetSize GDIPlus_DrawImageFX GDIPlus_DrawImageFXEx GDIPlus_DrawImagePoints GDIPlus_EffectCreate GDIPlus_EffectCreateBlur GDIPlus_EffectCreateBrightnessContrast GDIPlus_EffectCreateColorBalance GDIPlus_EffectCreateColorCurve GDIPlus_EffectCreateColorLUT GDIPlus_EffectCreateColorMatrix GDIPlus_EffectCreateHueSaturationLightness GDIPlus_EffectCreateLevels GDIPlus_EffectCreateRedEyeCorrection GDIPlus_EffectCreateSharpen GDIPlus_EffectCreateTint GDIPlus_EffectDispose GDIPlus_EffectGetParameters GDIPlus_EffectSetParameters GDIPlus_Encoders GDIPlus_EncodersGetCLSID GDIPlus_EncodersGetCount GDIPlus_EncodersGetParamList GDIPlus_EncodersGetParamListSize GDIPlus_EncodersGetSize GDIPlus_FontCreate GDIPlus_FontDispose GDIPlus_FontFamilyCreate GDIPlus_FontFamilyCreateFromCollection GDIPlus_FontFamilyDispose GDIPlus_FontFamilyGetCellAscent GDIPlus_FontFamilyGetCellDescent GDIPlus_FontFamilyGetEmHeight GDIPlus_FontFamilyGetLineSpacing GDIPlus_FontGetHeight GDIPlus_FontPrivateAddFont GDIPlus_FontPrivateAddMemoryFont GDIPlus_FontPrivateCollectionDispose GDIPlus_FontPrivateCreateCollection GDIPlus_GraphicsClear GDIPlus_GraphicsCreateFromHDC GDIPlus_GraphicsCreateFromHWND GDIPlus_GraphicsDispose GDIPlus_GraphicsDrawArc GDIPlus_GraphicsDrawBezier GDIPlus_GraphicsDrawClosedCurve GDIPlus_GraphicsDrawClosedCurve2 GDIPlus_GraphicsDrawCurve GDIPlus_GraphicsDrawCurve2 GDIPlus_GraphicsDrawEllipse GDIPlus_GraphicsDrawImage GDIPlus_GraphicsDrawImagePointsRect GDIPlus_GraphicsDrawImageRect GDIPlus_GraphicsDrawImageRectRect GDIPlus_GraphicsDrawLine GDIPlus_GraphicsDrawPath GDIPlus_GraphicsDrawPie GDIPlus_GraphicsDrawPolygon GDIPlus_GraphicsDrawRect GDIPlus_GraphicsDrawString GDIPlus_GraphicsDrawStringEx GDIPlus_GraphicsFillClosedCurve GDIPlus_GraphicsFillClosedCurve2 GDIPlus_GraphicsFillEllipse GDIPlus_GraphicsFillPath GDIPlus_GraphicsFillPie GDIPlus_GraphicsFillPolygon GDIPlus_GraphicsFillRect GDIPlus_GraphicsFillRegion GDIPlus_GraphicsGetCompositingMode GDIPlus_GraphicsGetCompositingQuality GDIPlus_GraphicsGetDC GDIPlus_GraphicsGetInterpolationMode GDIPlus_GraphicsGetSmoothingMode GDIPlus_GraphicsGetTransform GDIPlus_GraphicsMeasureCharacterRanges GDIPlus_GraphicsMeasureString GDIPlus_GraphicsReleaseDC GDIPlus_GraphicsResetClip GDIPlus_GraphicsResetTransform GDIPlus_GraphicsRestore GDIPlus_GraphicsRotateTransform GDIPlus_GraphicsSave GDIPlus_GraphicsScaleTransform GDIPlus_GraphicsSetClipPath GDIPlus_GraphicsSetClipRect GDIPlus_GraphicsSetClipRegion GDIPlus_GraphicsSetCompositingMode GDIPlus_GraphicsSetCompositingQuality GDIPlus_GraphicsSetInterpolationMode GDIPlus_GraphicsSetPixelOffsetMode GDIPlus_GraphicsSetSmoothingMode GDIPlus_GraphicsSetTextRenderingHint GDIPlus_GraphicsSetTransform GDIPlus_GraphicsTransformPoints GDIPlus_GraphicsTranslateTransform GDIPlus_HatchBrushCreate GDIPlus_HICONCreateFromBitmap GDIPlus_ImageAttributesCreate GDIPlus_ImageAttributesDispose GDIPlus_ImageAttributesSetColorKeys GDIPlus_ImageAttributesSetColorMatrix GDIPlus_ImageDispose GDIPlus_ImageGetDimension GDIPlus_ImageGetFlags GDIPlus_ImageGetGraphicsContext GDIPlus_ImageGetHeight GDIPlus_ImageGetHorizontalResolution GDIPlus_ImageGetPixelFormat GDIPlus_ImageGetRawFormat GDIPlus_ImageGetThumbnail GDIPlus_ImageGetType GDIPlus_ImageGetVerticalResolution GDIPlus_ImageGetWidth GDIPlus_ImageLoadFromFile GDIPlus_ImageLoadFromStream GDIPlus_ImageResize GDIPlus_ImageRotateFlip GDIPlus_ImageSaveToFile GDIPlus_ImageSaveToFileEx GDIPlus_ImageSaveToStream GDIPlus_ImageScale GDIPlus_LineBrushCreate GDIPlus_LineBrushCreateFromRect GDIPlus_LineBrushCreateFromRectWithAngle GDIPlus_LineBrushGetColors GDIPlus_LineBrushGetRect GDIPlus_LineBrushMultiplyTransform GDIPlus_LineBrushResetTransform GDIPlus_LineBrushSetBlend GDIPlus_LineBrushSetColors GDIPlus_LineBrushSetGammaCorrection GDIPlus_LineBrushSetLinearBlend GDIPlus_LineBrushSetPresetBlend GDIPlus_LineBrushSetSigmaBlend GDIPlus_LineBrushSetTransform GDIPlus_MatrixClone GDIPlus_MatrixCreate GDIPlus_MatrixDispose GDIPlus_MatrixGetElements GDIPlus_MatrixInvert GDIPlus_MatrixMultiply GDIPlus_MatrixRotate GDIPlus_MatrixScale GDIPlus_MatrixSetElements GDIPlus_MatrixShear GDIPlus_MatrixTransformPoints GDIPlus_MatrixTranslate GDIPlus_PaletteInitialize GDIPlus_ParamAdd GDIPlus_ParamInit GDIPlus_ParamSize GDIPlus_PathAddArc GDIPlus_PathAddBezier GDIPlus_PathAddClosedCurve GDIPlus_PathAddClosedCurve2 GDIPlus_PathAddCurve GDIPlus_PathAddCurve2 GDIPlus_PathAddCurve3 GDIPlus_PathAddEllipse GDIPlus_PathAddLine GDIPlus_PathAddLine2 GDIPlus_PathAddPath GDIPlus_PathAddPie GDIPlus_PathAddPolygon GDIPlus_PathAddRectangle GDIPlus_PathAddString GDIPlus_PathBrushCreate GDIPlus_PathBrushCreateFromPath GDIPlus_PathBrushGetCenterPoint GDIPlus_PathBrushGetFocusScales GDIPlus_PathBrushGetPointCount GDIPlus_PathBrushGetRect GDIPlus_PathBrushGetWrapMode GDIPlus_PathBrushMultiplyTransform GDIPlus_PathBrushResetTransform GDIPlus_PathBrushSetBlend GDIPlus_PathBrushSetCenterColor GDIPlus_PathBrushSetCenterPoint GDIPlus_PathBrushSetFocusScales GDIPlus_PathBrushSetGammaCorrection GDIPlus_PathBrushSetLinearBlend GDIPlus_PathBrushSetPresetBlend GDIPlus_PathBrushSetSigmaBlend GDIPlus_PathBrushSetSurroundColor GDIPlus_PathBrushSetSurroundColorsWithCount GDIPlus_PathBrushSetTransform GDIPlus_PathBrushSetWrapMode GDIPlus_PathClone GDIPlus_PathCloseFigure GDIPlus_PathCreate GDIPlus_PathCreate2 GDIPlus_PathDispose GDIPlus_PathFlatten GDIPlus_PathGetData GDIPlus_PathGetFillMode GDIPlus_PathGetLastPoint GDIPlus_PathGetPointCount GDIPlus_PathGetPoints GDIPlus_PathGetWorldBounds GDIPlus_PathIsOutlineVisiblePoint GDIPlus_PathIsVisiblePoint GDIPlus_PathIterCreate GDIPlus_PathIterDispose GDIPlus_PathIterGetSubpathCount GDIPlus_PathIterNextMarkerPath GDIPlus_PathIterNextSubpathPath GDIPlus_PathIterRewind GDIPlus_PathReset GDIPlus_PathReverse GDIPlus_PathSetFillMode GDIPlus_PathSetMarker GDIPlus_PathStartFigure GDIPlus_PathTransform GDIPlus_PathWarp GDIPlus_PathWiden GDIPlus_PathWindingModeOutline GDIPlus_PenCreate GDIPlus_PenCreate2 GDIPlus_PenDispose GDIPlus_PenGetAlignment GDIPlus_PenGetColor GDIPlus_PenGetCustomEndCap GDIPlus_PenGetDashCap GDIPlus_PenGetDashStyle GDIPlus_PenGetEndCap GDIPlus_PenGetMiterLimit GDIPlus_PenGetWidth GDIPlus_PenSetAlignment GDIPlus_PenSetColor GDIPlus_PenSetCustomEndCap GDIPlus_PenSetDashCap GDIPlus_PenSetDashStyle GDIPlus_PenSetEndCap GDIPlus_PenSetLineCap GDIPlus_PenSetLineJoin GDIPlus_PenSetMiterLimit GDIPlus_PenSetStartCap GDIPlus_PenSetWidth GDIPlus_RectFCreate GDIPlus_RegionClone GDIPlus_RegionCombinePath GDIPlus_RegionCombineRect GDIPlus_RegionCombineRegion GDIPlus_RegionCreate GDIPlus_RegionCreateFromPath GDIPlus_RegionCreateFromRect GDIPlus_RegionDispose GDIPlus_RegionGetBounds GDIPlus_RegionGetHRgn GDIPlus_RegionTransform GDIPlus_RegionTranslate GDIPlus_Shutdown GDIPlus_Startup GDIPlus_StringFormatCreate GDIPlus_StringFormatDispose GDIPlus_StringFormatGetMeasurableCharacterRangeCount GDIPlus_StringFormatSetAlign GDIPlus_StringFormatSetLineAlign GDIPlus_StringFormatSetMeasurableCharacterRanges GDIPlus_TextureCreate GDIPlus_TextureCreate2 GDIPlus_TextureCreateIA GetIP GUICtrlAVI_Close GUICtrlAVI_Create GUICtrlAVI_Destroy GUICtrlAVI_IsPlaying GUICtrlAVI_Open GUICtrlAVI_OpenEx GUICtrlAVI_Play GUICtrlAVI_Seek GUICtrlAVI_Show GUICtrlAVI_Stop GUICtrlButton_Click GUICtrlButton_Create GUICtrlButton_Destroy GUICtrlButton_Enable GUICtrlButton_GetCheck GUICtrlButton_GetFocus GUICtrlButton_GetIdealSize GUICtrlButton_GetImage GUICtrlButton_GetImageList GUICtrlButton_GetNote GUICtrlButton_GetNoteLength GUICtrlButton_GetSplitInfo GUICtrlButton_GetState GUICtrlButton_GetText GUICtrlButton_GetTextMargin GUICtrlButton_SetCheck GUICtrlButton_SetDontClick GUICtrlButton_SetFocus GUICtrlButton_SetImage GUICtrlButton_SetImageList GUICtrlButton_SetNote GUICtrlButton_SetShield GUICtrlButton_SetSize GUICtrlButton_SetSplitInfo GUICtrlButton_SetState GUICtrlButton_SetStyle GUICtrlButton_SetText GUICtrlButton_SetTextMargin GUICtrlButton_Show GUICtrlComboBoxEx_AddDir GUICtrlComboBoxEx_AddString GUICtrlComboBoxEx_BeginUpdate GUICtrlComboBoxEx_Create GUICtrlComboBoxEx_CreateSolidBitMap GUICtrlComboBoxEx_DeleteString GUICtrlComboBoxEx_Destroy GUICtrlComboBoxEx_EndUpdate GUICtrlComboBoxEx_FindStringExact GUICtrlComboBoxEx_GetComboBoxInfo GUICtrlComboBoxEx_GetComboControl GUICtrlComboBoxEx_GetCount GUICtrlComboBoxEx_GetCurSel GUICtrlComboBoxEx_GetDroppedControlRect GUICtrlComboBoxEx_GetDroppedControlRectEx GUICtrlComboBoxEx_GetDroppedState GUICtrlComboBoxEx_GetDroppedWidth GUICtrlComboBoxEx_GetEditControl GUICtrlComboBoxEx_GetEditSel GUICtrlComboBoxEx_GetEditText GUICtrlComboBoxEx_GetExtendedStyle GUICtrlComboBoxEx_GetExtendedUI GUICtrlComboBoxEx_GetImageList GUICtrlComboBoxEx_GetItem GUICtrlComboBoxEx_GetItemEx GUICtrlComboBoxEx_GetItemHeight GUICtrlComboBoxEx_GetItemImage GUICtrlComboBoxEx_GetItemIndent GUICtrlComboBoxEx_GetItemOverlayImage GUICtrlComboBoxEx_GetItemParam GUICtrlComboBoxEx_GetItemSelectedImage GUICtrlComboBoxEx_GetItemText GUICtrlComboBoxEx_GetItemTextLen GUICtrlComboBoxEx_GetList GUICtrlComboBoxEx_GetListArray GUICtrlComboBoxEx_GetLocale GUICtrlComboBoxEx_GetLocaleCountry GUICtrlComboBoxEx_GetLocaleLang GUICtrlComboBoxEx_GetLocalePrimLang GUICtrlComboBoxEx_GetLocaleSubLang GUICtrlComboBoxEx_GetMinVisible GUICtrlComboBoxEx_GetTopIndex GUICtrlComboBoxEx_GetUnicode GUICtrlComboBoxEx_InitStorage GUICtrlComboBoxEx_InsertString GUICtrlComboBoxEx_LimitText GUICtrlComboBoxEx_ReplaceEditSel GUICtrlComboBoxEx_ResetContent GUICtrlComboBoxEx_SetCurSel GUICtrlComboBoxEx_SetDroppedWidth GUICtrlComboBoxEx_SetEditSel GUICtrlComboBoxEx_SetEditText GUICtrlComboBoxEx_SetExtendedStyle GUICtrlComboBoxEx_SetExtendedUI GUICtrlComboBoxEx_SetImageList GUICtrlComboBoxEx_SetItem GUICtrlComboBoxEx_SetItemEx GUICtrlComboBoxEx_SetItemHeight GUICtrlComboBoxEx_SetItemImage GUICtrlComboBoxEx_SetItemIndent GUICtrlComboBoxEx_SetItemOverlayImage GUICtrlComboBoxEx_SetItemParam GUICtrlComboBoxEx_SetItemSelectedImage GUICtrlComboBoxEx_SetMinVisible GUICtrlComboBoxEx_SetTopIndex GUICtrlComboBoxEx_SetUnicode GUICtrlComboBoxEx_ShowDropDown GUICtrlComboBox_AddDir GUICtrlComboBox_AddString GUICtrlComboBox_AutoComplete GUICtrlComboBox_BeginUpdate GUICtrlComboBox_Create GUICtrlComboBox_DeleteString GUICtrlComboBox_Destroy GUICtrlComboBox_EndUpdate GUICtrlComboBox_FindString GUICtrlComboBox_FindStringExact GUICtrlComboBox_GetComboBoxInfo GUICtrlComboBox_GetCount GUICtrlComboBox_GetCueBanner GUICtrlComboBox_GetCurSel GUICtrlComboBox_GetDroppedControlRect GUICtrlComboBox_GetDroppedControlRectEx GUICtrlComboBox_GetDroppedState GUICtrlComboBox_GetDroppedWidth GUICtrlComboBox_GetEditSel GUICtrlComboBox_GetEditText GUICtrlComboBox_GetExtendedUI GUICtrlComboBox_GetHorizontalExtent GUICtrlComboBox_GetItemHeight GUICtrlComboBox_GetLBText GUICtrlComboBox_GetLBTextLen GUICtrlComboBox_GetList GUICtrlComboBox_GetListArray GUICtrlComboBox_GetLocale GUICtrlComboBox_GetLocaleCountry GUICtrlComboBox_GetLocaleLang GUICtrlComboBox_GetLocalePrimLang GUICtrlComboBox_GetLocaleSubLang GUICtrlComboBox_GetMinVisible GUICtrlComboBox_GetTopIndex GUICtrlComboBox_InitStorage GUICtrlComboBox_InsertString GUICtrlComboBox_LimitText GUICtrlComboBox_ReplaceEditSel GUICtrlComboBox_ResetContent GUICtrlComboBox_SelectString GUICtrlComboBox_SetCueBanner GUICtrlComboBox_SetCurSel GUICtrlComboBox_SetDroppedWidth GUICtrlComboBox_SetEditSel GUICtrlComboBox_SetEditText GUICtrlComboBox_SetExtendedUI GUICtrlComboBox_SetHorizontalExtent GUICtrlComboBox_SetItemHeight GUICtrlComboBox_SetMinVisible GUICtrlComboBox_SetTopIndex GUICtrlComboBox_ShowDropDown GUICtrlDTP_Create GUICtrlDTP_Destroy GUICtrlDTP_GetMCColor GUICtrlDTP_GetMCFont GUICtrlDTP_GetMonthCal GUICtrlDTP_GetRange GUICtrlDTP_GetRangeEx GUICtrlDTP_GetSystemTime GUICtrlDTP_GetSystemTimeEx GUICtrlDTP_SetFormat GUICtrlDTP_SetMCColor GUICtrlDTP_SetMCFont GUICtrlDTP_SetRange GUICtrlDTP_SetRangeEx GUICtrlDTP_SetSystemTime GUICtrlDTP_SetSystemTimeEx GUICtrlEdit_AppendText GUICtrlEdit_BeginUpdate GUICtrlEdit_CanUndo GUICtrlEdit_CharFromPos GUICtrlEdit_Create GUICtrlEdit_Destroy GUICtrlEdit_EmptyUndoBuffer GUICtrlEdit_EndUpdate GUICtrlEdit_Find GUICtrlEdit_FmtLines GUICtrlEdit_GetCueBanner GUICtrlEdit_GetFirstVisibleLine GUICtrlEdit_GetLimitText GUICtrlEdit_GetLine GUICtrlEdit_GetLineCount GUICtrlEdit_GetMargins GUICtrlEdit_GetModify GUICtrlEdit_GetPasswordChar GUICtrlEdit_GetRECT GUICtrlEdit_GetRECTEx GUICtrlEdit_GetSel GUICtrlEdit_GetText GUICtrlEdit_GetTextLen GUICtrlEdit_HideBalloonTip GUICtrlEdit_InsertText GUICtrlEdit_LineFromChar GUICtrlEdit_LineIndex GUICtrlEdit_LineLength GUICtrlEdit_LineScroll GUICtrlEdit_PosFromChar GUICtrlEdit_ReplaceSel GUICtrlEdit_Scroll GUICtrlEdit_SetCueBanner GUICtrlEdit_SetLimitText GUICtrlEdit_SetMargins GUICtrlEdit_SetModify GUICtrlEdit_SetPasswordChar GUICtrlEdit_SetReadOnly GUICtrlEdit_SetRECT GUICtrlEdit_SetRECTEx GUICtrlEdit_SetRECTNP GUICtrlEdit_SetRectNPEx GUICtrlEdit_SetSel GUICtrlEdit_SetTabStops GUICtrlEdit_SetText GUICtrlEdit_ShowBalloonTip GUICtrlEdit_Undo GUICtrlHeader_AddItem GUICtrlHeader_ClearFilter GUICtrlHeader_ClearFilterAll GUICtrlHeader_Create GUICtrlHeader_CreateDragImage GUICtrlHeader_DeleteItem GUICtrlHeader_Destroy GUICtrlHeader_EditFilter GUICtrlHeader_GetBitmapMargin GUICtrlHeader_GetImageList GUICtrlHeader_GetItem GUICtrlHeader_GetItemAlign GUICtrlHeader_GetItemBitmap GUICtrlHeader_GetItemCount GUICtrlHeader_GetItemDisplay GUICtrlHeader_GetItemFlags GUICtrlHeader_GetItemFormat GUICtrlHeader_GetItemImage GUICtrlHeader_GetItemOrder GUICtrlHeader_GetItemParam GUICtrlHeader_GetItemRect GUICtrlHeader_GetItemRectEx GUICtrlHeader_GetItemText GUICtrlHeader_GetItemWidth GUICtrlHeader_GetOrderArray GUICtrlHeader_GetUnicodeFormat GUICtrlHeader_HitTest GUICtrlHeader_InsertItem GUICtrlHeader_Layout GUICtrlHeader_OrderToIndex GUICtrlHeader_SetBitmapMargin GUICtrlHeader_SetFilterChangeTimeout GUICtrlHeader_SetHotDivider GUICtrlHeader_SetImageList GUICtrlHeader_SetItem GUICtrlHeader_SetItemAlign GUICtrlHeader_SetItemBitmap GUICtrlHeader_SetItemDisplay GUICtrlHeader_SetItemFlags GUICtrlHeader_SetItemFormat GUICtrlHeader_SetItemImage GUICtrlHeader_SetItemOrder GUICtrlHeader_SetItemParam GUICtrlHeader_SetItemText GUICtrlHeader_SetItemWidth GUICtrlHeader_SetOrderArray GUICtrlHeader_SetUnicodeFormat GUICtrlIpAddress_ClearAddress GUICtrlIpAddress_Create GUICtrlIpAddress_Destroy GUICtrlIpAddress_Get GUICtrlIpAddress_GetArray GUICtrlIpAddress_GetEx GUICtrlIpAddress_IsBlank GUICtrlIpAddress_Set GUICtrlIpAddress_SetArray GUICtrlIpAddress_SetEx GUICtrlIpAddress_SetFocus GUICtrlIpAddress_SetFont GUICtrlIpAddress_SetRange GUICtrlIpAddress_ShowHide GUICtrlListBox_AddFile GUICtrlListBox_AddString GUICtrlListBox_BeginUpdate GUICtrlListBox_ClickItem GUICtrlListBox_Create GUICtrlListBox_DeleteString GUICtrlListBox_Destroy GUICtrlListBox_Dir GUICtrlListBox_EndUpdate GUICtrlListBox_FindInText GUICtrlListBox_FindString GUICtrlListBox_GetAnchorIndex GUICtrlListBox_GetCaretIndex GUICtrlListBox_GetCount GUICtrlListBox_GetCurSel GUICtrlListBox_GetHorizontalExtent GUICtrlListBox_GetItemData GUICtrlListBox_GetItemHeight GUICtrlListBox_GetItemRect GUICtrlListBox_GetItemRectEx GUICtrlListBox_GetListBoxInfo GUICtrlListBox_GetLocale GUICtrlListBox_GetLocaleCountry GUICtrlListBox_GetLocaleLang GUICtrlListBox_GetLocalePrimLang GUICtrlListBox_GetLocaleSubLang GUICtrlListBox_GetSel GUICtrlListBox_GetSelCount GUICtrlListBox_GetSelItems GUICtrlListBox_GetSelItemsText GUICtrlListBox_GetText GUICtrlListBox_GetTextLen GUICtrlListBox_GetTopIndex GUICtrlListBox_InitStorage GUICtrlListBox_InsertString GUICtrlListBox_ItemFromPoint GUICtrlListBox_ReplaceString GUICtrlListBox_ResetContent GUICtrlListBox_SelectString GUICtrlListBox_SelItemRange GUICtrlListBox_SelItemRangeEx GUICtrlListBox_SetAnchorIndex GUICtrlListBox_SetCaretIndex GUICtrlListBox_SetColumnWidth GUICtrlListBox_SetCurSel GUICtrlListBox_SetHorizontalExtent GUICtrlListBox_SetItemData GUICtrlListBox_SetItemHeight GUICtrlListBox_SetLocale GUICtrlListBox_SetSel GUICtrlListBox_SetTabStops GUICtrlListBox_SetTopIndex GUICtrlListBox_Sort GUICtrlListBox_SwapString GUICtrlListBox_UpdateHScroll GUICtrlListView_AddArray GUICtrlListView_AddColumn GUICtrlListView_AddItem GUICtrlListView_AddSubItem GUICtrlListView_ApproximateViewHeight GUICtrlListView_ApproximateViewRect GUICtrlListView_ApproximateViewWidth GUICtrlListView_Arrange GUICtrlListView_BeginUpdate GUICtrlListView_CancelEditLabel GUICtrlListView_ClickItem GUICtrlListView_CopyItems GUICtrlListView_Create GUICtrlListView_CreateDragImage GUICtrlListView_CreateSolidBitMap GUICtrlListView_DeleteAllItems GUICtrlListView_DeleteColumn GUICtrlListView_DeleteItem GUICtrlListView_DeleteItemsSelected GUICtrlListView_Destroy GUICtrlListView_DrawDragImage GUICtrlListView_EditLabel GUICtrlListView_EnableGroupView GUICtrlListView_EndUpdate GUICtrlListView_EnsureVisible GUICtrlListView_FindInText GUICtrlListView_FindItem GUICtrlListView_FindNearest GUICtrlListView_FindParam GUICtrlListView_FindText GUICtrlListView_GetBkColor GUICtrlListView_GetBkImage GUICtrlListView_GetCallbackMask GUICtrlListView_GetColumn GUICtrlListView_GetColumnCount GUICtrlListView_GetColumnOrder GUICtrlListView_GetColumnOrderArray GUICtrlListView_GetColumnWidth GUICtrlListView_GetCounterPage GUICtrlListView_GetEditControl GUICtrlListView_GetExtendedListViewStyle GUICtrlListView_GetFocusedGroup GUICtrlListView_GetGroupCount GUICtrlListView_GetGroupInfo GUICtrlListView_GetGroupInfoByIndex GUICtrlListView_GetGroupRect GUICtrlListView_GetGroupViewEnabled GUICtrlListView_GetHeader GUICtrlListView_GetHotCursor GUICtrlListView_GetHotItem GUICtrlListView_GetHoverTime GUICtrlListView_GetImageList GUICtrlListView_GetISearchString GUICtrlListView_GetItem GUICtrlListView_GetItemChecked GUICtrlListView_GetItemCount GUICtrlListView_GetItemCut GUICtrlListView_GetItemDropHilited GUICtrlListView_GetItemEx GUICtrlListView_GetItemFocused GUICtrlListView_GetItemGroupID GUICtrlListView_GetItemImage GUICtrlListView_GetItemIndent GUICtrlListView_GetItemParam GUICtrlListView_GetItemPosition GUICtrlListView_GetItemPositionX GUICtrlListView_GetItemPositionY GUICtrlListView_GetItemRect GUICtrlListView_GetItemRectEx GUICtrlListView_GetItemSelected GUICtrlListView_GetItemSpacing GUICtrlListView_GetItemSpacingX GUICtrlListView_GetItemSpacingY GUICtrlListView_GetItemState GUICtrlListView_GetItemStateImage GUICtrlListView_GetItemText GUICtrlListView_GetItemTextArray GUICtrlListView_GetItemTextString GUICtrlListView_GetNextItem GUICtrlListView_GetNumberOfWorkAreas GUICtrlListView_GetOrigin GUICtrlListView_GetOriginX GUICtrlListView_GetOriginY GUICtrlListView_GetOutlineColor GUICtrlListView_GetSelectedColumn GUICtrlListView_GetSelectedCount GUICtrlListView_GetSelectedIndices GUICtrlListView_GetSelectionMark GUICtrlListView_GetStringWidth GUICtrlListView_GetSubItemRect GUICtrlListView_GetTextBkColor GUICtrlListView_GetTextColor GUICtrlListView_GetToolTips GUICtrlListView_GetTopIndex GUICtrlListView_GetUnicodeFormat GUICtrlListView_GetView GUICtrlListView_GetViewDetails GUICtrlListView_GetViewLarge GUICtrlListView_GetViewList GUICtrlListView_GetViewRect GUICtrlListView_GetViewSmall GUICtrlListView_GetViewTile GUICtrlListView_HideColumn GUICtrlListView_HitTest GUICtrlListView_InsertColumn GUICtrlListView_InsertGroup GUICtrlListView_InsertItem GUICtrlListView_JustifyColumn GUICtrlListView_MapIDToIndex GUICtrlListView_MapIndexToID GUICtrlListView_RedrawItems GUICtrlListView_RegisterSortCallBack GUICtrlListView_RemoveAllGroups GUICtrlListView_RemoveGroup GUICtrlListView_Scroll GUICtrlListView_SetBkColor GUICtrlListView_SetBkImage GUICtrlListView_SetCallBackMask GUICtrlListView_SetColumn GUICtrlListView_SetColumnOrder GUICtrlListView_SetColumnOrderArray GUICtrlListView_SetColumnWidth GUICtrlListView_SetExtendedListViewStyle GUICtrlListView_SetGroupInfo GUICtrlListView_SetHotItem GUICtrlListView_SetHoverTime GUICtrlListView_SetIconSpacing GUICtrlListView_SetImageList GUICtrlListView_SetItem GUICtrlListView_SetItemChecked GUICtrlListView_SetItemCount GUICtrlListView_SetItemCut GUICtrlListView_SetItemDropHilited GUICtrlListView_SetItemEx GUICtrlListView_SetItemFocused GUICtrlListView_SetItemGroupID GUICtrlListView_SetItemImage GUICtrlListView_SetItemIndent GUICtrlListView_SetItemParam GUICtrlListView_SetItemPosition GUICtrlListView_SetItemPosition32 GUICtrlListView_SetItemSelected GUICtrlListView_SetItemState GUICtrlListView_SetItemStateImage GUICtrlListView_SetItemText GUICtrlListView_SetOutlineColor GUICtrlListView_SetSelectedColumn GUICtrlListView_SetSelectionMark GUICtrlListView_SetTextBkColor GUICtrlListView_SetTextColor GUICtrlListView_SetToolTips GUICtrlListView_SetUnicodeFormat GUICtrlListView_SetView GUICtrlListView_SetWorkAreas GUICtrlListView_SimpleSort GUICtrlListView_SortItems GUICtrlListView_SubItemHitTest GUICtrlListView_UnRegisterSortCallBack GUICtrlMenu_AddMenuItem GUICtrlMenu_AppendMenu GUICtrlMenu_CalculatePopupWindowPosition GUICtrlMenu_CheckMenuItem GUICtrlMenu_CheckRadioItem GUICtrlMenu_CreateMenu GUICtrlMenu_CreatePopup GUICtrlMenu_DeleteMenu GUICtrlMenu_DestroyMenu GUICtrlMenu_DrawMenuBar GUICtrlMenu_EnableMenuItem GUICtrlMenu_FindItem GUICtrlMenu_FindParent GUICtrlMenu_GetItemBmp GUICtrlMenu_GetItemBmpChecked GUICtrlMenu_GetItemBmpUnchecked GUICtrlMenu_GetItemChecked GUICtrlMenu_GetItemCount GUICtrlMenu_GetItemData GUICtrlMenu_GetItemDefault GUICtrlMenu_GetItemDisabled GUICtrlMenu_GetItemEnabled GUICtrlMenu_GetItemGrayed GUICtrlMenu_GetItemHighlighted GUICtrlMenu_GetItemID GUICtrlMenu_GetItemInfo GUICtrlMenu_GetItemRect GUICtrlMenu_GetItemRectEx GUICtrlMenu_GetItemState GUICtrlMenu_GetItemStateEx GUICtrlMenu_GetItemSubMenu GUICtrlMenu_GetItemText GUICtrlMenu_GetItemType GUICtrlMenu_GetMenu GUICtrlMenu_GetMenuBackground GUICtrlMenu_GetMenuBarInfo GUICtrlMenu_GetMenuContextHelpID GUICtrlMenu_GetMenuData GUICtrlMenu_GetMenuDefaultItem GUICtrlMenu_GetMenuHeight GUICtrlMenu_GetMenuInfo GUICtrlMenu_GetMenuStyle GUICtrlMenu_GetSystemMenu GUICtrlMenu_InsertMenuItem GUICtrlMenu_InsertMenuItemEx GUICtrlMenu_IsMenu GUICtrlMenu_LoadMenu GUICtrlMenu_MapAccelerator GUICtrlMenu_MenuItemFromPoint GUICtrlMenu_RemoveMenu GUICtrlMenu_SetItemBitmaps GUICtrlMenu_SetItemBmp GUICtrlMenu_SetItemBmpChecked GUICtrlMenu_SetItemBmpUnchecked GUICtrlMenu_SetItemChecked GUICtrlMenu_SetItemData GUICtrlMenu_SetItemDefault GUICtrlMenu_SetItemDisabled GUICtrlMenu_SetItemEnabled GUICtrlMenu_SetItemGrayed GUICtrlMenu_SetItemHighlighted GUICtrlMenu_SetItemID GUICtrlMenu_SetItemInfo GUICtrlMenu_SetItemState GUICtrlMenu_SetItemSubMenu GUICtrlMenu_SetItemText GUICtrlMenu_SetItemType GUICtrlMenu_SetMenu GUICtrlMenu_SetMenuBackground GUICtrlMenu_SetMenuContextHelpID GUICtrlMenu_SetMenuData GUICtrlMenu_SetMenuDefaultItem GUICtrlMenu_SetMenuHeight GUICtrlMenu_SetMenuInfo GUICtrlMenu_SetMenuStyle GUICtrlMenu_TrackPopupMenu GUICtrlMonthCal_Create GUICtrlMonthCal_Destroy GUICtrlMonthCal_GetCalendarBorder GUICtrlMonthCal_GetCalendarCount GUICtrlMonthCal_GetColor GUICtrlMonthCal_GetColorArray GUICtrlMonthCal_GetCurSel GUICtrlMonthCal_GetCurSelStr GUICtrlMonthCal_GetFirstDOW GUICtrlMonthCal_GetFirstDOWStr GUICtrlMonthCal_GetMaxSelCount GUICtrlMonthCal_GetMaxTodayWidth GUICtrlMonthCal_GetMinReqHeight GUICtrlMonthCal_GetMinReqRect GUICtrlMonthCal_GetMinReqRectArray GUICtrlMonthCal_GetMinReqWidth GUICtrlMonthCal_GetMonthDelta GUICtrlMonthCal_GetMonthRange GUICtrlMonthCal_GetMonthRangeMax GUICtrlMonthCal_GetMonthRangeMaxStr GUICtrlMonthCal_GetMonthRangeMin GUICtrlMonthCal_GetMonthRangeMinStr GUICtrlMonthCal_GetMonthRangeSpan GUICtrlMonthCal_GetRange GUICtrlMonthCal_GetRangeMax GUICtrlMonthCal_GetRangeMaxStr GUICtrlMonthCal_GetRangeMin GUICtrlMonthCal_GetRangeMinStr GUICtrlMonthCal_GetSelRange GUICtrlMonthCal_GetSelRangeMax GUICtrlMonthCal_GetSelRangeMaxStr GUICtrlMonthCal_GetSelRangeMin GUICtrlMonthCal_GetSelRangeMinStr GUICtrlMonthCal_GetToday GUICtrlMonthCal_GetTodayStr GUICtrlMonthCal_GetUnicodeFormat GUICtrlMonthCal_HitTest GUICtrlMonthCal_SetCalendarBorder GUICtrlMonthCal_SetColor GUICtrlMonthCal_SetCurSel GUICtrlMonthCal_SetDayState GUICtrlMonthCal_SetFirstDOW GUICtrlMonthCal_SetMaxSelCount GUICtrlMonthCal_SetMonthDelta GUICtrlMonthCal_SetRange GUICtrlMonthCal_SetSelRange GUICtrlMonthCal_SetToday GUICtrlMonthCal_SetUnicodeFormat GUICtrlRebar_AddBand GUICtrlRebar_AddToolBarBand GUICtrlRebar_BeginDrag GUICtrlRebar_Create GUICtrlRebar_DeleteBand GUICtrlRebar_Destroy GUICtrlRebar_DragMove GUICtrlRebar_EndDrag GUICtrlRebar_GetBandBackColor GUICtrlRebar_GetBandBorders GUICtrlRebar_GetBandBordersEx GUICtrlRebar_GetBandChildHandle GUICtrlRebar_GetBandChildSize GUICtrlRebar_GetBandCount GUICtrlRebar_GetBandForeColor GUICtrlRebar_GetBandHeaderSize GUICtrlRebar_GetBandID GUICtrlRebar_GetBandIdealSize GUICtrlRebar_GetBandLength GUICtrlRebar_GetBandLParam GUICtrlRebar_GetBandMargins GUICtrlRebar_GetBandMarginsEx GUICtrlRebar_GetBandRect GUICtrlRebar_GetBandRectEx GUICtrlRebar_GetBandStyle GUICtrlRebar_GetBandStyleBreak GUICtrlRebar_GetBandStyleChildEdge GUICtrlRebar_GetBandStyleFixedBMP GUICtrlRebar_GetBandStyleFixedSize GUICtrlRebar_GetBandStyleGripperAlways GUICtrlRebar_GetBandStyleHidden GUICtrlRebar_GetBandStyleHideTitle GUICtrlRebar_GetBandStyleNoGripper GUICtrlRebar_GetBandStyleTopAlign GUICtrlRebar_GetBandStyleUseChevron GUICtrlRebar_GetBandStyleVariableHeight GUICtrlRebar_GetBandText GUICtrlRebar_GetBarHeight GUICtrlRebar_GetBarInfo GUICtrlRebar_GetBKColor GUICtrlRebar_GetColorScheme GUICtrlRebar_GetRowCount GUICtrlRebar_GetRowHeight GUICtrlRebar_GetTextColor GUICtrlRebar_GetToolTips GUICtrlRebar_GetUnicodeFormat GUICtrlRebar_HitTest GUICtrlRebar_IDToIndex GUICtrlRebar_MaximizeBand GUICtrlRebar_MinimizeBand GUICtrlRebar_MoveBand GUICtrlRebar_SetBandBackColor GUICtrlRebar_SetBandForeColor GUICtrlRebar_SetBandHeaderSize GUICtrlRebar_SetBandID GUICtrlRebar_SetBandIdealSize GUICtrlRebar_SetBandLength GUICtrlRebar_SetBandLParam GUICtrlRebar_SetBandStyle GUICtrlRebar_SetBandStyleBreak GUICtrlRebar_SetBandStyleChildEdge GUICtrlRebar_SetBandStyleFixedBMP GUICtrlRebar_SetBandStyleFixedSize GUICtrlRebar_SetBandStyleGripperAlways GUICtrlRebar_SetBandStyleHidden GUICtrlRebar_SetBandStyleHideTitle GUICtrlRebar_SetBandStyleNoGripper GUICtrlRebar_SetBandStyleTopAlign GUICtrlRebar_SetBandStyleUseChevron GUICtrlRebar_SetBandStyleVariableHeight GUICtrlRebar_SetBandText GUICtrlRebar_SetBarInfo GUICtrlRebar_SetBKColor GUICtrlRebar_SetColorScheme GUICtrlRebar_SetTextColor GUICtrlRebar_SetToolTips GUICtrlRebar_SetUnicodeFormat GUICtrlRebar_ShowBand GUICtrlRichEdit_AppendText GUICtrlRichEdit_AutoDetectURL GUICtrlRichEdit_CanPaste GUICtrlRichEdit_CanPasteSpecial GUICtrlRichEdit_CanRedo GUICtrlRichEdit_CanUndo GUICtrlRichEdit_ChangeFontSize GUICtrlRichEdit_Copy GUICtrlRichEdit_Create GUICtrlRichEdit_Cut GUICtrlRichEdit_Deselect GUICtrlRichEdit_Destroy GUICtrlRichEdit_EmptyUndoBuffer GUICtrlRichEdit_FindText GUICtrlRichEdit_FindTextInRange GUICtrlRichEdit_GetBkColor GUICtrlRichEdit_GetCharAttributes GUICtrlRichEdit_GetCharBkColor GUICtrlRichEdit_GetCharColor GUICtrlRichEdit_GetCharPosFromXY GUICtrlRichEdit_GetCharPosOfNextWord GUICtrlRichEdit_GetCharPosOfPreviousWord GUICtrlRichEdit_GetCharWordBreakInfo GUICtrlRichEdit_GetFirstCharPosOnLine GUICtrlRichEdit_GetFont GUICtrlRichEdit_GetLineCount GUICtrlRichEdit_GetLineLength GUICtrlRichEdit_GetLineNumberFromCharPos GUICtrlRichEdit_GetNextRedo GUICtrlRichEdit_GetNextUndo GUICtrlRichEdit_GetNumberOfFirstVisibleLine GUICtrlRichEdit_GetParaAlignment GUICtrlRichEdit_GetParaAttributes GUICtrlRichEdit_GetParaBorder GUICtrlRichEdit_GetParaIndents GUICtrlRichEdit_GetParaNumbering GUICtrlRichEdit_GetParaShading GUICtrlRichEdit_GetParaSpacing GUICtrlRichEdit_GetParaTabStops GUICtrlRichEdit_GetPasswordChar GUICtrlRichEdit_GetRECT GUICtrlRichEdit_GetScrollPos GUICtrlRichEdit_GetSel GUICtrlRichEdit_GetSelAA GUICtrlRichEdit_GetSelText GUICtrlRichEdit_GetSpaceUnit GUICtrlRichEdit_GetText GUICtrlRichEdit_GetTextInLine GUICtrlRichEdit_GetTextInRange GUICtrlRichEdit_GetTextLength GUICtrlRichEdit_GetVersion GUICtrlRichEdit_GetXYFromCharPos GUICtrlRichEdit_GetZoom GUICtrlRichEdit_GotoCharPos GUICtrlRichEdit_HideSelection GUICtrlRichEdit_InsertText GUICtrlRichEdit_IsModified GUICtrlRichEdit_IsTextSelected GUICtrlRichEdit_Paste GUICtrlRichEdit_PasteSpecial GUICtrlRichEdit_PauseRedraw GUICtrlRichEdit_Redo GUICtrlRichEdit_ReplaceText GUICtrlRichEdit_ResumeRedraw GUICtrlRichEdit_ScrollLineOrPage GUICtrlRichEdit_ScrollLines GUICtrlRichEdit_ScrollToCaret GUICtrlRichEdit_SetBkColor GUICtrlRichEdit_SetCharAttributes GUICtrlRichEdit_SetCharBkColor GUICtrlRichEdit_SetCharColor GUICtrlRichEdit_SetEventMask GUICtrlRichEdit_SetFont GUICtrlRichEdit_SetLimitOnText GUICtrlRichEdit_SetModified GUICtrlRichEdit_SetParaAlignment GUICtrlRichEdit_SetParaAttributes GUICtrlRichEdit_SetParaBorder GUICtrlRichEdit_SetParaIndents GUICtrlRichEdit_SetParaNumbering GUICtrlRichEdit_SetParaShading GUICtrlRichEdit_SetParaSpacing GUICtrlRichEdit_SetParaTabStops GUICtrlRichEdit_SetPasswordChar GUICtrlRichEdit_SetReadOnly GUICtrlRichEdit_SetRECT GUICtrlRichEdit_SetScrollPos GUICtrlRichEdit_SetSel GUICtrlRichEdit_SetSpaceUnit GUICtrlRichEdit_SetTabStops GUICtrlRichEdit_SetText GUICtrlRichEdit_SetUndoLimit GUICtrlRichEdit_SetZoom GUICtrlRichEdit_StreamFromFile GUICtrlRichEdit_StreamFromVar GUICtrlRichEdit_StreamToFile GUICtrlRichEdit_StreamToVar GUICtrlRichEdit_Undo GUICtrlSlider_ClearSel GUICtrlSlider_ClearTics GUICtrlSlider_Create GUICtrlSlider_Destroy GUICtrlSlider_GetBuddy GUICtrlSlider_GetChannelRect GUICtrlSlider_GetChannelRectEx GUICtrlSlider_GetLineSize GUICtrlSlider_GetLogicalTics GUICtrlSlider_GetNumTics GUICtrlSlider_GetPageSize GUICtrlSlider_GetPos GUICtrlSlider_GetRange GUICtrlSlider_GetRangeMax GUICtrlSlider_GetRangeMin GUICtrlSlider_GetSel GUICtrlSlider_GetSelEnd GUICtrlSlider_GetSelStart GUICtrlSlider_GetThumbLength GUICtrlSlider_GetThumbRect GUICtrlSlider_GetThumbRectEx GUICtrlSlider_GetTic GUICtrlSlider_GetTicPos GUICtrlSlider_GetToolTips GUICtrlSlider_GetUnicodeFormat GUICtrlSlider_SetBuddy GUICtrlSlider_SetLineSize GUICtrlSlider_SetPageSize GUICtrlSlider_SetPos GUICtrlSlider_SetRange GUICtrlSlider_SetRangeMax GUICtrlSlider_SetRangeMin GUICtrlSlider_SetSel GUICtrlSlider_SetSelEnd GUICtrlSlider_SetSelStart GUICtrlSlider_SetThumbLength GUICtrlSlider_SetTic GUICtrlSlider_SetTicFreq GUICtrlSlider_SetTipSide GUICtrlSlider_SetToolTips GUICtrlSlider_SetUnicodeFormat GUICtrlStatusBar_Create GUICtrlStatusBar_Destroy GUICtrlStatusBar_EmbedControl GUICtrlStatusBar_GetBorders GUICtrlStatusBar_GetBordersHorz GUICtrlStatusBar_GetBordersRect GUICtrlStatusBar_GetBordersVert GUICtrlStatusBar_GetCount GUICtrlStatusBar_GetHeight GUICtrlStatusBar_GetIcon GUICtrlStatusBar_GetParts GUICtrlStatusBar_GetRect GUICtrlStatusBar_GetRectEx GUICtrlStatusBar_GetText GUICtrlStatusBar_GetTextFlags GUICtrlStatusBar_GetTextLength GUICtrlStatusBar_GetTextLengthEx GUICtrlStatusBar_GetTipText GUICtrlStatusBar_GetUnicodeFormat GUICtrlStatusBar_GetWidth GUICtrlStatusBar_IsSimple GUICtrlStatusBar_Resize GUICtrlStatusBar_SetBkColor GUICtrlStatusBar_SetIcon GUICtrlStatusBar_SetMinHeight GUICtrlStatusBar_SetParts GUICtrlStatusBar_SetSimple GUICtrlStatusBar_SetText GUICtrlStatusBar_SetTipText GUICtrlStatusBar_SetUnicodeFormat GUICtrlStatusBar_ShowHide GUICtrlTab_ActivateTab GUICtrlTab_ClickTab GUICtrlTab_Create GUICtrlTab_DeleteAllItems GUICtrlTab_DeleteItem GUICtrlTab_DeselectAll GUICtrlTab_Destroy GUICtrlTab_FindTab GUICtrlTab_GetCurFocus GUICtrlTab_GetCurSel GUICtrlTab_GetDisplayRect GUICtrlTab_GetDisplayRectEx GUICtrlTab_GetExtendedStyle GUICtrlTab_GetImageList GUICtrlTab_GetItem GUICtrlTab_GetItemCount GUICtrlTab_GetItemImage GUICtrlTab_GetItemParam GUICtrlTab_GetItemRect GUICtrlTab_GetItemRectEx GUICtrlTab_GetItemState GUICtrlTab_GetItemText GUICtrlTab_GetRowCount GUICtrlTab_GetToolTips GUICtrlTab_GetUnicodeFormat GUICtrlTab_HighlightItem GUICtrlTab_HitTest GUICtrlTab_InsertItem GUICtrlTab_RemoveImage GUICtrlTab_SetCurFocus GUICtrlTab_SetCurSel GUICtrlTab_SetExtendedStyle GUICtrlTab_SetImageList GUICtrlTab_SetItem GUICtrlTab_SetItemImage GUICtrlTab_SetItemParam GUICtrlTab_SetItemSize GUICtrlTab_SetItemState GUICtrlTab_SetItemText GUICtrlTab_SetMinTabWidth GUICtrlTab_SetPadding GUICtrlTab_SetToolTips GUICtrlTab_SetUnicodeFormat GUICtrlToolbar_AddBitmap GUICtrlToolbar_AddButton GUICtrlToolbar_AddButtonSep GUICtrlToolbar_AddString GUICtrlToolbar_ButtonCount GUICtrlToolbar_CheckButton GUICtrlToolbar_ClickAccel GUICtrlToolbar_ClickButton GUICtrlToolbar_ClickIndex GUICtrlToolbar_CommandToIndex GUICtrlToolbar_Create GUICtrlToolbar_Customize GUICtrlToolbar_DeleteButton GUICtrlToolbar_Destroy GUICtrlToolbar_EnableButton GUICtrlToolbar_FindToolbar GUICtrlToolbar_GetAnchorHighlight GUICtrlToolbar_GetBitmapFlags GUICtrlToolbar_GetButtonBitmap GUICtrlToolbar_GetButtonInfo GUICtrlToolbar_GetButtonInfoEx GUICtrlToolbar_GetButtonParam GUICtrlToolbar_GetButtonRect GUICtrlToolbar_GetButtonRectEx GUICtrlToolbar_GetButtonSize GUICtrlToolbar_GetButtonState GUICtrlToolbar_GetButtonStyle GUICtrlToolbar_GetButtonText GUICtrlToolbar_GetColorScheme GUICtrlToolbar_GetDisabledImageList GUICtrlToolbar_GetExtendedStyle GUICtrlToolbar_GetHotImageList GUICtrlToolbar_GetHotItem GUICtrlToolbar_GetImageList GUICtrlToolbar_GetInsertMark GUICtrlToolbar_GetInsertMarkColor GUICtrlToolbar_GetMaxSize GUICtrlToolbar_GetMetrics GUICtrlToolbar_GetPadding GUICtrlToolbar_GetRows GUICtrlToolbar_GetString GUICtrlToolbar_GetStyle GUICtrlToolbar_GetStyleAltDrag GUICtrlToolbar_GetStyleCustomErase GUICtrlToolbar_GetStyleFlat GUICtrlToolbar_GetStyleList GUICtrlToolbar_GetStyleRegisterDrop GUICtrlToolbar_GetStyleToolTips GUICtrlToolbar_GetStyleTransparent GUICtrlToolbar_GetStyleWrapable GUICtrlToolbar_GetTextRows GUICtrlToolbar_GetToolTips GUICtrlToolbar_GetUnicodeFormat GUICtrlToolbar_HideButton GUICtrlToolbar_HighlightButton GUICtrlToolbar_HitTest GUICtrlToolbar_IndexToCommand GUICtrlToolbar_InsertButton GUICtrlToolbar_InsertMarkHitTest GUICtrlToolbar_IsButtonChecked GUICtrlToolbar_IsButtonEnabled GUICtrlToolbar_IsButtonHidden GUICtrlToolbar_IsButtonHighlighted GUICtrlToolbar_IsButtonIndeterminate GUICtrlToolbar_IsButtonPressed GUICtrlToolbar_LoadBitmap GUICtrlToolbar_LoadImages GUICtrlToolbar_MapAccelerator GUICtrlToolbar_MoveButton GUICtrlToolbar_PressButton GUICtrlToolbar_SetAnchorHighlight GUICtrlToolbar_SetBitmapSize GUICtrlToolbar_SetButtonBitMap GUICtrlToolbar_SetButtonInfo GUICtrlToolbar_SetButtonInfoEx GUICtrlToolbar_SetButtonParam GUICtrlToolbar_SetButtonSize GUICtrlToolbar_SetButtonState GUICtrlToolbar_SetButtonStyle GUICtrlToolbar_SetButtonText GUICtrlToolbar_SetButtonWidth GUICtrlToolbar_SetCmdID GUICtrlToolbar_SetColorScheme GUICtrlToolbar_SetDisabledImageList GUICtrlToolbar_SetDrawTextFlags GUICtrlToolbar_SetExtendedStyle GUICtrlToolbar_SetHotImageList GUICtrlToolbar_SetHotItem GUICtrlToolbar_SetImageList GUICtrlToolbar_SetIndent GUICtrlToolbar_SetIndeterminate GUICtrlToolbar_SetInsertMark GUICtrlToolbar_SetInsertMarkColor GUICtrlToolbar_SetMaxTextRows GUICtrlToolbar_SetMetrics GUICtrlToolbar_SetPadding GUICtrlToolbar_SetParent GUICtrlToolbar_SetRows GUICtrlToolbar_SetStyle GUICtrlToolbar_SetStyleAltDrag GUICtrlToolbar_SetStyleCustomErase GUICtrlToolbar_SetStyleFlat GUICtrlToolbar_SetStyleList GUICtrlToolbar_SetStyleRegisterDrop GUICtrlToolbar_SetStyleToolTips GUICtrlToolbar_SetStyleTransparent GUICtrlToolbar_SetStyleWrapable GUICtrlToolbar_SetToolTips GUICtrlToolbar_SetUnicodeFormat GUICtrlToolbar_SetWindowTheme GUICtrlTreeView_Add GUICtrlTreeView_AddChild GUICtrlTreeView_AddChildFirst GUICtrlTreeView_AddFirst GUICtrlTreeView_BeginUpdate GUICtrlTreeView_ClickItem GUICtrlTreeView_Create GUICtrlTreeView_CreateDragImage GUICtrlTreeView_CreateSolidBitMap GUICtrlTreeView_Delete GUICtrlTreeView_DeleteAll GUICtrlTreeView_DeleteChildren GUICtrlTreeView_Destroy GUICtrlTreeView_DisplayRect GUICtrlTreeView_DisplayRectEx GUICtrlTreeView_EditText GUICtrlTreeView_EndEdit GUICtrlTreeView_EndUpdate GUICtrlTreeView_EnsureVisible GUICtrlTreeView_Expand GUICtrlTreeView_ExpandedOnce GUICtrlTreeView_FindItem GUICtrlTreeView_FindItemEx GUICtrlTreeView_GetBkColor GUICtrlTreeView_GetBold GUICtrlTreeView_GetChecked GUICtrlTreeView_GetChildCount GUICtrlTreeView_GetChildren GUICtrlTreeView_GetCount GUICtrlTreeView_GetCut GUICtrlTreeView_GetDropTarget GUICtrlTreeView_GetEditControl GUICtrlTreeView_GetExpanded GUICtrlTreeView_GetFirstChild GUICtrlTreeView_GetFirstItem GUICtrlTreeView_GetFirstVisible GUICtrlTreeView_GetFocused GUICtrlTreeView_GetHeight GUICtrlTreeView_GetImageIndex GUICtrlTreeView_GetImageListIconHandle GUICtrlTreeView_GetIndent GUICtrlTreeView_GetInsertMarkColor GUICtrlTreeView_GetISearchString GUICtrlTreeView_GetItemByIndex GUICtrlTreeView_GetItemHandle GUICtrlTreeView_GetItemParam GUICtrlTreeView_GetLastChild GUICtrlTreeView_GetLineColor GUICtrlTreeView_GetNext GUICtrlTreeView_GetNextChild GUICtrlTreeView_GetNextSibling GUICtrlTreeView_GetNextVisible GUICtrlTreeView_GetNormalImageList GUICtrlTreeView_GetParentHandle GUICtrlTreeView_GetParentParam GUICtrlTreeView_GetPrev GUICtrlTreeView_GetPrevChild GUICtrlTreeView_GetPrevSibling GUICtrlTreeView_GetPrevVisible GUICtrlTreeView_GetScrollTime GUICtrlTreeView_GetSelected GUICtrlTreeView_GetSelectedImageIndex GUICtrlTreeView_GetSelection GUICtrlTreeView_GetSiblingCount GUICtrlTreeView_GetState GUICtrlTreeView_GetStateImageIndex GUICtrlTreeView_GetStateImageList GUICtrlTreeView_GetText GUICtrlTreeView_GetTextColor GUICtrlTreeView_GetToolTips GUICtrlTreeView_GetTree GUICtrlTreeView_GetUnicodeFormat GUICtrlTreeView_GetVisible GUICtrlTreeView_GetVisibleCount GUICtrlTreeView_HitTest GUICtrlTreeView_HitTestEx GUICtrlTreeView_HitTestItem GUICtrlTreeView_Index GUICtrlTreeView_InsertItem GUICtrlTreeView_IsFirstItem GUICtrlTreeView_IsParent GUICtrlTreeView_Level GUICtrlTreeView_SelectItem GUICtrlTreeView_SelectItemByIndex GUICtrlTreeView_SetBkColor GUICtrlTreeView_SetBold GUICtrlTreeView_SetChecked GUICtrlTreeView_SetCheckedByIndex GUICtrlTreeView_SetChildren GUICtrlTreeView_SetCut GUICtrlTreeView_SetDropTarget GUICtrlTreeView_SetFocused GUICtrlTreeView_SetHeight GUICtrlTreeView_SetIcon GUICtrlTreeView_SetImageIndex GUICtrlTreeView_SetIndent GUICtrlTreeView_SetInsertMark GUICtrlTreeView_SetInsertMarkColor GUICtrlTreeView_SetItemHeight GUICtrlTreeView_SetItemParam GUICtrlTreeView_SetLineColor GUICtrlTreeView_SetNormalImageList GUICtrlTreeView_SetScrollTime GUICtrlTreeView_SetSelected GUICtrlTreeView_SetSelectedImageIndex GUICtrlTreeView_SetState GUICtrlTreeView_SetStateImageIndex GUICtrlTreeView_SetStateImageList GUICtrlTreeView_SetText GUICtrlTreeView_SetTextColor GUICtrlTreeView_SetToolTips GUICtrlTreeView_SetUnicodeFormat GUICtrlTreeView_Sort GUIImageList_Add GUIImageList_AddBitmap GUIImageList_AddIcon GUIImageList_AddMasked GUIImageList_BeginDrag GUIImageList_Copy GUIImageList_Create GUIImageList_Destroy GUIImageList_DestroyIcon GUIImageList_DragEnter GUIImageList_DragLeave GUIImageList_DragMove GUIImageList_Draw GUIImageList_DrawEx GUIImageList_Duplicate GUIImageList_EndDrag GUIImageList_GetBkColor GUIImageList_GetIcon GUIImageList_GetIconHeight GUIImageList_GetIconSize GUIImageList_GetIconSizeEx GUIImageList_GetIconWidth GUIImageList_GetImageCount GUIImageList_GetImageInfoEx GUIImageList_Remove GUIImageList_ReplaceIcon GUIImageList_SetBkColor GUIImageList_SetIconSize GUIImageList_SetImageCount GUIImageList_Swap GUIScrollBars_EnableScrollBar GUIScrollBars_GetScrollBarInfoEx GUIScrollBars_GetScrollBarRect GUIScrollBars_GetScrollBarRGState GUIScrollBars_GetScrollBarXYLineButton GUIScrollBars_GetScrollBarXYThumbBottom GUIScrollBars_GetScrollBarXYThumbTop GUIScrollBars_GetScrollInfo GUIScrollBars_GetScrollInfoEx GUIScrollBars_GetScrollInfoMax GUIScrollBars_GetScrollInfoMin GUIScrollBars_GetScrollInfoPage GUIScrollBars_GetScrollInfoPos GUIScrollBars_GetScrollInfoTrackPos GUIScrollBars_GetScrollPos GUIScrollBars_GetScrollRange GUIScrollBars_Init GUIScrollBars_ScrollWindow GUIScrollBars_SetScrollInfo GUIScrollBars_SetScrollInfoMax GUIScrollBars_SetScrollInfoMin GUIScrollBars_SetScrollInfoPage GUIScrollBars_SetScrollInfoPos GUIScrollBars_SetScrollRange GUIScrollBars_ShowScrollBar GUIToolTip_Activate GUIToolTip_AddTool GUIToolTip_AdjustRect GUIToolTip_BitsToTTF GUIToolTip_Create GUIToolTip_Deactivate GUIToolTip_DelTool GUIToolTip_Destroy GUIToolTip_EnumTools GUIToolTip_GetBubbleHeight GUIToolTip_GetBubbleSize GUIToolTip_GetBubbleWidth GUIToolTip_GetCurrentTool GUIToolTip_GetDelayTime GUIToolTip_GetMargin GUIToolTip_GetMarginEx GUIToolTip_GetMaxTipWidth GUIToolTip_GetText GUIToolTip_GetTipBkColor GUIToolTip_GetTipTextColor GUIToolTip_GetTitleBitMap GUIToolTip_GetTitleText GUIToolTip_GetToolCount GUIToolTip_GetToolInfo GUIToolTip_HitTest GUIToolTip_NewToolRect GUIToolTip_Pop GUIToolTip_PopUp GUIToolTip_SetDelayTime GUIToolTip_SetMargin GUIToolTip_SetMaxTipWidth GUIToolTip_SetTipBkColor GUIToolTip_SetTipTextColor GUIToolTip_SetTitle GUIToolTip_SetToolInfo GUIToolTip_SetWindowTheme GUIToolTip_ToolExists GUIToolTip_ToolToArray GUIToolTip_TrackActivate GUIToolTip_TrackPosition GUIToolTip_Update GUIToolTip_UpdateTipText HexToString IEAction IEAttach IEBodyReadHTML IEBodyReadText IEBodyWriteHTML IECreate IECreateEmbedded IEDocGetObj IEDocInsertHTML IEDocInsertText IEDocReadHTML IEDocWriteHTML IEErrorNotify IEFormElementCheckBoxSelect IEFormElementGetCollection IEFormElementGetObjByName IEFormElementGetValue IEFormElementOptionSelect IEFormElementRadioSelect IEFormElementSetValue IEFormGetCollection IEFormGetObjByName IEFormImageClick IEFormReset IEFormSubmit IEFrameGetCollection IEFrameGetObjByName IEGetObjById IEGetObjByName IEHeadInsertEventScript IEImgClick IEImgGetCollection IEIsFrameSet IELinkClickByIndex IELinkClickByText IELinkGetCollection IELoadWait IELoadWaitTimeout IENavigate IEPropertyGet IEPropertySet IEQuit IETableGetCollection IETableWriteToArray IETagNameAllGetCollection IETagNameGetCollection IE_Example IE_Introduction IE_VersionInfo INetExplorerCapable INetGetSource INetMail INetSmtpMail IsPressed MathCheckDiv Max MemGlobalAlloc MemGlobalFree MemGlobalLock MemGlobalSize MemGlobalUnlock MemMoveMemory MemVirtualAlloc MemVirtualAllocEx MemVirtualFree MemVirtualFreeEx Min MouseTrap NamedPipes_CallNamedPipe NamedPipes_ConnectNamedPipe NamedPipes_CreateNamedPipe NamedPipes_CreatePipe NamedPipes_DisconnectNamedPipe NamedPipes_GetNamedPipeHandleState NamedPipes_GetNamedPipeInfo NamedPipes_PeekNamedPipe NamedPipes_SetNamedPipeHandleState NamedPipes_TransactNamedPipe NamedPipes_WaitNamedPipe Net_Share_ConnectionEnum Net_Share_FileClose Net_Share_FileEnum Net_Share_FileGetInfo Net_Share_PermStr Net_Share_ResourceStr Net_Share_SessionDel Net_Share_SessionEnum Net_Share_SessionGetInfo Net_Share_ShareAdd Net_Share_ShareCheck Net_Share_ShareDel Net_Share_ShareEnum Net_Share_ShareGetInfo Net_Share_ShareSetInfo Net_Share_StatisticsGetSvr Net_Share_StatisticsGetWrk Now NowCalc NowCalcDate NowDate NowTime PathFull PathGetRelative PathMake PathSplit ProcessGetName ProcessGetPriority Radian ReplaceStringInFile RunDos ScreenCapture_Capture ScreenCapture_CaptureWnd ScreenCapture_SaveImage ScreenCapture_SetBMPFormat ScreenCapture_SetJPGQuality ScreenCapture_SetTIFColorDepth ScreenCapture_SetTIFCompression Security__AdjustTokenPrivileges Security__CreateProcessWithToken Security__DuplicateTokenEx Security__GetAccountSid Security__GetLengthSid Security__GetTokenInformation Security__ImpersonateSelf Security__IsValidSid Security__LookupAccountName Security__LookupAccountSid Security__LookupPrivilegeValue Security__OpenProcessToken Security__OpenThreadToken Security__OpenThreadTokenEx Security__SetPrivilege Security__SetTokenInformation Security__SidToStringSid Security__SidTypeStr Security__StringSidToSid SendMessage SendMessageA SetDate SetTime Singleton SoundClose SoundLength SoundOpen SoundPause SoundPlay SoundPos SoundResume SoundSeek SoundStatus SoundStop SQLite_Changes SQLite_Close SQLite_Display2DResult SQLite_Encode SQLite_ErrCode SQLite_ErrMsg SQLite_Escape SQLite_Exec SQLite_FastEncode SQLite_FastEscape SQLite_FetchData SQLite_FetchNames SQLite_GetTable SQLite_GetTable2d SQLite_LastInsertRowID SQLite_LibVersion SQLite_Open SQLite_Query SQLite_QueryFinalize SQLite_QueryReset SQLite_QuerySingleRow SQLite_SafeMode SQLite_SetTimeout SQLite_Shutdown SQLite_SQLiteExe SQLite_Startup SQLite_TotalChanges StringBetween StringExplode StringInsert StringProper StringRepeat StringTitleCase StringToHex TCPIpToName TempFile TicksToTime Timer_Diff Timer_GetIdleTime Timer_GetTimerID Timer_Init Timer_KillAllTimers Timer_KillTimer Timer_SetTimer TimeToTicks VersionCompare viClose viExecCommand viFindGpib viGpibBusReset viGTL viInteractiveControl viOpen viSetAttribute viSetTimeout WeekNumberISO WinAPI_AbortPath WinAPI_ActivateKeyboardLayout WinAPI_AddClipboardFormatListener WinAPI_AddFontMemResourceEx WinAPI_AddFontResourceEx WinAPI_AddIconOverlay WinAPI_AddIconTransparency WinAPI_AddMRUString WinAPI_AdjustBitmap WinAPI_AdjustTokenPrivileges WinAPI_AdjustWindowRectEx WinAPI_AlphaBlend WinAPI_AngleArc WinAPI_AnimateWindow WinAPI_Arc WinAPI_ArcTo WinAPI_ArrayToStruct WinAPI_AssignProcessToJobObject WinAPI_AssocGetPerceivedType WinAPI_AssocQueryString WinAPI_AttachConsole WinAPI_AttachThreadInput WinAPI_BackupRead WinAPI_BackupReadAbort WinAPI_BackupSeek WinAPI_BackupWrite WinAPI_BackupWriteAbort WinAPI_Beep WinAPI_BeginBufferedPaint WinAPI_BeginDeferWindowPos WinAPI_BeginPaint WinAPI_BeginPath WinAPI_BeginUpdateResource WinAPI_BitBlt WinAPI_BringWindowToTop WinAPI_BroadcastSystemMessage WinAPI_BrowseForFolderDlg WinAPI_BufferedPaintClear WinAPI_BufferedPaintInit WinAPI_BufferedPaintSetAlpha WinAPI_BufferedPaintUnInit WinAPI_CallNextHookEx WinAPI_CallWindowProc WinAPI_CallWindowProcW WinAPI_CascadeWindows WinAPI_ChangeWindowMessageFilterEx WinAPI_CharToOem WinAPI_ChildWindowFromPointEx WinAPI_ClientToScreen WinAPI_ClipCursor WinAPI_CloseDesktop WinAPI_CloseEnhMetaFile WinAPI_CloseFigure WinAPI_CloseHandle WinAPI_CloseThemeData WinAPI_CloseWindow WinAPI_CloseWindowStation WinAPI_CLSIDFromProgID WinAPI_CoInitialize WinAPI_ColorAdjustLuma WinAPI_ColorHLSToRGB WinAPI_ColorRGBToHLS WinAPI_CombineRgn WinAPI_CombineTransform WinAPI_CommandLineToArgv WinAPI_CommDlgExtendedError WinAPI_CommDlgExtendedErrorEx WinAPI_CompareString WinAPI_CompressBitmapBits WinAPI_CompressBuffer WinAPI_ComputeCrc32 WinAPI_ConfirmCredentials WinAPI_CopyBitmap WinAPI_CopyCursor WinAPI_CopyEnhMetaFile WinAPI_CopyFileEx WinAPI_CopyIcon WinAPI_CopyImage WinAPI_CopyRect WinAPI_CopyStruct WinAPI_CoTaskMemAlloc WinAPI_CoTaskMemFree WinAPI_CoTaskMemRealloc WinAPI_CoUninitialize WinAPI_Create32BitHBITMAP WinAPI_Create32BitHICON WinAPI_CreateANDBitmap WinAPI_CreateBitmap WinAPI_CreateBitmapIndirect WinAPI_CreateBrushIndirect WinAPI_CreateBuffer WinAPI_CreateBufferFromStruct WinAPI_CreateCaret WinAPI_CreateColorAdjustment WinAPI_CreateCompatibleBitmap WinAPI_CreateCompatibleBitmapEx WinAPI_CreateCompatibleDC WinAPI_CreateDesktop WinAPI_CreateDIB WinAPI_CreateDIBColorTable WinAPI_CreateDIBitmap WinAPI_CreateDIBSection WinAPI_CreateDirectory WinAPI_CreateDirectoryEx WinAPI_CreateEllipticRgn WinAPI_CreateEmptyIcon WinAPI_CreateEnhMetaFile WinAPI_CreateEvent WinAPI_CreateFile WinAPI_CreateFileEx WinAPI_CreateFileMapping WinAPI_CreateFont WinAPI_CreateFontEx WinAPI_CreateFontIndirect WinAPI_CreateGUID WinAPI_CreateHardLink WinAPI_CreateIcon WinAPI_CreateIconFromResourceEx WinAPI_CreateIconIndirect WinAPI_CreateJobObject WinAPI_CreateMargins WinAPI_CreateMRUList WinAPI_CreateMutex WinAPI_CreateNullRgn WinAPI_CreateNumberFormatInfo WinAPI_CreateObjectID WinAPI_CreatePen WinAPI_CreatePoint WinAPI_CreatePolygonRgn WinAPI_CreateProcess WinAPI_CreateProcessWithToken WinAPI_CreateRect WinAPI_CreateRectEx WinAPI_CreateRectRgn WinAPI_CreateRectRgnIndirect WinAPI_CreateRoundRectRgn WinAPI_CreateSemaphore WinAPI_CreateSize WinAPI_CreateSolidBitmap WinAPI_CreateSolidBrush WinAPI_CreateStreamOnHGlobal WinAPI_CreateString WinAPI_CreateSymbolicLink WinAPI_CreateTransform WinAPI_CreateWindowEx WinAPI_CreateWindowStation WinAPI_DecompressBuffer WinAPI_DecryptFile WinAPI_DeferWindowPos WinAPI_DefineDosDevice WinAPI_DefRawInputProc WinAPI_DefSubclassProc WinAPI_DefWindowProc WinAPI_DefWindowProcW WinAPI_DeleteDC WinAPI_DeleteEnhMetaFile WinAPI_DeleteFile WinAPI_DeleteObject WinAPI_DeleteObjectID WinAPI_DeleteVolumeMountPoint WinAPI_DeregisterShellHookWindow WinAPI_DestroyCaret WinAPI_DestroyCursor WinAPI_DestroyIcon WinAPI_DestroyWindow WinAPI_DeviceIoControl WinAPI_DisplayStruct WinAPI_DllGetVersion WinAPI_DllInstall WinAPI_DllUninstall WinAPI_DPtoLP WinAPI_DragAcceptFiles WinAPI_DragFinish WinAPI_DragQueryFileEx WinAPI_DragQueryPoint WinAPI_DrawAnimatedRects WinAPI_DrawBitmap WinAPI_DrawEdge WinAPI_DrawFocusRect WinAPI_DrawFrameControl WinAPI_DrawIcon WinAPI_DrawIconEx WinAPI_DrawLine WinAPI_DrawShadowText WinAPI_DrawText WinAPI_DrawThemeBackground WinAPI_DrawThemeEdge WinAPI_DrawThemeIcon WinAPI_DrawThemeParentBackground WinAPI_DrawThemeText WinAPI_DrawThemeTextEx WinAPI_DuplicateEncryptionInfoFile WinAPI_DuplicateHandle WinAPI_DuplicateTokenEx WinAPI_DwmDefWindowProc WinAPI_DwmEnableBlurBehindWindow WinAPI_DwmEnableComposition WinAPI_DwmExtendFrameIntoClientArea WinAPI_DwmGetColorizationColor WinAPI_DwmGetColorizationParameters WinAPI_DwmGetWindowAttribute WinAPI_DwmInvalidateIconicBitmaps WinAPI_DwmIsCompositionEnabled WinAPI_DwmQueryThumbnailSourceSize WinAPI_DwmRegisterThumbnail WinAPI_DwmSetColorizationParameters WinAPI_DwmSetIconicLivePreviewBitmap WinAPI_DwmSetIconicThumbnail WinAPI_DwmSetWindowAttribute WinAPI_DwmUnregisterThumbnail WinAPI_DwmUpdateThumbnailProperties WinAPI_DWordToFloat WinAPI_DWordToInt WinAPI_EjectMedia WinAPI_Ellipse WinAPI_EmptyWorkingSet WinAPI_EnableWindow WinAPI_EncryptFile WinAPI_EncryptionDisable WinAPI_EndBufferedPaint WinAPI_EndDeferWindowPos WinAPI_EndPaint WinAPI_EndPath WinAPI_EndUpdateResource WinAPI_EnumChildProcess WinAPI_EnumChildWindows WinAPI_EnumDesktops WinAPI_EnumDesktopWindows WinAPI_EnumDeviceDrivers WinAPI_EnumDisplayDevices WinAPI_EnumDisplayMonitors WinAPI_EnumDisplaySettings WinAPI_EnumDllProc WinAPI_EnumFiles WinAPI_EnumFileStreams WinAPI_EnumFontFamilies WinAPI_EnumHardLinks WinAPI_EnumMRUList WinAPI_EnumPageFiles WinAPI_EnumProcessHandles WinAPI_EnumProcessModules WinAPI_EnumProcessThreads WinAPI_EnumProcessWindows WinAPI_EnumRawInputDevices WinAPI_EnumResourceLanguages WinAPI_EnumResourceNames WinAPI_EnumResourceTypes WinAPI_EnumSystemGeoID WinAPI_EnumSystemLocales WinAPI_EnumUILanguages WinAPI_EnumWindows WinAPI_EnumWindowsPopup WinAPI_EnumWindowStations WinAPI_EnumWindowsTop WinAPI_EqualMemory WinAPI_EqualRect WinAPI_EqualRgn WinAPI_ExcludeClipRect WinAPI_ExpandEnvironmentStrings WinAPI_ExtCreatePen WinAPI_ExtCreateRegion WinAPI_ExtFloodFill WinAPI_ExtractIcon WinAPI_ExtractIconEx WinAPI_ExtSelectClipRgn WinAPI_FatalAppExit WinAPI_FatalExit WinAPI_FileEncryptionStatus WinAPI_FileExists WinAPI_FileIconInit WinAPI_FileInUse WinAPI_FillMemory WinAPI_FillPath WinAPI_FillRect WinAPI_FillRgn WinAPI_FindClose WinAPI_FindCloseChangeNotification WinAPI_FindExecutable WinAPI_FindFirstChangeNotification WinAPI_FindFirstFile WinAPI_FindFirstFileName WinAPI_FindFirstStream WinAPI_FindNextChangeNotification WinAPI_FindNextFile WinAPI_FindNextFileName WinAPI_FindNextStream WinAPI_FindResource WinAPI_FindResourceEx WinAPI_FindTextDlg WinAPI_FindWindow WinAPI_FlashWindow WinAPI_FlashWindowEx WinAPI_FlattenPath WinAPI_FloatToDWord WinAPI_FloatToInt WinAPI_FlushFileBuffers WinAPI_FlushFRBuffer WinAPI_FlushViewOfFile WinAPI_FormatDriveDlg WinAPI_FormatMessage WinAPI_FrameRect WinAPI_FrameRgn WinAPI_FreeLibrary WinAPI_FreeMemory WinAPI_FreeMRUList WinAPI_FreeResource WinAPI_GdiComment WinAPI_GetActiveWindow WinAPI_GetAllUsersProfileDirectory WinAPI_GetAncestor WinAPI_GetApplicationRestartSettings WinAPI_GetArcDirection WinAPI_GetAsyncKeyState WinAPI_GetBinaryType WinAPI_GetBitmapBits WinAPI_GetBitmapDimension WinAPI_GetBitmapDimensionEx WinAPI_GetBkColor WinAPI_GetBkMode WinAPI_GetBoundsRect WinAPI_GetBrushOrg WinAPI_GetBufferedPaintBits WinAPI_GetBufferedPaintDC WinAPI_GetBufferedPaintTargetDC WinAPI_GetBufferedPaintTargetRect WinAPI_GetBValue WinAPI_GetCaretBlinkTime WinAPI_GetCaretPos WinAPI_GetCDType WinAPI_GetClassInfoEx WinAPI_GetClassLongEx WinAPI_GetClassName WinAPI_GetClientHeight WinAPI_GetClientRect WinAPI_GetClientWidth WinAPI_GetClipboardSequenceNumber WinAPI_GetClipBox WinAPI_GetClipCursor WinAPI_GetClipRgn WinAPI_GetColorAdjustment WinAPI_GetCompressedFileSize WinAPI_GetCompression WinAPI_GetConnectedDlg WinAPI_GetCurrentDirectory WinAPI_GetCurrentHwProfile WinAPI_GetCurrentObject WinAPI_GetCurrentPosition WinAPI_GetCurrentProcess WinAPI_GetCurrentProcessExplicitAppUserModelID WinAPI_GetCurrentProcessID WinAPI_GetCurrentThemeName WinAPI_GetCurrentThread WinAPI_GetCurrentThreadId WinAPI_GetCursor WinAPI_GetCursorInfo WinAPI_GetDateFormat WinAPI_GetDC WinAPI_GetDCEx WinAPI_GetDefaultPrinter WinAPI_GetDefaultUserProfileDirectory WinAPI_GetDesktopWindow WinAPI_GetDeviceCaps WinAPI_GetDeviceDriverBaseName WinAPI_GetDeviceDriverFileName WinAPI_GetDeviceGammaRamp WinAPI_GetDIBColorTable WinAPI_GetDIBits WinAPI_GetDiskFreeSpaceEx WinAPI_GetDlgCtrlID WinAPI_GetDlgItem WinAPI_GetDllDirectory WinAPI_GetDriveBusType WinAPI_GetDriveGeometryEx WinAPI_GetDriveNumber WinAPI_GetDriveType WinAPI_GetDurationFormat WinAPI_GetEffectiveClientRect WinAPI_GetEnhMetaFile WinAPI_GetEnhMetaFileBits WinAPI_GetEnhMetaFileDescription WinAPI_GetEnhMetaFileDimension WinAPI_GetEnhMetaFileHeader WinAPI_GetErrorMessage WinAPI_GetErrorMode WinAPI_GetExitCodeProcess WinAPI_GetExtended WinAPI_GetFileAttributes WinAPI_GetFileID WinAPI_GetFileInformationByHandle WinAPI_GetFileInformationByHandleEx WinAPI_GetFilePointerEx WinAPI_GetFileSizeEx WinAPI_GetFileSizeOnDisk WinAPI_GetFileTitle WinAPI_GetFileType WinAPI_GetFileVersionInfo WinAPI_GetFinalPathNameByHandle WinAPI_GetFinalPathNameByHandleEx WinAPI_GetFocus WinAPI_GetFontMemoryResourceInfo WinAPI_GetFontName WinAPI_GetFontResourceInfo WinAPI_GetForegroundWindow WinAPI_GetFRBuffer WinAPI_GetFullPathName WinAPI_GetGeoInfo WinAPI_GetGlyphOutline WinAPI_GetGraphicsMode WinAPI_GetGuiResources WinAPI_GetGUIThreadInfo WinAPI_GetGValue WinAPI_GetHandleInformation WinAPI_GetHGlobalFromStream WinAPI_GetIconDimension WinAPI_GetIconInfo WinAPI_GetIconInfoEx WinAPI_GetIdleTime WinAPI_GetKeyboardLayout WinAPI_GetKeyboardLayoutList WinAPI_GetKeyboardState WinAPI_GetKeyboardType WinAPI_GetKeyNameText WinAPI_GetKeyState WinAPI_GetLastActivePopup WinAPI_GetLastError WinAPI_GetLastErrorMessage WinAPI_GetLayeredWindowAttributes WinAPI_GetLocaleInfo WinAPI_GetLogicalDrives WinAPI_GetMapMode WinAPI_GetMemorySize WinAPI_GetMessageExtraInfo WinAPI_GetModuleFileNameEx WinAPI_GetModuleHandle WinAPI_GetModuleHandleEx WinAPI_GetModuleInformation WinAPI_GetMonitorInfo WinAPI_GetMousePos WinAPI_GetMousePosX WinAPI_GetMousePosY WinAPI_GetMUILanguage WinAPI_GetNumberFormat WinAPI_GetObject WinAPI_GetObjectID WinAPI_GetObjectInfoByHandle WinAPI_GetObjectNameByHandle WinAPI_GetObjectType WinAPI_GetOpenFileName WinAPI_GetOutlineTextMetrics WinAPI_GetOverlappedResult WinAPI_GetParent WinAPI_GetParentProcess WinAPI_GetPerformanceInfo WinAPI_GetPEType WinAPI_GetPhysicallyInstalledSystemMemory WinAPI_GetPixel WinAPI_GetPolyFillMode WinAPI_GetPosFromRect WinAPI_GetPriorityClass WinAPI_GetProcAddress WinAPI_GetProcessAffinityMask WinAPI_GetProcessCommandLine WinAPI_GetProcessFileName WinAPI_GetProcessHandleCount WinAPI_GetProcessID WinAPI_GetProcessIoCounters WinAPI_GetProcessMemoryInfo WinAPI_GetProcessName WinAPI_GetProcessShutdownParameters WinAPI_GetProcessTimes WinAPI_GetProcessUser WinAPI_GetProcessWindowStation WinAPI_GetProcessWorkingDirectory WinAPI_GetProfilesDirectory WinAPI_GetPwrCapabilities WinAPI_GetRawInputBuffer WinAPI_GetRawInputBufferLength WinAPI_GetRawInputData WinAPI_GetRawInputDeviceInfo WinAPI_GetRegionData WinAPI_GetRegisteredRawInputDevices WinAPI_GetRegKeyNameByHandle WinAPI_GetRgnBox WinAPI_GetROP2 WinAPI_GetRValue WinAPI_GetSaveFileName WinAPI_GetShellWindow WinAPI_GetStartupInfo WinAPI_GetStdHandle WinAPI_GetStockObject WinAPI_GetStretchBltMode WinAPI_GetString WinAPI_GetSysColor WinAPI_GetSysColorBrush WinAPI_GetSystemDefaultLangID WinAPI_GetSystemDefaultLCID WinAPI_GetSystemDefaultUILanguage WinAPI_GetSystemDEPPolicy WinAPI_GetSystemInfo WinAPI_GetSystemMetrics WinAPI_GetSystemPowerStatus WinAPI_GetSystemTimes WinAPI_GetSystemWow64Directory WinAPI_GetTabbedTextExtent WinAPI_GetTempFileName WinAPI_GetTextAlign WinAPI_GetTextCharacterExtra WinAPI_GetTextColor WinAPI_GetTextExtentPoint32 WinAPI_GetTextFace WinAPI_GetTextMetrics WinAPI_GetThemeAppProperties WinAPI_GetThemeBackgroundContentRect WinAPI_GetThemeBackgroundExtent WinAPI_GetThemeBackgroundRegion WinAPI_GetThemeBitmap WinAPI_GetThemeBool WinAPI_GetThemeColor WinAPI_GetThemeDocumentationProperty WinAPI_GetThemeEnumValue WinAPI_GetThemeFilename WinAPI_GetThemeFont WinAPI_GetThemeInt WinAPI_GetThemeMargins WinAPI_GetThemeMetric WinAPI_GetThemePartSize WinAPI_GetThemePosition WinAPI_GetThemePropertyOrigin WinAPI_GetThemeRect WinAPI_GetThemeString WinAPI_GetThemeSysBool WinAPI_GetThemeSysColor WinAPI_GetThemeSysColorBrush WinAPI_GetThemeSysFont WinAPI_GetThemeSysInt WinAPI_GetThemeSysSize WinAPI_GetThemeSysString WinAPI_GetThemeTextExtent WinAPI_GetThemeTextMetrics WinAPI_GetThemeTransitionDuration WinAPI_GetThreadDesktop WinAPI_GetThreadErrorMode WinAPI_GetThreadLocale WinAPI_GetThreadUILanguage WinAPI_GetTickCount WinAPI_GetTickCount64 WinAPI_GetTimeFormat WinAPI_GetTopWindow WinAPI_GetUDFColorMode WinAPI_GetUpdateRect WinAPI_GetUpdateRgn WinAPI_GetUserDefaultLangID WinAPI_GetUserDefaultLCID WinAPI_GetUserDefaultUILanguage WinAPI_GetUserGeoID WinAPI_GetUserObjectInformation WinAPI_GetVersion WinAPI_GetVersionEx WinAPI_GetVolumeInformation WinAPI_GetVolumeInformationByHandle WinAPI_GetVolumeNameForVolumeMountPoint WinAPI_GetWindow WinAPI_GetWindowDC WinAPI_GetWindowDisplayAffinity WinAPI_GetWindowExt WinAPI_GetWindowFileName WinAPI_GetWindowHeight WinAPI_GetWindowInfo WinAPI_GetWindowLong WinAPI_GetWindowOrg WinAPI_GetWindowPlacement WinAPI_GetWindowRect WinAPI_GetWindowRgn WinAPI_GetWindowRgnBox WinAPI_GetWindowSubclass WinAPI_GetWindowText WinAPI_GetWindowTheme WinAPI_GetWindowThreadProcessId WinAPI_GetWindowWidth WinAPI_GetWorkArea WinAPI_GetWorldTransform WinAPI_GetXYFromPoint WinAPI_GlobalMemoryStatus WinAPI_GradientFill WinAPI_GUIDFromString WinAPI_GUIDFromStringEx WinAPI_HashData WinAPI_HashString WinAPI_HiByte WinAPI_HideCaret WinAPI_HiDWord WinAPI_HiWord WinAPI_InflateRect WinAPI_InitMUILanguage WinAPI_InProcess WinAPI_IntersectClipRect WinAPI_IntersectRect WinAPI_IntToDWord WinAPI_IntToFloat WinAPI_InvalidateRect WinAPI_InvalidateRgn WinAPI_InvertANDBitmap WinAPI_InvertColor WinAPI_InvertRect WinAPI_InvertRgn WinAPI_IOCTL WinAPI_IsAlphaBitmap WinAPI_IsBadCodePtr WinAPI_IsBadReadPtr WinAPI_IsBadStringPtr WinAPI_IsBadWritePtr WinAPI_IsChild WinAPI_IsClassName WinAPI_IsDoorOpen WinAPI_IsElevated WinAPI_IsHungAppWindow WinAPI_IsIconic WinAPI_IsInternetConnected WinAPI_IsLoadKBLayout WinAPI_IsMemory WinAPI_IsNameInExpression WinAPI_IsNetworkAlive WinAPI_IsPathShared WinAPI_IsProcessInJob WinAPI_IsProcessorFeaturePresent WinAPI_IsRectEmpty WinAPI_IsThemeActive WinAPI_IsThemeBackgroundPartiallyTransparent WinAPI_IsThemePartDefined WinAPI_IsValidLocale WinAPI_IsWindow WinAPI_IsWindowEnabled WinAPI_IsWindowUnicode WinAPI_IsWindowVisible WinAPI_IsWow64Process WinAPI_IsWritable WinAPI_IsZoomed WinAPI_Keybd_Event WinAPI_KillTimer WinAPI_LineDDA WinAPI_LineTo WinAPI_LoadBitmap WinAPI_LoadCursor WinAPI_LoadCursorFromFile WinAPI_LoadIcon WinAPI_LoadIconMetric WinAPI_LoadIconWithScaleDown WinAPI_LoadImage WinAPI_LoadIndirectString WinAPI_LoadKeyboardLayout WinAPI_LoadLibrary WinAPI_LoadLibraryEx WinAPI_LoadMedia WinAPI_LoadResource WinAPI_LoadShell32Icon WinAPI_LoadString WinAPI_LoadStringEx WinAPI_LoByte WinAPI_LocalFree WinAPI_LockDevice WinAPI_LockFile WinAPI_LockResource WinAPI_LockWindowUpdate WinAPI_LockWorkStation WinAPI_LoDWord WinAPI_LongMid WinAPI_LookupIconIdFromDirectoryEx WinAPI_LoWord WinAPI_LPtoDP WinAPI_MAKELANGID WinAPI_MAKELCID WinAPI_MakeLong WinAPI_MakeQWord WinAPI_MakeWord WinAPI_MapViewOfFile WinAPI_MapVirtualKey WinAPI_MaskBlt WinAPI_MessageBeep WinAPI_MessageBoxCheck WinAPI_MessageBoxIndirect WinAPI_MirrorIcon WinAPI_ModifyWorldTransform WinAPI_MonitorFromPoint WinAPI_MonitorFromRect WinAPI_MonitorFromWindow WinAPI_Mouse_Event WinAPI_MoveFileEx WinAPI_MoveMemory WinAPI_MoveTo WinAPI_MoveToEx WinAPI_MoveWindow WinAPI_MsgBox WinAPI_MulDiv WinAPI_MultiByteToWideChar WinAPI_MultiByteToWideCharEx WinAPI_NtStatusToDosError WinAPI_OemToChar WinAPI_OffsetClipRgn WinAPI_OffsetPoints WinAPI_OffsetRect WinAPI_OffsetRgn WinAPI_OffsetWindowOrg WinAPI_OpenDesktop WinAPI_OpenFileById WinAPI_OpenFileDlg WinAPI_OpenFileMapping WinAPI_OpenIcon WinAPI_OpenInputDesktop WinAPI_OpenJobObject WinAPI_OpenMutex WinAPI_OpenProcess WinAPI_OpenProcessToken WinAPI_OpenSemaphore WinAPI_OpenThemeData WinAPI_OpenWindowStation WinAPI_PageSetupDlg WinAPI_PaintDesktop WinAPI_PaintRgn WinAPI_ParseURL WinAPI_ParseUserName WinAPI_PatBlt WinAPI_PathAddBackslash WinAPI_PathAddExtension WinAPI_PathAppend WinAPI_PathBuildRoot WinAPI_PathCanonicalize WinAPI_PathCommonPrefix WinAPI_PathCompactPath WinAPI_PathCompactPathEx WinAPI_PathCreateFromUrl WinAPI_PathFindExtension WinAPI_PathFindFileName WinAPI_PathFindNextComponent WinAPI_PathFindOnPath WinAPI_PathGetArgs WinAPI_PathGetCharType WinAPI_PathGetDriveNumber WinAPI_PathIsContentType WinAPI_PathIsDirectory WinAPI_PathIsDirectoryEmpty WinAPI_PathIsExe WinAPI_PathIsFileSpec WinAPI_PathIsLFNFileSpec WinAPI_PathIsRelative WinAPI_PathIsRoot WinAPI_PathIsSameRoot WinAPI_PathIsSystemFolder WinAPI_PathIsUNC WinAPI_PathIsUNCServer WinAPI_PathIsUNCServerShare WinAPI_PathMakeSystemFolder WinAPI_PathMatchSpec WinAPI_PathParseIconLocation WinAPI_PathRelativePathTo WinAPI_PathRemoveArgs WinAPI_PathRemoveBackslash WinAPI_PathRemoveExtension WinAPI_PathRemoveFileSpec WinAPI_PathRenameExtension WinAPI_PathSearchAndQualify WinAPI_PathSkipRoot WinAPI_PathStripPath WinAPI_PathStripToRoot WinAPI_PathToRegion WinAPI_PathUndecorate WinAPI_PathUnExpandEnvStrings WinAPI_PathUnmakeSystemFolder WinAPI_PathUnquoteSpaces WinAPI_PathYetAnotherMakeUniqueName WinAPI_PickIconDlg WinAPI_PlayEnhMetaFile WinAPI_PlaySound WinAPI_PlgBlt WinAPI_PointFromRect WinAPI_PolyBezier WinAPI_PolyBezierTo WinAPI_PolyDraw WinAPI_Polygon WinAPI_PostMessage WinAPI_PrimaryLangId WinAPI_PrintDlg WinAPI_PrintDlgEx WinAPI_PrintWindow WinAPI_ProgIDFromCLSID WinAPI_PtInRect WinAPI_PtInRectEx WinAPI_PtInRegion WinAPI_PtVisible WinAPI_QueryDosDevice WinAPI_QueryInformationJobObject WinAPI_QueryPerformanceCounter WinAPI_QueryPerformanceFrequency WinAPI_RadialGradientFill WinAPI_ReadDirectoryChanges WinAPI_ReadFile WinAPI_ReadProcessMemory WinAPI_Rectangle WinAPI_RectInRegion WinAPI_RectIsEmpty WinAPI_RectVisible WinAPI_RedrawWindow WinAPI_RegCloseKey WinAPI_RegConnectRegistry WinAPI_RegCopyTree WinAPI_RegCopyTreeEx WinAPI_RegCreateKey WinAPI_RegDeleteEmptyKey WinAPI_RegDeleteKey WinAPI_RegDeleteKeyValue WinAPI_RegDeleteTree WinAPI_RegDeleteTreeEx WinAPI_RegDeleteValue WinAPI_RegDisableReflectionKey WinAPI_RegDuplicateHKey WinAPI_RegEnableReflectionKey WinAPI_RegEnumKey WinAPI_RegEnumValue WinAPI_RegFlushKey WinAPI_RegisterApplicationRestart WinAPI_RegisterClass WinAPI_RegisterClassEx WinAPI_RegisterHotKey WinAPI_RegisterPowerSettingNotification WinAPI_RegisterRawInputDevices WinAPI_RegisterShellHookWindow WinAPI_RegisterWindowMessage WinAPI_RegLoadMUIString WinAPI_RegNotifyChangeKeyValue WinAPI_RegOpenKey WinAPI_RegQueryInfoKey WinAPI_RegQueryLastWriteTime WinAPI_RegQueryMultipleValues WinAPI_RegQueryReflectionKey WinAPI_RegQueryValue WinAPI_RegRestoreKey WinAPI_RegSaveKey WinAPI_RegSetValue WinAPI_ReleaseCapture WinAPI_ReleaseDC WinAPI_ReleaseMutex WinAPI_ReleaseSemaphore WinAPI_ReleaseStream WinAPI_RemoveClipboardFormatListener WinAPI_RemoveDirectory WinAPI_RemoveFontMemResourceEx WinAPI_RemoveFontResourceEx WinAPI_RemoveWindowSubclass WinAPI_ReOpenFile WinAPI_ReplaceFile WinAPI_ReplaceTextDlg WinAPI_ResetEvent WinAPI_RestartDlg WinAPI_RestoreDC WinAPI_RGB WinAPI_RotatePoints WinAPI_RoundRect WinAPI_SaveDC WinAPI_SaveFileDlg WinAPI_SaveHBITMAPToFile WinAPI_SaveHICONToFile WinAPI_ScaleWindowExt WinAPI_ScreenToClient WinAPI_SearchPath WinAPI_SelectClipPath WinAPI_SelectClipRgn WinAPI_SelectObject WinAPI_SendMessageTimeout WinAPI_SetActiveWindow WinAPI_SetArcDirection WinAPI_SetBitmapBits WinAPI_SetBitmapDimensionEx WinAPI_SetBkColor WinAPI_SetBkMode WinAPI_SetBoundsRect WinAPI_SetBrushOrg WinAPI_SetCapture WinAPI_SetCaretBlinkTime WinAPI_SetCaretPos WinAPI_SetClassLongEx WinAPI_SetColorAdjustment WinAPI_SetCompression WinAPI_SetCurrentDirectory WinAPI_SetCurrentProcessExplicitAppUserModelID WinAPI_SetCursor WinAPI_SetDCBrushColor WinAPI_SetDCPenColor WinAPI_SetDefaultPrinter WinAPI_SetDeviceGammaRamp WinAPI_SetDIBColorTable WinAPI_SetDIBits WinAPI_SetDIBitsToDevice WinAPI_SetDllDirectory WinAPI_SetEndOfFile WinAPI_SetEnhMetaFileBits WinAPI_SetErrorMode WinAPI_SetEvent WinAPI_SetFileAttributes WinAPI_SetFileInformationByHandleEx WinAPI_SetFilePointer WinAPI_SetFilePointerEx WinAPI_SetFileShortName WinAPI_SetFileValidData WinAPI_SetFocus WinAPI_SetFont WinAPI_SetForegroundWindow WinAPI_SetFRBuffer WinAPI_SetGraphicsMode WinAPI_SetHandleInformation WinAPI_SetInformationJobObject WinAPI_SetKeyboardLayout WinAPI_SetKeyboardState WinAPI_SetLastError WinAPI_SetLayeredWindowAttributes WinAPI_SetLocaleInfo WinAPI_SetMapMode WinAPI_SetMessageExtraInfo WinAPI_SetParent WinAPI_SetPixel WinAPI_SetPolyFillMode WinAPI_SetPriorityClass WinAPI_SetProcessAffinityMask WinAPI_SetProcessShutdownParameters WinAPI_SetProcessWindowStation WinAPI_SetRectRgn WinAPI_SetROP2 WinAPI_SetSearchPathMode WinAPI_SetStretchBltMode WinAPI_SetSysColors WinAPI_SetSystemCursor WinAPI_SetTextAlign WinAPI_SetTextCharacterExtra WinAPI_SetTextColor WinAPI_SetTextJustification WinAPI_SetThemeAppProperties WinAPI_SetThreadDesktop WinAPI_SetThreadErrorMode WinAPI_SetThreadExecutionState WinAPI_SetThreadLocale WinAPI_SetThreadUILanguage WinAPI_SetTimer WinAPI_SetUDFColorMode WinAPI_SetUserGeoID WinAPI_SetUserObjectInformation WinAPI_SetVolumeMountPoint WinAPI_SetWindowDisplayAffinity WinAPI_SetWindowExt WinAPI_SetWindowLong WinAPI_SetWindowOrg WinAPI_SetWindowPlacement WinAPI_SetWindowPos WinAPI_SetWindowRgn WinAPI_SetWindowsHookEx WinAPI_SetWindowSubclass WinAPI_SetWindowText WinAPI_SetWindowTheme WinAPI_SetWinEventHook WinAPI_SetWorldTransform WinAPI_SfcIsFileProtected WinAPI_SfcIsKeyProtected WinAPI_ShellAboutDlg WinAPI_ShellAddToRecentDocs WinAPI_ShellChangeNotify WinAPI_ShellChangeNotifyDeregister WinAPI_ShellChangeNotifyRegister WinAPI_ShellCreateDirectory WinAPI_ShellEmptyRecycleBin WinAPI_ShellExecute WinAPI_ShellExecuteEx WinAPI_ShellExtractAssociatedIcon WinAPI_ShellExtractIcon WinAPI_ShellFileOperation WinAPI_ShellFlushSFCache WinAPI_ShellGetFileInfo WinAPI_ShellGetIconOverlayIndex WinAPI_ShellGetImageList WinAPI_ShellGetKnownFolderIDList WinAPI_ShellGetKnownFolderPath WinAPI_ShellGetLocalizedName WinAPI_ShellGetPathFromIDList WinAPI_ShellGetSetFolderCustomSettings WinAPI_ShellGetSettings WinAPI_ShellGetSpecialFolderLocation WinAPI_ShellGetSpecialFolderPath WinAPI_ShellGetStockIconInfo WinAPI_ShellILCreateFromPath WinAPI_ShellNotifyIcon WinAPI_ShellNotifyIconGetRect WinAPI_ShellObjectProperties WinAPI_ShellOpenFolderAndSelectItems WinAPI_ShellOpenWithDlg WinAPI_ShellQueryRecycleBin WinAPI_ShellQueryUserNotificationState WinAPI_ShellRemoveLocalizedName WinAPI_ShellRestricted WinAPI_ShellSetKnownFolderPath WinAPI_ShellSetLocalizedName WinAPI_ShellSetSettings WinAPI_ShellStartNetConnectionDlg WinAPI_ShellUpdateImage WinAPI_ShellUserAuthenticationDlg WinAPI_ShellUserAuthenticationDlgEx WinAPI_ShortToWord WinAPI_ShowCaret WinAPI_ShowCursor WinAPI_ShowError WinAPI_ShowLastError WinAPI_ShowMsg WinAPI_ShowOwnedPopups WinAPI_ShowWindow WinAPI_ShutdownBlockReasonCreate WinAPI_ShutdownBlockReasonDestroy WinAPI_ShutdownBlockReasonQuery WinAPI_SizeOfResource WinAPI_StretchBlt WinAPI_StretchDIBits WinAPI_StrFormatByteSize WinAPI_StrFormatByteSizeEx WinAPI_StrFormatKBSize WinAPI_StrFromTimeInterval WinAPI_StringFromGUID WinAPI_StringLenA WinAPI_StringLenW WinAPI_StrLen WinAPI_StrokeAndFillPath WinAPI_StrokePath WinAPI_StructToArray WinAPI_SubLangId WinAPI_SubtractRect WinAPI_SwapDWord WinAPI_SwapQWord WinAPI_SwapWord WinAPI_SwitchColor WinAPI_SwitchDesktop WinAPI_SwitchToThisWindow WinAPI_SystemParametersInfo WinAPI_TabbedTextOut WinAPI_TerminateJobObject WinAPI_TerminateProcess WinAPI_TextOut WinAPI_TileWindows WinAPI_TrackMouseEvent WinAPI_TransparentBlt WinAPI_TwipsPerPixelX WinAPI_TwipsPerPixelY WinAPI_UnhookWindowsHookEx WinAPI_UnhookWinEvent WinAPI_UnionRect WinAPI_UnionStruct WinAPI_UniqueHardwareID WinAPI_UnloadKeyboardLayout WinAPI_UnlockFile WinAPI_UnmapViewOfFile WinAPI_UnregisterApplicationRestart WinAPI_UnregisterClass WinAPI_UnregisterHotKey WinAPI_UnregisterPowerSettingNotification WinAPI_UpdateLayeredWindow WinAPI_UpdateLayeredWindowEx WinAPI_UpdateLayeredWindowIndirect WinAPI_UpdateResource WinAPI_UpdateWindow WinAPI_UrlApplyScheme WinAPI_UrlCanonicalize WinAPI_UrlCombine WinAPI_UrlCompare WinAPI_UrlCreateFromPath WinAPI_UrlFixup WinAPI_UrlGetPart WinAPI_UrlHash WinAPI_UrlIs WinAPI_UserHandleGrantAccess WinAPI_ValidateRect WinAPI_ValidateRgn WinAPI_VerQueryRoot WinAPI_VerQueryValue WinAPI_VerQueryValueEx WinAPI_WaitForInputIdle WinAPI_WaitForMultipleObjects WinAPI_WaitForSingleObject WinAPI_WideCharToMultiByte WinAPI_WidenPath WinAPI_WindowFromDC WinAPI_WindowFromPoint WinAPI_WordToShort WinAPI_Wow64EnableWow64FsRedirection WinAPI_WriteConsole WinAPI_WriteFile WinAPI_WriteProcessMemory WinAPI_ZeroMemory WinNet_AddConnection WinNet_AddConnection2 WinNet_AddConnection3 WinNet_CancelConnection WinNet_CancelConnection2 WinNet_CloseEnum WinNet_ConnectionDialog WinNet_ConnectionDialog1 WinNet_DisconnectDialog WinNet_DisconnectDialog1 WinNet_EnumResource WinNet_GetConnection WinNet_GetConnectionPerformance WinNet_GetLastError WinNet_GetNetworkInformation WinNet_GetProviderName WinNet_GetResourceInformation WinNet_GetResourceParent WinNet_GetUniversalName WinNet_GetUser WinNet_OpenEnum WinNet_RestoreConnection WinNet_UseConnection Word_Create Word_DocAdd Word_DocAttach Word_DocClose Word_DocExport Word_DocFind Word_DocFindReplace Word_DocGet Word_DocLinkAdd Word_DocLinkGet Word_DocOpen Word_DocPictureAdd Word_DocPrint Word_DocRangeSet Word_DocSave Word_DocSaveAs Word_DocTableRead Word_DocTableWrite Word_Quit\",I={\nv:[e.C(\";\",\"$\",{r:0}),e.C(\"#cs\",\"#ce\"),e.C(\"#comments-start\",\"#comments-end\")]},n={cN:\"variable\",b:\"\\\\$[A-z0-9_]+\"},l={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},o={v:[e.BNM,e.CNM]},a={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"include include-once NoTrayIcon OnAutoItStartRegister RequireAdmin pragma Au3Stripper_Ignore_Funcs Au3Stripper_Ignore_Variables Au3Stripper_Off Au3Stripper_On Au3Stripper_Parameters AutoIt3Wrapper_Add_Constants AutoIt3Wrapper_Au3Check_Parameters AutoIt3Wrapper_Au3Check_Stop_OnWarning AutoIt3Wrapper_Aut2Exe AutoIt3Wrapper_AutoIt3 AutoIt3Wrapper_AutoIt3Dir AutoIt3Wrapper_Change2CUI AutoIt3Wrapper_Compile_Both AutoIt3Wrapper_Compression AutoIt3Wrapper_EndIf AutoIt3Wrapper_Icon AutoIt3Wrapper_If_Compile AutoIt3Wrapper_If_Run AutoIt3Wrapper_Jump_To_First_Error AutoIt3Wrapper_OutFile AutoIt3Wrapper_OutFile_Type AutoIt3Wrapper_OutFile_X64 AutoIt3Wrapper_PlugIn_Funcs AutoIt3Wrapper_Res_Comment Autoit3Wrapper_Res_Compatibility AutoIt3Wrapper_Res_Description AutoIt3Wrapper_Res_Field AutoIt3Wrapper_Res_File_Add AutoIt3Wrapper_Res_FileVersion AutoIt3Wrapper_Res_FileVersion_AutoIncrement AutoIt3Wrapper_Res_Icon_Add AutoIt3Wrapper_Res_Language AutoIt3Wrapper_Res_LegalCopyright AutoIt3Wrapper_Res_ProductVersion AutoIt3Wrapper_Res_requestedExecutionLevel AutoIt3Wrapper_Res_SaveSource AutoIt3Wrapper_Run_After AutoIt3Wrapper_Run_Au3Check AutoIt3Wrapper_Run_Au3Stripper AutoIt3Wrapper_Run_Before AutoIt3Wrapper_Run_Debug_Mode AutoIt3Wrapper_Run_SciTE_Minimized AutoIt3Wrapper_Run_SciTE_OutputPane_Minimized AutoIt3Wrapper_Run_Tidy AutoIt3Wrapper_ShowProgress AutoIt3Wrapper_Testing AutoIt3Wrapper_Tidy_Stop_OnError AutoIt3Wrapper_UPX_Parameters AutoIt3Wrapper_UseUPX AutoIt3Wrapper_UseX64 AutoIt3Wrapper_Version AutoIt3Wrapper_Versioning AutoIt3Wrapper_Versioning_Parameters Tidy_Off Tidy_On Tidy_Parameters EndRegion Region\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[l,{cN:\"string\",v:[{b:\"<\",e:\">\"},{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]}]},l,I]},_={cN:\"constant\",b:\"@[A-z0-9_]+\"},G={cN:\"function\",bK:\"Func\",e:\"$\",eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[n,l,o]}]};return{cI:!0,i:/\\/\\*/,k:{keyword:t,built_in:i,literal:r},c:[I,n,l,o,a,_,G]}});hljs.registerLanguage(\"gams\",function(e){var s=\"abort acronym acronyms alias all and assign binary card diag display else1 eps eq equation equations file files for1 free ge gt if inf integer le loop lt maximizing minimizing model models na ne negative no not option options or ord parameter parameters positive prod putpage puttl repeat sameas scalar scalars semicont semiint set1 sets smax smin solve sos1 sos2 sum system table then until using variable variables while1 xor yes\";return{aliases:[\"gms\"],cI:!0,k:s,c:[{cN:\"section\",bK:\"sets parameters variables equations\",e:\";\",c:[{b:\"/\",e:\"/\",c:[e.NM]}]},{cN:\"string\",b:\"\\\\*{3}\",e:\"\\\\*{3}\"},e.NM,{cN:\"number\",b:\"\\\\$[a-zA-Z0-9]+\"}]}});hljs.registerLanguage(\"matlab\",function(e){var a=[e.CNM,{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]}],s={r:0,c:[{cN:\"operator\",b:/'['\\.]*/}]};return{k:{keyword:\"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson\"},i:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function\",e:\"$\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},{cN:\"params\",b:\"\\\\[\",e:\"\\\\]\"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]\",c:a,r:0,starts:s},{cN:\"cell\",b:\"\\\\{\",e:/}/,c:a,r:0,starts:s},{b:/\\)/,r:0,starts:s},e.C(\"^\\\\s*\\\\%\\\\{\\\\s*$\",\"^\\\\s*\\\\%\\\\}\\\\s*$\"),e.C(\"\\\\%\",\"$\")].concat(a)}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"prompt\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},a={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},l={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,a,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,a,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,l]},{cN:\"decorator\",b:/^[\\t ]*@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"lisp\",function(b){var e=\"[a-zA-Z_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#][a-zA-Z0-9_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#!]*\",c=\"\\\\|[^]*?\\\\|\",r=\"(\\\\-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|\\\\-)?\\\\d+)?\",a={cN:\"shebang\",b:\"^#!\",e:\"$\"},i={cN:\"literal\",b:\"\\\\b(t{1}|nil)\\\\b\"},l={cN:\"number\",v:[{b:r,r:0},{b:\"#(b|B)[0-1]+(/[0-1]+)?\"},{b:\"#(o|O)[0-7]+(/[0-7]+)?\"},{b:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{b:\"#(c|C)\\\\(\"+r+\" +\"+r,e:\"\\\\)\"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(\";\",\"$\",{r:0}),n={cN:\"variable\",b:\"\\\\*\",e:\"\\\\*\"},u={cN:\"keyword\",b:\"[:&]\"+e},N={b:e,r:0},o={b:c},s={b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,t,l,N]},v={cN:\"quoted\",c:[l,t,n,u,s,N],v:[{b:\"['`]\\\\(\",e:\"\\\\)\"},{b:\"\\\\(quote \",e:\"\\\\)\",k:\"quote\"},{b:\"'\"+c}]},f={cN:\"quoted\",v:[{b:\"'\"+e},{b:\"#'\"+e+\"(::\"+e+\")*\"}]},g={cN:\"list\",b:\"\\\\(\\\\s*\",e:\"\\\\)\"},q={eW:!0,r:0};return g.c=[{cN:\"keyword\",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage(\"golo\",function(e){return{k:{keyword:\"println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull\",typename:\"DynamicObject|10 DynamicVariable struct Observable map set vector list array\",literal:\"true false null\"},c:[e.HCM,e.QSM,e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"lua\",function(e){var t=\"\\\\[=*\\\\[\",a=\"\\\\]=*\\\\]\",r={b:t,e:a,c:[\"self\"]},n=[e.C(\"--(?!\"+t+\")\",\"$\"),e.C(\"--\"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:\"and break do else elseif end false for if in local nil not or repeat return then true until while\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},c:n.concat([{cN:\"function\",bK:\"function\",e:\"\\\\)\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{cN:\"params\",b:\"\\\\(\",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:\"string\",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage(\"dos\",function(e){var r=e.C(/@?rem\\b/,/$/,{r:10}),t={cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0};return{aliases:[\"bat\",\"cmd\"],cI:!0,i:/\\/\\*/,k:{flow:\"if else goto for in do call exit not exist errorlevel defined\",operator:\"equ neq lss leq gtr geq\",keyword:\"shift cd dir echo setlocal endlocal set pause copy\",stream:\"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux\",winutils:\"ping net ipconfig taskkill xcopy ren del\",built_in:\"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol\"},c:[{cN:\"envvar\",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:\"function\",b:t.b,e:\"goto:eof\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),r]},{cN:\"number\",b:\"\\\\b\\\\d+\",r:0},r]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={cN:\"variable\",v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},o=[e.BE,r,n],i=[n,e.HCM,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:o,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"sub\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",r:5},{cN:\"operator\",b:\"-\\\\w\\\\b\",r:0},{b:\"^__DATA__$\",e:\"^__END__$\",sL:\"mojolicious\",c:[{b:\"^@@.*\",e:\"$\",cN:\"comment\"}]}];return r.c=i,s.c=i,{aliases:[\"pl\"],k:t,c:i}});hljs.registerLanguage(\"protobuf\",function(e){return{k:{keyword:\"package import option optional required repeated group\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,{cN:\"class\",bK:\"message enum service\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"function\",bK:\"rpc\",e:/;/,eE:!0,k:\"rpc returns\"},{cN:\"constant\",b:/^\\s*[A-Z_]+/,e:/\\s*=/,eE:!0}]}});hljs.registerLanguage(\"accesslog\",function(T){return{c:[{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+\\\\b\",r:0},{cN:\"string\",b:'\"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',e:'\"',k:\"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE\",i:\"\\\\n\",r:10},{cN:\"string\",b:/\\[/,e:/\\]/,i:\"\\\\n\"},{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"}]}});hljs.registerLanguage(\"java\",function(e){var a=e.UIR+\"(<\"+e.UIR+\">)?\",t=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",c=\"\\\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+)(\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))?|\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))([eE][-+]?\\\\d+)?)[lLfF]?\",r={cN:\"number\",b:c,r:0};return{aliases:[\"jsp\"],k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+a+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"vala\",function(e){return{k:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object\",literal:\"false true null\"},c:[{cN:\"class\",bK:\"class interface delegate namespace\",e:\"{\",eE:!0,i:\"[^,:\\\\n\\\\s\\\\.]\",c:[e.UTM]},e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:5},e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"^#\",e:\"$\",r:2},{cN:\"constant\",b:\" [A-Z_]+ \",r:0}]}});hljs.registerLanguage(\"tcl\",function(e){return{aliases:[\"tk\"],k:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",c:[e.C(\";[ \\\\t]*#\",\"$\"),e.C(\"^[ \\\\t]*#\",\"$\"),{bK:\"proc\",e:\"[\\\\{]\",eE:!0,c:[{cN:\"symbol\",b:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"[ \\\\t\\\\n\\\\r]\",eW:!0,eE:!0}]},{cN:\"variable\",eE:!0,v:[{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\\\(([a-zA-Z0-9_])*\\\\)\",e:\"[^a-zA-Z0-9_\\\\}\\\\$]\"},{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"(\\\\))?[^a-zA-Z0-9_\\\\}\\\\$]\"}]},{cN:\"string\",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:\"number\",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage(\"haml\",function(s){return{cI:!0,c:[{cN:\"doctype\",b:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",r:10},s.C(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{r:0}),{b:\"^\\\\s*(-|=|!=)(?!#)\",starts:{e:\"\\\\n\",sL:\"ruby\"}},{cN:\"tag\",b:\"^\\\\s*%\",c:[{cN:\"title\",b:\"\\\\w+\"},{cN:\"value\",b:\"[#\\\\.][\\\\w-]+\"},{b:\"{\\\\s*\",e:\"\\\\s*}\",eE:!0,c:[{b:\":\\\\w+\\\\s*=>\",e:\",\\\\s+\",rB:!0,eW:!0,c:[{cN:\"symbol\",b:\":\\\\w+\"},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]},{b:\"\\\\(\\\\s*\",e:\"\\\\s*\\\\)\",eE:!0,c:[{b:\"\\\\w+\\\\s*=\",e:\"\\\\s+\",rB:!0,eW:!0,c:[{cN:\"attribute\",b:\"\\\\w+\",r:0},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]}]},{cN:\"bullet\",b:\"^\\\\s*[=~]\\\\s*\",r:0},{b:\"#{\",starts:{e:\"}\",sL:\"ruby\"}}]}});hljs.registerLanguage(\"autohotkey\",function(e){var r={cN:\"escape\",b:\"`[\\\\s\\\\S]\"},c=e.C(\";\",\"$\",{r:0}),n=[{cN:\"built_in\",b:\"A_[a-zA-Z0-9]+\"},{cN:\"built_in\",bK:\"ComSpec Clipboard ClipboardAll ErrorLevel\"}];return{cI:!0,k:{keyword:\"Break Continue Else Gosub If Loop Return While\",literal:\"A true false NOT AND OR\"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:\"number\",b:e.NR,r:0},{cN:\"var_expand\",b:\"%\",e:\"%\",i:\"\\\\n\",c:[r]},{cN:\"label\",c:[r],v:[{b:'^[^\\\\n\";]+::(?!=)'},{b:'^[^\\\\n\";]+:(?!=)',r:0}]},{b:\",\\\\s*,\",r:10}])}});hljs.registerLanguage(\"nimrod\",function(t){return{aliases:[\"nim\"],k:{keyword:\"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield\",literal:\"shared guarded stdin stdout stderr result|10 true false\"},c:[{cN:\"decorator\",b:/{\\./,e:/\\.}/,r:10},{cN:\"string\",b:/[a-zA-Z]\\w*\"/,e:/\"/,c:[{b:/\"\"/}]},{cN:\"string\",b:/([a-zA-Z]\\w*)?\"\"\"/,e:/\"\"\"/},t.QSM,{cN:\"type\",b:/\\b[A-Z]\\w+\\b/,r:0},{cN:\"type\",b:/\\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\\b/},{cN:\"number\",b:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage(\"mizar\",function(e){return{k:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",c:[e.C(\"::\",\"$\")]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"header\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"blockquote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{cN:\"horizontal_rule\",b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link_url\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"link_reference\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:\"^\\\\[.+\\\\]:\",rB:!0,c:[{cN:\"link_reference\",b:\"\\\\[\",e:\"\\\\]:\",eB:!0,eE:!0,starts:{cN:\"link_url\",e:\"$\"}}]}]}});hljs.registerLanguage(\"aspectj\",function(e){var t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",i=\"get set args call\";return{k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"aspect\",bK:\"aspect\",e:/[{;=]/,eE:!0,i:/[:;\"\\[\\]]/,c:[{bK:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UTM,{b:/\\([^\\)]*/,e:/[)]+/,k:t+\" \"+i,eE:!1}]},{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,r:0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"pointcut after before around throwing returning\",e:/[)]/,eE:!1,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",k:t+\" \"+i},e.QSM]},{bK:\"new throw\",r:0},{cN:\"function\",b:/\\w+ +\\w+(\\.)?\\w+\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"dns\",function(d){return{aliases:[\"bind\",\"zone\"],k:{keyword:\"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT\"},c:[d.C(\";\",\"$\"),{cN:\"operator\",bK:\"$TTL $GENERATE $INCLUDE $ORIGIN\"},{cN:\"number\",b:\"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:)))\"},{cN:\"number\",b:\"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\"}]}});hljs.registerLanguage(\"django\",function(e){var t={cN:\"filter\",b:/\\|[A-Za-z]+:?/,k:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\",c:[{cN:\"argument\",b:/\"/,e:/\"/},{cN:\"argument\",b:/'/,e:/'/}]};return{aliases:[\"jinja\"],cI:!0,sL:\"xml\",c:[e.C(/\\{%\\s*comment\\s*%}/,/\\{%\\s*endcomment\\s*%}/),e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\",c:[t]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage(\"step21\",function(e){var r=\"[A-Z_][A-Z0-9_.]*\",i=\"END-ISO-10303-21;\",l={literal:\"\",built_in:\"\",keyword:\"HEADER ENDSEC DATA\"},s={cN:\"preprocessor\",b:\"ISO-10303-21;\",r:10},t=[e.CLCM,e.CBCM,e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"label\",v:[{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"p21\",\"step\",\"stp\"],cI:!0,l:r,k:l,c:[{cN:\"preprocessor\",b:i,r:10},s].concat(t)}});hljs.registerLanguage(\"roboconf\",function(e){var n=\"[a-zA-Z-_][^\\n{\\r\\n]+\\\\{\";return{aliases:[\"graph\",\"instances\"],cI:!0,k:\"import\",c:[{cN:\"facet\",b:\"^facet \"+n,e:\"}\",k:\"facet installer exports children extends\",c:[e.HCM]},{cN:\"instance-of\",b:\"^instance of \"+n,e:\"}\",k:\"name count channels instance-data instance-state instance of\",c:[{cN:\"keyword\",b:\"[a-zA-Z-_]+( |\t)*:\"},e.HCM]},{cN:\"component\",b:\"^\"+n,e:\"}\",l:\"\\\\(?[a-zA-Z]+\\\\)?\",k:\"installer exports children extends imports facets alias (optional)\",c:[{cN:\"string\",b:\"\\\\.[a-zA-Z-_]+\",e:\"\\\\s|,|;\",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage(\"capnproto\",function(t){return{aliases:[\"capnp\"],k:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},c:[t.QSM,t.NM,t.HCM,{cN:\"shebang\",b:/@0x[\\w\\d]{16};/,i:/\\n/},{cN:\"number\",b:/@\\d+\\b/},{cN:\"class\",bK:\"struct enum\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"class\",bK:\"interface\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage(\"livescript\",function(e){var t={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf\",literal:\"true false null undefined yes no on off it that void\",built_in:\"npm require console print module global window document\"},s=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",i=e.inherit(e.TM,{b:s}),n={cN:\"subst\",b:/#\\{/,e:/}/,k:t},r={cN:\"subst\",b:/#[A-Za-z$_]/,e:/(?:\\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:\"number\",b:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",r:0,starts:{e:\"(\\\\s*/)?\",r:0}},{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,n,r]},{b:/\"/,e:/\"/,c:[e.BE,n,r]},{b:/\\\\/,e:/(\\s|$)/,eE:!0}]},{cN:\"pi\",v:[{b:\"//\",e:\"//[gim]*\",c:[n,e.HCM]},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+s},{b:\"``\",e:\"``\",eB:!0,eE:!0,sL:\"javascript\"}];n.c=c;var a={cN:\"params\",b:\"\\\\(\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:t,c:[\"self\"].concat(c)}]};return{aliases:[\"ls\"],k:t,i:/\\/\\*/,c:c.concat([e.C(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HCM,{cN:\"function\",c:[i,a],rB:!0,v:[{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B\\\\->\\\\*?\",e:\"\\\\->\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\))?\\\\s*\\\\B[-~]{1,2}>\\\\*?\",e:\"[-~]{1,2}>\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B!?[-~]{1,2}>\\\\*?\",e:\"!?[-~]{1,2}>\\\\*?\"}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:s+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"crystal\",function(e){function b(e,b){var r=[{b:e,e:b}];return r[0].c=r,r}var r=\"(_[uif](8|16|32|64))?\",c=\"[a-zA-Z_]\\\\w*[!?=]?\",n=\"!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",i=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\][=?]?\",s={keyword:\"abstract alias as asm begin break case class def do else elsif end ensure enum extend for fun if ifdef include instance_sizeof is_a? lib macro module next of out pointerof private protected rescue responds_to? return require self sizeof struct super then type typeof union unless until when while with yield __DIR__ __FILE__ __LINE__\",literal:\"false nil true\"},t={cN:\"subst\",b:\"#{\",e:\"}\",k:s},a={cN:\"expansion\",v:[{b:\"\\\\{\\\\{\",e:\"\\\\}\\\\}\"},{b:\"\\\\{%\",e:\"%\\\\}\"}],k:s,r:10},o={cN:\"string\",c:[e.BE,t],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%w?\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%w?\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%w?{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%w?<\",e:\">\",c:b(\"<\",\">\")},{b:\"%w?/\",e:\"/\"},{b:\"%w?%\",e:\"%\"},{b:\"%w?-\",e:\"-\"},{b:\"%w?\\\\|\",e:\"\\\\|\"}],r:0},u={b:\"(\"+n+\")\\\\s*\",c:[{cN:\"regexp\",c:[e.BE,t],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}]}],r:0},l={cN:\"regexp\",c:[e.BE,t],v:[{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}],r:0},_={cN:\"annotation\",b:\"@\\\\[\",e:\"\\\\]\",r:5},f=[a,o,u,l,_,e.HCM,{cN:\"class\",bK:\"class module struct\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}]},{cN:\"class\",bK:\"lib enum union\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"})],r:10},{cN:\"function\",bK:\"def\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})]},{cN:\"function\",bK:\"fun macro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})],r:5},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[o,{b:i}],r:0},{cN:\"number\",v:[{b:\"\\\\b0b([01_]*[01])\"+r},{b:\"\\\\b0o([0-7_]*[0-7])\"+r},{b:\"\\\\b0x([A-Fa-f0-9_]*[A-Fa-f0-9])\"+r},{b:\"\\\\b(([0-9][0-9_]*[0-9]|[0-9])(\\\\.[0-9_]*[0-9])?([eE][+-]?[0-9_]*[0-9])?)\"+r}],r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?|%)(\\\\w+))\"}];return t.c=f,_.c=f,a.c=f.slice(1),{aliases:[\"cr\"],l:c,k:s,c:f}});hljs.registerLanguage(\"powershell\",function(e){var t={b:\"`[\\\\s\\\\S]\",r:0},r={cN:\"variable\",v:[{b:/\\$[\\w\\d][\\w\\d_:]*/}]},o={cN:\"string\",b:/\"/,e:/\"/,c:[t,r,{cN:\"variable\",b:/\\$[A-z]/,e:/[^A-z]/}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"ps\"],l:/-?[A-z\\.\\-]+/,cI:!0,k:{keyword:\"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch\",literal:\"$null $true $false\",built_in:\"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning\",operator:\"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace\"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage(\"ruby\",function(e){var c=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r=\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",b={cN:\"doctag\",b:\"@[A-Za-z]+\"},a={cN:\"value\",b:\"#<\",e:\">\"},n=[e.C(\"#\",\"$\",{c:[b]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[b],r:10}),e.C(\"^__END__\",\"\\\\n$\")],s={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(n)},{cN:\"function\",bK:\"def\",e:\"$|;\",c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[t,{b:c}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,s],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o=\"[>?]>\",l=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",N=[{b:/^\\s*=>/,cN:\"status\",starts:{e:\"$\",c:d}},{cN:\"prompt\",b:\"^(\"+o+\"|\"+l+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,i:/\\/\\*/,c:n.concat(N).concat(d)}});hljs.registerLanguage(\"brainfuck\",function(r){var n={cN:\"literal\",b:\"[\\\\+\\\\-]\",r:0};return{aliases:[\"bf\"],c:[r.C(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{rE:!0,r:0}),{cN:\"title\",b:\"[\\\\[\\\\]]\",r:0},{cN:\"string\",b:\"[\\\\.,]\",r:0},{b:/\\+\\+|\\-\\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage(\"thrift\",function(e){var t=\"bool byte i16 i32 i64 double string binary\";return{k:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:\"class\",bK:\"struct enum service exception\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:\"\\\\b(set|list|map)\\\\s*<\",e:\">\",k:t,c:[\"self\"]}]}});hljs.registerLanguage(\"less\",function(e){var r=\"[\\\\w-]+\",t=\"(\"+r+\"|@{\"+r+\"})\",a=[],c=[],n=function(e){return{cN:\"string\",b:\"~?\"+e+\".*?\"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+\"\\\\(\",e:\"\\\\(\",rB:!0,eE:!0,r:0},a)},b={b:\"\\\\(\",e:\"\\\\)\",c:c,r:0};c.push(e.CLCM,e.CBCM,n(\"'\"),n('\"'),e.CSSNM,i(\"hexcolor\",\"#[0-9A-Fa-f]+\\\\b\"),s(\"function\",\"(url|data-uri)\",{starts:{cN:\"string\",e:\"[\\\\)\\\\n]\",eE:!0}}),s(\"function\",r),b,i(\"variable\",\"@@?\"+r,10),i(\"variable\",\"@{\"+r+\"}\"),i(\"built_in\",\"~?`[^`]*?`\"),{cN:\"attribute\",b:r+\"\\\\s*:\",e:\":\",rB:!0,eE:!0});var o=c.concat({b:\"{\",e:\"}\",c:a}),u={bK:\"when\",eW:!0,c:[{bK:\"and not\"}].concat(c)},C={cN:\"attribute\",b:t,e:\":\",eE:!0,c:[e.CLCM,e.CBCM],i:/\\S/,starts:{e:\"[;}]\",rE:!0,c:c,i:\"[<=$]\"}},l={cN:\"at_rule\",b:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{e:\"[;{}]\",rE:!0,c:c,r:0}},d={cN:\"variable\",v:[{b:\"@\"+r+\"\\\\s*:\",r:15},{b:\"@\"+r}],starts:{e:\"[;}]\",rE:!0,c:o}},p={v:[{b:\"[\\\\.#:&\\\\[]\",e:\"[;{}]\"},{b:t+\"[^;]*{\",e:\"{\"}],rB:!0,rE:!0,i:\"[<='$\\\"]\",c:[e.CLCM,e.CBCM,u,i(\"keyword\",\"all\\\\b\"),i(\"variable\",\"@{\"+r+\"}\"),i(\"tag\",t+\"%?\",0),i(\"id\",\"#\"+t),i(\"class\",\"\\\\.\"+t,0),i(\"keyword\",\"&\",0),s(\"pseudo\",\":not\"),s(\"keyword\",\":extend\"),i(\"pseudo\",\"::?\"+t),{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\"},{b:\"\\\\(\",e:\"\\\\)\",c:o},{b:\"!important\"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:\"[=>'/<($\\\"]\",c:a}});hljs.registerLanguage(\"scilab\",function(e){var n=[e.CNM,{cN:\"string\",b:\"'|\\\"\",e:\"'|\\\"\",c:[e.BE,{b:\"''\"}]}];return{aliases:[\"sci\"],k:{keyword:\"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix\"},i:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function endfunction\",e:\"$\",k:\"function endfunction|10\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]},{cN:\"transposed_variable\",b:\"[a-zA-Z_][a-zA-Z_0-9]*('+[\\\\.']*|[\\\\.']+)\",e:\"\",r:0},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]'*[\\\\.']*\",r:0,c:n},e.C(\"//\",\"$\")].concat(n)}});hljs.registerLanguage(\"oxygene\",function(e){var r=\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\",t=e.C(\"{\",\"}\",{r:0}),a=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{r:10}),n={cN:\"string\",b:\"'\",e:\"'\",c:[{b:\"''\"}]},o={cN:\"string\",b:\"(#\\\\d+)+\"},i={cN:\"function\",bK:\"function constructor destructor procedure method\",e:\"[:;]\",k:\"function constructor|10 destructor|10 procedure|10 method|10\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*|</|=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:\"class\",b:\"=\\\\bclass\\\\b\",e:\"end;\",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage(\"lasso\",function(e){var r=\"[a-zA-Z_][a-zA-Z0-9_.]*\",a=\"<\\\\?(lasso(script)?|=)\",t=\"\\\\]|\\\\?>\",s={literal:\"true false none minimal full all void bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock\",keyword:\"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},n=e.C(\"<!--\",\"-->\",{r:0}),i={cN:\"preprocessor\",b:\"\\\\[noprocess\\\\]\",starts:{cN:\"markup\",e:\"\\\\[/noprocess\\\\]\",rE:!0,c:[n]}},o={cN:\"preprocessor\",b:\"\\\\[/noprocess|\"+a},l={cN:\"variable\",b:\"'\"+r+\"'\"},c=[e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CLCM,e.CBCM,e.inherit(e.CNM,{b:e.CNR+\"|(infinity|nan)\\\\b\"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"variable\",v:[{b:\"[#$]\"+r},{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]},{cN:\"tag\",b:\"::\\\\s*\",e:r,i:\"\\\\W\"},{cN:\"attribute\",v:[{b:\"-(?!infinity)\"+e.UIR,r:0},{b:\"(\\\\.\\\\.\\\\.)\"}]},{cN:\"subst\",v:[{b:\"->\\\\s*\",c:[l]},{b:\"->|\\\\\\\\|&&?|\\\\|\\\\||!(?!=|>)|(and|or|not)\\\\b\",r:0}]},{cN:\"built_in\",b:\"\\\\.\\\\.?\\\\s*\",r:0,c:[l]},{cN:\"class\",bK:\"define\",rE:!0,e:\"\\\\(|=>\",c:[e.inherit(e.TM,{b:e.UIR+\"(=(?!>))?\"})]}];return{aliases:[\"ls\",\"lassoscript\"],cI:!0,l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[|\"+a,rE:!0,r:0,c:[n]}},i,o,{cN:\"preprocessor\",b:\"\\\\[no_square_brackets\",starts:{e:\"\\\\[/no_square_brackets\\\\]\",l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[noprocess\\\\]|\"+a,rE:!0,c:[n]}},i,o].concat(c)}},{cN:\"preprocessor\",b:\"\\\\[\",r:0},{cN:\"shebang\",b:\"^#!.+lasso9\\\\b\",r:10}].concat(c)}});hljs.registerLanguage(\"gcode\",function(e){var N=\"[A-Z_][A-Z0-9_.]*\",i=\"\\\\%\",c={literal:\"\",built_in:\"\",keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},r={cN:\"preprocessor\",b:\"([O])([0-9]+)\"},l=[e.CLCM,e.CBCM,e.C(/\\(/,/\\)/),e.inherit(e.CNM,{b:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))|\"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"keyword\",b:\"([G])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"([M])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"(VC|VS|#)\",e:\"(\\\\d+)\"},{cN:\"title\",b:\"(VZOFX|VZOFY|VZOFZ)\"},{cN:\"built_in\",b:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",e:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))(\\\\])\"},{cN:\"label\",v:[{b:\"N\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"nc\"],cI:!0,l:N,k:c,c:[{cN:\"preprocessor\",b:i},r].concat(l)}});hljs.registerLanguage(\"scala\",function(e){var t={cN:\"annotation\",b:\"@[A-Za-z]+\"},r={cN:\"string\",b:'u?r?\"\"\"',e:'\"\"\"',r:10},a={cN:\"symbol\",b:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},c={cN:\"type\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},i={cN:\"title\",b:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,r:0},n={cN:\"class\",bK:\"class object trait type\",e:/[:={\\[(\\n;]/,c:[{cN:\"keyword\",bK:\"extends with\",r:10},i]},l={cN:\"function\",bK:\"def\",e:/[:={\\[(\\n;]/,c:[i]};return{k:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},c:[e.CLCM,e.CBCM,r,e.QSM,a,c,l,n,e.CNM,t]}});hljs.registerLanguage(\"armasm\",function(s){return{cI:!0,aliases:[\"arm\"],l:\"\\\\.?\"+s.IR,k:{literal:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 \",preprocessor:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND \",built_in:\"{PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @ \"},c:[{cN:\"keyword\",b:\"\\\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?\",e:\"\\\\s\"},s.C(\"[;@]\",\"$\",{r:0}),s.CBCM,s.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",r:0},{cN:\"title\",b:\"\\\\|\",e:\"\\\\|\",i:\"\\\\n\",r:0},{cN:\"number\",v:[{b:\"[#$=]?0x[0-9a-f]+\"},{b:\"[#$=]?0b[01]+\"},{b:\"[#$=]\\\\d+\"},{b:\"\\\\b\\\\d+\"}],r:0},{cN:\"label\",v:[{b:\"^[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+\"},{b:\"^\\\\s*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{b:\"[=#]\\\\w+\"}],r:0}]}});hljs.registerLanguage(\"avrasm\",function(r){return{cI:!0,l:\"\\\\.?\"+r.IR,k:{keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",preprocessor:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},c:[r.CBCM,r.C(\";\",\"$\",{r:0}),r.CNM,r.BNM,{cN:\"number\",b:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},r.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"},{cN:\"label\",b:\"^[A-Za-z0-9_.$]+:\"},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"localvars\",b:\"@[0-9]+\"}]}});hljs.registerLanguage(\"profile\",function(e){return{c:[e.CNM,{cN:\"built_in\",b:\"{\",e:\"}$\",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:\"filename\",b:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",e:\":\",eE:!0},{cN:\"header\",b:\"(ncalls|tottime|cumtime)\",e:\"$\",k:\"ncalls tottime|10 cumtime|10 filename\",r:10},{cN:\"summary\",b:\"function calls\",e:\"$\",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:\"function\",b:\"\\\\(\",e:\"\\\\)$\",c:[e.UTM],r:0}]}});hljs.registerLanguage(\"mercury\",function(e){var i={keyword:\"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure\",pragma:\"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses\",preprocessor:\"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing\",built_in:\"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure\"},r={cN:\"label\",b:\"XXX\",e:\"$\",eW:!0,r:0},t=e.inherit(e.CLCM,{b:\"%\"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:\"number\",b:\"0'.\\\\|0[box][0-9a-fA-F]*\"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:\"constant\",b:\"\\\\\\\\[abfnrtv]\\\\|\\\\\\\\x[0-9a-fA-F]*\\\\\\\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]\",r:0};o.c.push(l);var s={cN:\"built_in\",v:[{b:\"<=>\"},{b:\"<=\",r:0},{b:\"=>\",r:0},{b:\"/\\\\\\\\\"},{b:\"\\\\\\\\/\"}]},c={cN:\"built_in\",v:[{b:\":-\\\\|-->\"},{b:\"=\",r:0}]};return{aliases:[\"m\",\"moo\"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage(\"crmsh\",function(e){var t=\"primitive rsc_template\",r=\"group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml\",a=\"property rsc_defaults op_defaults\",s=\"params meta operations op rule attributes utilization\",i=\"read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\\\\",o=\"number string\",n=\"Master Started Slave Stopped start promote demote stop monitor true false\";return{aliases:[\"crm\",\"pcmk\"],cI:!0,k:{keyword:s,operator:i,type:o,literal:n},c:[e.HCM,{bK:\"node\",starts:{cN:\"identifier\",e:\"\\\\s*([\\\\w_-]+:)?\",starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\"}}},{bK:t,starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\",starts:{cN:\"pragma\",e:\"\\\\s*@?[\\\\w_][\\\\w_\\\\.:-]*\"}}},{b:\"\\\\b(\"+r.split(\" \").join(\"|\")+\")\\\\s+\",k:r,starts:{cN:\"title\",e:\"[\\\\$\\\\w_][\\\\w_-]*\"}},{bK:a,starts:{cN:\"title\",e:\"\\\\s*([\\\\w_-]+:)?\"}},e.QSM,{cN:\"pragma\",b:\"(ocf|systemd|service|lsb):[\\\\w_:-]+\",r:0},{cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(ms|s|h|m)?\",r:0},{cN:\"number\",b:\"[-]?(infinity|inf)\",r:0},{cN:\"variable\",b:/([A-Za-z\\$_\\#][\\w_-]+)=/,r:0},{cN:\"tag\",b:\"</?\",e:\"/?>\",r:0}]}});hljs.registerLanguage(\"erlang\",function(e){var r=\"[a-z'][a-zA-Z0-9_']*\",c=\"(\"+r+\":\"+r+\"|\"+r+\")\",a={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},n=e.C(\"%\",\"$\"),i={cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},b={b:\"fun\\\\s+\"+r+\"/\\\\d+\"},d={b:c+\"\\\\(\",e:\"\\\\)\",rB:!0,r:0,c:[{cN:\"function_name\",b:c,r:0},{b:\"\\\\(\",e:\"\\\\)\",eW:!0,rE:!0,r:0}]},o={cN:\"tuple\",b:\"{\",e:\"}\",r:0},t={cN:\"variable\",b:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",r:0},l={cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_]*\",r:0},f={b:\"#\"+e.UIR,r:0,rB:!0,c:[{cN:\"record_name\",b:\"#\"+e.UIR,r:0},{b:\"{\",e:\"}\",r:0}]},s={bK:\"fun receive if try case\",e:\"end\",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:\"\"}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:u};return{aliases:[\"erl\"],k:a,i:\"(</|\\\\*=|\\\\+=|-=|/\\\\*|\\\\*/|\\\\(\\\\*|\\\\*\\\\))\",c:[{cN:\"function\",b:\"^\"+r+\"\\\\s*\\\\(\",e:\"->\",rB:!0,i:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",c:[v,e.inherit(e.TM,{b:r})],starts:{e:\";|\\\\.\",k:a,c:u}},n,{cN:\"pp\",b:\"^-\",e:\"\\\\.\",r:0,eE:!0,rB:!0,l:\"-\"+e.IR,k:\"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec\",c:[v]},i,e.QSM,f,t,l,o,{b:/\\.$/}]}});hljs.registerLanguage(\"cpp\",function(t){var e={cN:\"keyword\",b:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},r={cN:\"string\",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?\"'}),{b:'(u8?|U)?R\"',e:'\"',c:[t.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},s={cN:\"number\",v:[{b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},{b:t.CNR}]},i={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[r,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},r,s,t.CLCM,t.CBCM]},a=t.IR+\"\\\\s*\\\\(\",c={keyword:\"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong\",built_in:\"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf\",literal:\"true false nullptr NULL\"};return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:c,i:\"</\",c:[e,t.CLCM,t.CBCM,s,r,i,{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:c,c:[\"self\",e]},{b:t.IR+\"::\",k:c},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t.IR+\"[\\\\*&\\\\s]+)+\"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\\w\\s\\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s]},t.CLCM,t.CBCM,i]}]}});hljs.registerLanguage(\"xquery\",function(e){var t=\"for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update\",a=\"false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute\",r={cN:\"variable\",b:/\\$[a-zA-Z0-9\\-]+/,r:5},s={cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},n={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},i={cN:\"decorator\",b:\"%\\\\w+\"},c={cN:\"comment\",b:\"\\\\(:\",e:\":\\\\)\",r:10,c:[{cN:\"doc\",b:\"@\\\\w+\"}]},o={b:\"{\",e:\"}\"},l=[r,n,s,c,i,o];return o.c=l,{aliases:[\"xpath\",\"xq\"],cI:!1,l:/[a-zA-Z\\$][a-zA-Z0-9_:\\-]*/,i:/(proc)|(abstract)|(extends)|(until)|(#)/,k:{keyword:t,literal:a},c:l}});hljs.registerLanguage(\"dockerfile\",function(e){return{aliases:[\"docker\"],cI:!0,k:{built_ins:\"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env label\"},c:[e.HCM,{k:{built_in:\"run cmd entrypoint volume add copy workdir onbuild label\"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir|label) +/,starts:{e:/[^\\\\]\\n/,sL:\"bash\"}},{k:{built_in:\"from maintainer expose env user onbuild\"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\\\]\\n/,c:[e.ASM,e.QSM,e.NM,e.HCM]}]}});hljs.registerLanguage(\"scss\",function(e){var t=\"[a-zA-Z-][a-zA-Z0-9_-]*\",i={cN:\"variable\",b:\"(\\\\$\"+t+\")\\\\b\"},r={cN:\"function\",b:t+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},o={cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"};({cN:\"attribute\",b:\"[A-Z\\\\_\\\\.\\\\-]+\",e:\":\",eE:!0,i:\"[^\\\\s]\",starts:{cN:\"value\",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"important\",b:\"!important\"}]}});return{cI:!0,i:\"[=/|']\",c:[e.CLCM,e.CBCM,r,{cN:\"id\",b:\"\\\\#[A-Za-z0-9_-]+\",r:0},{cN:\"class\",b:\"\\\\.[A-Za-z0-9_-]+\",r:0},{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\",i:\"$\"},{cN:\"tag\",b:\"\\\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\\\b\",r:0},{cN:\"pseudo\",b:\":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)\"},{cN:\"pseudo\",b:\"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)\"},i,{cN:\"attribute\",b:\"\\\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\\\b\",i:\"[^\\\\s]\"},{cN:\"value\",b:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{cN:\"value\",b:\":\",e:\";\",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:\"important\",b:\"!important\"}]},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",k:\"mixin include extend for if else each while charset import debug media page content font-face namespace warn\",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:\"preprocessor\",b:\"\\\\s[A-Za-z0-9_.-]+\",r:0}]}]}});hljs.registerLanguage(\"cmake\",function(e){return{aliases:[\"cmake.in\"],cI:!0,k:{keyword:\"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or\",operator:\"equal less greater strless strgreater strequal matches\"},c:[{cN:\"envvar\",b:\"\\\\${\",e:\"}\"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage(\"nix\",function(e){var t={keyword:\"rec with let in inherit assert if else then\",constant:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},i={cN:\"subst\",b:/\\$\\{/,e:/}/,k:t},r={cN:\"variable\",b:/[a-zA-Z0-9-_]+(\\s*=)/,r:0},n={cN:\"string\",b:\"''\",e:\"''\",c:[i]},s={cN:\"string\",b:'\"',e:'\"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:[\"nixos\"],k:t,c:a}});hljs.registerLanguage(\"mathematica\",function(e){return{aliases:[\"mma\"],l:\"(\\\\$|\\\\b)\"+e.IR+\"\\\\b\",k:\"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber\",\nc:[{cN:\"comment\",b:/\\(\\*/,e:/\\*\\)/},e.ASM,e.QSM,e.CNM,{cN:\"list\",b:/\\{/,e:/\\}/,i:/:/}]}});hljs.registerLanguage(\"julia\",function(r){var e={keyword:\"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while\",literal:\"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e|0 eu|0 eulergamma golden im nothing pi γ π φ\",built_in:\"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip\"},t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",o={l:t,k:e},n={cN:\"type-annotation\",b:/::/},a={cN:\"subtype\",b:/<:/},i={cN:\"number\",b:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,r:0},l={cN:\"char\",b:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},c={cN:\"subst\",b:/\\$\\(/,e:/\\)/,k:e},u={cN:\"variable\",b:\"\\\\$\"+t},d={cN:\"string\",c:[r.BE,c,u],v:[{b:/\\w*\"/,e:/\"\\w*/},{b:/\\w*\"\"\"/,e:/\"\"\"\\w*/}]},g={cN:\"string\",c:[r.BE,c,u],b:\"`\",e:\"`\"},s={cN:\"macrocall\",b:\"@\"+t},S={cN:\"comment\",v:[{b:\"#=\",e:\"=#\",r:10},{b:\"#\",e:\"$\"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage(\"rib\",function(e){return{k:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",i:\"</\",c:[e.HCM,e.CNM,e.ASM,e.QSM]}});hljs.registerLanguage(\"vim\",function(e){return{l:/[!#@\\w]+/,k:{keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor\"},i:/[{:]/,c:[e.NM,e.ASM,{cN:\"string\",b:/\"((\\\\\")|[^\"\\n])*(\"|\\n)/},{cN:\"variable\",b:/[bwtglsav]:[\\w\\d_]*/},{cN:\"function\",bK:\"function function!\",e:\"$\",r:0,c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]}]}});hljs.registerLanguage(\"prolog\",function(c){var r={cN:\"atom\",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:\"name\",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\\(/,e:/\\)/,r:0},e={b:/\\[/,e:/\\]/},n={cN:\"comment\",b:/%/,e:/$/,c:[c.PWM]},t={cN:\"string\",b:/`/,e:/`/,c:[c.BE]},g={cN:\"string\",b:/0\\'(\\\\\\'|.)/},N={cN:\"string\",b:/0\\'\\\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\\.$/}])}});hljs.registerLanguage(\"parser3\",function(r){var e=r.C(\"{\",\"}\",{c:[\"self\"]});return{sL:\"xml\",r:0,c:[r.C(\"^#\",\"$\"),r.C(\"\\\\^rem{\",\"}\",{r:10,c:[e]}),{cN:\"preprocessor\",b:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",r:10},{cN:\"title\",b:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{cN:\"variable\",b:\"\\\\$\\\\{?[\\\\w\\\\-\\\\.\\\\:]+\\\\}?\"},{cN:\"keyword\",b:\"\\\\^[\\\\w\\\\-\\\\.\\\\:]+\"},{cN:\"number\",b:\"\\\\^#[0-9a-fA-F]+\"},r.CNM]}});hljs.registerLanguage(\"openscad\",function(e){var r={cN:\"keyword\",b:\"\\\\$(f[asn]|t|vp[rtd]|children)\"},n={cN:\"literal\",b:\"false|true|PI|undef\"},i={cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(e-?\\\\d+)?\",r:0},o=e.inherit(e.QSM,{i:null}),s={cN:\"preprocessor\",k:\"include use\",b:\"include|use <\",e:\">\"},t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,o,r,n]},c={cN:\"built_in\",b:\"[*!#%]\",r:0},l={cN:\"function\",bK:\"module function\",e:\"\\\\=|\\\\{\",c:[t,e.UTM]};return{aliases:[\"scad\"],k:{keyword:\"function module include use for intersection_for if else \\\\%\",literal:\"false true PI undef\",built_in:\"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign\"},c:[e.CLCM,e.CBCM,i,s,o,r,c,l]}});hljs.registerLanguage(\"ceylon\",function(e){var a=\"assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty\",t=\"shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small\",s=\"doc by license see throws tagged\",n=t+\" \"+s,i={cN:\"subst\",eB:!0,eE:!0,b:/``/,e:/``/,k:a,r:10},r=[{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:10},{cN:\"string\",b:'\"',e:'\"',c:[i]},{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"number\",b:\"#[0-9a-fA-F_]+|\\\\$[01_]+|[0-9_]+(?:\\\\.[0-9_](?:[eE][+-]?\\\\d+)?)?[kMGTPmunpf]?\",r:0}];return i.c=r,{k:{keyword:a,annotation:n},i:\"\\\\$[^01]|#[^0-9a-fA-F]\",c:[e.CLCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),{cN:\"annotation\",b:'@[a-z]\\\\w*(?:\\\\:\"[^\"]*\")?'}].concat(r)}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{built_in:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{cN:\"url\",b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"title\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"sml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"gherkin\",function(e){return{aliases:[\"feature\"],k:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",c:[{cN:\"keyword\",b:\"\\\\*\"},e.C(\"@[^@\\r\\n\t ]+\",\"$\"),{b:\"\\\\|\",e:\"\\\\|\\\\w*$\",c:[{cN:\"string\",b:\"[^|]+\"}]},{cN:\"variable\",b:\"<\",e:\">\"},e.HCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.QSM]}});hljs.registerLanguage(\"vbnet\",function(e){return{aliases:[\"vb\"],cI:!0,k:{keyword:\"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor\",built_in:\"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort\",literal:\"true false nothing\"},i:\"//|{|}|endif|gosub|variant|wend\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(\"'\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",b:\"'''|<!--|-->\",c:[e.PWM]},{cN:\"xmlDocTag\",b:\"</?\",e:\">\",c:[e.PWM]}]}),e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end region externalsource\"}]}});hljs.registerLanguage(\"pf\",function(t){var o={cN:\"variable\",b:/\\$[\\w\\d#@][\\w\\d_]*/},e={cN:\"variable\",b:/</,e:/>/};return{aliases:[\"pf.conf\"],l:/[a-z0-9_<>-]+/,k:{built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage(\"r\",function(e){var r=\"([a-zA-Z]|\\\\.[a-zA-Z.])[a-zA-Z0-9._]*\";return{c:[e.HCM,{b:r,l:r,k:{keyword:\"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...\",literal:\"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{b:\"`\",e:\"`\",r:0},{cN:\"string\",c:[e.BE],v:[{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]}]}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>{}*]/,c:[{cN:\"operator\",bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke\",e:/;/,eW:!0,k:{keyword:\"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes c cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle d data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration e each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract f failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function g general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http i id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists k keep keep_duplicates key keys kill l language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim m main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex n name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding p package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime t table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"kotlin\",function(e){var r=\"val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native\";return{k:{typename:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\",keyword:r},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"type\",b:/</,e:/>/,rB:!0,eE:!1,r:0},{cN:\"function\",bK:\"fun\",e:\"[(]|$\",rB:!0,eE:!0,k:r,i:/fun\\s+(<.*>)?[^\\s\\(]+(\\s+[^\\s\\(]+)\\s*=/,r:5,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"type\",b:/</,e:/>/,k:\"reified\",r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:r,r:0,i:/\\([^\\(,\\s:]+,/,c:[{cN:\"typename\",b:/:\\s*/,e:/\\s*[=\\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:\"class\",bK:\"class trait\",e:/[:\\{(]|$/,eE:!0,i:\"extends implements\",c:[e.UTM,{cN:\"type\",b:/</,e:/>/,eB:!0,eE:!0,r:0},{cN:\"typename\",b:/[,:]\\s*/,e:/[<\\(,]|$/,eB:!0,rE:!0}]},{cN:\"variable\",bK:\"var val\",e:/\\s*[=:$]/,eE:!0},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.CNM]}});hljs.registerLanguage(\"clojure-repl\",function(r){return{c:[{cN:\"prompt\",b:/^([\\w.-]+|\\s*#_)=>/,starts:{e:/$/,sL:\"clojure\"}}]}});hljs.registerLanguage(\"twig\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},a=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",r={cN:\"function\",bK:a,r:0,c:[t]},c={cN:\"filter\",b:/\\|[A-Za-z_]+:?/,k:\"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode\",c:[r]},n=\"autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim\";return n=n+\" \"+n.split(\" \").map(function(e){return\"end\"+e}).join(\" \"),{aliases:[\"craftcms\"],cI:!0,sL:\"xml\",c:[e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:n,c:[c,r]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage(\"vbscript\",function(e){return{aliases:[\"vbs\"],cI:!0,k:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err\",literal:\"true false null nothing empty\"},i:\"//\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",a={cN:\"function\",b:c+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},r={cN:\"rule\",b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{cN:\"value\",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"},{cN:\"important\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|'\\$]/,c:[e.CBCM,{cN:\"id\",b:/\\#[A-Za-z0-9_-]+/},{cN:\"class\",b:/\\.[A-Za-z0-9_-]+/},{cN:\"attr_selector\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"']+/},{cN:\"at_rule\",b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",c:[{cN:\"keyword\",b:/\\S+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:\"tag\",b:c,r:0},{cN:\"rules\",b:\"{\",e:\"}\",i:/\\S/,c:[e.CBCM,r]}]}});hljs.registerLanguage(\"mel\",function(e){return{k:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",i:\"</\",c:[e.CNM,e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},{cN:\"variable\",v:[{b:\"\\\\$\\\\d\"},{b:\"[\\\\$\\\\%\\\\@](\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\"},{b:\"\\\\*(\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\",r:0}]},e.CLCM,e.CBCM]}});hljs.registerLanguage(\"monkey\",function(e){var n={cN:\"number\",r:0,v:[{b:\"[$][a-fA-F0-9]+\"},e.NM]};return{cI:!0,k:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},i:/\\/\\*/,c:[e.C(\"#rem\",\"#end\"),e.C(\"'\",\"$\",{r:0}),{cN:\"function\",bK:\"function method\",e:\"[(=:]|$\",i:/\\n/,c:[e.UTM]},{cN:\"class\",bK:\"class interface\",e:\"$\",c:[{bK:\"extends implements\"},e.UTM]},{cN:\"variable\",b:\"\\\\b(self|super)\\\\b\"},{cN:\"preprocessor\",bK:\"import\",e:\"$\"},{cN:\"preprocessor\",b:\"\\\\s*#\",e:\"$\",k:\"if else elseif endif end then\"},{cN:\"pi\",b:\"^\\\\s*strict\\\\b\"},{bK:\"alias\",e:\"=\",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage(\"smali\",function(r){var t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"],n=[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"],s=[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"];return{aliases:[\"smali\"],c:[{cN:\"string\",b:'\"',e:'\"',r:0},r.C(\"#\",\"$\",{r:0}),{cN:\"keyword\",b:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\",r:1},{cN:\"keyword\",b:\"^[ ]*\\\\.[a-zA-Z]*\",r:0},{cN:\"keyword\",b:\"\\\\s:[a-zA-Z_0-9]*\",r:0},{cN:\"keyword\",b:\"\\\\s(\"+s.join(\"|\")+\")\",r:1},{cN:\"keyword\",b:\"\\\\[\",r:0},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\",r:1},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)+\\\\s\",r:10},{cN:\"instruction\",b:\"\\\\s(\"+n.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)*\\\\s\",r:10},{cN:\"class\",b:\"L[^(;:\\n]*;\",r:0},{cN:\"function\",b:'( |->)[^(\\n ;\"]*\\\\(',r:0},{cN:\"function\",b:\"\\\\)\",r:0},{cN:\"variable\",b:\"[vp][0-9]+\",r:0}]}});hljs.registerLanguage(\"livecodeserver\",function(e){var r={cN:\"variable\",b:\"\\\\b[gtps][A-Z]+[A-Za-z0-9_\\\\-]*\\\\b|\\\\$_[A-Z]+\",r:0},t=[e.CBCM,e.HCM,e.C(\"--\",\"$\"),e.C(\"[^:]//\",\"$\")],a=e.inherit(e.TM,{v:[{b:\"\\\\b_*rig[A-Z]+[A-Za-z0-9_\\\\-]*\"},{b:\"\\\\b_[a-z0-9\\\\-]+\"}]}),o=e.inherit(e.TM,{b:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{cI:!1,k:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if\",constant:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",operator:\"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write\"},c:[r,{cN:\"keyword\",b:\"\\\\bend\\\\sif\\\\b\"},{cN:\"function\",bK:\"function\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"function\",b:\"\\\\bend\\\\s+\",e:\"$\",k:\"end\",c:[o,a]},{cN:\"command\",bK:\"command on\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"preprocessor\",v:[{b:\"<\\\\?(rev|lc|livecode)\",r:10},{b:\"<\\\\?\"},{b:\"\\\\?>\"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:\";$|^\\\\[|^=\"}});hljs.registerLanguage(\"smalltalk\",function(a){var r=\"[a-z][a-zA-Z0-9_]*\",s={cN:\"char\",b:\"\\\\$.{1}\"},c={cN:\"symbol\",b:\"#\"+a.UIR};return{aliases:[\"st\"],k:\"self super nil true false thisContext\",c:[a.C('\"','\"'),a.ASM,{cN:\"class\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},{cN:\"method\",b:r+\":\",r:0},a.CNM,c,s,{cN:\"localvars\",b:\"\\\\|[ ]*\"+r+\"([ ]+\"+r+\")*[ ]*\\\\|\",rB:!0,e:/\\|/,i:/\\S/,c:[{b:\"(\\\\|[ ]*)?\"+r}]},{cN:\"array\",b:\"\\\\#\\\\(\",e:\"\\\\)\",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage(\"rust\",function(e){var t=\"([uif](8|16|32|64|size))?\",r=e.inherit(e.CBCM);return r.c.push(\"self\"),{aliases:[\"rs\"],k:{keyword:\"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool\",built_in:\"Copy Send Sized Sync Drop Fn FnMut FnOnce drop Box ToOwned Clone PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator Option Some None Result Ok Err SliceConcatExt String ToString Vec assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!\"},l:e.IR+\"!?\",i:\"</\",c:[e.CLCM,r,e.inherit(e.QSM,{i:null}),{cN:\"string\",v:[{b:/r(#*)\".*?\"\\1(?!#)/},{b:/'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/}]},{cN:\"number\",v:[{b:\"\\\\b0b([01_]+)\"+t},{b:\"\\\\b0o([0-7_]+)\"+t},{b:\"\\\\b0x([A-Fa-f0-9_]+)\"+t},{b:\"\\\\b(\\\\d[\\\\d_]*(\\\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)\"+t}],r:0},{cN:\"function\",bK:\"fn\",e:\"(\\\\(|<)\",eE:!0,c:[e.UTM]},{cN:\"preprocessor\",b:\"#\\\\!?\\\\[\",e:\"\\\\]\"},{bK:\"type\",e:\"(=|<)\",c:[e.UTM],i:\"\\\\S\"},{bK:\"trait enum\",e:\"{\",c:[e.inherit(e.UTM,{endsParent:!0})],i:\"[\\\\w\\\\d]\"},{b:e.IR+\"::\"},{b:\"->\"}]}});hljs.registerLanguage(\"fix\",function(u){return{c:[{b:/[^\\u2401\\u0001]+/,e:/[\\u2401\\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\\u2401\\u0001=]+)/,e:/=([^\\u2401\\u0001=]+)/,rE:!0,rB:!1,cN:\"attribute\"},{b:/=/,e:/([\\u2401\\u0001])/,eE:!0,eB:!0,cN:\"string\"}]}],cI:!0}});hljs.registerLanguage(\"gradle\",function(e){return{cI:!0,k:{keyword:\"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage(\"xl\",function(e){var t=\"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\",o={keyword:\"if then else do while until for loop import with is as where when by data constant\",literal:\"true false nil\",type:\"integer real text name boolean symbol infix prefix postfix block tree\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at\",module:t,id:\"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons\"},a={cN:\"constant\",b:\"[A-Z][A-Z_0-9]+\",r:0},r={cN:\"variable\",b:\"([A-Z][a-z_0-9]+)+\",r:0},i={cN:\"id\",b:\"[a-z][a-z_0-9]+\",r:0},l={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"},n={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\"},s={cN:\"string\",b:\"<<\",e:\">>\"},c={cN:\"number\",b:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\",r:10},_={cN:\"import\",bK:\"import\",e:\"$\",k:{keyword:\"import\",module:t},r:0,c:[l]},d={cN:\"function\",b:\"[a-z].*->\"};return{aliases:[\"tao\"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage(\"ocaml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\",r:0},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"scheme\",function(e){var t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",r=\"(\\\\-|\\\\+)?\\\\d+([./]\\\\d+)?\",i=r+\"[+\\\\-]\"+r+\"i\",a={built_in:\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},n={cN:\"shebang\",b:\"^#!\",e:\"$\"},c={cN:\"literal\",b:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},l={cN:\"number\",v:[{b:r,r:0},{b:i,r:0},{b:\"#b[0-1]+(/[0-1]+)?\"},{b:\"#o[0-7]+(/[0-7]+)?\"},{b:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QSM,o=[e.C(\";\",\"$\",{r:0}),e.C(\"#\\\\|\",\"\\\\|#\")],u={b:t,r:0},p={cN:\"variable\",b:\"'\"+t},d={eW:!0,r:0},g={cN:\"list\",v:[{b:\"\\\\(\",e:\"\\\\)\"},{b:\"\\\\[\",e:\"\\\\]\"}],c:[{cN:\"keyword\",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage(\"http\",function(t){return{aliases:[\"https\"],i:\"\\\\S\",c:[{cN:\"status\",b:\"^HTTP/[0-9\\\\.]+\",e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{cN:\"request\",b:\"^[A-Z]+ (.*?) HTTP/[0-9\\\\.]+$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{cN:\"string\",e:\"$\"}},{b:\"\\\\n\\\\n\",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage(\"verilog\",function(e){return{aliases:[\"v\"],cI:!0,k:{keyword:\"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor\",typename:\"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor\"},c:[e.CBCM,e.CLCM,e.QSM,{cN:\"number\",b:\"\\\\b(\\\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+\",c:[e.BE],r:0},{cN:\"typename\",b:\"\\\\.\\\\w+\",r:0},{cN:\"value\",b:\"#\\\\((?!parameter).+\\\\)\"},{cN:\"keyword\",b:\"\\\\+|-|\\\\*|/|%|<|>|=|#|`|\\\\!|&|\\\\||@|:|\\\\^|~|\\\\{|\\\\}\",r:0}]}});hljs.registerLanguage(\"actionscript\",function(e){var a=\"[a-zA-Z_$][a-zA-Z0-9_$]*\",c=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\",t={cN:\"rest_arg\",b:\"[.]{3}\",e:a,r:10};return{aliases:[\"as\"],k:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"package\",bK:\"package\",e:\"{\",c:[e.TM]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",bK:\"import include\",e:\";\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:\"type\",b:\":\",e:c,r:10}]}],i:/#/}});hljs.registerLanguage(\"zephir\",function(e){var i={cN:\"string\",c:[e.BE],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:[\"zep\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[e.BE]},{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CBCM,i,n]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,n]}});hljs.registerLanguage(\"json\",function(e){var t={literal:\"true false null\"},i=[e.QSM,e.CNM],l={cN:\"value\",e:\",\",eW:!0,eE:!0,c:i,k:t},c={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:!0,eE:!0,c:[e.BE],i:\"\\\\n\",starts:l}],i:\"\\\\S\"},n={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(l,{cN:null})],i:\"\\\\S\"};return i.splice(i.length,0,c,n),{c:i,k:t,i:\"\\\\S\"}});hljs.registerLanguage(\"q\",function(e){var s={keyword:\"do while select delete by update from\",constant:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",typename:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"};return{aliases:[\"k\",\"kdb\"],k:s,l:/\\b(`?)[A-Za-z0-9_]+\\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage(\"processing\",function(e){return{k:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",constant:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",variable:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width\",title:\"setup draw\",built_in:\"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage(\"d\",function(e){var r={keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},t=\"(0|[1-9][\\\\d_]*)\",a=\"(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)\",i=\"0[bB][01_]+\",n=\"([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\",c=\"0[xX]\"+n,_=\"([eE][+-]?\"+a+\")\",d=\"(\"+a+\"(\\\\.\\\\d*|\"+_+\")|\\\\d+\\\\.\"+a+a+\"|\\\\.\"+t+_+\"?)\",o=\"(0[xX](\"+n+\"\\\\.\"+n+\"|\\\\.?\"+n+\")[pP][+-]?\"+a+\")\",s=\"(\"+t+\"|\"+i+\"|\"+c+\")\",l=\"(\"+o+\"|\"+d+\")\",u=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",b={cN:\"number\",b:\"\\\\b\"+s+\"(L|u|U|Lu|LU|uL|UL)?\",r:0},f={cN:\"number\",b:\"\\\\b(\"+l+\"([fF]|L|i|[fF]i|Li)?|\"+s+\"(i|[fF]i|Li))\",r:0},g={cN:\"string\",b:\"'(\"+u+\"|.)\",e:\"'\",i:\".\"},h={b:u,r:0},p={cN:\"string\",b:'\"',c:[h],e:'\"[cwd]?'},w={cN:\"string\",b:'[rq]\"',e:'\"[cwd]?',r:5},N={cN:\"string\",b:\"`\",e:\"`[cwd]?\"},A={cN:\"string\",b:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',r:10},F={cN:\"string\",b:'q\"\\\\{',e:'\\\\}\"'},m={cN:\"shebang\",b:\"^#!\",e:\"$\",r:5},y={cN:\"preprocessor\",b:\"#(line)\",e:\"$\",r:5},L={cN:\"keyword\",b:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"},v=e.C(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{c:[\"self\"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage(\"asciidoc\",function(e){return{aliases:[\"adoc\"],c:[e.C(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{r:10}),e.C(\"^//\",\"$\",{r:0}),{cN:\"title\",b:\"^\\\\.\\\\w.*$\"},{b:\"^[=\\\\*]{4,}\\\\n\",e:\"\\\\n^[=\\\\*]{4,}$\",r:10},{cN:\"header\",b:\"^(={1,5}) .+?( \\\\1)?$\",r:10},{cN:\"header\",b:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\",r:10},{cN:\"attribute\",b:\"^:.+?:\",e:\"\\\\s\",eE:!0,r:10},{cN:\"attribute\",b:\"^\\\\[.+?\\\\]$\",r:0},{cN:\"blockquote\",b:\"^_{4,}\\\\n\",e:\"\\\\n_{4,}$\",r:10},{cN:\"code\",b:\"^[\\\\-\\\\.]{4,}\\\\n\",e:\"\\\\n[\\\\-\\\\.]{4,}$\",r:10},{b:\"^\\\\+{4,}\\\\n\",e:\"\\\\n\\\\+{4,}$\",c:[{b:\"<\",e:\">\",sL:\"xml\",r:0}],r:10},{cN:\"bullet\",b:\"^(\\\\*+|\\\\-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"},{cN:\"label\",b:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",r:10},{cN:\"strong\",b:\"\\\\B\\\\*(?![\\\\*\\\\s])\",e:\"(\\\\n{2}|\\\\*)\",c:[{b:\"\\\\\\\\*\\\\w\",r:0}]},{cN:\"emphasis\",b:\"\\\\B'(?!['\\\\s])\",e:\"(\\\\n{2}|')\",c:[{b:\"\\\\\\\\'\\\\w\",r:0}],r:0},{cN:\"emphasis\",b:\"_(?![_\\\\s])\",e:\"(\\\\n{2}|_)\",r:0},{cN:\"smartquote\",v:[{b:\"``.+?''\"},{b:\"`.+?'\"}]},{cN:\"code\",b:\"(`.+?`|\\\\+.+?\\\\+)\",r:0},{cN:\"code\",b:\"^[ \\\\t]\",e:\"$\",r:0},{cN:\"horizontal_rule\",b:\"^'{3,}[ \\\\t]*$\",r:10},{b:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+\\\\[.*?\\\\]\",rB:!0,c:[{b:\"(link|image:?):\",r:0},{cN:\"link_url\",b:\"\\\\w\",e:\"[^\\\\[]+\",r:0},{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage(\"rsl\",function(e){return{k:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"shader\",bK:\"surface displacement light volume imager\",e:\"\\\\(\"},{cN:\"shading\",bK:\"illuminate illuminance gather\",e:\"\\\\(\"}]}});hljs.registerLanguage(\"fsharp\",function(e){var t={b:\"<\",e:\">\",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:[\"fs\"],k:\"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",i:/\\/\\*/,c:[{cN:\"keyword\",b:/\\b(yield|return|let|do)!/},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),{cN:\"class\",bK:\"type\",e:\"\\\\(|=|$\",eE:!0,c:[e.UTM,t]},{cN:\"annotation\",b:\"\\\\[<\",e:\">\\\\]\",r:10},{cN:\"attribute\",b:\"\\\\B('[A-Za-z])\\\\b\",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});"
  },
  {
    "path": "doc/cpp-london-2017/plugin/markdown/example.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Markdown Demo</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\n        <link rel=\"stylesheet\" href=\"../../lib/css/zenburn.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n                <!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->\n                <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section>\n\n                <!-- Slides are separated by three dashes (quick 'n dirty regular expression) -->\n                <section data-markdown data-separator=\"---\">\n                    <script type=\"text/template\">\n                        ## Demo 1\n                        Slide 1\n                        ---\n                        ## Demo 1\n                        Slide 2\n                        ---\n                        ## Demo 1\n                        Slide 3\n                    </script>\n                </section>\n\n                <!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n                <section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n                    <script type=\"text/template\">\n                        ## Demo 2\n                        Slide 1.1\n\n                        --\n\n                        ## Demo 2\n                        Slide 1.2\n\n                        ---\n\n                        ## Demo 2\n                        Slide 2\n                    </script>\n                </section>\n\n                <!-- No \"extra\" slides, since there are no separators defined (so they'll become horizontal rulers) -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        A\n\n                        ---\n\n                        B\n\n                        ---\n\n                        C\n                    </script>\n                </section>\n\n                <!-- Slide attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        <!-- .slide: data-background=\"#000000\" -->\n                        ## Slide attributes\n                    </script>\n                </section>\n\n                <!-- Element attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ## Element attributes\n                        - Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n                        - Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n                    </script>\n                </section>\n\n                <!-- Code -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ```php\n                        public function foo()\n                        {\n                            $foo = array(\n                                'bar' => 'bar'\n                            )\n                        }\n                        ```\n                    </script>\n                </section>\n\n            </div>\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcontrols: true,\n\t\t\t\tprogress: true,\n\t\t\t\thistory: true,\n\t\t\t\tcenter: true,\n\n\t\t\t\t// Optional libraries used to extend on reveal.js\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: '../highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: '../notes/notes.js' }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/markdown/example.md",
    "content": "# Markdown Demo\n\n\n\n## External 1.1\n\nContent 1.1\n\nNote: This will only appear in the speaker notes window.\n\n\n## External 1.2\n\nContent 1.2\n\n\n\n## External 2\n\nContent 2.1\n\n\n\n## External 3.1\n\nContent 3.1\n\n\n## External 3.2\n\nContent 3.2\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/markdown/markdown.js",
    "content": "/**\n * The reveal.js markdown plugin. Handles parsing of\n * markdown inside of presentations as well as loading\n * of external markdown documents.\n */\n(function( root, factory ) {\n\tif( typeof exports === 'object' ) {\n\t\tmodule.exports = factory( require( './marked' ) );\n\t}\n\telse {\n\t\t// Browser globals (root is window)\n\t\troot.RevealMarkdown = factory( root.marked );\n\t\troot.RevealMarkdown.initialize();\n\t}\n}( this, function( marked ) {\n\n\tif( typeof marked === 'undefined' ) {\n\t\tthrow 'The reveal.js Markdown plugin requires marked to be loaded';\n\t}\n\n\tif( typeof hljs !== 'undefined' ) {\n\t\tmarked.setOptions({\n\t\t\thighlight: function( lang, code ) {\n\t\t\t\treturn hljs.highlightAuto( lang, code ).value;\n\t\t\t}\n\t\t});\n\t}\n\n\tvar DEFAULT_SLIDE_SEPARATOR = '^\\r?\\n---\\r?\\n$',\n\t\tDEFAULT_NOTES_SEPARATOR = 'note:',\n\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR = '\\\\\\.element\\\\\\s*?(.+?)$',\n\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR = '\\\\\\.slide:\\\\\\s*?(\\\\\\S.+?)$';\n\n\tvar SCRIPT_END_PLACEHOLDER = '__SCRIPT_END__';\n\n\n\t/**\n\t * Retrieves the markdown contents of a slide section\n\t * element. Normalizes leading tabs/whitespace.\n\t */\n\tfunction getMarkdownFromSlide( section ) {\n\n\t\tvar template = section.querySelector( 'script' );\n\n\t\t// strip leading whitespace so it isn't evaluated as code\n\t\tvar text = ( template || section ).textContent;\n\n\t\t// restore script end tags\n\t\ttext = text.replace( new RegExp( SCRIPT_END_PLACEHOLDER, 'g' ), '</script>' );\n\n\t\tvar leadingWs = text.match( /^\\n?(\\s*)/ )[1].length,\n\t\t\tleadingTabs = text.match( /^\\n?(\\t*)/ )[1].length;\n\n\t\tif( leadingTabs > 0 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n?\\\\t{' + leadingTabs + '}','g'), '\\n' );\n\t\t}\n\t\telse if( leadingWs > 1 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n? {' + leadingWs + '}', 'g'), '\\n' );\n\t\t}\n\n\t\treturn text;\n\n\t}\n\n\t/**\n\t * Given a markdown slide section element, this will\n\t * return all arguments that aren't related to markdown\n\t * parsing. Used to forward any other user-defined arguments\n\t * to the output markdown slide.\n\t */\n\tfunction getForwardedAttributes( section ) {\n\n\t\tvar attributes = section.attributes;\n\t\tvar result = [];\n\n\t\tfor( var i = 0, len = attributes.length; i < len; i++ ) {\n\t\t\tvar name = attributes[i].name,\n\t\t\t\tvalue = attributes[i].value;\n\n\t\t\t// disregard attributes that are used for markdown loading/parsing\n\t\t\tif( /data\\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue;\n\n\t\t\tif( value ) {\n\t\t\t\tresult.push( name + '=\"' + value + '\"' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tresult.push( name );\n\t\t\t}\n\t\t}\n\n\t\treturn result.join( ' ' );\n\n\t}\n\n\t/**\n\t * Inspects the given options and fills out default\n\t * values for what's not defined.\n\t */\n\tfunction getSlidifyOptions( options ) {\n\n\t\toptions = options || {};\n\t\toptions.separator = options.separator || DEFAULT_SLIDE_SEPARATOR;\n\t\toptions.notesSeparator = options.notesSeparator || DEFAULT_NOTES_SEPARATOR;\n\t\toptions.attributes = options.attributes || '';\n\n\t\treturn options;\n\n\t}\n\n\t/**\n\t * Helper function for constructing a markdown slide.\n\t */\n\tfunction createMarkdownSlide( content, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar notesMatch = content.split( new RegExp( options.notesSeparator, 'mgi' ) );\n\n\t\tif( notesMatch.length === 2 ) {\n\t\t\tcontent = notesMatch[0] + '<aside class=\"notes\" data-markdown>' + notesMatch[1].trim() + '</aside>';\n\t\t}\n\n\t\t// prevent script end tags in the content from interfering\n\t\t// with parsing\n\t\tcontent = content.replace( /<\\/script>/g, SCRIPT_END_PLACEHOLDER );\n\n\t\treturn '<script type=\"text/template\">' + content + '</script>';\n\n\t}\n\n\t/**\n\t * Parses a data string into multiple slides based\n\t * on the passed in separator arguments.\n\t */\n\tfunction slidify( markdown, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ),\n\t\t\thorizontalSeparatorRegex = new RegExp( options.separator );\n\n\t\tvar matches,\n\t\t\tlastIndex = 0,\n\t\t\tisHorizontal,\n\t\t\twasHorizontal = true,\n\t\t\tcontent,\n\t\t\tsectionStack = [];\n\n\t\t// iterate until all blocks between separators are stacked up\n\t\twhile( matches = separatorRegex.exec( markdown ) ) {\n\t\t\tnotes = null;\n\n\t\t\t// determine direction (horizontal by default)\n\t\t\tisHorizontal = horizontalSeparatorRegex.test( matches[0] );\n\n\t\t\tif( !isHorizontal && wasHorizontal ) {\n\t\t\t\t// create vertical stack\n\t\t\t\tsectionStack.push( [] );\n\t\t\t}\n\n\t\t\t// pluck slide content from markdown input\n\t\t\tcontent = markdown.substring( lastIndex, matches.index );\n\n\t\t\tif( isHorizontal && wasHorizontal ) {\n\t\t\t\t// add to horizontal stack\n\t\t\t\tsectionStack.push( content );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// add to vertical stack\n\t\t\t\tsectionStack[sectionStack.length-1].push( content );\n\t\t\t}\n\n\t\t\tlastIndex = separatorRegex.lastIndex;\n\t\t\twasHorizontal = isHorizontal;\n\t\t}\n\n\t\t// add the remaining slide\n\t\t( wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1] ).push( markdown.substring( lastIndex ) );\n\n\t\tvar markdownSections = '';\n\n\t\t// flatten the hierarchical stack, and insert <section data-markdown> tags\n\t\tfor( var i = 0, len = sectionStack.length; i < len; i++ ) {\n\t\t\t// vertical\n\t\t\tif( sectionStack[i] instanceof Array ) {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +'>';\n\n\t\t\t\tsectionStack[i].forEach( function( child ) {\n\t\t\t\t\tmarkdownSections += '<section data-markdown>' +  createMarkdownSlide( child, options ) + '</section>';\n\t\t\t\t} );\n\n\t\t\t\tmarkdownSections += '</section>';\n\t\t\t}\n\t\t\telse {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +' data-markdown>' + createMarkdownSlide( sectionStack[i], options ) + '</section>';\n\t\t\t}\n\t\t}\n\n\t\treturn markdownSections;\n\n\t}\n\n\t/**\n\t * Parses any current data-markdown slides, splits\n\t * multi-slide markdown into separate sections and\n\t * handles loading of external markdown.\n\t */\n\tfunction processSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]'),\n\t\t\tsection;\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tsection = sections[i];\n\n\t\t\tif( section.getAttribute( 'data-markdown' ).length ) {\n\n\t\t\t\tvar xhr = new XMLHttpRequest(),\n\t\t\t\t\turl = section.getAttribute( 'data-markdown' );\n\n\t\t\t\tdatacharset = section.getAttribute( 'data-charset' );\n\n\t\t\t\t// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes\n\t\t\t\tif( datacharset != null && datacharset != '' ) {\n\t\t\t\t\txhr.overrideMimeType( 'text/html; charset=' + datacharset );\n\t\t\t\t}\n\n\t\t\t\txhr.onreadystatechange = function() {\n\t\t\t\t\tif( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// file protocol yields status code 0 (useful for local debug, mobile applications etc.)\n\t\t\t\t\t\tif ( ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status === 0 ) {\n\n\t\t\t\t\t\t\tsection.outerHTML = slidify( xhr.responseText, {\n\t\t\t\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\tsection.outerHTML = '<section data-state=\"alert\">' +\n\t\t\t\t\t\t\t\t'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' +\n\t\t\t\t\t\t\t\t'Check your browser\\'s JavaScript console for more details.' +\n\t\t\t\t\t\t\t\t'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' +\n\t\t\t\t\t\t\t\t'</section>';\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\txhr.open( 'GET', url, false );\n\n\t\t\t\ttry {\n\t\t\t\t\txhr.send();\n\t\t\t\t}\n\t\t\t\tcatch ( e ) {\n\t\t\t\t\talert( 'Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e );\n\t\t\t\t}\n\n\t\t\t}\n\t\t\telse if( section.getAttribute( 'data-separator' ) || section.getAttribute( 'data-separator-vertical' ) || section.getAttribute( 'data-separator-notes' ) ) {\n\n\t\t\t\tsection.outerHTML = slidify( getMarkdownFromSlide( section ), {\n\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t});\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\tsection.innerHTML = createMarkdownSlide( getMarkdownFromSlide( section ) );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Check if a node value has the attributes pattern.\n\t * If yes, extract it and add that value as one or several attributes\n\t * the the terget element.\n\t *\n\t * You need Cache Killer on Chrome to see the effect on any FOM transformation\n\t * directly on refresh (F5)\n\t * http://stackoverflow.com/questions/5690269/disabling-chrome-cache-for-website-development/7000899#answer-11786277\n\t */\n\tfunction addAttributeInElement( node, elementTarget, separator ) {\n\n\t\tvar mardownClassesInElementsRegex = new RegExp( separator, 'mg' );\n\t\tvar mardownClassRegex = new RegExp( \"([^\\\"= ]+?)=\\\"([^\\\"=]+?)\\\"\", 'mg' );\n\t\tvar nodeValue = node.nodeValue;\n\t\tif( matches = mardownClassesInElementsRegex.exec( nodeValue ) ) {\n\n\t\t\tvar classes = matches[1];\n\t\t\tnodeValue = nodeValue.substring( 0, matches.index ) + nodeValue.substring( mardownClassesInElementsRegex.lastIndex );\n\t\t\tnode.nodeValue = nodeValue;\n\t\t\twhile( matchesClass = mardownClassRegex.exec( classes ) ) {\n\t\t\t\telementTarget.setAttribute( matchesClass[1], matchesClass[2] );\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Add attributes to the parent element of a text node,\n\t * or the element of an attribute node.\n\t */\n\tfunction addAttributes( section, element, previousElement, separatorElementAttributes, separatorSectionAttributes ) {\n\n\t\tif ( element != null && element.childNodes != undefined && element.childNodes.length > 0 ) {\n\t\t\tpreviousParentElement = element;\n\t\t\tfor( var i = 0; i < element.childNodes.length; i++ ) {\n\t\t\t\tchildElement = element.childNodes[i];\n\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\tj = i - 1;\n\t\t\t\t\twhile ( j >= 0 ) {\n\t\t\t\t\t\taPreviousChildElement = element.childNodes[j];\n\t\t\t\t\t\tif ( typeof aPreviousChildElement.setAttribute == 'function' && aPreviousChildElement.tagName != \"BR\" ) {\n\t\t\t\t\t\t\tpreviousParentElement = aPreviousChildElement;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tj = j - 1;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tparentSection = section;\n\t\t\t\tif( childElement.nodeName ==  \"section\" ) {\n\t\t\t\t\tparentSection = childElement ;\n\t\t\t\t\tpreviousParentElement = childElement ;\n\t\t\t\t}\n\t\t\t\tif ( typeof childElement.setAttribute == 'function' || childElement.nodeType == Node.COMMENT_NODE ) {\n\t\t\t\t\taddAttributes( parentSection, childElement, previousParentElement, separatorElementAttributes, separatorSectionAttributes );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( element.nodeType == Node.COMMENT_NODE ) {\n\t\t\tif ( addAttributeInElement( element, previousElement, separatorElementAttributes ) == false ) {\n\t\t\t\taddAttributeInElement( element, section, separatorSectionAttributes );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Converts any current data-markdown slides in the\n\t * DOM to HTML.\n\t */\n\tfunction convertSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]');\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tvar section = sections[i];\n\n\t\t\t// Only parse the same slide once\n\t\t\tif( !section.getAttribute( 'data-markdown-parsed' ) ) {\n\n\t\t\t\tsection.setAttribute( 'data-markdown-parsed', true )\n\n\t\t\t\tvar notes = section.querySelector( 'aside.notes' );\n\t\t\t\tvar markdown = getMarkdownFromSlide( section );\n\n\t\t\t\tsection.innerHTML = marked( markdown );\n\t\t\t\taddAttributes( \tsection, section, null, section.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR,\n\t\t\t\t\t\t\t\tsection.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR);\n\n\t\t\t\t// If there were notes, we need to re-add them after\n\t\t\t\t// having overwritten the section's HTML\n\t\t\t\tif( notes ) {\n\t\t\t\t\tsection.appendChild( notes );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t// API\n\treturn {\n\n\t\tinitialize: function() {\n\t\t\tprocessSlides();\n\t\t\tconvertSlides();\n\t\t},\n\n\t\t// TODO: Do these belong in the API?\n\t\tprocessSlides: processSlides,\n\t\tconvertSlides: convertSlides,\n\t\tslidify: slidify\n\n\t};\n\n}));\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/markdown/marked.js",
    "content": "/**\n * marked - a markdown parser\n * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)\n * https://github.com/chjj/marked\n */\n(function(){function e(e){this.tokens=[],this.tokens.links={},this.options=e||a.defaults,this.rules=p.normal,this.options.gfm&&(this.rules=this.options.tables?p.tables:p.gfm)}function t(e,t){if(this.options=t||a.defaults,this.links=e,this.rules=u.normal,this.renderer=this.options.renderer||new n,this.renderer.options=this.options,!this.links)throw new Error(\"Tokens array requires a `links` property.\");this.options.gfm?this.rules=this.options.breaks?u.breaks:u.gfm:this.options.pedantic&&(this.rules=u.pedantic)}function n(e){this.options=e||{}}function r(e){this.tokens=[],this.token=null,this.options=e||a.defaults,this.options.renderer=this.options.renderer||new n,this.renderer=this.options.renderer,this.renderer.options=this.options}function s(e,t){return e.replace(t?/&/g:/&(?!#?\\w+;)/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\").replace(/'/g,\"&#39;\")}function i(e){return e.replace(/&([#\\w]+);/g,function(e,t){return t=t.toLowerCase(),\"colon\"===t?\":\":\"#\"===t.charAt(0)?String.fromCharCode(\"x\"===t.charAt(1)?parseInt(t.substring(2),16):+t.substring(1)):\"\"})}function l(e,t){return e=e.source,t=t||\"\",function n(r,s){return r?(s=s.source||s,s=s.replace(/(^|[^\\[])\\^/g,\"$1\"),e=e.replace(r,s),n):new RegExp(e,t)}}function o(){}function h(e){for(var t,n,r=1;r<arguments.length;r++){t=arguments[r];for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e}function a(t,n,i){if(i||\"function\"==typeof n){i||(i=n,n=null),n=h({},a.defaults,n||{});var l,o,p=n.highlight,u=0;try{l=e.lex(t,n)}catch(c){return i(c)}o=l.length;var g=function(e){if(e)return n.highlight=p,i(e);var t;try{t=r.parse(l,n)}catch(s){e=s}return n.highlight=p,e?i(e):i(null,t)};if(!p||p.length<3)return g();if(delete n.highlight,!o)return g();for(;u<l.length;u++)!function(e){return\"code\"!==e.type?--o||g():p(e.text,e.lang,function(t,n){return t?g(t):null==n||n===e.text?--o||g():(e.text=n,e.escaped=!0,void(--o||g()))})}(l[u])}else try{return n&&(n=h({},a.defaults,n)),r.parse(e.lex(t,n),n)}catch(c){if(c.message+=\"\\nPlease report this to https://github.com/chjj/marked.\",(n||a.defaults).silent)return\"<p>An error occured:</p><pre>\"+s(c.message+\"\",!0)+\"</pre>\";throw c}}var p={newline:/^\\n+/,code:/^( {4}[^\\n]+\\n*)+/,fences:o,hr:/^( *[-*_]){3,} *(?:\\n+|$)/,heading:/^ *(#{1,6}) *([^\\n]+?) *#* *(?:\\n+|$)/,nptable:o,lheading:/^([^\\n]+)\\n *(=|-){2,} *(?:\\n+|$)/,blockquote:/^( *>[^\\n]+(\\n(?!def)[^\\n]+)*\\n*)+/,list:/^( *)(bull) [\\s\\S]+?(?:hr|def|\\n{2,}(?! )(?!\\1bull )\\n*|\\s*$)/,html:/^ *(?:comment *(?:\\n|\\s*$)|closed *(?:\\n{2,}|\\s*$)|closing *(?:\\n{2,}|\\s*$))/,def:/^ *\\[([^\\]]+)\\]: *<?([^\\s>]+)>?(?: +[\"(]([^\\n]+)[\")])? *(?:\\n+|$)/,table:o,paragraph:/^((?:[^\\n]+\\n?(?!hr|heading|lheading|blockquote|tag|def))+)\\n*/,text:/^[^\\n]+/};p.bullet=/(?:[*+-]|\\d+\\.)/,p.item=/^( *)(bull) [^\\n]*(?:\\n(?!\\1bull )[^\\n]*)*/,p.item=l(p.item,\"gm\")(/bull/g,p.bullet)(),p.list=l(p.list)(/bull/g,p.bullet)(\"hr\",\"\\\\n+(?=\\\\1?(?:[-*_] *){3,}(?:\\\\n+|$))\")(\"def\",\"\\\\n+(?=\"+p.def.source+\")\")(),p.blockquote=l(p.blockquote)(\"def\",p.def)(),p._tag=\"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\\\b)\\\\w+(?!:/|[^\\\\w\\\\s@]*@)\\\\b\",p.html=l(p.html)(\"comment\",/<!--[\\s\\S]*?-->/)(\"closed\",/<(tag)[\\s\\S]+?<\\/\\1>/)(\"closing\",/<tag(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/)(/tag/g,p._tag)(),p.paragraph=l(p.paragraph)(\"hr\",p.hr)(\"heading\",p.heading)(\"lheading\",p.lheading)(\"blockquote\",p.blockquote)(\"tag\",\"<\"+p._tag)(\"def\",p.def)(),p.normal=h({},p),p.gfm=h({},p.normal,{fences:/^ *(`{3,}|~{3,}) *(\\S+)? *\\n([\\s\\S]+?)\\s*\\1 *(?:\\n+|$)/,paragraph:/^/}),p.gfm.paragraph=l(p.paragraph)(\"(?!\",\"(?!\"+p.gfm.fences.source.replace(\"\\\\1\",\"\\\\2\")+\"|\"+p.list.source.replace(\"\\\\1\",\"\\\\3\")+\"|\")(),p.tables=h({},p.gfm,{nptable:/^ *(\\S.*\\|.*)\\n *([-:]+ *\\|[-| :]*)\\n((?:.*\\|.*(?:\\n|$))*)\\n*/,table:/^ *\\|(.+)\\n *\\|( *[-:]+[-| :]*)\\n((?: *\\|.*(?:\\n|$))*)\\n*/}),e.rules=p,e.lex=function(t,n){var r=new e(n);return r.lex(t)},e.prototype.lex=function(e){return e=e.replace(/\\r\\n|\\r/g,\"\\n\").replace(/\\t/g,\"    \").replace(/\\u00a0/g,\" \").replace(/\\u2424/g,\"\\n\"),this.token(e,!0)},e.prototype.token=function(e,t,n){for(var r,s,i,l,o,h,a,u,c,e=e.replace(/^ +$/gm,\"\");e;)if((i=this.rules.newline.exec(e))&&(e=e.substring(i[0].length),i[0].length>1&&this.tokens.push({type:\"space\"})),i=this.rules.code.exec(e))e=e.substring(i[0].length),i=i[0].replace(/^ {4}/gm,\"\"),this.tokens.push({type:\"code\",text:this.options.pedantic?i:i.replace(/\\n+$/,\"\")});else if(i=this.rules.fences.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"code\",lang:i[2],text:i[3]});else if(i=this.rules.heading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:i[1].length,text:i[2]});else if(t&&(i=this.rules.nptable.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].split(/ *\\| */);this.tokens.push(h)}else if(i=this.rules.lheading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:\"=\"===i[2]?1:2,text:i[1]});else if(i=this.rules.hr.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"hr\"});else if(i=this.rules.blockquote.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"blockquote_start\"}),i=i[0].replace(/^ *> ?/gm,\"\"),this.token(i,t,!0),this.tokens.push({type:\"blockquote_end\"});else if(i=this.rules.list.exec(e)){for(e=e.substring(i[0].length),l=i[2],this.tokens.push({type:\"list_start\",ordered:l.length>1}),i=i[0].match(this.rules.item),r=!1,c=i.length,u=0;c>u;u++)h=i[u],a=h.length,h=h.replace(/^ *([*+-]|\\d+\\.) +/,\"\"),~h.indexOf(\"\\n \")&&(a-=h.length,h=this.options.pedantic?h.replace(/^ {1,4}/gm,\"\"):h.replace(new RegExp(\"^ {1,\"+a+\"}\",\"gm\"),\"\")),this.options.smartLists&&u!==c-1&&(o=p.bullet.exec(i[u+1])[0],l===o||l.length>1&&o.length>1||(e=i.slice(u+1).join(\"\\n\")+e,u=c-1)),s=r||/\\n\\n(?!\\s*$)/.test(h),u!==c-1&&(r=\"\\n\"===h.charAt(h.length-1),s||(s=r)),this.tokens.push({type:s?\"loose_item_start\":\"list_item_start\"}),this.token(h,!1,n),this.tokens.push({type:\"list_item_end\"});this.tokens.push({type:\"list_end\"})}else if(i=this.rules.html.exec(e))e=e.substring(i[0].length),this.tokens.push({type:this.options.sanitize?\"paragraph\":\"html\",pre:\"pre\"===i[1]||\"script\"===i[1]||\"style\"===i[1],text:i[0]});else if(!n&&t&&(i=this.rules.def.exec(e)))e=e.substring(i[0].length),this.tokens.links[i[1].toLowerCase()]={href:i[2],title:i[3]};else if(t&&(i=this.rules.table.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/(?: *\\| *)?\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].replace(/^ *\\| *| *\\| *$/g,\"\").split(/ *\\| */);this.tokens.push(h)}else if(t&&(i=this.rules.paragraph.exec(e)))e=e.substring(i[0].length),this.tokens.push({type:\"paragraph\",text:\"\\n\"===i[1].charAt(i[1].length-1)?i[1].slice(0,-1):i[1]});else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"text\",text:i[0]});else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0));return this.tokens};var u={escape:/^\\\\([\\\\`*{}\\[\\]()#+\\-.!_>])/,autolink:/^<([^ >]+(@|:\\/)[^ >]+)>/,url:o,tag:/^<!--[\\s\\S]*?-->|^<\\/?\\w+(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/,link:/^!?\\[(inside)\\]\\(href\\)/,reflink:/^!?\\[(inside)\\]\\s*\\[([^\\]]*)\\]/,nolink:/^!?\\[((?:\\[[^\\]]*\\]|[^\\[\\]])*)\\]/,strong:/^__([\\s\\S]+?)__(?!_)|^\\*\\*([\\s\\S]+?)\\*\\*(?!\\*)/,em:/^\\b_((?:__|[\\s\\S])+?)_\\b|^\\*((?:\\*\\*|[\\s\\S])+?)\\*(?!\\*)/,code:/^(`+)\\s*([\\s\\S]*?[^`])\\s*\\1(?!`)/,br:/^ {2,}\\n(?!\\s*$)/,del:o,text:/^[\\s\\S]+?(?=[\\\\<!\\[_*`]| {2,}\\n|$)/};u._inside=/(?:\\[[^\\]]*\\]|[^\\[\\]]|\\](?=[^\\[]*\\]))*/,u._href=/\\s*<?([\\s\\S]*?)>?(?:\\s+['\"]([\\s\\S]*?)['\"])?\\s*/,u.link=l(u.link)(\"inside\",u._inside)(\"href\",u._href)(),u.reflink=l(u.reflink)(\"inside\",u._inside)(),u.normal=h({},u),u.pedantic=h({},u.normal,{strong:/^__(?=\\S)([\\s\\S]*?\\S)__(?!_)|^\\*\\*(?=\\S)([\\s\\S]*?\\S)\\*\\*(?!\\*)/,em:/^_(?=\\S)([\\s\\S]*?\\S)_(?!_)|^\\*(?=\\S)([\\s\\S]*?\\S)\\*(?!\\*)/}),u.gfm=h({},u.normal,{escape:l(u.escape)(\"])\",\"~|])\")(),url:/^(https?:\\/\\/[^\\s<]+[^<.,:;\"')\\]\\s])/,del:/^~~(?=\\S)([\\s\\S]*?\\S)~~/,text:l(u.text)(\"]|\",\"~]|\")(\"|\",\"|https?://|\")()}),u.breaks=h({},u.gfm,{br:l(u.br)(\"{2,}\",\"*\")(),text:l(u.gfm.text)(\"{2,}\",\"*\")()}),t.rules=u,t.output=function(e,n,r){var s=new t(n,r);return s.output(e)},t.prototype.output=function(e){for(var t,n,r,i,l=\"\";e;)if(i=this.rules.escape.exec(e))e=e.substring(i[0].length),l+=i[1];else if(i=this.rules.autolink.exec(e))e=e.substring(i[0].length),\"@\"===i[2]?(n=this.mangle(\":\"===i[1].charAt(6)?i[1].substring(7):i[1]),r=this.mangle(\"mailto:\")+n):(n=s(i[1]),r=n),l+=this.renderer.link(r,null,n);else if(this.inLink||!(i=this.rules.url.exec(e))){if(i=this.rules.tag.exec(e))!this.inLink&&/^<a /i.test(i[0])?this.inLink=!0:this.inLink&&/^<\\/a>/i.test(i[0])&&(this.inLink=!1),e=e.substring(i[0].length),l+=this.options.sanitize?s(i[0]):i[0];else if(i=this.rules.link.exec(e))e=e.substring(i[0].length),this.inLink=!0,l+=this.outputLink(i,{href:i[2],title:i[3]}),this.inLink=!1;else if((i=this.rules.reflink.exec(e))||(i=this.rules.nolink.exec(e))){if(e=e.substring(i[0].length),t=(i[2]||i[1]).replace(/\\s+/g,\" \"),t=this.links[t.toLowerCase()],!t||!t.href){l+=i[0].charAt(0),e=i[0].substring(1)+e;continue}this.inLink=!0,l+=this.outputLink(i,t),this.inLink=!1}else if(i=this.rules.strong.exec(e))e=e.substring(i[0].length),l+=this.renderer.strong(this.output(i[2]||i[1]));else if(i=this.rules.em.exec(e))e=e.substring(i[0].length),l+=this.renderer.em(this.output(i[2]||i[1]));else if(i=this.rules.code.exec(e))e=e.substring(i[0].length),l+=this.renderer.codespan(s(i[2],!0));else if(i=this.rules.br.exec(e))e=e.substring(i[0].length),l+=this.renderer.br();else if(i=this.rules.del.exec(e))e=e.substring(i[0].length),l+=this.renderer.del(this.output(i[1]));else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),l+=s(this.smartypants(i[0]));else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0))}else e=e.substring(i[0].length),n=s(i[1]),r=n,l+=this.renderer.link(r,null,n);return l},t.prototype.outputLink=function(e,t){var n=s(t.href),r=t.title?s(t.title):null;return\"!\"!==e[0].charAt(0)?this.renderer.link(n,r,this.output(e[1])):this.renderer.image(n,r,s(e[1]))},t.prototype.smartypants=function(e){return this.options.smartypants?e.replace(/--/g,\"—\").replace(/(^|[-\\u2014/(\\[{\"\\s])'/g,\"$1‘\").replace(/'/g,\"’\").replace(/(^|[-\\u2014/(\\[{\\u2018\\s])\"/g,\"$1“\").replace(/\"/g,\"”\").replace(/\\.{3}/g,\"…\"):e},t.prototype.mangle=function(e){for(var t,n=\"\",r=e.length,s=0;r>s;s++)t=e.charCodeAt(s),Math.random()>.5&&(t=\"x\"+t.toString(16)),n+=\"&#\"+t+\";\";return n},n.prototype.code=function(e,t,n){if(this.options.highlight){var r=this.options.highlight(e,t);null!=r&&r!==e&&(n=!0,e=r)}return t?'<pre><code class=\"'+this.options.langPrefix+s(t,!0)+'\">'+(n?e:s(e,!0))+\"\\n</code></pre>\\n\":\"<pre><code>\"+(n?e:s(e,!0))+\"\\n</code></pre>\"},n.prototype.blockquote=function(e){return\"<blockquote>\\n\"+e+\"</blockquote>\\n\"},n.prototype.html=function(e){return e},n.prototype.heading=function(e,t,n){return\"<h\"+t+' id=\"'+this.options.headerPrefix+n.toLowerCase().replace(/[^\\w]+/g,\"-\")+'\">'+e+\"</h\"+t+\">\\n\"},n.prototype.hr=function(){return this.options.xhtml?\"<hr/>\\n\":\"<hr>\\n\"},n.prototype.list=function(e,t){var n=t?\"ol\":\"ul\";return\"<\"+n+\">\\n\"+e+\"</\"+n+\">\\n\"},n.prototype.listitem=function(e){return\"<li>\"+e+\"</li>\\n\"},n.prototype.paragraph=function(e){return\"<p>\"+e+\"</p>\\n\"},n.prototype.table=function(e,t){return\"<table>\\n<thead>\\n\"+e+\"</thead>\\n<tbody>\\n\"+t+\"</tbody>\\n</table>\\n\"},n.prototype.tablerow=function(e){return\"<tr>\\n\"+e+\"</tr>\\n\"},n.prototype.tablecell=function(e,t){var n=t.header?\"th\":\"td\",r=t.align?\"<\"+n+' style=\"text-align:'+t.align+'\">':\"<\"+n+\">\";return r+e+\"</\"+n+\">\\n\"},n.prototype.strong=function(e){return\"<strong>\"+e+\"</strong>\"},n.prototype.em=function(e){return\"<em>\"+e+\"</em>\"},n.prototype.codespan=function(e){return\"<code>\"+e+\"</code>\"},n.prototype.br=function(){return this.options.xhtml?\"<br/>\":\"<br>\"},n.prototype.del=function(e){return\"<del>\"+e+\"</del>\"},n.prototype.link=function(e,t,n){if(this.options.sanitize){try{var r=decodeURIComponent(i(e)).replace(/[^\\w:]/g,\"\").toLowerCase()}catch(s){return\"\"}if(0===r.indexOf(\"javascript:\")||0===r.indexOf(\"vbscript:\"))return\"\"}var l='<a href=\"'+e+'\"';return t&&(l+=' title=\"'+t+'\"'),l+=\">\"+n+\"</a>\"},n.prototype.image=function(e,t,n){var r='<img src=\"'+e+'\" alt=\"'+n+'\"';return t&&(r+=' title=\"'+t+'\"'),r+=this.options.xhtml?\"/>\":\">\"},r.parse=function(e,t,n){var s=new r(t,n);return s.parse(e)},r.prototype.parse=function(e){this.inline=new t(e.links,this.options,this.renderer),this.tokens=e.reverse();for(var n=\"\";this.next();)n+=this.tok();return n},r.prototype.next=function(){return this.token=this.tokens.pop()},r.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},r.prototype.parseText=function(){for(var e=this.token.text;\"text\"===this.peek().type;)e+=\"\\n\"+this.next().text;return this.inline.output(e)},r.prototype.tok=function(){switch(this.token.type){case\"space\":return\"\";case\"hr\":return this.renderer.hr();case\"heading\":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text);case\"code\":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case\"table\":var e,t,n,r,s,i=\"\",l=\"\";for(n=\"\",e=0;e<this.token.header.length;e++)r={header:!0,align:this.token.align[e]},n+=this.renderer.tablecell(this.inline.output(this.token.header[e]),{header:!0,align:this.token.align[e]});for(i+=this.renderer.tablerow(n),e=0;e<this.token.cells.length;e++){for(t=this.token.cells[e],n=\"\",s=0;s<t.length;s++)n+=this.renderer.tablecell(this.inline.output(t[s]),{header:!1,align:this.token.align[s]});l+=this.renderer.tablerow(n)}return this.renderer.table(i,l);case\"blockquote_start\":for(var l=\"\";\"blockquote_end\"!==this.next().type;)l+=this.tok();return this.renderer.blockquote(l);case\"list_start\":for(var l=\"\",o=this.token.ordered;\"list_end\"!==this.next().type;)l+=this.tok();return this.renderer.list(l,o);case\"list_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=\"text\"===this.token.type?this.parseText():this.tok();return this.renderer.listitem(l);case\"loose_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=this.tok();return this.renderer.listitem(l);case\"html\":var h=this.token.pre||this.options.pedantic?this.token.text:this.inline.output(this.token.text);return this.renderer.html(h);case\"paragraph\":return this.renderer.paragraph(this.inline.output(this.token.text));case\"text\":return this.renderer.paragraph(this.parseText())}},o.exec=o,a.options=a.setOptions=function(e){return h(a.defaults,e),a},a.defaults={gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,smartLists:!1,silent:!1,highlight:null,langPrefix:\"lang-\",smartypants:!1,headerPrefix:\"\",renderer:new n,xhtml:!1},a.Parser=r,a.parser=r.parse,a.Renderer=n,a.Lexer=e,a.lexer=e.lex,a.InlineLexer=t,a.inlineLexer=t.output,a.parse=a,\"undefined\"!=typeof module&&\"object\"==typeof exports?module.exports=a:\"function\"==typeof define&&define.amd?define(function(){return a}):this.marked=a}).call(function(){return this||(\"undefined\"!=typeof window?window:global)}());"
  },
  {
    "path": "doc/cpp-london-2017/plugin/math/math.js",
    "content": "/**\n * A plugin which enables rendering of math equations inside\n * of reveal.js slides. Essentially a thin wrapper for MathJax.\n *\n * @author Hakim El Hattab\n */\nvar RevealMath = window.RevealMath || (function(){\n\n\tvar options = Reveal.getConfig().math || {};\n\toptions.mathjax = options.mathjax || 'https://cdn.mathjax.org/mathjax/latest/MathJax.js';\n\toptions.config = options.config || 'TeX-AMS_HTML-full';\n\n\tloadScript( options.mathjax + '?config=' + options.config, function() {\n\n\t\tMathJax.Hub.Config({\n\t\t\tmessageStyle: 'none',\n\t\t\ttex2jax: {\n\t\t\t\tinlineMath: [['$','$'],['\\\\(','\\\\)']] ,\n\t\t\t\tskipTags: ['script','noscript','style','textarea','pre']\n\t\t\t},\n\t\t\tskipStartupTypeset: true\n\t\t});\n\n\t\t// Typeset followed by an immediate reveal.js layout since\n\t\t// the typesetting process could affect slide height\n\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] );\n\t\tMathJax.Hub.Queue( Reveal.layout );\n\n\t\t// Reprocess equations in slides when they turn visible\n\t\tReveal.addEventListener( 'slidechanged', function( event ) {\n\n\t\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] );\n\n\t\t} );\n\n\t} );\n\n\tfunction loadScript( url, callback ) {\n\n\t\tvar head = document.querySelector( 'head' );\n\t\tvar script = document.createElement( 'script' );\n\t\tscript.type = 'text/javascript';\n\t\tscript.src = url;\n\n\t\t// Wrapper for callback to make sure it only fires once\n\t\tvar finish = function() {\n\t\t\tif( typeof callback === 'function' ) {\n\t\t\t\tcallback.call();\n\t\t\t\tcallback = null;\n\t\t\t}\n\t\t}\n\n\t\tscript.onload = finish;\n\n\t\t// IE\n\t\tscript.onreadystatechange = function() {\n\t\t\tif ( this.readyState === 'loaded' ) {\n\t\t\t\tfinish();\n\t\t\t}\n\t\t}\n\n\t\t// Normal browsers\n\t\thead.appendChild( script );\n\n\t}\n\n})();\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/multiplex/client.js",
    "content": "(function() {\n\tvar multiplex = Reveal.getConfig().multiplex;\n\tvar socketId = multiplex.id;\n\tvar socket = io.connect(multiplex.url);\n\n\tsocket.on(multiplex.id, function(data) {\n\t\t// ignore data from sockets that aren't ours\n\t\tif (data.socketId !== socketId) { return; }\n\t\tif( window.location.host === 'localhost:1947' ) return;\n\n\t\tReveal.setState(data.state);\n\t});\n}());\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/multiplex/index.js",
    "content": "var http        = require('http');\nvar express\t\t= require('express');\nvar fs\t\t\t= require('fs');\nvar io\t\t\t= require('socket.io');\nvar crypto\t\t= require('crypto');\n\nvar app       \t= express();\nvar staticDir \t= express.static;\nvar server    \t= http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport: process.env.PORT || 1948,\n\tbaseDir : __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\tsocket.on('multiplex-statechanged', function(data) {\n\t\tif (typeof data.secret == 'undefined' || data.secret == null || data.secret === '') return;\n\t\tif (createHash(data.secret) === data.socketId) {\n\t\t\tdata.secret = null;\n\t\t\tsocket.broadcast.emit(data.socketId, data);\n\t\t};\n\t});\n});\n\n[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {\n\tapp.use('/' + dir, staticDir(opts.baseDir + dir));\n});\n\napp.get(\"/\", function(req, res) {\n\tres.writeHead(200, {'Content-Type': 'text/html'});\n\tfs.createReadStream(opts.baseDir + '/index.html').pipe(res);\n});\n\napp.get(\"/token\", function(req,res) {\n\tvar ts = new Date().getTime();\n\tvar rand = Math.floor(Math.random()*9999999);\n\tvar secret = ts.toString() + rand.toString();\n\tres.send({secret: secret, socketId: createHash(secret)});\n});\n\nvar createHash = function(secret) {\n\tvar cipher = crypto.createCipher('blowfish', secret);\n\treturn(cipher.final('hex'));\n};\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nconsole.log( brown + \"reveal.js:\" + reset + \" Multiplex running on port \" + green + opts.port + reset );"
  },
  {
    "path": "doc/cpp-london-2017/plugin/multiplex/master.js",
    "content": "(function() {\n\n\t// Don't emit events from inside of notes windows\n\tif ( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar multiplex = Reveal.getConfig().multiplex;\n\n\tvar socket = io.connect( multiplex.url );\n\n\tfunction post() {\n\n\t\tvar messageData = {\n\t\t\tstate: Reveal.getState(),\n\t\t\tsecret: multiplex.secret,\n\t\t\tsocketId: multiplex.id\n\t\t};\n\n\t\tsocket.emit( 'multiplex-statechanged', messageData );\n\n\t};\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n}());"
  },
  {
    "path": "doc/cpp-london-2017/plugin/notes/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\t\t\t\toverflow: auto;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"../../plugin/markdown/marked.js\"></script>\n\t\t<script>\n\n\t\t\t(function() {\n\n\t\t\t\tvar notes,\n\t\t\t\t\tnotesValue,\n\t\t\t\t\tcurrentState,\n\t\t\t\t\tcurrentSlide,\n\t\t\t\t\tupcomingSlide,\n\t\t\t\t\tconnected = false;\n\n\t\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\t\t// Messages sent by the notes plugin inside of the main window\n\t\t\t\t\tif( data && data.namespace === 'reveal-notes' ) {\n\t\t\t\t\t\tif( data.type === 'connect' ) {\n\t\t\t\t\t\t\thandleConnectMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( data.type === 'state' ) {\n\t\t\t\t\t\t\thandleStateMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Messages sent by the reveal.js inside of the current slide preview\n\t\t\t\t\telse if( data && data.namespace === 'reveal' ) {\n\t\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\t\t// Send a message back to notify that the handshake is complete\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ namespace: 'reveal-notes', type: 'connected'} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ]} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window is trying to establish a\n\t\t\t\t * connection.\n\t\t\t\t */\n\t\t\t\tfunction handleConnectMessage( data ) {\n\n\t\t\t\t\tif( connected === false ) {\n\t\t\t\t\t\tconnected = true;\n\n\t\t\t\t\t\tsetupIframes( data );\n\t\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\t\tsetupNotes();\n\t\t\t\t\t\tsetupTimer();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window sends an updated state.\n\t\t\t\t */\n\t\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t\t// applying the same state\n\t\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\t\tif ( data.notes ) {\n\t\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\t\tnotesValue.style.whiteSpace = data.whitespace;\n\t\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update the note slides\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t\t}\n\n\t\t\t\t// Limit to max one state update per X ms\n\t\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t\t/**\n\t\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t\t * This enables keyboard events to work even if focus\n\t\t\t\t * isn't set on the current slide iframe.\n\t\t\t\t */\n\t\t\t\tfunction setupKeyboard() {\n\n\t\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Creates the preview iframes.\n\t\t\t\t */\n\t\t\t\tfunction setupIframes( data ) {\n\n\t\t\t\t\tvar params = [\n\t\t\t\t\t\t'receiver',\n\t\t\t\t\t\t'progress=false',\n\t\t\t\t\t\t'history=false',\n\t\t\t\t\t\t'transition=none',\n\t\t\t\t\t\t'autoSlide=0',\n\t\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t\t].join( '&' );\n\n\t\t\t\t\tvar hash = '#/' + data.state.indexh + '/' + data.state.indexv;\n\t\t\t\t\tvar currentURL = data.url + '?' + params + '&postMessageEvents=true' + hash;\n\t\t\t\t\tvar upcomingURL = data.url + '?' + params + '&controls=false' + hash;\n\n\t\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Setup the notes UI.\n\t\t\t\t */\n\t\t\t\tfunction setupNotes() {\n\n\t\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Create the timer and clock and start updating them\n\t\t\t\t * at an interval.\n\t\t\t\t */\n\t\t\t\tfunction setupTimer() {\n\n\t\t\t\t\tvar start = new Date(),\n\t\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update once directly\n\t\t\t\t\t_updateTimer();\n\n\t\t\t\t\t// Then update every second\n\t\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\t\tstart = new Date();\n\t\t\t\t\t\t_updateTimer();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t\t */\n\t\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\t\tvar lastTime = 0,\n\t\t\t\t\t\ttimeout;\n\n\t\t\t\t\treturn function() {\n\n\t\t\t\t\t\tvar args = arguments;\n\t\t\t\t\t\tvar context = this;\n\n\t\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t})();\n\n\t\t</script>\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/notes/notes.js",
    "content": "/**\n * Handles opening of and synchronization with the reveal.js\n * notes window.\n *\n * Handshake process:\n * 1. This window posts 'connect' to notes window\n *    - Includes URL of presentation to show\n * 2. Notes window responds with 'connected' when it is available\n * 3. This window proceeds to send the current presentation state\n *    to the notes window\n */\nvar RevealNotes = (function() {\n\n\tfunction openNotes() {\n\t\tvar jsFileLocation = document.querySelector('script[src$=\"notes.js\"]').src;  // this js file path\n\t\tjsFileLocation = jsFileLocation.replace(/notes\\.js(\\?.*)?$/, '');   // the js folder path\n\t\tvar notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1100,height=700' );\n\n\t\t/**\n\t\t * Connect to the notes window through a postmessage handshake.\n\t\t * Using postmessage enables us to work in situations where the\n\t\t * origins differ, such as a presentation being opened from the\n\t\t * file system.\n\t\t */\n\t\tfunction connect() {\n\t\t\t// Keep trying to connect until we get a 'connected' message back\n\t\t\tvar connectInterval = setInterval( function() {\n\t\t\t\tnotesPopup.postMessage( JSON.stringify( {\n\t\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\t\ttype: 'connect',\n\t\t\t\t\turl: window.location.protocol + '//' + window.location.host + window.location.pathname + window.location.search,\n\t\t\t\t\tstate: Reveal.getState()\n\t\t\t\t} ), '*' );\n\t\t\t}, 500 );\n\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\t\t\t\tvar data = JSON.parse( event.data );\n\t\t\t\tif( data && data.namespace === 'reveal-notes' && data.type === 'connected' ) {\n\t\t\t\t\tclearInterval( connectInterval );\n\t\t\t\t\tonConnected();\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t/**\n\t\t * Posts the current slide data to the notes window\n\t\t */\n\t\tfunction post() {\n\n\t\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\t\tvar messageData = {\n\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\ttype: 'state',\n\t\t\t\tnotes: '',\n\t\t\t\tmarkdown: false,\n\t\t\t\twhitespace: 'normal',\n\t\t\t\tstate: Reveal.getState()\n\t\t\t};\n\n\t\t\t// Look for notes defined in a slide attribute\n\t\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t\t\tmessageData.whitespace = 'pre-wrap';\n\t\t\t}\n\n\t\t\t// Look for notes defined in an aside element\n\t\t\tif( notesElement ) {\n\t\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t\t}\n\n\t\t\tnotesPopup.postMessage( JSON.stringify( messageData ), '*' );\n\n\t\t}\n\n\t\t/**\n\t\t * Called once we have established a connection to the notes\n\t\t * window.\n\t\t */\n\t\tfunction onConnected() {\n\n\t\t\t// Monitor events that trigger a change in state\n\t\t\tReveal.addEventListener( 'slidechanged', post );\n\t\t\tReveal.addEventListener( 'fragmentshown', post );\n\t\t\tReveal.addEventListener( 'fragmenthidden', post );\n\t\t\tReveal.addEventListener( 'overviewhidden', post );\n\t\t\tReveal.addEventListener( 'overviewshown', post );\n\t\t\tReveal.addEventListener( 'paused', post );\n\t\t\tReveal.addEventListener( 'resumed', post );\n\n\t\t\t// Post the initial state\n\t\t\tpost();\n\n\t\t}\n\n\t\tconnect();\n\t}\n\n\tif( !/receiver/i.test( window.location.search ) ) {\n\n\t\t// If the there's a 'notes' query set, open directly\n\t\tif( window.location.search.match( /(\\?|\\&)notes/gi ) !== null ) {\n\t\t\topenNotes();\n\t\t}\n\n\t\t// Open the notes when the 's' key is hit\n\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t// Disregard the event if the target is editable or a\n\t\t\t// modifier is present\n\t\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t\t// Disregard the event if keyboard is disabled\n\t\t\tif ( Reveal.getConfig().keyboard === false ) return;\n\n\t\t\tif( event.keyCode === 83 ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\topenNotes();\n\t\t\t}\n\t\t}, false );\n\n\t}\n\n\treturn { open: openNotes };\n\n})();\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/notes-server/client.js",
    "content": "(function() {\n\n\t// don't emit events from inside the previews themselves\n\tif( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar socket = io.connect( window.location.origin ),\n\t\tsocketId = Math.random().toString().slice( 2 );\n\n\tconsole.log( 'View slide notes at ' + window.location.origin + '/notes/' + socketId );\n\n\twindow.open( window.location.origin + '/notes/' + socketId, 'notes-' + socketId );\n\n\t/**\n\t * Posts the current slide data to the notes window\n\t */\n\tfunction post() {\n\n\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\tvar messageData = {\n\t\t\tnotes: '',\n\t\t\tmarkdown: false,\n\t\t\tsocketId: socketId,\n\t\t\tstate: Reveal.getState()\n\t\t};\n\n\t\t// Look for notes defined in a slide attribute\n\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// Look for notes defined in an aside element\n\t\tif( notesElement ) {\n\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t}\n\n\t\tsocket.emit( 'statechanged', messageData );\n\n\t}\n\n\t// When a new notes window connects, post our current state\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tpost();\n\t} );\n\n\t// When the state changes from inside of the speaker view\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tReveal.setState( data.state );\n\t} );\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n\t// Post the initial state\n\tpost();\n\n}());\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/notes-server/index.js",
    "content": "var http      = require('http');\nvar express   = require('express');\nvar fs        = require('fs');\nvar io        = require('socket.io');\nvar _         = require('underscore');\nvar Mustache  = require('mustache');\n\nvar app       = express();\nvar staticDir = express.static;\nvar server    = http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport :      1947,\n\tbaseDir :   __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tsocket.broadcast.emit( 'new-subscriber', data );\n\t});\n\n\tsocket.on( 'statechanged', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged', data );\n\t});\n\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged-speaker', data );\n\t});\n\n});\n\n[ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) {\n\tapp.use( '/' + dir, staticDir( opts.baseDir + dir ) );\n});\n\napp.get('/', function( req, res ) {\n\n\tres.writeHead( 200, { 'Content-Type': 'text/html' } );\n\tfs.createReadStream( opts.baseDir + '/index.html' ).pipe( res );\n\n});\n\napp.get( '/notes/:socketId', function( req, res ) {\n\n\tfs.readFile( opts.baseDir + 'plugin/notes-server/notes.html', function( err, data ) {\n\t\tres.send( Mustache.to_html( data.toString(), {\n\t\t\tsocketId : req.params.socketId\n\t\t}));\n\t});\n\n});\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nvar slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : '' );\n\nconsole.log( brown + 'reveal.js - Speaker Notes' + reset );\nconsole.log( '1. Open the slides at ' + green + slidesLocation + reset );\nconsole.log( '2. Click on the link your JS console to go to the notes page' );\nconsole.log( '3. Advance through your slides and your notes will advance automatically' );\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/notes-server/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"/socket.io/socket.io.js\"></script>\n\t\t<script src=\"/plugin/markdown/marked.js\"></script>\n\n\t\t<script>\n\t\t(function() {\n\n\t\t\tvar notes,\n\t\t\t\tnotesValue,\n\t\t\t\tcurrentState,\n\t\t\t\tcurrentSlide,\n\t\t\t\tupcomingSlide,\n\t\t\t\tconnected = false;\n\n\t\t\tvar socket = io.connect( window.location.origin ),\n\t\t\t\tsocketId = '{{socketId}}';\n\n\t\t\tsocket.on( 'statechanged', function( data ) {\n\n\t\t\t\t// ignore data from sockets that aren't ours\n\t\t\t\tif( data.socketId !== socketId ) { return; }\n\n\t\t\t\tif( connected === false ) {\n\t\t\t\t\tconnected = true;\n\n\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\tsetupNotes();\n\t\t\t\t\tsetupTimer();\n\n\t\t\t\t}\n\n\t\t\t\thandleStateMessage( data );\n\n\t\t\t} );\n\n\t\t\t// Load our presentation iframes\n\t\t\tsetupIframes();\n\n\t\t\t// Once the iframes have loaded, emit a signal saying there's\n\t\t\t// a new subscriber which will trigger a 'statechanged'\n\t\t\t// message to be sent back\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\tsocket.emit( 'new-subscriber', { socketId: socketId } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Messages sent by reveal.js inside of the current slide preview\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\tsocket.emit( 'statechanged-speaker', { state: data.state } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t/**\n\t\t\t * Called when the main window sends an updated state.\n\t\t\t */\n\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t// applying the same state\n\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\tif ( data.notes ) {\n\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t}\n\n\t\t\t\t// Update the note slides\n\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t}\n\n\t\t\t// Limit to max one state update per X ms\n\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t/**\n\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t * This enables keyboard events to work even if focus\n\t\t\t * isn't set on the current slide iframe.\n\t\t\t */\n\t\t\tfunction setupKeyboard() {\n\n\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Creates the preview iframes.\n\t\t\t */\n\t\t\tfunction setupIframes() {\n\n\t\t\t\tvar params = [\n\t\t\t\t\t'receiver',\n\t\t\t\t\t'progress=false',\n\t\t\t\t\t'history=false',\n\t\t\t\t\t'transition=none',\n\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t].join( '&' );\n\n\t\t\t\tvar currentURL = '/?' + params + '&postMessageEvents=true';\n\t\t\t\tvar upcomingURL = '/?' + params + '&controls=false';\n\n\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Setup the notes UI.\n\t\t\t */\n\t\t\tfunction setupNotes() {\n\n\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Create the timer and clock and start updating them\n\t\t\t * at an interval.\n\t\t\t */\n\t\t\tfunction setupTimer() {\n\n\t\t\t\tvar start = new Date(),\n\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t}\n\n\t\t\t\t// Update once directly\n\t\t\t\t_updateTimer();\n\n\t\t\t\t// Then update every second\n\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\tstart = new Date();\n\t\t\t\t\t_updateTimer();\n\t\t\t\t\treturn false;\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t */\n\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\tvar lastTime = 0,\n\t\t\t\t\ttimeout;\n\n\t\t\t\treturn function() {\n\n\t\t\t\t\tvar args = arguments;\n\t\t\t\t\tvar context = this;\n\n\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t})();\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/print-pdf/print-pdf.js",
    "content": "/**\n * phantomjs script for printing presentations to PDF.\n *\n * Example:\n * phantomjs print-pdf.js \"http://lab.hakim.se/reveal-js?print-pdf\" reveal-demo.pdf\n *\n * By Manuel Bieh (https://github.com/manuelbieh)\n */\n\n// html2pdf.js\nvar page = new WebPage();\nvar system = require( 'system' );\n\nvar slideWidth = system.args[3] ? system.args[3].split( 'x' )[0] : 960;\nvar slideHeight = system.args[3] ? system.args[3].split( 'x' )[1] : 700;\n\npage.viewportSize = {\n\twidth: slideWidth,\n\theight: slideHeight\n};\n\n// TODO\n// Something is wrong with these config values. An input\n// paper width of 1920px actually results in a 756px wide\n// PDF.\npage.paperSize = {\n\twidth: Math.round( slideWidth * 2 ),\n\theight: Math.round( slideHeight * 2 ),\n\tborder: 0\n};\n\nvar inputFile = system.args[1] || 'index.html?print-pdf';\nvar outputFile = system.args[2] || 'slides.pdf';\n\nif( outputFile.match( /\\.pdf$/gi ) === null ) {\n\toutputFile += '.pdf';\n}\n\nconsole.log( 'Printing PDF (Paper size: '+ page.paperSize.width + 'x' + page.paperSize.height +')' );\n\npage.open( inputFile, function( status ) {\n\twindow.setTimeout( function() {\n\t\tconsole.log( 'Printed succesfully' );\n\t\tpage.render( outputFile );\n\t\tphantom.exit();\n\t}, 1000 );\n} );\n\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/search/search.js",
    "content": "/*\n * Handles finding a text string anywhere in the slides and showing the next occurrence to the user\n * by navigatating to that slide and highlighting it.\n *\n * By Jon Snyder <snyder.jon@gmail.com>, February 2013\n */\n\nvar RevealSearch = (function() {\n\n\tvar matchedSlides;\n\tvar currentMatchedIndex;\n\tvar searchboxDirty;\n\tvar myHilitor;\n\n// Original JavaScript code by Chirp Internet: www.chirp.com.au\n// Please acknowledge use of this code by including this header.\n// 2/2013 jon: modified regex to display any match, not restricted to word boundaries.\n\nfunction Hilitor(id, tag)\n{\n\n  var targetNode = document.getElementById(id) || document.body;\n  var hiliteTag = tag || \"EM\";\n  var skipTags = new RegExp(\"^(?:\" + hiliteTag + \"|SCRIPT|FORM|SPAN)$\");\n  var colors = [\"#ff6\", \"#a0ffff\", \"#9f9\", \"#f99\", \"#f6f\"];\n  var wordColor = [];\n  var colorIdx = 0;\n  var matchRegex = \"\";\n  var matchingSlides = [];\n\n  this.setRegex = function(input)\n  {\n    input = input.replace(/^[^\\w]+|[^\\w]+$/g, \"\").replace(/[^\\w'-]+/g, \"|\");\n    matchRegex = new RegExp(\"(\" + input + \")\",\"i\");\n  }\n\n  this.getRegex = function()\n  {\n    return matchRegex.toString().replace(/^\\/\\\\b\\(|\\)\\\\b\\/i$/g, \"\").replace(/\\|/g, \" \");\n  }\n\n  // recursively apply word highlighting\n  this.hiliteWords = function(node)\n  {\n    if(node == undefined || !node) return;\n    if(!matchRegex) return;\n    if(skipTags.test(node.nodeName)) return;\n\n    if(node.hasChildNodes()) {\n      for(var i=0; i < node.childNodes.length; i++)\n        this.hiliteWords(node.childNodes[i]);\n    }\n    if(node.nodeType == 3) { // NODE_TEXT\n      if((nv = node.nodeValue) && (regs = matchRegex.exec(nv))) {\n      \t//find the slide's section element and save it in our list of matching slides\n      \tvar secnode = node.parentNode;\n      \twhile (secnode.nodeName != 'SECTION') {\n      \t\tsecnode = secnode.parentNode;\n      \t}\n      \t\n      \tvar slideIndex = Reveal.getIndices(secnode);\n      \tvar slidelen = matchingSlides.length;\n      \tvar alreadyAdded = false;\n      \tfor (var i=0; i < slidelen; i++) {\n      \t\tif ( (matchingSlides[i].h === slideIndex.h) && (matchingSlides[i].v === slideIndex.v) ) {\n      \t\t\talreadyAdded = true;\n      \t\t}\n      \t}\n      \tif (! alreadyAdded) {\n      \t\tmatchingSlides.push(slideIndex);\n      \t}\n      \t\n        if(!wordColor[regs[0].toLowerCase()]) {\n          wordColor[regs[0].toLowerCase()] = colors[colorIdx++ % colors.length];\n        }\n\n        var match = document.createElement(hiliteTag);\n        match.appendChild(document.createTextNode(regs[0]));\n        match.style.backgroundColor = wordColor[regs[0].toLowerCase()];\n        match.style.fontStyle = \"inherit\";\n        match.style.color = \"#000\";\n\n        var after = node.splitText(regs.index);\n        after.nodeValue = after.nodeValue.substring(regs[0].length);\n        node.parentNode.insertBefore(match, after);\n      }\n    }\n  };\n\n  // remove highlighting\n  this.remove = function()\n  {\n    var arr = document.getElementsByTagName(hiliteTag);\n    while(arr.length && (el = arr[0])) {\n      el.parentNode.replaceChild(el.firstChild, el);\n    }\n  };\n\n  // start highlighting at target node\n  this.apply = function(input)\n  {\n    if(input == undefined || !input) return;\n    this.remove();\n    this.setRegex(input);\n    this.hiliteWords(targetNode);\n    return matchingSlides;\n  };\n\n}\n\n\tfunction openSearch() {\n\t\t//ensure the search term input dialog is visible and has focus:\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tinputbox.style.display = \"inline\";\n\t\tinputbox.focus();\n\t\tinputbox.select();\n\t}\n\n\tfunction toggleSearch() {\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tif (inputbox.style.display !== \"inline\") {\n\t\t\topenSearch();\n\t\t}\n\t\telse {\n\t\t\tinputbox.style.display = \"none\";\n\t\t\tmyHilitor.remove();\n\t\t}\n\t}\n\n\tfunction doSearch() {\n\t\t//if there's been a change in the search term, perform a new search:\n\t\tif (searchboxDirty) {\n\t\t\tvar searchstring = document.getElementById(\"searchinput\").value;\n\n\t\t\t//find the keyword amongst the slides\n\t\t\tmyHilitor = new Hilitor(\"slidecontent\");\n\t\t\tmatchedSlides = myHilitor.apply(searchstring);\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\n\t\t//navigate to the next slide that has the keyword, wrapping to the first if necessary\n\t\tif (matchedSlides.length && (matchedSlides.length <= currentMatchedIndex)) {\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\t\tif (matchedSlides.length > currentMatchedIndex) {\n\t\t\tReveal.slide(matchedSlides[currentMatchedIndex].h, matchedSlides[currentMatchedIndex].v);\n\t\t\tcurrentMatchedIndex++;\n\t\t}\n\t}\n\n\tvar dom = {};\n\tdom.wrapper = document.querySelector( '.reveal' );\n\n\tif( !dom.wrapper.querySelector( '.searchbox' ) ) {\n\t\t\tvar searchElement = document.createElement( 'div' );\n\t\t\tsearchElement.id = \"searchinputdiv\";\n\t\t\tsearchElement.classList.add( 'searchdiv' );\n      searchElement.style.position = 'absolute';\n      searchElement.style.top = '10px';\n      searchElement.style.left = '10px';\n      //embedded base64 search icon Designed by Sketchdock - http://www.sketchdock.com/:\n\t\t\tsearchElement.innerHTML = '<span><input type=\"search\" id=\"searchinput\" class=\"searchinput\" style=\"vertical-align: top;\"/><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJiSURBVHjatFZNaxNBGH5md+Mmu92NVdKDRipSAyqCghgQD4L4cRe86UUtAQ+eFCxoa4/25EXBFi8eBE+eRPoDhB6KgiiixdAPCEkx2pjvTXadd9yNsflwuyUDD/O+u8PzzDPvzOwyx3EwyCZhwG3gAkp7MnpjgbopjsltcD4gjuXZZKeAR348MYLYTm3LzOs/y3j3JTfZxgXWXmTuwPHIc4VmoOmv5IrI53+AO2DdHLjkDWQ3GoEEVFXtXQOvkSnPWcyUceviLhwbDYv8/XIVj97kse7TodLvZXxYxrPUHkQ1ufXs3FEdybEIxucySOesoNvUgWU1cP3MkCBfTFdw9fGaAMVmRELq7LBw2Q3/FaAxxWIRpw+ZIr/7IouPqzUBiqmdHAv7EuhRAwf1er2Vy4x1jW3b2d5Jfvu5IPp7l2LYbcgCFFNb+FoJ7oBqEAqFMPNqFcmEgVMJDfMT+1tvN0pNjERlMS6QA5pFOKxiKVPFhakPeL3It+WGJUDxt2wFR+JhzI7v5ctkd8DXOZAkCYYxhO+lKm4+Xfqz/rIixBuNBl7eOYzkQQNzqX249mRl6zUgEcYkaJrGhUwBinVdh6IouPzwE6/DL5w4oLkH8y981aDf+uq6hlKpJESiUdNfDZi7/ehG9K6KfiA3pml0PLcsq+cSMTj2NL9ukc4UOmz7AZ3+crkC4mHujFvXNaMFB3bEr8xPS6p5O+jXxq4VZtaen7/PwzrntjcLUE0iHPS1Ud1cdiEJl/8WivZk0wXd7zWOMkeF8s0CcAmkNrC2nvXZDbbbN73ccYnZoH9bfgswAFzAe9/h3dbKAAAAAElFTkSuQmCC\" id=\"searchbutton\" class=\"searchicon\" style=\"vertical-align: top; margin-top: -1px;\"/></span>';\n\t\t\tdom.wrapper.appendChild( searchElement );\n\t}\n\n\tdocument.getElementById(\"searchbutton\").addEventListener( 'click', function(event) {\n\t\tdoSearch();\n\t}, false );\n\n\tdocument.getElementById(\"searchinput\").addEventListener( 'keyup', function( event ) {\n\t\tswitch (event.keyCode) {\n\t\t\tcase 13:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tdoSearch();\n\t\t\t\tsearchboxDirty = false;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tsearchboxDirty = true;\n\t\t}\n\t}, false );\n\n\t// Open the search when the 's' key is hit (yes, this conflicts with the notes plugin, disabling for now)\n\t/*\n\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t// Disregard the event if the target is editable or a\n\t\t// modifier is present\n\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\tif( event.keyCode === 83 ) {\n\t\t\tevent.preventDefault();\n\t\t\topenSearch();\n\t\t}\n\t}, false );\n*/\n\treturn { open: openSearch };\n})();\n"
  },
  {
    "path": "doc/cpp-london-2017/plugin/zoom-js/zoom.js",
    "content": "// Custom reveal.js integration\n(function(){\n\tvar isEnabled = true;\n\n\tdocument.querySelector( '.reveal .slides' ).addEventListener( 'mousedown', function( event ) {\n\t\tvar modifier = ( Reveal.getConfig().zoomKey ? Reveal.getConfig().zoomKey : 'alt' ) + 'Key';\n\n\t\tvar zoomPadding = 20;\n\t\tvar revealScale = Reveal.getScale();\n\n\t\tif( event[ modifier ] && isEnabled ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar bounds = event.target.getBoundingClientRect();\n\n\t\t\tzoom.to({\n\t\t\t\tx: ( bounds.left * revealScale ) - zoomPadding,\n\t\t\t\ty: ( bounds.top * revealScale ) - zoomPadding,\n\t\t\t\twidth: ( bounds.width * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\theight: ( bounds.height * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\tpan: false\n\t\t\t});\n\t\t}\n\t} );\n\n\tReveal.addEventListener( 'overviewshown', function() { isEnabled = false; } );\n\tReveal.addEventListener( 'overviewhidden', function() { isEnabled = true; } );\n})();\n\n/*!\n * zoom.js 0.3 (modified for use with reveal.js)\n * http://lab.hakim.se/zoom-js\n * MIT licensed\n *\n * Copyright (C) 2011-2014 Hakim El Hattab, http://hakim.se\n */\nvar zoom = (function(){\n\n\t// The current zoom level (scale)\n\tvar level = 1;\n\n\t// The current mouse position, used for panning\n\tvar mouseX = 0,\n\t\tmouseY = 0;\n\n\t// Timeout before pan is activated\n\tvar panEngageTimeout = -1,\n\t\tpanUpdateInterval = -1;\n\n\t// Check for transform support so that we can fallback otherwise\n\tvar supportsTransforms = \t'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\tif( supportsTransforms ) {\n\t\t// The easing that will be applied when we zoom in/out\n\t\tdocument.body.style.transition = 'transform 0.8s ease';\n\t\tdocument.body.style.OTransition = '-o-transform 0.8s ease';\n\t\tdocument.body.style.msTransition = '-ms-transform 0.8s ease';\n\t\tdocument.body.style.MozTransition = '-moz-transform 0.8s ease';\n\t\tdocument.body.style.WebkitTransition = '-webkit-transform 0.8s ease';\n\t}\n\n\t// Zoom out if the user hits escape\n\tdocument.addEventListener( 'keyup', function( event ) {\n\t\tif( level !== 1 && event.keyCode === 27 ) {\n\t\t\tzoom.out();\n\t\t}\n\t} );\n\n\t// Monitor mouse movement for panning\n\tdocument.addEventListener( 'mousemove', function( event ) {\n\t\tif( level !== 1 ) {\n\t\t\tmouseX = event.clientX;\n\t\t\tmouseY = event.clientY;\n\t\t}\n\t} );\n\n\t/**\n\t * Applies the CSS required to zoom in, prefers the use of CSS3\n\t * transforms but falls back on zoom for IE.\n\t *\n\t * @param {Object} rect\n\t * @param {Number} scale\n\t */\n\tfunction magnify( rect, scale ) {\n\n\t\tvar scrollOffset = getScrollOffset();\n\n\t\t// Ensure a width/height is set\n\t\trect.width = rect.width || 1;\n\t\trect.height = rect.height || 1;\n\n\t\t// Center the rect within the zoomed viewport\n\t\trect.x -= ( window.innerWidth - ( rect.width * scale ) ) / 2;\n\t\trect.y -= ( window.innerHeight - ( rect.height * scale ) ) / 2;\n\n\t\tif( supportsTransforms ) {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.transform = '';\n\t\t\t\tdocument.body.style.OTransform = '';\n\t\t\t\tdocument.body.style.msTransform = '';\n\t\t\t\tdocument.body.style.MozTransform = '';\n\t\t\t\tdocument.body.style.WebkitTransform = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tvar origin = scrollOffset.x +'px '+ scrollOffset.y +'px',\n\t\t\t\t\ttransform = 'translate('+ -rect.x +'px,'+ -rect.y +'px) scale('+ scale +')';\n\n\t\t\t\tdocument.body.style.transformOrigin = origin;\n\t\t\t\tdocument.body.style.OTransformOrigin = origin;\n\t\t\t\tdocument.body.style.msTransformOrigin = origin;\n\t\t\t\tdocument.body.style.MozTransformOrigin = origin;\n\t\t\t\tdocument.body.style.WebkitTransformOrigin = origin;\n\n\t\t\t\tdocument.body.style.transform = transform;\n\t\t\t\tdocument.body.style.OTransform = transform;\n\t\t\t\tdocument.body.style.msTransform = transform;\n\t\t\t\tdocument.body.style.MozTransform = transform;\n\t\t\t\tdocument.body.style.WebkitTransform = transform;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.position = '';\n\t\t\t\tdocument.body.style.left = '';\n\t\t\t\tdocument.body.style.top = '';\n\t\t\t\tdocument.body.style.width = '';\n\t\t\t\tdocument.body.style.height = '';\n\t\t\t\tdocument.body.style.zoom = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tdocument.body.style.position = 'relative';\n\t\t\t\tdocument.body.style.left = ( - ( scrollOffset.x + rect.x ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.top = ( - ( scrollOffset.y + rect.y ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.width = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.height = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.zoom = scale;\n\t\t\t}\n\t\t}\n\n\t\tlevel = scale;\n\n\t\tif( document.documentElement.classList ) {\n\t\t\tif( level !== 1 ) {\n\t\t\t\tdocument.documentElement.classList.add( 'zoomed' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdocument.documentElement.classList.remove( 'zoomed' );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Pan the document when the mosue cursor approaches the edges\n\t * of the window.\n\t */\n\tfunction pan() {\n\t\tvar range = 0.12,\n\t\t\trangeX = window.innerWidth * range,\n\t\t\trangeY = window.innerHeight * range,\n\t\t\tscrollOffset = getScrollOffset();\n\n\t\t// Up\n\t\tif( mouseY < rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y - ( 1 - ( mouseY / rangeY ) ) * ( 14 / level ) );\n\t\t}\n\t\t// Down\n\t\telse if( mouseY > window.innerHeight - rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y + ( 1 - ( window.innerHeight - mouseY ) / rangeY ) * ( 14 / level ) );\n\t\t}\n\n\t\t// Left\n\t\tif( mouseX < rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x - ( 1 - ( mouseX / rangeX ) ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t\t// Right\n\t\telse if( mouseX > window.innerWidth - rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x + ( 1 - ( window.innerWidth - mouseX ) / rangeX ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t}\n\n\tfunction getScrollOffset() {\n\t\treturn {\n\t\t\tx: window.scrollX !== undefined ? window.scrollX : window.pageXOffset,\n\t\t\ty: window.scrollY !== undefined ? window.scrollY : window.pageYOffset\n\t\t}\n\t}\n\n\treturn {\n\t\t/**\n\t\t * Zooms in on either a rectangle or HTML element.\n\t\t *\n\t\t * @param {Object} options\n\t\t *   - element: HTML element to zoom in on\n\t\t *   OR\n\t\t *   - x/y: coordinates in non-transformed space to zoom in on\n\t\t *   - width/height: the portion of the screen to zoom in on\n\t\t *   - scale: can be used instead of width/height to explicitly set scale\n\t\t */\n\t\tto: function( options ) {\n\n\t\t\t// Due to an implementation limitation we can't zoom in\n\t\t\t// to another element without zooming out first\n\t\t\tif( level !== 1 ) {\n\t\t\t\tzoom.out();\n\t\t\t}\n\t\t\telse {\n\t\t\t\toptions.x = options.x || 0;\n\t\t\t\toptions.y = options.y || 0;\n\n\t\t\t\t// If an element is set, that takes precedence\n\t\t\t\tif( !!options.element ) {\n\t\t\t\t\t// Space around the zoomed in element to leave on screen\n\t\t\t\t\tvar padding = 20;\n\t\t\t\t\tvar bounds = options.element.getBoundingClientRect();\n\n\t\t\t\t\toptions.x = bounds.left - padding;\n\t\t\t\t\toptions.y = bounds.top - padding;\n\t\t\t\t\toptions.width = bounds.width + ( padding * 2 );\n\t\t\t\t\toptions.height = bounds.height + ( padding * 2 );\n\t\t\t\t}\n\n\t\t\t\t// If width/height values are set, calculate scale from those values\n\t\t\t\tif( options.width !== undefined && options.height !== undefined ) {\n\t\t\t\t\toptions.scale = Math.max( Math.min( window.innerWidth / options.width, window.innerHeight / options.height ), 1 );\n\t\t\t\t}\n\n\t\t\t\tif( options.scale > 1 ) {\n\t\t\t\t\toptions.x *= options.scale;\n\t\t\t\t\toptions.y *= options.scale;\n\n\t\t\t\t\tmagnify( options, options.scale );\n\n\t\t\t\t\tif( options.pan !== false ) {\n\n\t\t\t\t\t\t// Wait with engaging panning as it may conflict with the\n\t\t\t\t\t\t// zoom transition\n\t\t\t\t\t\tpanEngageTimeout = setTimeout( function() {\n\t\t\t\t\t\t\tpanUpdateInterval = setInterval( pan, 1000 / 60 );\n\t\t\t\t\t\t}, 800 );\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * Resets the document zoom state to its default.\n\t\t */\n\t\tout: function() {\n\t\t\tclearTimeout( panEngageTimeout );\n\t\t\tclearInterval( panUpdateInterval );\n\n\t\t\tmagnify( { x: 0, y: 0 }, 1 );\n\n\t\t\tlevel = 1;\n\t\t},\n\n\t\t// Alias\n\t\tmagnify: function( options ) { this.to( options ) },\n\t\treset: function() { this.out() },\n\n\t\tzoomLevel: function() {\n\t\t\treturn level;\n\t\t}\n\t}\n\n})();\n\n\n\n"
  },
  {
    "path": "doc/cpp-london-2017/test/examples/barebones.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Barebones</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Barebones Presentation</h2>\n\t\t\t\t\t<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>No Theme</h2>\n\t\t\t\t\t<p>There's no theme included, so it will fall back on browser defaults.</p>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize();\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/examples/embedded-media.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Embedded Media</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/default.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Embedded Media Test</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<iframe data-autoplay width=\"420\" height=\"345\" src=\"http://www.youtube.com/embed/l3RQZ4mcr1c\"></iframe>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Empty Slide</h2>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\ttransition: 'linear'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/examples/math.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Math Plugin</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/night.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>reveal.js Math Plugin</h2>\n\t\t\t\t\t<p>A thin wrapper for MathJax</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t<script type=\"math/tex; mode=display\">\n\t\t\t\t\t\t\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right) \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\t\t\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\thistory: true,\n\t\t\t\ttransition: 'linear',\n\n\t\t\t\tmath: {\n\t\t\t\t\t// mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\t\t\t\tconfig: 'TeX-AMS_HTML-full'\n\t\t\t\t},\n\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js' },\n\t\t\t\t\t{ src: '../../plugin/math/math.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/examples/slide-backgrounds.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Backgrounds</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/serif.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h2 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h2 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background=\"#00ffff\">\n\t\t\t\t\t<h2>data-background: #00ffff</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#bb00bb\">\n\t\t\t\t\t<h2>data-background: #bb00bb</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-color=\"lightblue\">\n\t\t\t\t\t<h2>data-background: lightblue</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#ff0000\">\n\t\t\t\t\t\t<h2>data-background: #ff0000</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgba(0, 0, 0, 0.2)\">\n\t\t\t\t\t\t<h2>data-background: rgba(0, 0, 0, 0.2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"salmon\">\n\t\t\t\t\t\t<h2>data-background: salmon</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"rgba(0, 100, 100, 0.2)\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgb(66, 66, 66)\">\n\t\t\t\t\t\t<h2>Background applied to slide inside of stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"assets/image2.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t<pre>data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\"</pre>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (1/2)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (2/2)</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\">\n\t\t\t\t\t<h2>Video background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-iframe=\"https://slides.com\">\n\t\t\t\t\t<h2>Iframe background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (1/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (2/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t<h2>Same background from horizontal to vertical (1/3)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (2/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (3/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available here:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\t// rtl: true,\n\n\t\t\t\ttransition: 'linear',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/examples/slide-transitions.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Transitions</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h3 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h3 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t<h3>data-transition: zoom</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom-in fade-out\">\n\t\t\t\t\t<h3>data-transition: zoom-in fade-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex\">\n\t\t\t\t\t<h3>data-transition: convex</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex-in concave-out\">\n\t\t\t\t\t<h3>data-transition: convex-in concave-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"concave\">\n\t\t\t\t\t\t<h3>data-transition: concave</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"convex-in fade-out\">\n\t\t\t\t\t\t<h3>data-transition: convex-in fade-out</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"none\">\n\t\t\t\t\t<h3>data-transition: none</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\thistory: true,\n\n\t\t\t\t// transition: 'slide',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/qunit-1.12.0.css",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2012 jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n/** Font Family and Sizes */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {\n\tfont-family: \"Helvetica Neue Light\", \"HelveticaNeue-Light\", \"Helvetica Neue\", Calibri, Helvetica, Arial, sans-serif;\n}\n\n#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }\n#qunit-tests { font-size: smaller; }\n\n\n/** Resets */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n\n/** Header */\n\n#qunit-header {\n\tpadding: 0.5em 0 0.5em 1em;\n\n\tcolor: #8699a4;\n\tbackground-color: #0d3349;\n\n\tfont-size: 1.5em;\n\tline-height: 1em;\n\tfont-weight: normal;\n\n\tborder-radius: 5px 5px 0 0;\n\t-moz-border-radius: 5px 5px 0 0;\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-top-left-radius: 5px;\n}\n\n#qunit-header a {\n\ttext-decoration: none;\n\tcolor: #c2ccd1;\n}\n\n#qunit-header a:hover,\n#qunit-header a:focus {\n\tcolor: #fff;\n}\n\n#qunit-testrunner-toolbar label {\n\tdisplay: inline-block;\n\tpadding: 0 .5em 0 .1em;\n}\n\n#qunit-banner {\n\theight: 5px;\n}\n\n#qunit-testrunner-toolbar {\n\tpadding: 0.5em 0 0.5em 2em;\n\tcolor: #5E740B;\n\tbackground-color: #eee;\n\toverflow: hidden;\n}\n\n#qunit-userAgent {\n\tpadding: 0.5em 0 0.5em 2.5em;\n\tbackground-color: #2b81af;\n\tcolor: #fff;\n\ttext-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;\n}\n\n#qunit-modulefilter-container {\n\tfloat: right;\n}\n\n/** Tests: Pass/Fail */\n\n#qunit-tests {\n\tlist-style-position: inside;\n}\n\n#qunit-tests li {\n\tpadding: 0.4em 0.5em 0.4em 2.5em;\n\tborder-bottom: 1px solid #fff;\n\tlist-style-position: inside;\n}\n\n#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {\n\tdisplay: none;\n}\n\n#qunit-tests li strong {\n\tcursor: pointer;\n}\n\n#qunit-tests li a {\n\tpadding: 0.5em;\n\tcolor: #c2ccd1;\n\ttext-decoration: none;\n}\n#qunit-tests li a:hover,\n#qunit-tests li a:focus {\n\tcolor: #000;\n}\n\n#qunit-tests li .runtime {\n\tfloat: right;\n\tfont-size: smaller;\n}\n\n.qunit-assert-list {\n\tmargin-top: 0.5em;\n\tpadding: 0.5em;\n\n\tbackground-color: #fff;\n\n\tborder-radius: 5px;\n\t-moz-border-radius: 5px;\n\t-webkit-border-radius: 5px;\n}\n\n.qunit-collapsed {\n\tdisplay: none;\n}\n\n#qunit-tests table {\n\tborder-collapse: collapse;\n\tmargin-top: .2em;\n}\n\n#qunit-tests th {\n\ttext-align: right;\n\tvertical-align: top;\n\tpadding: 0 .5em 0 0;\n}\n\n#qunit-tests td {\n\tvertical-align: top;\n}\n\n#qunit-tests pre {\n\tmargin: 0;\n\twhite-space: pre-wrap;\n\tword-wrap: break-word;\n}\n\n#qunit-tests del {\n\tbackground-color: #e0f2be;\n\tcolor: #374e0c;\n\ttext-decoration: none;\n}\n\n#qunit-tests ins {\n\tbackground-color: #ffcaca;\n\tcolor: #500;\n\ttext-decoration: none;\n}\n\n/*** Test Counts */\n\n#qunit-tests b.counts                       { color: black; }\n#qunit-tests b.passed                       { color: #5E740B; }\n#qunit-tests b.failed                       { color: #710909; }\n\n#qunit-tests li li {\n\tpadding: 5px;\n\tbackground-color: #fff;\n\tborder-bottom: none;\n\tlist-style-position: inside;\n}\n\n/*** Passing Styles */\n\n#qunit-tests li li.pass {\n\tcolor: #3c510c;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #C6E746;\n}\n\n#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }\n#qunit-tests .pass .test-name               { color: #366097; }\n\n#qunit-tests .pass .test-actual,\n#qunit-tests .pass .test-expected           { color: #999999; }\n\n#qunit-banner.qunit-pass                    { background-color: #C6E746; }\n\n/*** Failing Styles */\n\n#qunit-tests li li.fail {\n\tcolor: #710909;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #EE5757;\n\twhite-space: pre;\n}\n\n#qunit-tests > li:last-child {\n\tborder-radius: 0 0 5px 5px;\n\t-moz-border-radius: 0 0 5px 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n}\n\n#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }\n#qunit-tests .fail .test-name,\n#qunit-tests .fail .module-name             { color: #000000; }\n\n#qunit-tests .fail .test-actual             { color: #EE5757; }\n#qunit-tests .fail .test-expected           { color: green;   }\n\n#qunit-banner.qunit-fail                    { background-color: #EE5757; }\n\n\n/** Result */\n\n#qunit-testresult {\n\tpadding: 0.5em 0.5em 0.5em 2.5em;\n\n\tcolor: #2b81af;\n\tbackground-color: #D2E0E6;\n\n\tborder-bottom: 1px solid white;\n}\n#qunit-testresult .module-name {\n\tfont-weight: bold;\n}\n\n/** Fixture */\n\n#qunit-fixture {\n\tposition: absolute;\n\ttop: -10000px;\n\tleft: -10000px;\n\twidth: 1000px;\n\theight: 1000px;\n}"
  },
  {
    "path": "doc/cpp-london-2017/test/qunit-1.12.0.js",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2013 jQuery Foundation and other contributors\n * Released under the MIT license.\n * https://jquery.org/license/\n */\n\n(function( window ) {\n\nvar QUnit,\n\tassert,\n\tconfig,\n\tonErrorFnPrev,\n\ttestId = 0,\n\tfileName = (sourceFromStacktrace( 0 ) || \"\" ).replace(/(:\\d+)+\\)?/, \"\").replace(/.+\\//, \"\"),\n\ttoString = Object.prototype.toString,\n\thasOwn = Object.prototype.hasOwnProperty,\n\t// Keep a local reference to Date (GH-283)\n\tDate = window.Date,\n\tsetTimeout = window.setTimeout,\n\tdefined = {\n\t\tsetTimeout: typeof window.setTimeout !== \"undefined\",\n\t\tsessionStorage: (function() {\n\t\t\tvar x = \"qunit-test-string\";\n\t\t\ttry {\n\t\t\t\tsessionStorage.setItem( x, x );\n\t\t\t\tsessionStorage.removeItem( x );\n\t\t\t\treturn true;\n\t\t\t} catch( e ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}())\n\t},\n\t/**\n\t * Provides a normalized error string, correcting an issue\n\t * with IE 7 (and prior) where Error.prototype.toString is\n\t * not properly implemented\n\t *\n\t * Based on http://es5.github.com/#x15.11.4.4\n\t *\n\t * @param {String|Error} error\n\t * @return {String} error message\n\t */\n\terrorString = function( error ) {\n\t\tvar name, message,\n\t\t\terrorString = error.toString();\n\t\tif ( errorString.substring( 0, 7 ) === \"[object\" ) {\n\t\t\tname = error.name ? error.name.toString() : \"Error\";\n\t\t\tmessage = error.message ? error.message.toString() : \"\";\n\t\t\tif ( name && message ) {\n\t\t\t\treturn name + \": \" + message;\n\t\t\t} else if ( name ) {\n\t\t\t\treturn name;\n\t\t\t} else if ( message ) {\n\t\t\t\treturn message;\n\t\t\t} else {\n\t\t\t\treturn \"Error\";\n\t\t\t}\n\t\t} else {\n\t\t\treturn errorString;\n\t\t}\n\t},\n\t/**\n\t * Makes a clone of an object using only Array or Object as base,\n\t * and copies over the own enumerable properties.\n\t *\n\t * @param {Object} obj\n\t * @return {Object} New object with only the own properties (recursively).\n\t */\n\tobjectValues = function( obj ) {\n\t\t// Grunt 0.3.x uses an older version of jshint that still has jshint/jshint#392.\n\t\t/*jshint newcap: false */\n\t\tvar key, val,\n\t\t\tvals = QUnit.is( \"array\", obj ) ? [] : {};\n\t\tfor ( key in obj ) {\n\t\t\tif ( hasOwn.call( obj, key ) ) {\n\t\t\t\tval = obj[key];\n\t\t\t\tvals[key] = val === Object(val) ? objectValues(val) : val;\n\t\t\t}\n\t\t}\n\t\treturn vals;\n\t};\n\nfunction Test( settings ) {\n\textend( this, settings );\n\tthis.assertions = [];\n\tthis.testNumber = ++Test.count;\n}\n\nTest.count = 0;\n\nTest.prototype = {\n\tinit: function() {\n\t\tvar a, b, li,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tif ( tests ) {\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml;\n\n\t\t\t// `a` initialized at top of scope\n\t\t\ta = document.createElement( \"a\" );\n\t\t\ta.innerHTML = \"Rerun\";\n\t\t\ta.href = QUnit.url({ testNumber: this.testNumber });\n\n\t\t\tli = document.createElement( \"li\" );\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.className = \"running\";\n\t\t\tli.id = this.id = \"qunit-test-output\" + testId++;\n\n\t\t\ttests.appendChild( li );\n\t\t}\n\t},\n\tsetup: function() {\n\t\tif (\n\t\t\t// Emit moduleStart when we're switching from one module to another\n\t\t\tthis.module !== config.previousModule ||\n\t\t\t\t// They could be equal (both undefined) but if the previousModule property doesn't\n\t\t\t\t// yet exist it means this is the first test in a suite that isn't wrapped in a\n\t\t\t\t// module, in which case we'll just emit a moduleStart event for 'undefined'.\n\t\t\t\t// Without this, reporters can get testStart before moduleStart  which is a problem.\n\t\t\t\t!hasOwn.call( config, \"previousModule\" )\n\t\t) {\n\t\t\tif ( hasOwn.call( config, \"previousModule\" ) ) {\n\t\t\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\t\t\tname: config.previousModule,\n\t\t\t\t\tfailed: config.moduleStats.bad,\n\t\t\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\t\t\ttotal: config.moduleStats.all\n\t\t\t\t});\n\t\t\t}\n\t\t\tconfig.previousModule = this.module;\n\t\t\tconfig.moduleStats = { all: 0, bad: 0 };\n\t\t\trunLoggingCallbacks( \"moduleStart\", QUnit, {\n\t\t\t\tname: this.module\n\t\t\t});\n\t\t}\n\n\t\tconfig.current = this;\n\n\t\tthis.testEnvironment = extend({\n\t\t\tsetup: function() {},\n\t\t\tteardown: function() {}\n\t\t}, this.moduleTestEnvironment );\n\n\t\tthis.started = +new Date();\n\t\trunLoggingCallbacks( \"testStart\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module\n\t\t});\n\n\t\t/*jshint camelcase:false */\n\n\n\t\t/**\n\t\t * Expose the current test environment.\n\t\t *\n\t\t * @deprecated since 1.12.0: Use QUnit.config.current.testEnvironment instead.\n\t\t */\n\t\tQUnit.current_testEnvironment = this.testEnvironment;\n\n\t\t/*jshint camelcase:true */\n\n\t\tif ( !config.pollution ) {\n\t\t\tsaveGlobal();\n\t\t}\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t}\n\t\ttry {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t} catch( e ) {\n\t\t\tQUnit.pushFailure( \"Setup failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t}\n\t},\n\trun: function() {\n\t\tconfig.current = this;\n\n\t\tvar running = id( \"qunit-testresult\" );\n\n\t\tif ( running ) {\n\t\t\trunning.innerHTML = \"Running: <br/>\" + this.nameHtml;\n\t\t}\n\n\t\tif ( this.async ) {\n\t\t\tQUnit.stop();\n\t\t}\n\n\t\tthis.callbackStarted = +new Date();\n\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\treturn;\n\t\t}\n\n\t\ttry {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t} catch( e ) {\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\n\t\t\tQUnit.pushFailure( \"Died on test #\" + (this.assertions.length + 1) + \" \" + this.stack + \": \" + ( e.message || e ), extractStacktrace( e, 0 ) );\n\t\t\t// else next test will carry the responsibility\n\t\t\tsaveGlobal();\n\n\t\t\t// Restart the tests if they're blocking\n\t\t\tif ( config.blocking ) {\n\t\t\t\tQUnit.start();\n\t\t\t}\n\t\t}\n\t},\n\tteardown: function() {\n\t\tconfig.current = this;\n\t\tif ( config.notrycatch ) {\n\t\t\tif ( typeof this.callbackRuntime === \"undefined\" ) {\n\t\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\t}\n\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\t} catch( e ) {\n\t\t\t\tQUnit.pushFailure( \"Teardown failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t\t}\n\t\t}\n\t\tcheckPollution();\n\t},\n\tfinish: function() {\n\t\tconfig.current = this;\n\t\tif ( config.requireExpects && this.expected === null ) {\n\t\t\tQUnit.pushFailure( \"Expected number of assertions to be defined, but expect() was not called.\", this.stack );\n\t\t} else if ( this.expected !== null && this.expected !== this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected \" + this.expected + \" assertions, but \" + this.assertions.length + \" were run\", this.stack );\n\t\t} else if ( this.expected === null && !this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected at least one assertion, but none were run - call expect(0) to accept zero assertions.\", this.stack );\n\t\t}\n\n\t\tvar i, assertion, a, b, time, li, ol,\n\t\t\ttest = this,\n\t\t\tgood = 0,\n\t\t\tbad = 0,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tthis.runtime = +new Date() - this.started;\n\t\tconfig.stats.all += this.assertions.length;\n\t\tconfig.moduleStats.all += this.assertions.length;\n\n\t\tif ( tests ) {\n\t\t\tol = document.createElement( \"ol\" );\n\t\t\tol.className = \"qunit-assert-list\";\n\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tassertion = this.assertions[i];\n\n\t\t\t\tli = document.createElement( \"li\" );\n\t\t\t\tli.className = assertion.result ? \"pass\" : \"fail\";\n\t\t\t\tli.innerHTML = assertion.message || ( assertion.result ? \"okay\" : \"failed\" );\n\t\t\t\tol.appendChild( li );\n\n\t\t\t\tif ( assertion.result ) {\n\t\t\t\t\tgood++;\n\t\t\t\t} else {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// store result when possible\n\t\t\tif ( QUnit.config.reorder && defined.sessionStorage ) {\n\t\t\t\tif ( bad ) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-test-\" + this.module + \"-\" + this.testName, bad );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( bad === 0 ) {\n\t\t\t\taddClass( ol, \"qunit-collapsed\" );\n\t\t\t}\n\n\t\t\t// `b` initialized at top of scope\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml + \" <b class='counts'>(<b class='failed'>\" + bad + \"</b>, <b class='passed'>\" + good + \"</b>, \" + this.assertions.length + \")</b>\";\n\n\t\t\taddEvent(b, \"click\", function() {\n\t\t\t\tvar next = b.parentNode.lastChild,\n\t\t\t\t\tcollapsed = hasClass( next, \"qunit-collapsed\" );\n\t\t\t\t( collapsed ? removeClass : addClass )( next, \"qunit-collapsed\" );\n\t\t\t});\n\n\t\t\taddEvent(b, \"dblclick\", function( e ) {\n\t\t\t\tvar target = e && e.target ? e.target : window.event.srcElement;\n\t\t\t\tif ( target.nodeName.toLowerCase() === \"span\" || target.nodeName.toLowerCase() === \"b\" ) {\n\t\t\t\t\ttarget = target.parentNode;\n\t\t\t\t}\n\t\t\t\tif ( window.location && target.nodeName.toLowerCase() === \"strong\" ) {\n\t\t\t\t\twindow.location = QUnit.url({ testNumber: test.testNumber });\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// `time` initialized at top of scope\n\t\t\ttime = document.createElement( \"span\" );\n\t\t\ttime.className = \"runtime\";\n\t\t\ttime.innerHTML = this.runtime + \" ms\";\n\n\t\t\t// `li` initialized at top of scope\n\t\t\tli = id( this.id );\n\t\t\tli.className = bad ? \"fail\" : \"pass\";\n\t\t\tli.removeChild( li.firstChild );\n\t\t\ta = li.firstChild;\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.appendChild( time );\n\t\t\tli.appendChild( ol );\n\n\t\t} else {\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tif ( !this.assertions[i].result ) {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\trunLoggingCallbacks( \"testDone\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module,\n\t\t\tfailed: bad,\n\t\t\tpassed: this.assertions.length - bad,\n\t\t\ttotal: this.assertions.length,\n\t\t\tduration: this.runtime\n\t\t});\n\n\t\tQUnit.reset();\n\n\t\tconfig.current = undefined;\n\t},\n\n\tqueue: function() {\n\t\tvar bad,\n\t\t\ttest = this;\n\n\t\tsynchronize(function() {\n\t\t\ttest.init();\n\t\t});\n\t\tfunction run() {\n\t\t\t// each of these can by async\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.setup();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.run();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.teardown();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.finish();\n\t\t\t});\n\t\t}\n\n\t\t// `bad` initialized at top of scope\n\t\t// defer when previous test run passed, if storage is available\n\t\tbad = QUnit.config.reorder && defined.sessionStorage &&\n\t\t\t\t\t\t+sessionStorage.getItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\n\t\tif ( bad ) {\n\t\t\trun();\n\t\t} else {\n\t\t\tsynchronize( run, true );\n\t\t}\n\t}\n};\n\n// Root QUnit object.\n// `QUnit` initialized at top of scope\nQUnit = {\n\n\t// call on start of module test to prepend name to all tests\n\tmodule: function( name, testEnvironment ) {\n\t\tconfig.currentModule = name;\n\t\tconfig.currentModuleTestEnvironment = testEnvironment;\n\t\tconfig.modules[name] = true;\n\t},\n\n\tasyncTest: function( testName, expected, callback ) {\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tQUnit.test( testName, expected, callback, true );\n\t},\n\n\ttest: function( testName, expected, callback, async ) {\n\t\tvar test,\n\t\t\tnameHtml = \"<span class='test-name'>\" + escapeText( testName ) + \"</span>\";\n\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tif ( config.currentModule ) {\n\t\t\tnameHtml = \"<span class='module-name'>\" + escapeText( config.currentModule ) + \"</span>: \" + nameHtml;\n\t\t}\n\n\t\ttest = new Test({\n\t\t\tnameHtml: nameHtml,\n\t\t\ttestName: testName,\n\t\t\texpected: expected,\n\t\t\tasync: async,\n\t\t\tcallback: callback,\n\t\t\tmodule: config.currentModule,\n\t\t\tmoduleTestEnvironment: config.currentModuleTestEnvironment,\n\t\t\tstack: sourceFromStacktrace( 2 )\n\t\t});\n\n\t\tif ( !validTest( test ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\ttest.queue();\n\t},\n\n\t// Specify the number of expected assertions to guarantee that failed test (no assertions are run at all) don't slip through.\n\texpect: function( asserts ) {\n\t\tif (arguments.length === 1) {\n\t\t\tconfig.current.expected = asserts;\n\t\t} else {\n\t\t\treturn config.current.expected;\n\t\t}\n\t},\n\n\tstart: function( count ) {\n\t\t// QUnit hasn't been initialized yet.\n\t\t// Note: RequireJS (et al) may delay onLoad\n\t\tif ( config.semaphore === undefined ) {\n\t\t\tQUnit.begin(function() {\n\t\t\t\t// This is triggered at the top of QUnit.load, push start() to the event loop, to allow QUnit.load to finish first\n\t\t\t\tsetTimeout(function() {\n\t\t\t\t\tQUnit.start( count );\n\t\t\t\t});\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\n\t\tconfig.semaphore -= count || 1;\n\t\t// don't start until equal number of stop-calls\n\t\tif ( config.semaphore > 0 ) {\n\t\t\treturn;\n\t\t}\n\t\t// ignore if start is called more often then stop\n\t\tif ( config.semaphore < 0 ) {\n\t\t\tconfig.semaphore = 0;\n\t\t\tQUnit.pushFailure( \"Called start() while already started (QUnit.config.semaphore was 0 already)\", null, sourceFromStacktrace(2) );\n\t\t\treturn;\n\t\t}\n\t\t// A slight delay, to avoid any current callbacks\n\t\tif ( defined.setTimeout ) {\n\t\t\tsetTimeout(function() {\n\t\t\t\tif ( config.semaphore > 0 ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( config.timeout ) {\n\t\t\t\t\tclearTimeout( config.timeout );\n\t\t\t\t}\n\n\t\t\t\tconfig.blocking = false;\n\t\t\t\tprocess( true );\n\t\t\t}, 13);\n\t\t} else {\n\t\t\tconfig.blocking = false;\n\t\t\tprocess( true );\n\t\t}\n\t},\n\n\tstop: function( count ) {\n\t\tconfig.semaphore += count || 1;\n\t\tconfig.blocking = true;\n\n\t\tif ( config.testTimeout && defined.setTimeout ) {\n\t\t\tclearTimeout( config.timeout );\n\t\t\tconfig.timeout = setTimeout(function() {\n\t\t\t\tQUnit.ok( false, \"Test timed out\" );\n\t\t\t\tconfig.semaphore = 1;\n\t\t\t\tQUnit.start();\n\t\t\t}, config.testTimeout );\n\t\t}\n\t}\n};\n\n// `assert` initialized at top of scope\n// Assert helpers\n// All of these must either call QUnit.push() or manually do:\n// - runLoggingCallbacks( \"log\", .. );\n// - config.current.assertions.push({ .. });\n// We attach it to the QUnit object *after* we expose the public API,\n// otherwise `assert` will become a global variable in browsers (#341).\nassert = {\n\t/**\n\t * Asserts rough true-ish result.\n\t * @name ok\n\t * @function\n\t * @example ok( \"asdfasdf\".length > 5, \"There must be at least 5 chars\" );\n\t */\n\tok: function( result, msg ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"ok() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\t\tresult = !!result;\n\t\tmsg = msg || (result ? \"okay\" : \"failed\" );\n\n\t\tvar source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: msg\n\t\t\t};\n\n\t\tmsg = \"<span class='test-message'>\" + escapeText( msg ) + \"</span>\";\n\n\t\tif ( !result ) {\n\t\t\tsource = sourceFromStacktrace( 2 );\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\tmsg += \"<table><tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr></table>\";\n\t\t\t}\n\t\t}\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\t\tconfig.current.assertions.push({\n\t\t\tresult: result,\n\t\t\tmessage: msg\n\t\t});\n\t},\n\n\t/**\n\t * Assert that the first two arguments are equal, with an optional message.\n\t * Prints out both actual and expected values.\n\t * @name equal\n\t * @function\n\t * @example equal( format( \"Received {0} bytes.\", 2), \"Received 2 bytes.\", \"format() replaces {0} with next argument\" );\n\t */\n\tequal: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected == actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notEqual\n\t * @function\n\t */\n\tnotEqual: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected != actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name propEqual\n\t * @function\n\t */\n\tpropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notPropEqual\n\t * @function\n\t */\n\tnotPropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name deepEqual\n\t * @function\n\t */\n\tdeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notDeepEqual\n\t * @function\n\t */\n\tnotDeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name strictEqual\n\t * @function\n\t */\n\tstrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected === actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notStrictEqual\n\t * @function\n\t */\n\tnotStrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected !== actual, actual, expected, message );\n\t},\n\n\t\"throws\": function( block, expected, message ) {\n\t\tvar actual,\n\t\t\texpectedOutput = expected,\n\t\t\tok = false;\n\n\t\t// 'expected' is optional\n\t\tif ( typeof expected === \"string\" ) {\n\t\t\tmessage = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tconfig.current.ignoreGlobalErrors = true;\n\t\ttry {\n\t\t\tblock.call( config.current.testEnvironment );\n\t\t} catch (e) {\n\t\t\tactual = e;\n\t\t}\n\t\tconfig.current.ignoreGlobalErrors = false;\n\n\t\tif ( actual ) {\n\t\t\t// we don't want to validate thrown error\n\t\t\tif ( !expected ) {\n\t\t\t\tok = true;\n\t\t\t\texpectedOutput = null;\n\t\t\t// expected is a regexp\n\t\t\t} else if ( QUnit.objectType( expected ) === \"regexp\" ) {\n\t\t\t\tok = expected.test( errorString( actual ) );\n\t\t\t// expected is a constructor\n\t\t\t} else if ( actual instanceof expected ) {\n\t\t\t\tok = true;\n\t\t\t// expected is a validation function which returns true is validation passed\n\t\t\t} else if ( expected.call( {}, actual ) === true ) {\n\t\t\t\texpectedOutput = null;\n\t\t\t\tok = true;\n\t\t\t}\n\n\t\t\tQUnit.push( ok, actual, expectedOutput, message );\n\t\t} else {\n\t\t\tQUnit.pushFailure( message, null, \"No exception was thrown.\" );\n\t\t}\n\t}\n};\n\n/**\n * @deprecated since 1.8.0\n * Kept assertion helpers in root for backwards compatibility.\n */\nextend( QUnit, assert );\n\n/**\n * @deprecated since 1.9.0\n * Kept root \"raises()\" for backwards compatibility.\n * (Note that we don't introduce assert.raises).\n */\nQUnit.raises = assert[ \"throws\" ];\n\n/**\n * @deprecated since 1.0.0, replaced with error pushes since 1.3.0\n * Kept to avoid TypeErrors for undefined methods.\n */\nQUnit.equals = function() {\n\tQUnit.push( false, false, false, \"QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead\" );\n};\nQUnit.same = function() {\n\tQUnit.push( false, false, false, \"QUnit.same has been deprecated since 2009 (e88049a0), use QUnit.deepEqual instead\" );\n};\n\n// We want access to the constructor's prototype\n(function() {\n\tfunction F() {}\n\tF.prototype = QUnit;\n\tQUnit = new F();\n\t// Make F QUnit's constructor so that we can add to the prototype later\n\tQUnit.constructor = F;\n}());\n\n/**\n * Config object: Maintain internal state\n * Later exposed as QUnit.config\n * `config` initialized at top of scope\n */\nconfig = {\n\t// The queue of tests to run\n\tqueue: [],\n\n\t// block until document ready\n\tblocking: true,\n\n\t// when enabled, show only failing tests\n\t// gets persisted through sessionStorage and can be changed in UI via checkbox\n\thidepassed: false,\n\n\t// by default, run previously failed tests first\n\t// very useful in combination with \"Hide passed tests\" checked\n\treorder: true,\n\n\t// by default, modify document.title when suite is done\n\taltertitle: true,\n\n\t// when enabled, all tests must call expect()\n\trequireExpects: false,\n\n\t// add checkboxes that are persisted in the query-string\n\t// when enabled, the id is set to `true` as a `QUnit.config` property\n\turlConfig: [\n\t\t{\n\t\t\tid: \"noglobals\",\n\t\t\tlabel: \"Check for Globals\",\n\t\t\ttooltip: \"Enabling this will test if any test introduces new properties on the `window` object. Stored as query-strings.\"\n\t\t},\n\t\t{\n\t\t\tid: \"notrycatch\",\n\t\t\tlabel: \"No try-catch\",\n\t\t\ttooltip: \"Enabling this will run tests outside of a try-catch block. Makes debugging exceptions in IE reasonable. Stored as query-strings.\"\n\t\t}\n\t],\n\n\t// Set of all modules.\n\tmodules: {},\n\n\t// logging callback queues\n\tbegin: [],\n\tdone: [],\n\tlog: [],\n\ttestStart: [],\n\ttestDone: [],\n\tmoduleStart: [],\n\tmoduleDone: []\n};\n\n// Export global variables, unless an 'exports' object exists,\n// in that case we assume we're in CommonJS (dealt with on the bottom of the script)\nif ( typeof exports === \"undefined\" ) {\n\textend( window, QUnit.constructor.prototype );\n\n\t// Expose QUnit object\n\twindow.QUnit = QUnit;\n}\n\n// Initialize more QUnit.config and QUnit.urlParams\n(function() {\n\tvar i,\n\t\tlocation = window.location || { search: \"\", protocol: \"file:\" },\n\t\tparams = location.search.slice( 1 ).split( \"&\" ),\n\t\tlength = params.length,\n\t\turlParams = {},\n\t\tcurrent;\n\n\tif ( params[ 0 ] ) {\n\t\tfor ( i = 0; i < length; i++ ) {\n\t\t\tcurrent = params[ i ].split( \"=\" );\n\t\t\tcurrent[ 0 ] = decodeURIComponent( current[ 0 ] );\n\t\t\t// allow just a key to turn on a flag, e.g., test.html?noglobals\n\t\t\tcurrent[ 1 ] = current[ 1 ] ? decodeURIComponent( current[ 1 ] ) : true;\n\t\t\turlParams[ current[ 0 ] ] = current[ 1 ];\n\t\t}\n\t}\n\n\tQUnit.urlParams = urlParams;\n\n\t// String search anywhere in moduleName+testName\n\tconfig.filter = urlParams.filter;\n\n\t// Exact match of the module name\n\tconfig.module = urlParams.module;\n\n\tconfig.testNumber = parseInt( urlParams.testNumber, 10 ) || null;\n\n\t// Figure out if we're running the tests from a server or not\n\tQUnit.isLocal = location.protocol === \"file:\";\n}());\n\n// Extend QUnit object,\n// these after set here because they should not be exposed as global functions\nextend( QUnit, {\n\tassert: assert,\n\n\tconfig: config,\n\n\t// Initialize the configuration options\n\tinit: function() {\n\t\textend( config, {\n\t\t\tstats: { all: 0, bad: 0 },\n\t\t\tmoduleStats: { all: 0, bad: 0 },\n\t\t\tstarted: +new Date(),\n\t\t\tupdateRate: 1000,\n\t\t\tblocking: false,\n\t\t\tautostart: true,\n\t\t\tautorun: false,\n\t\t\tfilter: \"\",\n\t\t\tqueue: [],\n\t\t\tsemaphore: 1\n\t\t});\n\n\t\tvar tests, banner, result,\n\t\t\tqunit = id( \"qunit\" );\n\n\t\tif ( qunit ) {\n\t\t\tqunit.innerHTML =\n\t\t\t\t\"<h1 id='qunit-header'>\" + escapeText( document.title ) + \"</h1>\" +\n\t\t\t\t\"<h2 id='qunit-banner'></h2>\" +\n\t\t\t\t\"<div id='qunit-testrunner-toolbar'></div>\" +\n\t\t\t\t\"<h2 id='qunit-userAgent'></h2>\" +\n\t\t\t\t\"<ol id='qunit-tests'></ol>\";\n\t\t}\n\n\t\ttests = id( \"qunit-tests\" );\n\t\tbanner = id( \"qunit-banner\" );\n\t\tresult = id( \"qunit-testresult\" );\n\n\t\tif ( tests ) {\n\t\t\ttests.innerHTML = \"\";\n\t\t}\n\n\t\tif ( banner ) {\n\t\t\tbanner.className = \"\";\n\t\t}\n\n\t\tif ( result ) {\n\t\t\tresult.parentNode.removeChild( result );\n\t\t}\n\n\t\tif ( tests ) {\n\t\t\tresult = document.createElement( \"p\" );\n\t\t\tresult.id = \"qunit-testresult\";\n\t\t\tresult.className = \"result\";\n\t\t\ttests.parentNode.insertBefore( result, tests );\n\t\t\tresult.innerHTML = \"Running...<br/>&nbsp;\";\n\t\t}\n\t},\n\n\t// Resets the test setup. Useful for tests that modify the DOM.\n\t/*\n\tDEPRECATED: Use multiple tests instead of resetting inside a test.\n\tUse testStart or testDone for custom cleanup.\n\tThis method will throw an error in 2.0, and will be removed in 2.1\n\t*/\n\treset: function() {\n\t\tvar fixture = id( \"qunit-fixture\" );\n\t\tif ( fixture ) {\n\t\t\tfixture.innerHTML = config.fixture;\n\t\t}\n\t},\n\n\t// Trigger an event on an element.\n\t// @example triggerEvent( document.body, \"click\" );\n\ttriggerEvent: function( elem, type, event ) {\n\t\tif ( document.createEvent ) {\n\t\t\tevent = document.createEvent( \"MouseEvents\" );\n\t\t\tevent.initMouseEvent(type, true, true, elem.ownerDocument.defaultView,\n\t\t\t\t0, 0, 0, 0, 0, false, false, false, false, 0, null);\n\n\t\t\telem.dispatchEvent( event );\n\t\t} else if ( elem.fireEvent ) {\n\t\t\telem.fireEvent( \"on\" + type );\n\t\t}\n\t},\n\n\t// Safe object type checking\n\tis: function( type, obj ) {\n\t\treturn QUnit.objectType( obj ) === type;\n\t},\n\n\tobjectType: function( obj ) {\n\t\tif ( typeof obj === \"undefined\" ) {\n\t\t\t\treturn \"undefined\";\n\t\t// consider: typeof null === object\n\t\t}\n\t\tif ( obj === null ) {\n\t\t\t\treturn \"null\";\n\t\t}\n\n\t\tvar match = toString.call( obj ).match(/^\\[object\\s(.*)\\]$/),\n\t\t\ttype = match && match[1] || \"\";\n\n\t\tswitch ( type ) {\n\t\t\tcase \"Number\":\n\t\t\t\tif ( isNaN(obj) ) {\n\t\t\t\t\treturn \"nan\";\n\t\t\t\t}\n\t\t\t\treturn \"number\";\n\t\t\tcase \"String\":\n\t\t\tcase \"Boolean\":\n\t\t\tcase \"Array\":\n\t\t\tcase \"Date\":\n\t\t\tcase \"RegExp\":\n\t\t\tcase \"Function\":\n\t\t\t\treturn type.toLowerCase();\n\t\t}\n\t\tif ( typeof obj === \"object\" ) {\n\t\t\treturn \"object\";\n\t\t}\n\t\treturn undefined;\n\t},\n\n\tpush: function( result, actual, expected, message ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"assertion outside test context, was \" + sourceFromStacktrace() );\n\t\t}\n\n\t\tvar output, source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: message,\n\t\t\t\tactual: actual,\n\t\t\t\texpected: expected\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || ( result ? \"okay\" : \"failed\" );\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\tif ( !result ) {\n\t\t\texpected = escapeText( QUnit.jsDump.parse(expected) );\n\t\t\tactual = escapeText( QUnit.jsDump.parse(actual) );\n\t\t\toutput += \"<table><tr class='test-expected'><th>Expected: </th><td><pre>\" + expected + \"</pre></td></tr>\";\n\n\t\t\tif ( actual !== expected ) {\n\t\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + actual + \"</pre></td></tr>\";\n\t\t\t\toutput += \"<tr class='test-diff'><th>Diff: </th><td><pre>\" + QUnit.diff( expected, actual ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\tsource = sourceFromStacktrace();\n\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\toutput += \"</table>\";\n\t\t}\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: !!result,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\tpushFailure: function( message, source, actual ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"pushFailure() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\n\t\tvar output,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: false,\n\t\t\t\tmessage: message\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || \"error\";\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\toutput += \"<table>\";\n\n\t\tif ( actual ) {\n\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + escapeText( actual ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\tif ( source ) {\n\t\t\tdetails.source = source;\n\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\toutput += \"</table>\";\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: false,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\turl: function( params ) {\n\t\tparams = extend( extend( {}, QUnit.urlParams ), params );\n\t\tvar key,\n\t\t\tquerystring = \"?\";\n\n\t\tfor ( key in params ) {\n\t\t\tif ( hasOwn.call( params, key ) ) {\n\t\t\t\tquerystring += encodeURIComponent( key ) + \"=\" +\n\t\t\t\t\tencodeURIComponent( params[ key ] ) + \"&\";\n\t\t\t}\n\t\t}\n\t\treturn window.location.protocol + \"//\" + window.location.host +\n\t\t\twindow.location.pathname + querystring.slice( 0, -1 );\n\t},\n\n\textend: extend,\n\tid: id,\n\taddEvent: addEvent,\n\taddClass: addClass,\n\thasClass: hasClass,\n\tremoveClass: removeClass\n\t// load, equiv, jsDump, diff: Attached later\n});\n\n/**\n * @deprecated: Created for backwards compatibility with test runner that set the hook function\n * into QUnit.{hook}, instead of invoking it and passing the hook function.\n * QUnit.constructor is set to the empty F() above so that we can add to it's prototype here.\n * Doing this allows us to tell if the following methods have been overwritten on the actual\n * QUnit object.\n */\nextend( QUnit.constructor.prototype, {\n\n\t// Logging callbacks; all receive a single argument with the listed properties\n\t// run test/logs.html for any related changes\n\tbegin: registerLoggingCallback( \"begin\" ),\n\n\t// done: { failed, passed, total, runtime }\n\tdone: registerLoggingCallback( \"done\" ),\n\n\t// log: { result, actual, expected, message }\n\tlog: registerLoggingCallback( \"log\" ),\n\n\t// testStart: { name }\n\ttestStart: registerLoggingCallback( \"testStart\" ),\n\n\t// testDone: { name, failed, passed, total, duration }\n\ttestDone: registerLoggingCallback( \"testDone\" ),\n\n\t// moduleStart: { name }\n\tmoduleStart: registerLoggingCallback( \"moduleStart\" ),\n\n\t// moduleDone: { name, failed, passed, total }\n\tmoduleDone: registerLoggingCallback( \"moduleDone\" )\n});\n\nif ( typeof document === \"undefined\" || document.readyState === \"complete\" ) {\n\tconfig.autorun = true;\n}\n\nQUnit.load = function() {\n\trunLoggingCallbacks( \"begin\", QUnit, {} );\n\n\t// Initialize the config, saving the execution queue\n\tvar banner, filter, i, label, len, main, ol, toolbar, userAgent, val,\n\t\turlConfigCheckboxesContainer, urlConfigCheckboxes, moduleFilter,\n\t\tnumModules = 0,\n\t\tmoduleNames = [],\n\t\tmoduleFilterHtml = \"\",\n\t\turlConfigHtml = \"\",\n\t\toldconfig = extend( {}, config );\n\n\tQUnit.init();\n\textend(config, oldconfig);\n\n\tconfig.blocking = false;\n\n\tlen = config.urlConfig.length;\n\n\tfor ( i = 0; i < len; i++ ) {\n\t\tval = config.urlConfig[i];\n\t\tif ( typeof val === \"string\" ) {\n\t\t\tval = {\n\t\t\t\tid: val,\n\t\t\t\tlabel: val,\n\t\t\t\ttooltip: \"[no tooltip available]\"\n\t\t\t};\n\t\t}\n\t\tconfig[ val.id ] = QUnit.urlParams[ val.id ];\n\t\turlConfigHtml += \"<input id='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' name='\" + escapeText( val.id ) +\n\t\t\t\"' type='checkbox'\" + ( config[ val.id ] ? \" checked='checked'\" : \"\" ) +\n\t\t\t\" title='\" + escapeText( val.tooltip ) +\n\t\t\t\"'><label for='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' title='\" + escapeText( val.tooltip ) + \"'>\" + val.label + \"</label>\";\n\t}\n\tfor ( i in config.modules ) {\n\t\tif ( config.modules.hasOwnProperty( i ) ) {\n\t\t\tmoduleNames.push(i);\n\t\t}\n\t}\n\tnumModules = moduleNames.length;\n\tmoduleNames.sort( function( a, b ) {\n\t\treturn a.localeCompare( b );\n\t});\n\tmoduleFilterHtml += \"<label for='qunit-modulefilter'>Module: </label><select id='qunit-modulefilter' name='modulefilter'><option value='' \" +\n\t\t( config.module === undefined  ? \"selected='selected'\" : \"\" ) +\n\t\t\">< All Modules ></option>\";\n\n\n\tfor ( i = 0; i < numModules; i++) {\n\t\t\tmoduleFilterHtml += \"<option value='\" + escapeText( encodeURIComponent(moduleNames[i]) ) + \"' \" +\n\t\t\t\t( config.module === moduleNames[i] ? \"selected='selected'\" : \"\" ) +\n\t\t\t\t\">\" + escapeText(moduleNames[i]) + \"</option>\";\n\t}\n\tmoduleFilterHtml += \"</select>\";\n\n\t// `userAgent` initialized at top of scope\n\tuserAgent = id( \"qunit-userAgent\" );\n\tif ( userAgent ) {\n\t\tuserAgent.innerHTML = navigator.userAgent;\n\t}\n\n\t// `banner` initialized at top of scope\n\tbanner = id( \"qunit-header\" );\n\tif ( banner ) {\n\t\tbanner.innerHTML = \"<a href='\" + QUnit.url({ filter: undefined, module: undefined, testNumber: undefined }) + \"'>\" + banner.innerHTML + \"</a> \";\n\t}\n\n\t// `toolbar` initialized at top of scope\n\ttoolbar = id( \"qunit-testrunner-toolbar\" );\n\tif ( toolbar ) {\n\t\t// `filter` initialized at top of scope\n\t\tfilter = document.createElement( \"input\" );\n\t\tfilter.type = \"checkbox\";\n\t\tfilter.id = \"qunit-filter-pass\";\n\n\t\taddEvent( filter, \"click\", function() {\n\t\t\tvar tmp,\n\t\t\t\tol = document.getElementById( \"qunit-tests\" );\n\n\t\t\tif ( filter.checked ) {\n\t\t\t\tol.className = ol.className + \" hidepass\";\n\t\t\t} else {\n\t\t\t\ttmp = \" \" + ol.className.replace( /[\\n\\t\\r]/g, \" \" ) + \" \";\n\t\t\t\tol.className = tmp.replace( / hidepass /, \" \" );\n\t\t\t}\n\t\t\tif ( defined.sessionStorage ) {\n\t\t\t\tif (filter.checked) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-filter-passed-tests\", \"true\" );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-filter-passed-tests\" );\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif ( config.hidepassed || defined.sessionStorage && sessionStorage.getItem( \"qunit-filter-passed-tests\" ) ) {\n\t\t\tfilter.checked = true;\n\t\t\t// `ol` initialized at top of scope\n\t\t\tol = document.getElementById( \"qunit-tests\" );\n\t\t\tol.className = ol.className + \" hidepass\";\n\t\t}\n\t\ttoolbar.appendChild( filter );\n\n\t\t// `label` initialized at top of scope\n\t\tlabel = document.createElement( \"label\" );\n\t\tlabel.setAttribute( \"for\", \"qunit-filter-pass\" );\n\t\tlabel.setAttribute( \"title\", \"Only show tests and assertions that fail. Stored in sessionStorage.\" );\n\t\tlabel.innerHTML = \"Hide passed tests\";\n\t\ttoolbar.appendChild( label );\n\n\t\turlConfigCheckboxesContainer = document.createElement(\"span\");\n\t\turlConfigCheckboxesContainer.innerHTML = urlConfigHtml;\n\t\turlConfigCheckboxes = urlConfigCheckboxesContainer.getElementsByTagName(\"input\");\n\t\t// For oldIE support:\n\t\t// * Add handlers to the individual elements instead of the container\n\t\t// * Use \"click\" instead of \"change\"\n\t\t// * Fallback from event.target to event.srcElement\n\t\taddEvents( urlConfigCheckboxes, \"click\", function( event ) {\n\t\t\tvar params = {},\n\t\t\t\ttarget = event.target || event.srcElement;\n\t\t\tparams[ target.name ] = target.checked ? true : undefined;\n\t\t\twindow.location = QUnit.url( params );\n\t\t});\n\t\ttoolbar.appendChild( urlConfigCheckboxesContainer );\n\n\t\tif (numModules > 1) {\n\t\t\tmoduleFilter = document.createElement( \"span\" );\n\t\t\tmoduleFilter.setAttribute( \"id\", \"qunit-modulefilter-container\" );\n\t\t\tmoduleFilter.innerHTML = moduleFilterHtml;\n\t\t\taddEvent( moduleFilter.lastChild, \"change\", function() {\n\t\t\t\tvar selectBox = moduleFilter.getElementsByTagName(\"select\")[0],\n\t\t\t\t\tselectedModule = decodeURIComponent(selectBox.options[selectBox.selectedIndex].value);\n\n\t\t\t\twindow.location = QUnit.url({\n\t\t\t\t\tmodule: ( selectedModule === \"\" ) ? undefined : selectedModule,\n\t\t\t\t\t// Remove any existing filters\n\t\t\t\t\tfilter: undefined,\n\t\t\t\t\ttestNumber: undefined\n\t\t\t\t});\n\t\t\t});\n\t\t\ttoolbar.appendChild(moduleFilter);\n\t\t}\n\t}\n\n\t// `main` initialized at top of scope\n\tmain = id( \"qunit-fixture\" );\n\tif ( main ) {\n\t\tconfig.fixture = main.innerHTML;\n\t}\n\n\tif ( config.autostart ) {\n\t\tQUnit.start();\n\t}\n};\n\naddEvent( window, \"load\", QUnit.load );\n\n// `onErrorFnPrev` initialized at top of scope\n// Preserve other handlers\nonErrorFnPrev = window.onerror;\n\n// Cover uncaught exceptions\n// Returning true will suppress the default browser handler,\n// returning false will let it run.\nwindow.onerror = function ( error, filePath, linerNr ) {\n\tvar ret = false;\n\tif ( onErrorFnPrev ) {\n\t\tret = onErrorFnPrev( error, filePath, linerNr );\n\t}\n\n\t// Treat return value as window.onerror itself does,\n\t// Only do our handling if not suppressed.\n\tif ( ret !== true ) {\n\t\tif ( QUnit.config.current ) {\n\t\t\tif ( QUnit.config.current.ignoreGlobalErrors ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t} else {\n\t\t\tQUnit.test( \"global failure\", extend( function() {\n\t\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t\t}, { validTest: validTest } ) );\n\t\t}\n\t\treturn false;\n\t}\n\n\treturn ret;\n};\n\nfunction done() {\n\tconfig.autorun = true;\n\n\t// Log the last module results\n\tif ( config.currentModule ) {\n\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\tname: config.currentModule,\n\t\t\tfailed: config.moduleStats.bad,\n\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\ttotal: config.moduleStats.all\n\t\t});\n\t}\n\tdelete config.previousModule;\n\n\tvar i, key,\n\t\tbanner = id( \"qunit-banner\" ),\n\t\ttests = id( \"qunit-tests\" ),\n\t\truntime = +new Date() - config.started,\n\t\tpassed = config.stats.all - config.stats.bad,\n\t\thtml = [\n\t\t\t\"Tests completed in \",\n\t\t\truntime,\n\t\t\t\" milliseconds.<br/>\",\n\t\t\t\"<span class='passed'>\",\n\t\t\tpassed,\n\t\t\t\"</span> assertions of <span class='total'>\",\n\t\t\tconfig.stats.all,\n\t\t\t\"</span> passed, <span class='failed'>\",\n\t\t\tconfig.stats.bad,\n\t\t\t\"</span> failed.\"\n\t\t].join( \"\" );\n\n\tif ( banner ) {\n\t\tbanner.className = ( config.stats.bad ? \"qunit-fail\" : \"qunit-pass\" );\n\t}\n\n\tif ( tests ) {\n\t\tid( \"qunit-testresult\" ).innerHTML = html;\n\t}\n\n\tif ( config.altertitle && typeof document !== \"undefined\" && document.title ) {\n\t\t// show ✖ for good, ✔ for bad suite result in title\n\t\t// use escape sequences in case file gets loaded with non-utf-8-charset\n\t\tdocument.title = [\n\t\t\t( config.stats.bad ? \"\\u2716\" : \"\\u2714\" ),\n\t\t\tdocument.title.replace( /^[\\u2714\\u2716] /i, \"\" )\n\t\t].join( \" \" );\n\t}\n\n\t// clear own sessionStorage items if all tests passed\n\tif ( config.reorder && defined.sessionStorage && config.stats.bad === 0 ) {\n\t\t// `key` & `i` initialized at top of scope\n\t\tfor ( i = 0; i < sessionStorage.length; i++ ) {\n\t\t\tkey = sessionStorage.key( i++ );\n\t\t\tif ( key.indexOf( \"qunit-test-\" ) === 0 ) {\n\t\t\t\tsessionStorage.removeItem( key );\n\t\t\t}\n\t\t}\n\t}\n\n\t// scroll back to top to show results\n\tif ( window.scrollTo ) {\n\t\twindow.scrollTo(0, 0);\n\t}\n\n\trunLoggingCallbacks( \"done\", QUnit, {\n\t\tfailed: config.stats.bad,\n\t\tpassed: passed,\n\t\ttotal: config.stats.all,\n\t\truntime: runtime\n\t});\n}\n\n/** @return Boolean: true if this test should be ran */\nfunction validTest( test ) {\n\tvar include,\n\t\tfilter = config.filter && config.filter.toLowerCase(),\n\t\tmodule = config.module && config.module.toLowerCase(),\n\t\tfullName = (test.module + \": \" + test.testName).toLowerCase();\n\n\t// Internally-generated tests are always valid\n\tif ( test.callback && test.callback.validTest === validTest ) {\n\t\tdelete test.callback.validTest;\n\t\treturn true;\n\t}\n\n\tif ( config.testNumber ) {\n\t\treturn test.testNumber === config.testNumber;\n\t}\n\n\tif ( module && ( !test.module || test.module.toLowerCase() !== module ) ) {\n\t\treturn false;\n\t}\n\n\tif ( !filter ) {\n\t\treturn true;\n\t}\n\n\tinclude = filter.charAt( 0 ) !== \"!\";\n\tif ( !include ) {\n\t\tfilter = filter.slice( 1 );\n\t}\n\n\t// If the filter matches, we need to honour include\n\tif ( fullName.indexOf( filter ) !== -1 ) {\n\t\treturn include;\n\t}\n\n\t// Otherwise, do the opposite\n\treturn !include;\n}\n\n// so far supports only Firefox, Chrome and Opera (buggy), Safari (for real exceptions)\n// Later Safari and IE10 are supposed to support error.stack as well\n// See also https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error/Stack\nfunction extractStacktrace( e, offset ) {\n\toffset = offset === undefined ? 3 : offset;\n\n\tvar stack, include, i;\n\n\tif ( e.stacktrace ) {\n\t\t// Opera\n\t\treturn e.stacktrace.split( \"\\n\" )[ offset + 3 ];\n\t} else if ( e.stack ) {\n\t\t// Firefox, Chrome\n\t\tstack = e.stack.split( \"\\n\" );\n\t\tif (/^error$/i.test( stack[0] ) ) {\n\t\t\tstack.shift();\n\t\t}\n\t\tif ( fileName ) {\n\t\t\tinclude = [];\n\t\t\tfor ( i = offset; i < stack.length; i++ ) {\n\t\t\t\tif ( stack[ i ].indexOf( fileName ) !== -1 ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tinclude.push( stack[ i ] );\n\t\t\t}\n\t\t\tif ( include.length ) {\n\t\t\t\treturn include.join( \"\\n\" );\n\t\t\t}\n\t\t}\n\t\treturn stack[ offset ];\n\t} else if ( e.sourceURL ) {\n\t\t// Safari, PhantomJS\n\t\t// hopefully one day Safari provides actual stacktraces\n\t\t// exclude useless self-reference for generated Error objects\n\t\tif ( /qunit.js$/.test( e.sourceURL ) ) {\n\t\t\treturn;\n\t\t}\n\t\t// for actual exceptions, this is useful\n\t\treturn e.sourceURL + \":\" + e.line;\n\t}\n}\nfunction sourceFromStacktrace( offset ) {\n\ttry {\n\t\tthrow new Error();\n\t} catch ( e ) {\n\t\treturn extractStacktrace( e, offset );\n\t}\n}\n\n/**\n * Escape text for attribute or text content.\n */\nfunction escapeText( s ) {\n\tif ( !s ) {\n\t\treturn \"\";\n\t}\n\ts = s + \"\";\n\t// Both single quotes and double quotes (for attributes)\n\treturn s.replace( /['\"<>&]/g, function( s ) {\n\t\tswitch( s ) {\n\t\t\tcase \"'\":\n\t\t\t\treturn \"&#039;\";\n\t\t\tcase \"\\\"\":\n\t\t\t\treturn \"&quot;\";\n\t\t\tcase \"<\":\n\t\t\t\treturn \"&lt;\";\n\t\t\tcase \">\":\n\t\t\t\treturn \"&gt;\";\n\t\t\tcase \"&\":\n\t\t\t\treturn \"&amp;\";\n\t\t}\n\t});\n}\n\nfunction synchronize( callback, last ) {\n\tconfig.queue.push( callback );\n\n\tif ( config.autorun && !config.blocking ) {\n\t\tprocess( last );\n\t}\n}\n\nfunction process( last ) {\n\tfunction next() {\n\t\tprocess( last );\n\t}\n\tvar start = new Date().getTime();\n\tconfig.depth = config.depth ? config.depth + 1 : 1;\n\n\twhile ( config.queue.length && !config.blocking ) {\n\t\tif ( !defined.setTimeout || config.updateRate <= 0 || ( ( new Date().getTime() - start ) < config.updateRate ) ) {\n\t\t\tconfig.queue.shift()();\n\t\t} else {\n\t\t\tsetTimeout( next, 13 );\n\t\t\tbreak;\n\t\t}\n\t}\n\tconfig.depth--;\n\tif ( last && !config.blocking && !config.queue.length && config.depth === 0 ) {\n\t\tdone();\n\t}\n}\n\nfunction saveGlobal() {\n\tconfig.pollution = [];\n\n\tif ( config.noglobals ) {\n\t\tfor ( var key in window ) {\n\t\t\tif ( hasOwn.call( window, key ) ) {\n\t\t\t\t// in Opera sometimes DOM element ids show up here, ignore them\n\t\t\t\tif ( /^qunit-test-output/.test( key ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tconfig.pollution.push( key );\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction checkPollution() {\n\tvar newGlobals,\n\t\tdeletedGlobals,\n\t\told = config.pollution;\n\n\tsaveGlobal();\n\n\tnewGlobals = diff( config.pollution, old );\n\tif ( newGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Introduced global variable(s): \" + newGlobals.join(\", \") );\n\t}\n\n\tdeletedGlobals = diff( old, config.pollution );\n\tif ( deletedGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Deleted global variable(s): \" + deletedGlobals.join(\", \") );\n\t}\n}\n\n// returns a new Array with the elements that are in a but not in b\nfunction diff( a, b ) {\n\tvar i, j,\n\t\tresult = a.slice();\n\n\tfor ( i = 0; i < result.length; i++ ) {\n\t\tfor ( j = 0; j < b.length; j++ ) {\n\t\t\tif ( result[i] === b[j] ) {\n\t\t\t\tresult.splice( i, 1 );\n\t\t\t\ti--;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\treturn result;\n}\n\nfunction extend( a, b ) {\n\tfor ( var prop in b ) {\n\t\tif ( hasOwn.call( b, prop ) ) {\n\t\t\t// Avoid \"Member not found\" error in IE8 caused by messing with window.constructor\n\t\t\tif ( !( prop === \"constructor\" && a === window ) ) {\n\t\t\t\tif ( b[ prop ] === undefined ) {\n\t\t\t\t\tdelete a[ prop ];\n\t\t\t\t} else {\n\t\t\t\t\ta[ prop ] = b[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a;\n}\n\n/**\n * @param {HTMLElement} elem\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvent( elem, type, fn ) {\n\t// Standards-based browsers\n\tif ( elem.addEventListener ) {\n\t\telem.addEventListener( type, fn, false );\n\t// IE\n\t} else {\n\t\telem.attachEvent( \"on\" + type, fn );\n\t}\n}\n\n/**\n * @param {Array|NodeList} elems\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvents( elems, type, fn ) {\n\tvar i = elems.length;\n\twhile ( i-- ) {\n\t\taddEvent( elems[i], type, fn );\n\t}\n}\n\nfunction hasClass( elem, name ) {\n\treturn (\" \" + elem.className + \" \").indexOf(\" \" + name + \" \") > -1;\n}\n\nfunction addClass( elem, name ) {\n\tif ( !hasClass( elem, name ) ) {\n\t\telem.className += (elem.className ? \" \" : \"\") + name;\n\t}\n}\n\nfunction removeClass( elem, name ) {\n\tvar set = \" \" + elem.className + \" \";\n\t// Class name may appear multiple times\n\twhile ( set.indexOf(\" \" + name + \" \") > -1 ) {\n\t\tset = set.replace(\" \" + name + \" \" , \" \");\n\t}\n\t// If possible, trim it for prettiness, but not necessarily\n\telem.className = typeof set.trim === \"function\" ? set.trim() : set.replace(/^\\s+|\\s+$/g, \"\");\n}\n\nfunction id( name ) {\n\treturn !!( typeof document !== \"undefined\" && document && document.getElementById ) &&\n\t\tdocument.getElementById( name );\n}\n\nfunction registerLoggingCallback( key ) {\n\treturn function( callback ) {\n\t\tconfig[key].push( callback );\n\t};\n}\n\n// Supports deprecated method of completely overwriting logging callbacks\nfunction runLoggingCallbacks( key, scope, args ) {\n\tvar i, callbacks;\n\tif ( QUnit.hasOwnProperty( key ) ) {\n\t\tQUnit[ key ].call(scope, args );\n\t} else {\n\t\tcallbacks = config[ key ];\n\t\tfor ( i = 0; i < callbacks.length; i++ ) {\n\t\t\tcallbacks[ i ].call( scope, args );\n\t\t}\n\t}\n}\n\n// Test for equality any JavaScript type.\n// Author: Philippe Rathé <prathe@gmail.com>\nQUnit.equiv = (function() {\n\n\t// Call the o related callback with the given arguments.\n\tfunction bindCallbacks( o, callbacks, args ) {\n\t\tvar prop = QUnit.objectType( o );\n\t\tif ( prop ) {\n\t\t\tif ( QUnit.objectType( callbacks[ prop ] ) === \"function\" ) {\n\t\t\t\treturn callbacks[ prop ].apply( callbacks, args );\n\t\t\t} else {\n\t\t\t\treturn callbacks[ prop ]; // or undefined\n\t\t\t}\n\t\t}\n\t}\n\n\t// the real equiv function\n\tvar innerEquiv,\n\t\t// stack to decide between skip/abort functions\n\t\tcallers = [],\n\t\t// stack to avoiding loops from circular referencing\n\t\tparents = [],\n\t\tparentsB = [],\n\n\t\tgetProto = Object.getPrototypeOf || function ( obj ) {\n\t\t\t/*jshint camelcase:false */\n\t\t\treturn obj.__proto__;\n\t\t},\n\t\tcallbacks = (function () {\n\n\t\t\t// for string, boolean, number and null\n\t\t\tfunction useStrictEquality( b, a ) {\n\t\t\t\t/*jshint eqeqeq:false */\n\t\t\t\tif ( b instanceof a.constructor || a instanceof b.constructor ) {\n\t\t\t\t\t// to catch short annotation VS 'new' annotation of a\n\t\t\t\t\t// declaration\n\t\t\t\t\t// e.g. var i = 1;\n\t\t\t\t\t// var j = new Number(1);\n\t\t\t\t\treturn a == b;\n\t\t\t\t} else {\n\t\t\t\t\treturn a === b;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\t\"string\": useStrictEquality,\n\t\t\t\t\"boolean\": useStrictEquality,\n\t\t\t\t\"number\": useStrictEquality,\n\t\t\t\t\"null\": useStrictEquality,\n\t\t\t\t\"undefined\": useStrictEquality,\n\n\t\t\t\t\"nan\": function( b ) {\n\t\t\t\t\treturn isNaN( b );\n\t\t\t\t},\n\n\t\t\t\t\"date\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"date\" && a.valueOf() === b.valueOf();\n\t\t\t\t},\n\n\t\t\t\t\"regexp\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"regexp\" &&\n\t\t\t\t\t\t// the regex itself\n\t\t\t\t\t\ta.source === b.source &&\n\t\t\t\t\t\t// and its modifiers\n\t\t\t\t\t\ta.global === b.global &&\n\t\t\t\t\t\t// (gmi) ...\n\t\t\t\t\t\ta.ignoreCase === b.ignoreCase &&\n\t\t\t\t\t\ta.multiline === b.multiline &&\n\t\t\t\t\t\ta.sticky === b.sticky;\n\t\t\t\t},\n\n\t\t\t\t// - skip when the property is a method of an instance (OOP)\n\t\t\t\t// - abort otherwise,\n\t\t\t\t// initial === would have catch identical references anyway\n\t\t\t\t\"function\": function() {\n\t\t\t\t\tvar caller = callers[callers.length - 1];\n\t\t\t\t\treturn caller !== Object && typeof caller !== \"undefined\";\n\t\t\t\t},\n\n\t\t\t\t\"array\": function( b, a ) {\n\t\t\t\t\tvar i, j, len, loop, aCircular, bCircular;\n\n\t\t\t\t\t// b could be an object literal here\n\t\t\t\t\tif ( QUnit.objectType( b ) !== \"array\" ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\tlen = a.length;\n\t\t\t\t\tif ( len !== b.length ) {\n\t\t\t\t\t\t// safe and faster\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\t\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\n\t\t\t\t\"object\": function( b, a ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar i, j, loop, aCircular, bCircular,\n\t\t\t\t\t\t// Default to true\n\t\t\t\t\t\teq = true,\n\t\t\t\t\t\taProperties = [],\n\t\t\t\t\t\tbProperties = [];\n\n\t\t\t\t\t// comparing constructors is more strict than using\n\t\t\t\t\t// instanceof\n\t\t\t\t\tif ( a.constructor !== b.constructor ) {\n\t\t\t\t\t\t// Allow objects with no prototype to be equivalent to\n\t\t\t\t\t\t// objects with Object as their constructor.\n\t\t\t\t\t\tif ( !(( getProto(a) === null && getProto(b) === Object.prototype ) ||\n\t\t\t\t\t\t\t( getProto(b) === null && getProto(a) === Object.prototype ) ) ) {\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// stack constructor before traversing properties\n\t\t\t\t\tcallers.push( a.constructor );\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\n\t\t\t\t\t// be strict: don't ensure hasOwnProperty and go deep\n\t\t\t\t\tfor ( i in a ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\taProperties.push(i);\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\tcallers.pop(); // unstack, we are done\n\n\t\t\t\t\tfor ( i in b ) {\n\t\t\t\t\t\tbProperties.push( i ); // collect b's properties\n\t\t\t\t\t}\n\n\t\t\t\t\t// Ensures identical properties name\n\t\t\t\t\treturn eq && innerEquiv( aProperties.sort(), bProperties.sort() );\n\t\t\t\t}\n\t\t\t};\n\t\t}());\n\n\tinnerEquiv = function() { // can take multiple arguments\n\t\tvar args = [].slice.apply( arguments );\n\t\tif ( args.length < 2 ) {\n\t\t\treturn true; // end transition\n\t\t}\n\n\t\treturn (function( a, b ) {\n\t\t\tif ( a === b ) {\n\t\t\t\treturn true; // catch the most you can\n\t\t\t} else if ( a === null || b === null || typeof a === \"undefined\" ||\n\t\t\t\t\ttypeof b === \"undefined\" ||\n\t\t\t\t\tQUnit.objectType(a) !== QUnit.objectType(b) ) {\n\t\t\t\treturn false; // don't lose time with error prone cases\n\t\t\t} else {\n\t\t\t\treturn bindCallbacks(a, callbacks, [ b, a ]);\n\t\t\t}\n\n\t\t\t// apply transition with (1..n) arguments\n\t\t}( args[0], args[1] ) && innerEquiv.apply( this, args.splice(1, args.length - 1 )) );\n\t};\n\n\treturn innerEquiv;\n}());\n\n/**\n * jsDump Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com |\n * http://flesler.blogspot.com Licensed under BSD\n * (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008\n *\n * @projectDescription Advanced and extensible data dumping for Javascript.\n * @version 1.0.0\n * @author Ariel Flesler\n * @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}\n */\nQUnit.jsDump = (function() {\n\tfunction quote( str ) {\n\t\treturn \"\\\"\" + str.toString().replace( /\"/g, \"\\\\\\\"\" ) + \"\\\"\";\n\t}\n\tfunction literal( o ) {\n\t\treturn o + \"\";\n\t}\n\tfunction join( pre, arr, post ) {\n\t\tvar s = jsDump.separator(),\n\t\t\tbase = jsDump.indent(),\n\t\t\tinner = jsDump.indent(1);\n\t\tif ( arr.join ) {\n\t\t\tarr = arr.join( \",\" + s + inner );\n\t\t}\n\t\tif ( !arr ) {\n\t\t\treturn pre + post;\n\t\t}\n\t\treturn [ pre, inner + arr, base + post ].join(s);\n\t}\n\tfunction array( arr, stack ) {\n\t\tvar i = arr.length, ret = new Array(i);\n\t\tthis.up();\n\t\twhile ( i-- ) {\n\t\t\tret[i] = this.parse( arr[i] , undefined , stack);\n\t\t}\n\t\tthis.down();\n\t\treturn join( \"[\", ret, \"]\" );\n\t}\n\n\tvar reName = /^function (\\w+)/,\n\t\tjsDump = {\n\t\t\t// type is used mostly internally, you can fix a (custom)type in advance\n\t\t\tparse: function( obj, type, stack ) {\n\t\t\t\tstack = stack || [ ];\n\t\t\t\tvar inStack, res,\n\t\t\t\t\tparser = this.parsers[ type || this.typeOf(obj) ];\n\n\t\t\t\ttype = typeof parser;\n\t\t\t\tinStack = inArray( obj, stack );\n\n\t\t\t\tif ( inStack !== -1 ) {\n\t\t\t\t\treturn \"recursion(\" + (inStack - stack.length) + \")\";\n\t\t\t\t}\n\t\t\t\tif ( type === \"function\" )  {\n\t\t\t\t\tstack.push( obj );\n\t\t\t\t\tres = parser.call( this, obj, stack );\n\t\t\t\t\tstack.pop();\n\t\t\t\t\treturn res;\n\t\t\t\t}\n\t\t\t\treturn ( type === \"string\" ) ? parser : this.parsers.error;\n\t\t\t},\n\t\t\ttypeOf: function( obj ) {\n\t\t\t\tvar type;\n\t\t\t\tif ( obj === null ) {\n\t\t\t\t\ttype = \"null\";\n\t\t\t\t} else if ( typeof obj === \"undefined\" ) {\n\t\t\t\t\ttype = \"undefined\";\n\t\t\t\t} else if ( QUnit.is( \"regexp\", obj) ) {\n\t\t\t\t\ttype = \"regexp\";\n\t\t\t\t} else if ( QUnit.is( \"date\", obj) ) {\n\t\t\t\t\ttype = \"date\";\n\t\t\t\t} else if ( QUnit.is( \"function\", obj) ) {\n\t\t\t\t\ttype = \"function\";\n\t\t\t\t} else if ( typeof obj.setInterval !== undefined && typeof obj.document !== \"undefined\" && typeof obj.nodeType === \"undefined\" ) {\n\t\t\t\t\ttype = \"window\";\n\t\t\t\t} else if ( obj.nodeType === 9 ) {\n\t\t\t\t\ttype = \"document\";\n\t\t\t\t} else if ( obj.nodeType ) {\n\t\t\t\t\ttype = \"node\";\n\t\t\t\t} else if (\n\t\t\t\t\t// native arrays\n\t\t\t\t\ttoString.call( obj ) === \"[object Array]\" ||\n\t\t\t\t\t// NodeList objects\n\t\t\t\t\t( typeof obj.length === \"number\" && typeof obj.item !== \"undefined\" && ( obj.length ? obj.item(0) === obj[0] : ( obj.item( 0 ) === null && typeof obj[0] === \"undefined\" ) ) )\n\t\t\t\t) {\n\t\t\t\t\ttype = \"array\";\n\t\t\t\t} else if ( obj.constructor === Error.prototype.constructor ) {\n\t\t\t\t\ttype = \"error\";\n\t\t\t\t} else {\n\t\t\t\t\ttype = typeof obj;\n\t\t\t\t}\n\t\t\t\treturn type;\n\t\t\t},\n\t\t\tseparator: function() {\n\t\t\t\treturn this.multiline ?\tthis.HTML ? \"<br />\" : \"\\n\" : this.HTML ? \"&nbsp;\" : \" \";\n\t\t\t},\n\t\t\t// extra can be a number, shortcut for increasing-calling-decreasing\n\t\t\tindent: function( extra ) {\n\t\t\t\tif ( !this.multiline ) {\n\t\t\t\t\treturn \"\";\n\t\t\t\t}\n\t\t\t\tvar chr = this.indentChar;\n\t\t\t\tif ( this.HTML ) {\n\t\t\t\t\tchr = chr.replace( /\\t/g, \"   \" ).replace( / /g, \"&nbsp;\" );\n\t\t\t\t}\n\t\t\t\treturn new Array( this.depth + ( extra || 0 ) ).join(chr);\n\t\t\t},\n\t\t\tup: function( a ) {\n\t\t\t\tthis.depth += a || 1;\n\t\t\t},\n\t\t\tdown: function( a ) {\n\t\t\t\tthis.depth -= a || 1;\n\t\t\t},\n\t\t\tsetParser: function( name, parser ) {\n\t\t\t\tthis.parsers[name] = parser;\n\t\t\t},\n\t\t\t// The next 3 are exposed so you can use them\n\t\t\tquote: quote,\n\t\t\tliteral: literal,\n\t\t\tjoin: join,\n\t\t\t//\n\t\t\tdepth: 1,\n\t\t\t// This is the list of parsers, to modify them, use jsDump.setParser\n\t\t\tparsers: {\n\t\t\t\twindow: \"[Window]\",\n\t\t\t\tdocument: \"[Document]\",\n\t\t\t\terror: function(error) {\n\t\t\t\t\treturn \"Error(\\\"\" + error.message + \"\\\")\";\n\t\t\t\t},\n\t\t\t\tunknown: \"[Unknown]\",\n\t\t\t\t\"null\": \"null\",\n\t\t\t\t\"undefined\": \"undefined\",\n\t\t\t\t\"function\": function( fn ) {\n\t\t\t\t\tvar ret = \"function\",\n\t\t\t\t\t\t// functions never have name in IE\n\t\t\t\t\t\tname = \"name\" in fn ? fn.name : (reName.exec(fn) || [])[1];\n\n\t\t\t\t\tif ( name ) {\n\t\t\t\t\t\tret += \" \" + name;\n\t\t\t\t\t}\n\t\t\t\t\tret += \"( \";\n\n\t\t\t\t\tret = [ ret, QUnit.jsDump.parse( fn, \"functionArgs\" ), \"){\" ].join( \"\" );\n\t\t\t\t\treturn join( ret, QUnit.jsDump.parse(fn,\"functionCode\" ), \"}\" );\n\t\t\t\t},\n\t\t\t\tarray: array,\n\t\t\t\tnodelist: array,\n\t\t\t\t\"arguments\": array,\n\t\t\t\tobject: function( map, stack ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar ret = [ ], keys, key, val, i;\n\t\t\t\t\tQUnit.jsDump.up();\n\t\t\t\t\tkeys = [];\n\t\t\t\t\tfor ( key in map ) {\n\t\t\t\t\t\tkeys.push( key );\n\t\t\t\t\t}\n\t\t\t\t\tkeys.sort();\n\t\t\t\t\tfor ( i = 0; i < keys.length; i++ ) {\n\t\t\t\t\t\tkey = keys[ i ];\n\t\t\t\t\t\tval = map[ key ];\n\t\t\t\t\t\tret.push( QUnit.jsDump.parse( key, \"key\" ) + \": \" + QUnit.jsDump.parse( val, undefined, stack ) );\n\t\t\t\t\t}\n\t\t\t\t\tQUnit.jsDump.down();\n\t\t\t\t\treturn join( \"{\", ret, \"}\" );\n\t\t\t\t},\n\t\t\t\tnode: function( node ) {\n\t\t\t\t\tvar len, i, val,\n\t\t\t\t\t\topen = QUnit.jsDump.HTML ? \"&lt;\" : \"<\",\n\t\t\t\t\t\tclose = QUnit.jsDump.HTML ? \"&gt;\" : \">\",\n\t\t\t\t\t\ttag = node.nodeName.toLowerCase(),\n\t\t\t\t\t\tret = open + tag,\n\t\t\t\t\t\tattrs = node.attributes;\n\n\t\t\t\t\tif ( attrs ) {\n\t\t\t\t\t\tfor ( i = 0, len = attrs.length; i < len; i++ ) {\n\t\t\t\t\t\t\tval = attrs[i].nodeValue;\n\t\t\t\t\t\t\t// IE6 includes all attributes in .attributes, even ones not explicitly set.\n\t\t\t\t\t\t\t// Those have values like undefined, null, 0, false, \"\" or \"inherit\".\n\t\t\t\t\t\t\tif ( val && val !== \"inherit\" ) {\n\t\t\t\t\t\t\t\tret += \" \" + attrs[i].nodeName + \"=\" + QUnit.jsDump.parse( val, \"attribute\" );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tret += close;\n\n\t\t\t\t\t// Show content of TextNode or CDATASection\n\t\t\t\t\tif ( node.nodeType === 3 || node.nodeType === 4 ) {\n\t\t\t\t\t\tret += node.nodeValue;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn ret + open + \"/\" + tag + close;\n\t\t\t\t},\n\t\t\t\t// function calls it internally, it's the arguments part of the function\n\t\t\t\tfunctionArgs: function( fn ) {\n\t\t\t\t\tvar args,\n\t\t\t\t\t\tl = fn.length;\n\n\t\t\t\t\tif ( !l ) {\n\t\t\t\t\t\treturn \"\";\n\t\t\t\t\t}\n\n\t\t\t\t\targs = new Array(l);\n\t\t\t\t\twhile ( l-- ) {\n\t\t\t\t\t\t// 97 is 'a'\n\t\t\t\t\t\targs[l] = String.fromCharCode(97+l);\n\t\t\t\t\t}\n\t\t\t\t\treturn \" \" + args.join( \", \" ) + \" \";\n\t\t\t\t},\n\t\t\t\t// object calls it internally, the key part of an item in a map\n\t\t\t\tkey: quote,\n\t\t\t\t// function calls it internally, it's the content of the function\n\t\t\t\tfunctionCode: \"[code]\",\n\t\t\t\t// node calls it internally, it's an html attribute value\n\t\t\t\tattribute: quote,\n\t\t\t\tstring: quote,\n\t\t\t\tdate: quote,\n\t\t\t\tregexp: literal,\n\t\t\t\tnumber: literal,\n\t\t\t\t\"boolean\": literal\n\t\t\t},\n\t\t\t// if true, entities are escaped ( <, >, \\t, space and \\n )\n\t\t\tHTML: false,\n\t\t\t// indentation unit\n\t\t\tindentChar: \"  \",\n\t\t\t// if true, items in a collection, are separated by a \\n, else just a space.\n\t\t\tmultiline: true\n\t\t};\n\n\treturn jsDump;\n}());\n\n// from jquery.js\nfunction inArray( elem, array ) {\n\tif ( array.indexOf ) {\n\t\treturn array.indexOf( elem );\n\t}\n\n\tfor ( var i = 0, length = array.length; i < length; i++ ) {\n\t\tif ( array[ i ] === elem ) {\n\t\t\treturn i;\n\t\t}\n\t}\n\n\treturn -1;\n}\n\n/*\n * Javascript Diff Algorithm\n *  By John Resig (http://ejohn.org/)\n *  Modified by Chu Alan \"sprite\"\n *\n * Released under the MIT license.\n *\n * More Info:\n *  http://ejohn.org/projects/javascript-diff-algorithm/\n *\n * Usage: QUnit.diff(expected, actual)\n *\n * QUnit.diff( \"the quick brown fox jumped over\", \"the quick fox jumps over\" ) == \"the  quick <del>brown </del> fox <del>jumped </del><ins>jumps </ins> over\"\n */\nQUnit.diff = (function() {\n\t/*jshint eqeqeq:false, eqnull:true */\n\tfunction diff( o, n ) {\n\t\tvar i,\n\t\t\tns = {},\n\t\t\tos = {};\n\n\t\tfor ( i = 0; i < n.length; i++ ) {\n\t\t\tif ( !hasOwn.call( ns, n[i] ) ) {\n\t\t\t\tns[ n[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\to: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tns[ n[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i = 0; i < o.length; i++ ) {\n\t\t\tif ( !hasOwn.call( os, o[i] ) ) {\n\t\t\t\tos[ o[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\tn: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tos[ o[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i in ns ) {\n\t\t\tif ( hasOwn.call( ns, i ) ) {\n\t\t\t\tif ( ns[i].rows.length === 1 && hasOwn.call( os, i ) && os[i].rows.length === 1 ) {\n\t\t\t\t\tn[ ns[i].rows[0] ] = {\n\t\t\t\t\t\ttext: n[ ns[i].rows[0] ],\n\t\t\t\t\t\trow: os[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t\to[ os[i].rows[0] ] = {\n\t\t\t\t\t\ttext: o[ os[i].rows[0] ],\n\t\t\t\t\t\trow: ns[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = 0; i < n.length - 1; i++ ) {\n\t\t\tif ( n[i].text != null && n[ i + 1 ].text == null && n[i].row + 1 < o.length && o[ n[i].row + 1 ].text == null &&\n\t\t\t\t\t\tn[ i + 1 ] == o[ n[i].row + 1 ] ) {\n\n\t\t\t\tn[ i + 1 ] = {\n\t\t\t\t\ttext: n[ i + 1 ],\n\t\t\t\t\trow: n[i].row + 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row + 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row + 1 ],\n\t\t\t\t\trow: i + 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = n.length - 1; i > 0; i-- ) {\n\t\t\tif ( n[i].text != null && n[ i - 1 ].text == null && n[i].row > 0 && o[ n[i].row - 1 ].text == null &&\n\t\t\t\t\t\tn[ i - 1 ] == o[ n[i].row - 1 ]) {\n\n\t\t\t\tn[ i - 1 ] = {\n\t\t\t\t\ttext: n[ i - 1 ],\n\t\t\t\t\trow: n[i].row - 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row - 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row - 1 ],\n\t\t\t\t\trow: i - 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\treturn {\n\t\t\to: o,\n\t\t\tn: n\n\t\t};\n\t}\n\n\treturn function( o, n ) {\n\t\to = o.replace( /\\s+$/, \"\" );\n\t\tn = n.replace( /\\s+$/, \"\" );\n\n\t\tvar i, pre,\n\t\t\tstr = \"\",\n\t\t\tout = diff( o === \"\" ? [] : o.split(/\\s+/), n === \"\" ? [] : n.split(/\\s+/) ),\n\t\t\toSpace = o.match(/\\s+/g),\n\t\t\tnSpace = n.match(/\\s+/g);\n\n\t\tif ( oSpace == null ) {\n\t\t\toSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\toSpace.push( \" \" );\n\t\t}\n\n\t\tif ( nSpace == null ) {\n\t\t\tnSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\tnSpace.push( \" \" );\n\t\t}\n\n\t\tif ( out.n.length === 0 ) {\n\t\t\tfor ( i = 0; i < out.o.length; i++ ) {\n\t\t\t\tstr += \"<del>\" + out.o[i] + oSpace[i] + \"</del>\";\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tif ( out.n[0].text == null ) {\n\t\t\t\tfor ( n = 0; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\tstr += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( i = 0; i < out.n.length; i++ ) {\n\t\t\t\tif (out.n[i].text == null) {\n\t\t\t\t\tstr += \"<ins>\" + out.n[i] + nSpace[i] + \"</ins>\";\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// `pre` initialized at top of scope\n\t\t\t\t\tpre = \"\";\n\n\t\t\t\t\tfor ( n = out.n[i].row + 1; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\t\tpre += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t\t}\n\t\t\t\t\tstr += \" \" + out.n[i].text + nSpace[i] + pre;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn str;\n\t};\n}());\n\n// for CommonJS environments, export everything\nif ( typeof exports !== \"undefined\" ) {\n\textend( exports, QUnit.constructor.prototype );\n}\n\n// get at whatever the global object is, like window in browsers\n}( (function() {return this;}.call()) ));"
  },
  {
    "path": "doc/cpp-london-2017/test/test-markdown-element-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Element Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\" data-element-attributes=\"{_\\s*?([^}]+?)}\">>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\t\t\t\t\t\t<!-- {_class=\"fragment fade-out\" data-fragment-index=\"1\"} -->\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\t\t\t\t\t\t<!-- {_class=\"fragment shrink\"} -->\n\n\t\t\t\t\t\tParagraph 1\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\tParagraph 2\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 2 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 3 <!-- {_class=\"fragment grow\"} -->\n\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\n\n\t\t\t\t\t\tParagraph 1.2  \n\t\t\t\t\t\tmulti-line <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.2 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.3 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.4 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 2<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 3<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 4\n\t\t\t\t\t\t<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 5<!-- {_class=\"fragment highlight-green\"} -->\n\n\t\t\t\t\t\tTest\n\n\t\t\t\t\t\t![Example Picture](examples/assets/image2.png)\n\t\t\t\t\t\t<!-- {_class=\"reveal stretch\"} -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def <!-- .element: class=\"fragment highlight-red\" data-fragment-index=\"1\" -->\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .element: class=\"fragment highlight-red\" -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\t\t\t\t\tA paragraph\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tMultiple  \n\t\t\t\t\tLine\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tTest<!-- .element: class=\"fragment highlight-blue\" -->\n\n\t\t\t\t\tMore Test\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-element-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/test-markdown-element-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 4, 'found four slides' );\n\t});\n\n\n\ttest( 'Attributes on element header in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.fade-out' ).length, 1, 'found one vertical slide with class fragment.fade-out on header' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.shrink' ).length, 1, 'found one vertical slide with class fragment.shrink on header' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section p.fragment.grow' ).length, 2, 'found a vertical slide with two paragraphs with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element list items in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-red' ).length, 4, 'found a horizontal slide with four paragraphs with class fragment.grow' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section li.fragment.highlight-green' ).length, 5, 'found a horizontal slide with five list items with class fragment.roll-in' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section img.reveal.stretch' ).length, 1, 'found a horizontal slide with stretched image, class img.reveal.stretch' );\n\t});\n\n\ttest( 'Attributes on elements in vertical slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section h2.fragment.highlight-red' ).length, 2, 'found two h2 titles with fragment highlight-red in vertical slides with default element attribute separator' );\n\t});\n\n\ttest( 'Attributes on elements in single slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-blue' ).length, 3, 'found three elements with fragment highlight-blue in single slide with default element attribute separator' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cpp-london-2017/test/test-markdown-slide-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by three lines, vertical slides by two lines, attributes are one any line starting with (spaces and) two dashes -->\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-attributes=\"--\\s(.*?)$\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown\n\t\t\t\t\t\t## Slide 1\n\n\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t\t<!-- -- id=\"slide2\" data-transition=\"zoom\" data-background=\"#A0C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1\n\t\t\t\t\t\t<!-- -- data-background=\"#ff0000\" data-transition=\"fade\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2\n\t\t\t\t\t\t[Link to Slide2](#/slide2)\n\n\n\n\t\t\t\t\t\t## Slide 3\n\t\t\t\t\t\t<!-- -- data-transition=\"zoom\" data-background=\"#C6916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def\n\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .slide: id=\"slide2def\" data-transition=\"concave\" data-background=\"#A7C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1 Def\n\t\t\t\t\t\t<!-- .slide: data-background=\"#f70000\" data-transition=\"page\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2 Def\n\t\t\t\t\t\t[Link to Slide2](#/slide2def)\n\n\n\n\t\t\t\t\t\t## Slide 3 Def\n\t\t\t\t\t\t<!-- .slide: data-transition=\"concave\" data-background=\"#C7916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\n\t\t\t\t\t\tTest\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\n\t\t\t\t\t\tMore Test\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-slide-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/test-markdown-slide-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 6, 'found six vertical slides' );\n\t});\n\n\ttest( 'Id on slide', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section#slide2' ).length, 1, 'found one slide with id slide2' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section a[href=\"#/slide2\"]' ).length, 1, 'found one slide with a link to slide2' );\n\t});\n\n\ttest( 'data-background attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A0C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#ff0000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C6916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"zoom\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"fade\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"zoom\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-background attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A7C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#f70000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C7916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"concave\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"page\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"concave\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-transition attributes with inline content', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#ff0000\"]' ).length, 3, 'found three horizontal slides with data-background=\"#ff0000\"' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cpp-london-2017/test/test-markdown.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/test-markdown.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cpp-london-2017/test/test-pdf.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test PDF exports</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../css/print/pdf.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-pdf.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/test-pdf.js",
    "content": "\nReveal.addEventListener( 'ready', function() {\n\n\t// Only one test for now, we're mainly ensuring that there\n\t// are no execution errors when running PDF mode\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\n} );\n\nReveal.initialize({ pdf: true });\n\n"
  },
  {
    "path": "doc/cpp-london-2017/test/test.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Tests</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background-image=\"examples/assets/image1.png\">\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t\t<video data-src=\"fake-url.mp4\"></video>\n\t\t\t\t\t<audio data-src=\"fake-url.mp3\"></audio>\n\t\t\t\t\t<aside class=\"notes\">speaker notes 1</aside>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"examples/assets/image2.png\" data-notes=\"speaker notes 2\">\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t<iframe data-src=\"http://example.com\"></iframe>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cpp-london-2017/test/test.js",
    "content": "\n// These tests expect the DOM to contain a presentation\n// with the following slide structure:\n//\n// 1\n// 2 - Three sub-slides\n// 3 - Three fragment elements\n// 3 - Two fragments with same data-fragment-index\n// 4\n\n\nReveal.addEventListener( 'ready', function() {\n\n\t// ---------------------------------------------------------------\n\t// DOM TESTS\n\n\tQUnit.module( 'DOM' );\n\n\ttest( 'Initial slides classes', function() {\n\t\tvar horizontalSlides = document.querySelectorAll( '.reveal .slides>section' )\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.past' ).length, 0, 'no .past slides' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.present' ).length, 1, 'one .present slide' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section.future' ).length, horizontalSlides.length - 1, 'remaining horizontal slides are .future' );\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.stack' ).length, 2, 'two .stacks' );\n\n\t\tok( document.querySelectorAll( '.reveal .slides section.stack' )[0].querySelectorAll( '.future' ).length > 0, 'vertical slides are given .future' );\n\t});\n\n\t// ---------------------------------------------------------------\n\t// API TESTS\n\n\tQUnit.module( 'API' );\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\ttest( 'Reveal.isOverview', function() {\n\t\tstrictEqual( Reveal.isOverview(), false, 'false by default' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), true, 'true after toggling on' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), false, 'false after toggling off' );\n\t});\n\n\ttest( 'Reveal.isPaused', function() {\n\t\tstrictEqual( Reveal.isPaused(), false, 'false by default' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), true, 'true after pausing' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), false, 'false after resuming' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), false, 'false after Reveal.slide( 1, 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide after vertical slide', function() {\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide after vertical slide', function() {\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( lastSlideIndex );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\t});\n\n\ttest( 'Reveal.getTotalSlides', function() {\n\t\tstrictEqual( Reveal.getTotalSlides(), 8, 'eight slides in total' );\n\t});\n\n\ttest( 'Reveal.getIndices', function() {\n\t\tvar indices = Reveal.getIndices();\n\n\t\tok( indices.hasOwnProperty( 'h' ), 'h exists' );\n\t\tok( indices.hasOwnProperty( 'v' ), 'v exists' );\n\t\tok( indices.hasOwnProperty( 'f' ), 'f exists' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\n\t\tReveal.slide( 1, 2 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 2, 'v 2' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 0, 'h 0' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\t});\n\n\ttest( 'Reveal.getSlide', function() {\n\t\tequal( Reveal.getSlide( 0 ), document.querySelector( '.reveal .slides>section:first-child' ), 'gets correct first slide' );\n\t\tequal( Reveal.getSlide( 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlide( 1, 0 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlide( 1, 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlide( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlide( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideBackground', function() {\n\t\tequal( Reveal.getSlideBackground( 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:first-child' ), 'gets correct first background' );\n\t\tequal( Reveal.getSlideBackground( 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlideBackground( 1, 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlideBackground( 1, 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlideBackground( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlideBackground( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideNotes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 1', 'works with <aside class=\"notes\">' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 2', 'works with <section data-notes=\"\">' );\n\t});\n\n\ttest( 'Reveal.getPreviousSlide/getCurrentSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tReveal.slide( 1, 0 );\n\n\t\tvar firstSlide = document.querySelector( '.reveal .slides>section:first-child' );\n\t\tvar secondSlide = document.querySelector( '.reveal .slides>section:nth-child(2)>section' );\n\n\t\tequal( Reveal.getPreviousSlide(), firstSlide, 'previous is slide #0' );\n\t\tequal( Reveal.getCurrentSlide(), secondSlide, 'current is slide #1' );\n\t});\n\n\ttest( 'Reveal.getProgress', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 0, 'progress is 0 on first slide' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 1, 'progress is 1 on last slide' );\n\t});\n\n\ttest( 'Reveal.getScale', function() {\n\t\tok( typeof Reveal.getScale() === 'number', 'has scale' );\n\t});\n\n\ttest( 'Reveal.getConfig', function() {\n\t\tok( typeof Reveal.getConfig() === 'object', 'has config' );\n\t});\n\n\ttest( 'Reveal.configure', function() {\n\t\tstrictEqual( Reveal.getConfig().loop, false, '\"loop\" is false to start with' );\n\n\t\tReveal.configure({ loop: true });\n\t\tstrictEqual( Reveal.getConfig().loop, true, '\"loop\" has changed to true' );\n\n\t\tReveal.configure({ loop: false, customTestValue: 1 });\n\t\tstrictEqual( Reveal.getConfig().customTestValue, 1, 'supports custom values' );\n\t});\n\n\ttest( 'Reveal.availableRoutes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: false, up: false, down: false, right: true }, 'correct for first slide' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: true, up: false, down: true, right: true }, 'correct for vertical slide' );\n\t});\n\n\ttest( 'Reveal.next', function() {\n\t\tReveal.slide( 0, 0 );\n\n\t\t// Step through vertical child slides\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 1, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 2, f: undefined } );\n\n\t\t// Step through fragments\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 } );\n\t});\n\n\ttest( 'Reveal.next at end', function() {\n\t\tReveal.slide( 3 );\n\n\t\t// We're at the end, this should have no effect\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// FRAGMENT TESTS\n\n\tQUnit.module( 'Fragments' );\n\n\ttest( 'Sliding to fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 }, 'Reveal.slide( 2, 0, -1 )' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'Reveal.slide( 2, 0, 0 )' );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'Reveal.slide( 2, 0, 2 )' );\n\n\t\tReveal.slide( 2, 0, 1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'Reveal.slide( 2, 0, 1 )' );\n\t});\n\n\ttest( 'Hiding all fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 1, 'one fragment visible when index is 0' );\n\n\t\tReveal.slide( 2, 0, -1 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when index is -1' );\n\t});\n\n\ttest( 'Current fragment', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment at index -1' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 1, 'one current fragment at index 0' );\n\n\t\tReveal.slide( 1, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to next slide' );\n\t});\n\n\ttest( 'Stepping through fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\n\t\t// forwards:\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'next() goes to next fragment' );\n\n\t\tReveal.right();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'right() goes to next fragment' );\n\n\t\tReveal.down();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'down() goes to next fragment' );\n\n\t\tReveal.down(); // moves to f #3\n\n\t\t// backwards:\n\n\t\tReveal.prev();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'prev() goes to prev fragment' );\n\n\t\tReveal.left();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'left() goes to prev fragment' );\n\n\t\tReveal.up();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'up() goes to prev fragment' );\n\t});\n\n\ttest( 'Stepping past fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 0, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when on previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 3, 'all fragments visible when on future slide' );\n\t});\n\n\ttest( 'Fragment indices', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(2)' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 2, 'both fragments of same index are shown' );\n\n\t\t// This slide has three fragments, first one is index 0, second and third have index 1\n\t\tReveal.slide( 2, 2, 0 );\n\t\tequal( Reveal.getIndices().f, 0, 'returns correct index for first fragment' );\n\n\t\tReveal.slide( 2, 2, 1 );\n\t\tequal( Reveal.getIndices().f, 1, 'returns correct index for two fragments with same index' );\n\t});\n\n\ttest( 'Index generation', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\t// These have no indices defined to start with\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '2' );\n\t});\n\n\ttest( 'Index normalization', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(3)' );\n\n\t\t// These start out as 1-4-4 and should normalize to 0-1-1\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '1' );\n\t});\n\n\tasyncTest( 'fragmentshown event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmentshown', _onEvent );\n\n\t\tReveal.slide( 2, 0 );\n\t\tReveal.slide( 2, 0 ); // should do nothing\n\t\tReveal.slide( 2, 0, 0 ); // should do nothing\n\t\tReveal.next();\n\t\tReveal.next();\n\t\tReveal.prev(); // shouldn't fire fragmentshown\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmentshown', _onEvent );\n\t});\n\n\tasyncTest( 'fragmenthidden event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmenthidden', _onEvent );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tReveal.slide( 2, 0, 2 ); // should do nothing\n\t\tReveal.prev();\n\t\tReveal.prev();\n\t\tReveal.next(); // shouldn't fire fragmenthidden\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmenthidden', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// AUTO-SLIDE TESTS\n\n\tQUnit.module( 'Auto Sliding' );\n\n\ttest( 'Reveal.isAutoSliding', function() {\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false by default' );\n\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after starting' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after setting to 0' );\n\t});\n\n\ttest( 'Reveal.toggleAutoSlide', function() {\n\t\tReveal.configure({ autoSlide: 10000 });\n\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after first toggle' );\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after second toggle' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t});\n\n\tasyncTest( 'autoslidepaused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslidepaused', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslidepaused', _onEvent );\n\t});\n\n\tasyncTest( 'autoslideresumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslideresumed', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslideresumed', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// CONFIGURATION VALUES\n\n\tQUnit.module( 'Configuration' );\n\n\ttest( 'Controls', function() {\n\t\tvar controlsElement = document.querySelector( '.reveal>.controls' );\n\n\t\tReveal.configure({ controls: false });\n\t\tequal( controlsElement.style.display, 'none', 'controls are hidden' );\n\n\t\tReveal.configure({ controls: true });\n\t\tequal( controlsElement.style.display, 'block', 'controls are visible' );\n\t});\n\n\ttest( 'Progress', function() {\n\t\tvar progressElement = document.querySelector( '.reveal>.progress' );\n\n\t\tReveal.configure({ progress: false });\n\t\tequal( progressElement.style.display, 'none', 'progress are hidden' );\n\n\t\tReveal.configure({ progress: true });\n\t\tequal( progressElement.style.display, 'block', 'progress are visible' );\n\t});\n\n\ttest( 'Loop', function() {\n\t\tReveal.configure({ loop: true });\n\n\t\tReveal.slide( 0, 0 );\n\n\t\tReveal.left();\n\t\tnotEqual( Reveal.getIndices().h, 0, 'looped from start to end' );\n\n\t\tReveal.right();\n\t\tequal( Reveal.getIndices().h, 0, 'looped from end to start' );\n\n\t\tReveal.configure({ loop: false });\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// LAZY-LOADING TESTS\n\n\tQUnit.module( 'Lazy-Loading' );\n\n\ttest( 'img with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section img[src]' ).length, 1, 'Image source has been set' );\n\t});\n\n\ttest( 'video with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section video[src]' ).length, 1, 'Video source has been set' );\n\t});\n\n\ttest( 'audio with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section audio[src]' ).length, 1, 'Audio source has been set' );\n\t});\n\n\ttest( 'iframe with data-src', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t\tReveal.slide( 2, 1 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 1, 'Iframe source is set' );\n\t\tReveal.slide( 2, 2 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t});\n\n\ttest( 'background images', function() {\n\t\tvar imageSource1 = Reveal.getSlide( 0 ).getAttribute( 'data-background-image' );\n\t\tvar imageSource2 = Reveal.getSlide( 1, 0 ).getAttribute( 'data-background' );\n\n\t\t// check that the images are applied to the background elements\n\t\tok( Reveal.getSlideBackground( 0 ).style.backgroundImage.indexOf( imageSource1 ) !== -1, 'data-background-image worked' );\n\t\tok( Reveal.getSlideBackground( 1, 0 ).style.backgroundImage.indexOf( imageSource2 ) !== -1, 'data-background worked' );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// EVENT TESTS\n\n\tQUnit.module( 'Events' );\n\n\tasyncTest( 'slidechanged', function() {\n\t\texpect( 3 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'slidechanged', _onEvent );\n\n\t\tReveal.slide( 1, 0 ); // should trigger\n\t\tReveal.slide( 1, 0 ); // should do nothing\n\t\tReveal.next(); // should trigger\n\t\tReveal.slide( 3, 0 ); // should trigger\n\t\tReveal.next(); // should do nothing\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'slidechanged', _onEvent );\n\n\t});\n\n\tasyncTest( 'paused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'paused', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'paused', _onEvent );\n\t});\n\n\tasyncTest( 'resumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'resumed', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'resumed', _onEvent );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cpp-london-2017/uml/app0.uml",
    "content": "@startuml\n\nApp : run() : void\n\n@enduml\n"
  },
  {
    "path": "doc/cpp-london-2017/uml/app1.uml",
    "content": "@startuml\n\n\"Printer\" : show(int) : void\n\"Reader\" : read() : int\n\n\"App\" ..> \"Reader\"\n\"App\" ..> \"Printer\"\n\n\"App\" : run() : void\n\n@enduml\n"
  },
  {
    "path": "doc/cpp-london-2017/uml/app2.uml",
    "content": "@startuml\n\n\"Printer\" : show(int) : void\n\"Reader\" : read() : int\n\n\"App\" *.. \"Reader\"\n\"App\" *.. \"Printer\"\n\n\"App\" : run() : void\n\n@enduml\n"
  },
  {
    "path": "doc/cpp-london-2017/uml/app3.uml",
    "content": "@startuml\n\n\"IPrinter\" : show(int) : void\n\"IReader\" : read() : int\n\n\"ConsolePrinter\" -up-|> \"IPrinter\"\n\"ConsolePrinter\" : show(int) : void\n\n\"FileReader\" -up-|> \"IReader\"\n\"FileReader\" : read() : int\n\n\"App\" ..> \"IReader\"\n\"App\" ..> \"IPrinter\"\n\n\"App\" : run: void\n\n@enduml\n"
  },
  {
    "path": "doc/cpp-london-2017/uml/app4.uml",
    "content": "@startuml\n\n\"Printer<T>\" : show(int) : void\n\"Reader<T>\" : read() : int\n\n\"ConsolePrinter\" -up-|> \"Printer<T>\"\n\"ConsolePrinter\" : show(int) : void\n\n\"FileReader\" -up-|> \"Reader<T>\"\n\"FileReader\" : read() : int\n\n\"App\" ..> \"Reader<T>\"\n\"App\" ..> \"Printer<T>\"\n\n\"App\" : run: void\n\n@enduml\n"
  },
  {
    "path": "doc/cppnow-2016/.gitignore",
    "content": ".DS_Store\n.svn\nlog/*.log\ntmp/**\nnode_modules/\n.sass-cache\ncss/reveal.min.css\njs/reveal.min.js\n"
  },
  {
    "path": "doc/cppnow-2016/.travis.yml",
    "content": "language: node_js\nnode_js:\n  - 4.1.1\nbefore_script:\n  - npm install -g grunt-cli"
  },
  {
    "path": "doc/cppnow-2016/CONTRIBUTING.md",
    "content": "## Contributing\n\nPlease keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.\n\n\n### Personal Support\nIf you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).\n\n\n### Bug Reports\nWhen reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.\n\n\n### Pull Requests\n- Should follow the coding style of the file you work in, most importantly:\n  - Tabs to indent\n  - Single-quoted strings\n- Should be made towards the **dev branch**\n- Should be submitted from a feature/topic branch (not your master)\n\n\n### Plugins\nPlease do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines\n"
  },
  {
    "path": "doc/cppnow-2016/Gruntfile.js",
    "content": "/* global module:false */\nmodule.exports = function(grunt) {\n\tvar port = grunt.option('port') || 8000;\n\tvar base = grunt.option('base') || '.';\n\n\t// Project configuration\n\tgrunt.initConfig({\n\t\tpkg: grunt.file.readJSON('package.json'),\n\t\tmeta: {\n\t\t\tbanner:\n\t\t\t\t'/*!\\n' +\n\t\t\t\t' * reveal.js <%= pkg.version %> (<%= grunt.template.today(\"yyyy-mm-dd, HH:MM\") %>)\\n' +\n\t\t\t\t' * http://lab.hakim.se/reveal-js\\n' +\n\t\t\t\t' * MIT licensed\\n' +\n\t\t\t\t' *\\n' +\n\t\t\t\t' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\\n' +\n\t\t\t\t' */'\n\t\t},\n\n\t\tqunit: {\n\t\t\tfiles: [ 'test/*.html' ]\n\t\t},\n\n\t\tuglify: {\n\t\t\toptions: {\n\t\t\t\tbanner: '<%= meta.banner %>\\n'\n\t\t\t},\n\t\t\tbuild: {\n\t\t\t\tsrc: 'js/reveal.js',\n\t\t\t\tdest: 'js/reveal.min.js'\n\t\t\t}\n\t\t},\n\n\t\tsass: {\n\t\t\tcore: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.css': 'css/reveal.scss',\n\t\t\t\t}\n\t\t\t},\n\t\t\tthemes: {\n\t\t\t\tfiles: [\n\t\t\t\t\t{\n\t\t\t\t\t\texpand: true,\n\t\t\t\t\t\tcwd: 'css/theme/source',\n\t\t\t\t\t\tsrc: ['*.scss'],\n\t\t\t\t\t\tdest: 'css/theme',\n\t\t\t\t\t\text: '.css'\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t},\n\n\t\tautoprefixer: {\n\t\t\tdist: {\n\t\t\t\tsrc: 'css/reveal.css'\n\t\t\t}\n\t\t},\n\n\t\tcssmin: {\n\t\t\tcompress: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.min.css': [ 'css/reveal.css' ]\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tjshint: {\n\t\t\toptions: {\n\t\t\t\tcurly: false,\n\t\t\t\teqeqeq: true,\n\t\t\t\timmed: true,\n\t\t\t\tlatedef: true,\n\t\t\t\tnewcap: true,\n\t\t\t\tnoarg: true,\n\t\t\t\tsub: true,\n\t\t\t\tundef: true,\n\t\t\t\teqnull: true,\n\t\t\t\tbrowser: true,\n\t\t\t\texpr: true,\n\t\t\t\tglobals: {\n\t\t\t\t\thead: false,\n\t\t\t\t\tmodule: false,\n\t\t\t\t\tconsole: false,\n\t\t\t\t\tunescape: false,\n\t\t\t\t\tdefine: false,\n\t\t\t\t\texports: false\n\t\t\t\t}\n\t\t\t},\n\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ]\n\t\t},\n\n\t\tconnect: {\n\t\t\tserver: {\n\t\t\t\toptions: {\n\t\t\t\t\tport: port,\n\t\t\t\t\tbase: base,\n\t\t\t\t\tlivereload: true,\n\t\t\t\t\topen: true\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tzip: {\n\t\t\t'reveal-js-presentation.zip': [\n\t\t\t\t'index.html',\n\t\t\t\t'css/**',\n\t\t\t\t'js/**',\n\t\t\t\t'lib/**',\n\t\t\t\t'images/**',\n\t\t\t\t'plugin/**',\n\t\t\t\t'**.md'\n\t\t\t]\n\t\t},\n\n\t\twatch: {\n\t\t\toptions: {\n\t\t\t\tlivereload: true\n\t\t\t},\n\t\t\tjs: {\n\t\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ],\n\t\t\t\ttasks: 'js'\n\t\t\t},\n\t\t\ttheme: {\n\t\t\t\tfiles: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],\n\t\t\t\ttasks: 'css-themes'\n\t\t\t},\n\t\t\tcss: {\n\t\t\t\tfiles: [ 'css/reveal.scss' ],\n\t\t\t\ttasks: 'css-core'\n\t\t\t},\n\t\t\thtml: {\n\t\t\t\tfiles: [ 'index.html']\n\t\t\t},\n\t\t\tmarkdown: {\n\t\t\t\tfiles: [ './*.md' ]\n\t\t\t}\n\t\t}\n\n\t});\n\n\t// Dependencies\n\tgrunt.loadNpmTasks( 'grunt-contrib-qunit' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-jshint' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-cssmin' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-uglify' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-watch' );\n\tgrunt.loadNpmTasks( 'grunt-sass' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-connect' );\n\tgrunt.loadNpmTasks( 'grunt-autoprefixer' );\n\tgrunt.loadNpmTasks( 'grunt-zip' );\n\n\t// Default task\n\tgrunt.registerTask( 'default', [ 'css', 'js' ] );\n\n\t// JS task\n\tgrunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );\n\n\t// Theme CSS\n\tgrunt.registerTask( 'css-themes', [ 'sass:themes' ] );\n\n\t// Core framework CSS\n\tgrunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );\n\n\t// All CSS\n\tgrunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );\n\n\t// Package presentation to archive\n\tgrunt.registerTask( 'package', [ 'default', 'zip' ] );\n\n\t// Serve presentation locally\n\tgrunt.registerTask( 'serve', [ 'connect', 'watch' ] );\n\n\t// Run tests\n\tgrunt.registerTask( 'test', [ 'jshint', 'qunit' ] );\n\n};\n"
  },
  {
    "path": "doc/cppnow-2016/LICENSE",
    "content": "Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "doc/cppnow-2016/README.md",
    "content": "# reveal.js [![Build Status](https://travis-ci.org/hakimel/reveal.js.svg?branch=master)](https://travis-ci.org/hakimel/reveal.js)\n\nA framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/).\n\nreveal.js comes with a broad range of features including [nested slides](https://github.com/hakimel/reveal.js#markup), [Markdown contents](https://github.com/hakimel/reveal.js#markdown), [PDF export](https://github.com/hakimel/reveal.js#pdf-export), [speaker notes](https://github.com/hakimel/reveal.js#speaker-notes) and a [JavaScript API](https://github.com/hakimel/reveal.js#api). It's best viewed in a modern browser but [fallbacks](https://github.com/hakimel/reveal.js/wiki/Browser-Support) are available to make sure your presentation can still be viewed elsewhere.\n\n\n#### More reading:\n- [Installation](#installation): Step-by-step instructions for getting reveal.js running on your computer.\n- [Changelog](https://github.com/hakimel/reveal.js/releases): Up-to-date version history.\n- [Examples](https://github.com/hakimel/reveal.js/wiki/Example-Presentations): Presentations created with reveal.js, add your own!\n- [Browser Support](https://github.com/hakimel/reveal.js/wiki/Browser-Support): Explanation of browser support and fallbacks.\n- [Plugins](https://github.com/hakimel/reveal.js/wiki/Plugins,-Tools-and-Hardware): A list of plugins that can be used to extend reveal.js.\n\n## Online Editor\n\nPresentations are written using HTML or Markdown but there's also an online editor for those of you who prefer a graphical interface. Give it a try at [http://slides.com](http://slides.com).\n\n\n## Instructions\n\n### Markup\n\nMarkup hierarchy needs to be ``<div class=\"reveal\"> <div class=\"slides\"> <section>`` where the ``<section>`` represents one slide and can be repeated indefinitely. If you place multiple ``<section>``'s inside of another ``<section>`` they will be shown as vertical slides. The first of the vertical slides is the \"root\" of the others (at the top), and it will be included in the horizontal sequence. For example:\n\n```html\n<div class=\"reveal\">\n\t<div class=\"slides\">\n\t\t<section>Single Horizontal Slide</section>\n\t\t<section>\n\t\t\t<section>Vertical Slide 1</section>\n\t\t\t<section>Vertical Slide 2</section>\n\t\t</section>\n\t</div>\n</div>\n```\n\n### Markdown\n\nIt's possible to write your slides using Markdown. To enable Markdown, add the ```data-markdown``` attribute to your ```<section>``` elements and wrap the contents in a ```<script type=\"text/template\">``` like the example below.\n\nThis is based on [data-markdown](https://gist.github.com/1343518) from [Paul Irish](https://github.com/paulirish) modified to use [marked](https://github.com/chjj/marked) to support [Github Flavoured Markdown](https://help.github.com/articles/github-flavored-markdown). Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks).\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t## Page title\n\n\t\tA paragraph with some text and a [link](http://hakim.se).\n\t</script>\n</section>\n```\n\n#### External Markdown\n\nYou can write your content as a separate file and have reveal.js load it at runtime. Note the separator arguments which determine how slides are delimited in the external file. The ```data-charset``` attribute is optional and specifies which charset to use when loading the external file.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section data-markdown=\"example.md\"  \n         data-separator=\"^\\n\\n\\n\"  \n         data-separator-vertical=\"^\\n\\n\"  \n         data-separator-notes=\"^Note:\"  \n         data-charset=\"iso-8859-15\">\n</section>\n```\n\n#### Element Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to Markdown elements. This is useful for fragments, amongst other things.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t- Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n\t\t- Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n\t</script>\n</section>\n```\n\n#### Slide Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to the slide `<section>` elements generated by your Markdown.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\tMarkdown content\n\t</script>\n</section>\n```\n\n\n### Configuration\n\nAt the end of your page you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below.\n\n```javascript\nReveal.initialize({\n\n\t// Display controls in the bottom right corner\n\tcontrols: true,\n\n\t// Display a presentation progress bar\n\tprogress: true,\n\n\t// Display the page number of the current slide\n\tslideNumber: false,\n\n\t// Push each slide change to the browser history\n\thistory: false,\n\n\t// Enable keyboard shortcuts for navigation\n\tkeyboard: true,\n\n\t// Enable the slide overview mode\n\toverview: true,\n\n\t// Vertical centering of slides\n\tcenter: true,\n\n\t// Enables touch navigation on devices with touch input\n\ttouch: true,\n\n\t// Loop the presentation\n\tloop: false,\n\n\t// Change the presentation direction to be RTL\n\trtl: false,\n\n\t// Turns fragments on and off globally\n\tfragments: true,\n\n\t// Flags if the presentation is running in an embedded mode,\n\t// i.e. contained within a limited portion of the screen\n\tembedded: false,\n\n\t// Flags if we should show a help overlay when the questionmark\n\t// key is pressed\n\thelp: true,\n\n\t// Flags if speaker notes should be visible to all viewers\n\tshowNotes: false,\n\n\t// Number of milliseconds between automatically proceeding to the\n\t// next slide, disabled when set to 0, this value can be overwritten\n\t// by using a data-autoslide attribute on your slides\n\tautoSlide: 0,\n\n\t// Stop auto-sliding after user input\n\tautoSlideStoppable: true,\n\n\t// Enable slide navigation via mouse wheel\n\tmouseWheel: false,\n\n\t// Hides the address bar on mobile devices\n\thideAddressBar: true,\n\n\t// Opens links in an iframe preview overlay\n\tpreviewLinks: false,\n\n\t// Transition style\n\ttransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Transition speed\n\ttransitionSpeed: 'default', // default/fast/slow\n\n\t// Transition style for full page slide backgrounds\n\tbackgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Number of slides away from the current that are visible\n\tviewDistance: 3,\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n\t// Amount to move parallax background (horizontal and vertical) on slide change\n\t// Number, e.g. 100\n\tparallaxBackgroundHorizontal: '',\n\tparallaxBackgroundVertical: ''\n\n});\n```\n\n\nThe configuration can be updated after initialization using the ```configure``` method:\n\n```javascript\n// Turn autoSlide off\nReveal.configure({ autoSlide: 0 });\n\n// Start auto-sliding every 5s\nReveal.configure({ autoSlide: 5000 });\n```\n\n\n### Presentation Size\n\nAll presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport.\n\nSee below for a list of configuration options related to sizing, including default values:\n\n```javascript\nReveal.initialize({\n\n\t...\n\n\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t// when the presentation is scaled to fit different resolutions. Can be\n\t// specified using percentage units.\n\twidth: 960,\n\theight: 700,\n\n\t// Factor of the display size that should remain empty around the content\n\tmargin: 0.1,\n\n\t// Bounds for smallest/largest possible scale to apply to content\n\tminScale: 0.2,\n\tmaxScale: 1.5\n\n});\n```\n\n\n### Dependencies\n\nReveal.js doesn't _rely_ on any third party scripts to work but a few optional libraries are included by default. These libraries are loaded as dependencies in the order they appear, for example:\n\n```javascript\nReveal.initialize({\n\tdependencies: [\n\t\t// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/\n\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\n\t\t// Interpret Markdown in <section> elements\n\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\n\t\t// Syntax highlight for <code> elements\n\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\n\t\t// Zoom in and out with Alt+click\n\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\n\t\t// Speaker notes\n\t\t{ src: 'plugin/notes/notes.js', async: true },\n\n\t\t// MathJax\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n});\n```\n\nYou can add your own extensions using the same syntax. The following properties are available for each dependency object:\n- **src**: Path to the script to load\n- **async**: [optional] Flags if the script should load after reveal.js has started, defaults to false\n- **callback**: [optional] Function to execute when the script has loaded\n- **condition**: [optional] Function which must return true for the script to be loaded\n\n\n### Ready Event\n\nA 'ready' event is fired when reveal.js has loaded all non-async dependencies and is ready to start navigating. To check if reveal.js is already 'ready' you can call `Reveal.isReady()`.\n\n```javascript\nReveal.addEventListener( 'ready', function( event ) {\n\t// event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n\n### Auto-sliding\n\nPresentations can be configured to progress through slides automatically, without any user input. To enable this you will need to tell the framework how many milliseconds it should wait between slides:\n\n```javascript\n// Slide every five seconds\nReveal.configure({\n  autoSlide: 5000\n});\n```\nWhen this is turned on a control element will appear that enables users to pause and resume auto-sliding. Alternatively, sliding can be paused or resumed by pressing »a« on the keyboard. Sliding is paused automatically as soon as the user starts navigating. You can disable these controls by specifying ```autoSlideStoppable: false``` in your reveal.js config.\n\nYou can also override the slide duration for individual slides and fragments by using the ```data-autoslide``` attribute:\n\n```html\n<section data-autoslide=\"2000\">\n\t<p>After 2 seconds the first fragment will be shown.</p>\n\t<p class=\"fragment\" data-autoslide=\"10000\">After 10 seconds the next fragment will be shown.</p>\n\t<p class=\"fragment\">Now, the fragment is displayed for 2 seconds before the next slide is shown.</p>\n</section>\n```\n\nWhenever the auto-slide mode is resumed or paused the ```autoslideresumed``` and ```autoslidepaused``` events are fired.\n\n\n### Keyboard Bindings\n\nIf you're unhappy with any of the default keyboard bindings you can override them using the ```keyboard``` config option:\n\n```javascript\nReveal.configure({\n  keyboard: {\n    13: 'next', // go to the next slide when the ENTER key is pressed\n    27: function() {}, // do something custom when ESC is pressed\n    32: null // don't do anything when SPACE is pressed (i.e. disable a reveal.js default binding)\n  }\n});\n```\n\n### Touch Navigation\n\nYou can swipe to navigate through a presentation on any touch-enabled device. Horizontal swipes change between horizontal slides, vertical swipes change between vertical slides. If you wish to disable this you can set the `touch` config option to false when initializing reveal.js.\n\nIf there's some part of your content that needs to remain accessible to touch events you'll need to highlight this by adding a `data-prevent-swipe` attribute to the element. One common example where this is useful is elements that need to be scrolled.\n\n\n### Lazy Loading\n\nWhen working on presentation with a lot of media or iframe content it's important to load lazily. Lazy loading means that reveal.js will only load content for the few slides nearest to the current slide. The number of slides that are preloaded is determined by the `viewDistance` configuration option.\n\nTo enable lazy loading all you need to do is change your \"src\" attributes to \"data-src\" as shown below. This is supported for image, video, audio and iframe elements. Lazy loaded iframes will also unload when the containing slide is no longer visible.\n\n```html\n<section>\n  <img data-src=\"image.png\">\n  <iframe data-src=\"http://hakim.se\"></iframe>\n  <video>\n    <source data-src=\"video.webm\" type=\"video/webm\" />\n    <source data-src=\"video.mp4\" type=\"video/mp4\" />\n  </video>\n</section>\n```\n\n\n### API\n\nThe ``Reveal`` object exposes a JavaScript API for controlling navigation and reading state:\n\n```javascript\n// Navigation\nReveal.slide( indexh, indexv, indexf );\nReveal.left();\nReveal.right();\nReveal.up();\nReveal.down();\nReveal.prev();\nReveal.next();\nReveal.prevFragment();\nReveal.nextFragment();\n\n// Toggle presentation states, optionally pass true/false to force on/off\nReveal.toggleOverview();\nReveal.togglePause();\nReveal.toggleAutoSlide();\n\n// Change a config value at runtime\nReveal.configure({ controls: true });\n\n// Returns the present configuration options\nReveal.getConfig();\n\n// Fetch the current scale of the presentation\nReveal.getScale();\n\n// Retrieves the previous and current slide elements\nReveal.getPreviousSlide();\nReveal.getCurrentSlide();\n\nReveal.getIndices(); // { h: 0, v: 0 } }\nReveal.getProgress(); // 0-1\nReveal.getTotalSlides();\n\n// Returns the speaker notes for the current slide\nReveal.getSlideNotes();\n\n// State checks\nReveal.isFirstSlide();\nReveal.isLastSlide();\nReveal.isOverview();\nReveal.isPaused();\nReveal.isAutoSliding();\n```\n\n### Slide Changed Event\n\nA 'slidechanged' event is fired each time the slide is changed (regardless of state). The event object holds the index values of the current slide as well as a reference to the previous and current slide HTML nodes.\n\nSome libraries, like MathJax (see [#226](https://github.com/hakimel/reveal.js/issues/226#issuecomment-10261609)), get confused by the transforms and display states of slides. Often times, this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'slidechanged', function( event ) {\n\t// event.previousSlide, event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n### Presentation State\n\nThe presentation's current state can be fetched by using the `getState` method. A state object contains all of the information required to put the presentation back as it was when `getState` was first called. Sort of like a snapshot. It's a simple object that can easily be stringified and persisted or sent over the wire.\n\n```javascript\nReveal.slide( 1 );\n// we're on slide 1\n\nvar state = Reveal.getState();\n\nReveal.slide( 3 );\n// we're on slide 3\n\nReveal.setState( state );\n// we're back on slide 1\n```\n\n### Slide States\n\nIf you set ``data-state=\"somestate\"`` on a slide ``<section>``, \"somestate\" will be applied as a class on the document element when that slide is opened. This allows you to apply broad style changes to the page based on the active slide.\n\nFurthermore you can also listen to these changes in state via JavaScript:\n\n```javascript\nReveal.addEventListener( 'somestate', function() {\n\t// TODO: Sprinkle magic\n}, false );\n```\n\n### Slide Backgrounds\n\nSlides are contained within a limited portion of the screen by default to allow them to fit any display and scale uniformly. You can apply full page backgrounds outside of the slide area by adding a ```data-background``` attribute to your ```<section>``` elements. Four different types of backgrounds are supported: color, image, video and iframe. Below are a few examples.\n\n```html\n<section data-background=\"#ff0000\">\n\t<h2>All CSS color formats are supported, like rgba() or hsl().</h2>\n</section>\n<section data-background=\"http://example.com/image.png\">\n\t<h2>This slide will have a full-size background image.</h2>\n</section>\n<section data-background=\"http://example.com/image.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\">\n\t<h2>This background image will be sized to 100px and repeated.</h2>\n</section>\n<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\" data-background-video-loop>\n\t<h2>Video. Multiple sources can be defined using a comma separated list. Video will loop when the data-background-video-loop attribute is provided.</h2>\n</section>\n<section data-background-iframe=\"https://slides.com\">\n\t<h2>Embeds a web page as a background. Note that the page won't be interactive.</h2>\n</section>\n```\n\nBackgrounds transition using a fade animation by default. This can be changed to a linear sliding transition by passing ```backgroundTransition: 'slide'``` to the ```Reveal.initialize()``` call. Alternatively you can set ```data-background-transition``` on any section with a background to override that specific transition.\n\n\n### Parallax Background\n\nIf you want to use a parallax scrolling background, set the first two config properties below when initializing reveal.js (the other two are optional).\n\n```javascript\nReveal.initialize({\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\" - currently only pixels are supported (don't use % or auto)\n\n\t// Amount of pixels to move the parallax background per slide step,\n\t// a value of 0 disables movement along the given axis\n\t// These are optional, if they aren't specified they'll be calculated automatically\n\tparallaxBackgroundHorizontal: 200,\n\tparallaxBackgroundVertical: 50\n\n});\n```\n\nMake sure that the background size is much bigger than screen size to allow for some scrolling. [View example](http://lab.hakim.se/reveal-js/?parallaxBackgroundImage=https%3A%2F%2Fs3.amazonaws.com%2Fhakim-static%2Freveal-js%2Freveal-parallax-1.jpg&parallaxBackgroundSize=2100px%20900px).\n\n\n\n### Slide Transitions\nThe global presentation transition is set using the ```transition``` config value. You can override the global transition for a specific slide by using the ```data-transition``` attribute:\n\n```html\n<section data-transition=\"zoom\">\n\t<h2>This slide will override the presentation transition and zoom!</h2>\n</section>\n\n<section data-transition-speed=\"fast\">\n\t<h2>Choose from three transition speeds: default, fast or slow!</h2>\n</section>\n```\n\nYou can also use different in and out transitions for the same slide:\n\n```html\n<section data-transition=\"slide\">\n    The train goes on … \n</section>\n<section data-transition=\"slide\"> \n    and on … \n</section>\n<section data-transition=\"slide-in fade-out\"> \n    and stops.\n</section>\n<section data-transition=\"fade-in slide-out\"> \n    (Passengers entering and leaving)\n</section>\n<section data-transition=\"slide\">\n    And it starts again.\n</section>\n```\n\n\n### Internal links\n\nIt's easy to link between slides. The first example below targets the index of another slide whereas the second targets a slide with an ID attribute (```<section id=\"some-slide\">```):\n\n```html\n<a href=\"#/2/2\">Link</a>\n<a href=\"#/some-slide\">Link</a>\n```\n\nYou can also add relative navigation links, similar to the built in reveal.js controls, by appending one of the following classes on any element. Note that each element is automatically given an ```enabled``` class when it's a valid navigation route based on the current slide.\n\n```html\n<a href=\"#\" class=\"navigate-left\">\n<a href=\"#\" class=\"navigate-right\">\n<a href=\"#\" class=\"navigate-up\">\n<a href=\"#\" class=\"navigate-down\">\n<a href=\"#\" class=\"navigate-prev\"> <!-- Previous vertical or horizontal slide -->\n<a href=\"#\" class=\"navigate-next\"> <!-- Next vertical or horizontal slide -->\n```\n\n\n### Fragments\nFragments are used to highlight individual elements on a slide. Every element with the class ```fragment``` will be stepped through before moving on to the next slide. Here's an example: http://lab.hakim.se/reveal-js/#/fragments\n\nThe default fragment style is to start out invisible and fade in. This style can be changed by appending a different class to the fragment:\n\n```html\n<section>\n\t<p class=\"fragment grow\">grow</p>\n\t<p class=\"fragment shrink\">shrink</p>\n\t<p class=\"fragment fade-out\">fade-out</p>\n\t<p class=\"fragment current-visible\">visible only once</p>\n\t<p class=\"fragment highlight-current-blue\">blue only once</p>\n\t<p class=\"fragment highlight-red\">highlight-red</p>\n\t<p class=\"fragment highlight-green\">highlight-green</p>\n\t<p class=\"fragment highlight-blue\">highlight-blue</p>\n</section>\n```\n\nMultiple fragments can be applied to the same element sequentially by wrapping it, this will fade in the text on the first step and fade it back out on the second.\n\n```html\n<section>\n\t<span class=\"fragment fade-in\">\n\t\t<span class=\"fragment fade-out\">I'll fade in, then out</span>\n\t</span>\n</section>\n```\n\nThe display order of fragments can be controlled using the ```data-fragment-index``` attribute.\n\n```html\n<section>\n\t<p class=\"fragment\" data-fragment-index=\"3\">Appears last</p>\n\t<p class=\"fragment\" data-fragment-index=\"1\">Appears first</p>\n\t<p class=\"fragment\" data-fragment-index=\"2\">Appears second</p>\n</section>\n```\n\n### Fragment events\n\nWhen a slide fragment is either shown or hidden reveal.js will dispatch an event.\n\nSome libraries, like MathJax (see #505), get confused by the initially hidden fragment elements. Often times this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'fragmentshown', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\nReveal.addEventListener( 'fragmenthidden', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\n```\n\n### Code syntax highlighting\n\nBy default, Reveal is configured with [highlight.js](https://highlightjs.org/) for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted. When the `data-trim` attribute is present surrounding whitespace is automatically removed.\n\n```html\n<section>\n\t<pre><code data-trim>\n(def lazy-fib\n  (concat\n   [0 1]\n   ((fn rfib [a b]\n        (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))\n\t</code></pre>\n</section>\n```\n\n### Slide number\nIf you would like to display the page number of the current slide you can do so using the ```slideNumber``` configuration value.\n\n```javascript\n// Shows the slide number using default formatting\nReveal.configure({ slideNumber: true });\n\n// Slide number formatting can be configured using these variables:\n//  \"h.v\": \thorizontal . vertical slide number (default)\n//  \"h/v\": \thorizontal / vertical slide number\n//    \"c\": \tflattened slide number\n//  \"c/t\": \tflattened slide number / total slides\nReveal.configure({ slideNumber: 'c/t' });\n\n```\n\n\n### Overview mode\n\nPress \"Esc\" or \"o\" keys to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides,\nas if you were at 1,000 feet above your presentation. The overview mode comes with a few API hooks:\n\n```javascript\nReveal.addEventListener( 'overviewshown', function( event ) { /* ... */ } );\nReveal.addEventListener( 'overviewhidden', function( event ) { /* ... */ } );\n\n// Toggle the overview mode programmatically\nReveal.toggleOverview();\n```\n\n### Fullscreen mode\nJust press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode.\n\n\n### Embedded media\nEmbedded HTML5 `<video>`/`<audio>` and YouTube iframes are automatically paused when you navigate away from a slide. This can be disabled by decorating your element with a `data-ignore` attribute.\n\nAdd `data-autoplay` to your media element if you want it to automatically start playing when the slide is shown:\n\n```html\n<video data-autoplay src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n```\n\nAdditionally the framework automatically pushes two [post messages](https://developer.mozilla.org/en-US/docs/Web/API/Window.postMessage) to all iframes, ```slide:start``` when the slide containing the iframe is made visible and ```slide:stop``` when it is hidden.\n\n\n### Stretching elements\nSometimes it's desirable to have an element, like an image or video, stretch to consume as much space as possible within a given slide. This can be done by adding the ```.stretch``` class to an element as seen below:\n\n```html\n<section>\n\t<h2>This video will use up the remaining space on the slide</h2>\n    <video class=\"stretch\" src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n</section>\n```\n\nLimitations:\n- Only direct descendants of a slide section can be stretched\n- Only one descendant per slide section can be stretched\n\n\n### postMessage API\nThe framework has a built-in postMessage API that can be used when communicating with a presentation inside of another window. Here's an example showing how you'd make a reveal.js instance in the given window proceed to slide 2:\n\n```javascript\n<window>.postMessage( JSON.stringify({ method: 'slide', args: [ 2 ] }), '*' );\n```\n\nWhen reveal.js runs inside of an iframe it can optionally bubble all of its events to the parent. Bubbled events are stringified JSON with three fields: namespace, eventName and state. Here's how you subscribe to them from the parent window:\n\n```javascript\nwindow.addEventListener( 'message', function( event ) {\n\tvar data = JSON.parse( event.data );\n\tif( data.namespace === 'reveal' && data.eventName ==='slidechanged' ) {\n\t\t// Slide changed, see data.state for slide number\n\t}\n} );\n```\n\nThis cross-window messaging can be toggled on or off using configuration flags.\n\n```javascript\nReveal.initialize({\n\t...,\n\n\t// Exposes the reveal.js API through window.postMessage\n\tpostMessage: true,\n\n\t// Dispatches all reveal.js events to the parent window through postMessage\n\tpostMessageEvents: false\n});\n```\n\n\n## PDF Export\n\nPresentations can be exported to PDF via a special print stylesheet. This feature requires that you use [Google Chrome](http://google.com/chrome) or [Chromium](https://www.chromium.org/Home).\nHere's an example of an exported presentation that's been uploaded to SlideShare: http://www.slideshare.net/hakimel/revealjs-300.\n\n1. Open your presentation with `print-pdf` included anywhere in the query string. This triggers the default index HTML to load the PDF print stylesheet ([css/print/pdf.css](https://github.com/hakimel/reveal.js/blob/master/css/print/pdf.css)). You can test this with [lab.hakim.se/reveal-js?print-pdf](http://lab.hakim.se/reveal-js?print-pdf).\n2. Open the in-browser print dialog (CMD+P).\n3. Change the **Destination** setting to **Save as PDF**.\n4. Change the **Layout** to **Landscape**.\n5. Change the **Margins** to **None**.\n6. Click **Save**.\n\n![Chrome Print Settings](https://s3.amazonaws.com/hakim-static/reveal-js/pdf-print-settings.png)\n\nAlternatively you can use the [decktape](https://github.com/astefanutti/decktape) project.\n\n## Theming\n\nThe framework comes with a few different themes included:\n\n- black: Black background, white text, blue links (default theme)\n- white: White background, black text, blue links\n- league: Gray background, white text, blue links (default theme for reveal.js < 3.0.0)\n- beige: Beige background, dark text, brown links\n- sky: Blue background, thin dark text, blue links\n- night: Black background, thick white text, orange links\n- serif: Cappuccino background, gray text, brown links\n- simple: White background, black text, blue links\n- solarized: Cream-colored background, dark green text, blue links\n\nEach theme is available as a separate stylesheet. To change theme you will need to replace **black** below with your desired theme name in index.html:\n\n```html\n<link rel=\"stylesheet\" href=\"css/theme/black.css\" id=\"theme\">\n```\n\nIf you want to add a theme of your own see the instructions here: [/css/theme/README.md](https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md).\n\n\n## Speaker Notes\n\nreveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Press the 's' key on your keyboard to open the notes window.\n\nNotes are defined by appending an ```<aside>``` element to a slide as seen below. You can add the ```data-markdown``` attribute to the aside element if you prefer writing notes using Markdown.\n\nAlternatively you can add your notes in a `data-notes` attribute on the slide. Like `<section data-notes=\"Something important\"></section>`.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section>\n\t<h2>Some Slide</h2>\n\n\t<aside class=\"notes\">\n\t\tOh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).\n\t</aside>\n</section>\n```\n\nNotes are only visible to you in the speaker view. If you wish to share your notes with the audience initialize reveal.js with the `showNotes` config value set to `true`.\n\nIf you're using the external Markdown plugin, you can add notes with the help of a special delimiter:\n\n```html\n<section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\" data-separator-notes=\"^Note:\"></section>\n\n# Title\n## Sub-title\n\nHere is some content...\n\nNote:\nThis will only display in the notes window.\n```\n\n## Server Side Speaker Notes\n\nIn some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the required scripts by adding the following dependencies:\n\n```javascript\nReveal.initialize({\n\t...\n\n\tdependencies: [\n\t\t{ src: 'socket.io/socket.io.js', async: true },\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\t]\n});\n```\n\nThen:\n\n1. Install [Node.js](http://nodejs.org/)\n2. Run ```npm install```\n3. Run ```node plugin/notes-server```\n\n\n## Multiplexing\n\nThe multiplex plugin allows your audience to view the slides of the presentation you are controlling on their own phone, tablet or laptop. As the master presentation navigates the slides, all client presentations will update in real time. See a demo at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nThe multiplex plugin needs the following 3 things to operate:\n\n1. Master presentation that has control\n2. Client presentations that follow the master\n3. Socket.io server to broadcast events from the master to the clients\n\nMore details:\n\n#### Master presentation\nServed from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation: \n\n1. ```npm install node-static```\n2. ```static```\n\nIf you want to use the speaker notes plugin with your master presentation then make sure you have the speaker notes plugin configured correctly along with the configuration shown below, then execute ```node plugin/notes-server``` in the directory of your master presentation. The configuration below will cause it to connect to the socket.io server as a master, as well as launch your speaker-notes/static-file server.\n\nYou can then access your master presentation at ```http://localhost:1947```\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\n\t\t// and if you want speaker notes\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Client presentation\nServed from a publicly accessible static file server. Examples include: GitHub Pages, Amazon S3, Dreamhost, Akamai, etc. The more reliable, the better. Your audience can then access the client presentation via ```http://example.com/path/to/presentation/client/index.html```, with the configuration below causing them to connect to the socket.io server as clients.\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Socket.io server\nServer that receives the slideChanged events from the master presentation and broadcasts them out to the connected client presentations. This needs to be publicly accessible. You can run your own socket.io server with the commands:\n\n1. ```npm install```\n2. ```node plugin/multiplex```\n\nOr you use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nYou'll need to generate a unique secret and token pair for your master and client presentations. To do so, visit ```http://example.com/token```, where ```http://example.com``` is the location of your socket.io server. Or if you're going to use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), visit [http://revealjs-51546.onmodulus.net/token](http://revealjs-51546.onmodulus.net/token).\n\nYou are very welcome to point your presentations at the Socket.io server running at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), but availability and stability are not guaranteed. For anything mission critical I recommend you run your own server. It is simple to deploy to nodejitsu, heroku, your own environment, etc.\n\n##### socket.io server as file static server\n\nThe socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match.)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n```\n\nIt can also play the role of static file server for your master presentation and client presentations at the same time (as long as you don't want to use speaker notes). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match. Navigate through the slides on the second, and the first will update to match.) This is probably not desirable, because you don't want your audience to mess with your slides while you're presenting. ;)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n## MathJax\n\nIf you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies).\n\nThe plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value. \n\nBelow is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all.\n\n```js\nReveal.initialize({\n\n\t// other options ...\n\n\tmath: {\n\t\tmathjax: 'https://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\tconfig: 'TeX-AMS_HTML-full'  // See http://docs.mathjax.org/en/latest/config-files.html\n\t},\n\t\n\tdependencies: [\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n\n});\n```\n\nRead MathJax's documentation if you need [HTTPS delivery](http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn) or serving of [specific versions](http://docs.mathjax.org/en/latest/configuration.html#loading-mathjax-from-the-cdn) for stability.\n\n\n## Installation\n\nThe **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features and plugins such as speaker notes as well as the development tasks needed to make changes to the source.\n\n### Basic setup\n\nThe core of reveal.js is very easy to install. You'll simply need to download a copy of this repository and open the index.html file directly in your browser.\n\n1. Download the latest version of reveal.js from <https://github.com/hakimel/reveal.js/releases>\n\n2. Unzip and replace the example contents in index.html with your own\n\n3. Open index.html in a browser to view it\n\n\n### Full setup\n\nSome reveal.js features, like external Markdown and speaker notes, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code.\n\n1. Install [Node.js](http://nodejs.org/)\n\n2. Install [Grunt](http://gruntjs.com/getting-started#installing-the-cli)\n\n4. Clone the reveal.js repository\n   ```sh\n   $ git clone https://github.com/hakimel/reveal.js.git\n   ```\n\n5. Navigate to the reveal.js folder\n   ```sh\n   $ cd reveal.js\n   ```\n\n6. Install dependencies\n   ```sh\n   $ npm install\n   ```\n\n7. Serve the presentation and monitor source files for changes\n   ```sh\n   $ grunt serve\n   ```\n\n8. Open <http://localhost:8000> to view your presentation\n\n   You can change the port by using `grunt serve --port 8001`.\n\n\n### Folder Structure\n- **css/** Core styles without which the project does not function\n- **js/** Like above but for JavaScript\n- **plugin/** Components that have been developed as extensions to reveal.js\n- **lib/** All other third party assets (JavaScript, CSS, fonts)\n\n\n## License\n\nMIT licensed\n\nCopyright (C) 2015 Hakim El Hattab, http://hakim.se\n"
  },
  {
    "path": "doc/cppnow-2016/bower.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"main\": [\n    \"js/reveal.js\",\n    \"css/reveal.css\"\n  ],\n  \"homepage\": \"http://lab.hakim.se/reveal-js/\",\n  \"license\": \"MIT\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"authors\": [\n    \"Hakim El Hattab <hakim.elhattab@gmail.com>\"\n  ],\n  \"dependencies\": {\n    \"headjs\": \"~1.0.3\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"ignore\": [\n    \"**/.*\",\n    \"node_modules\",\n    \"bower_components\",\n    \"test\"\n  ]\n}"
  },
  {
    "path": "doc/cppnow-2016/css/print/paper.css",
    "content": "/* Default Print Stylesheet Template\n   by Rob Glazebrook of CSSnewbie.com\n   Last Updated: June 4, 2008\n\n   Feel free (nay, compelled) to edit, append, and\n   manipulate this file as you see fit. */\n\n\n@media print {\n\n\t/* SECTION 1: Set default width, margin, float, and\n\t   background. This prevents elements from extending\n\t   beyond the edge of the printed page, and prevents\n\t   unnecessary background images from printing */\n\thtml {\n\t\tbackground: #fff;\n\t\twidth: auto;\n\t\theight: auto;\n\t\toverflow: visible;\n\t}\n\tbody {\n\t\tbackground: #fff;\n\t\tfont-size: 20pt;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tborder: 0;\n\t\tmargin: 0 5%;\n\t\tpadding: 0;\n\t\toverflow: visible;\n\t\tfloat: none !important;\n\t}\n\n\t/* SECTION 2: Remove any elements not needed in print.\n\t   This would include navigation, ads, sidebars, etc. */\n\t.nestedarrow,\n\t.controls,\n\t.fork-reveal,\n\t.share-reveal,\n\t.state-background,\n\t.reveal .progress,\n\t.reveal .backgrounds {\n\t\tdisplay: none !important;\n\t}\n\n\t/* SECTION 3: Set body font face, size, and color.\n\t   Consider using a serif font for readability. */\n\tbody, p, td, li, div {\n\t\tfont-size: 20pt!important;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\tcolor: #000;\n\t}\n\n\t/* SECTION 4: Set heading font face, sizes, and color.\n\t   Differentiate your headings from your body text.\n\t   Perhaps use a large sans-serif for distinction. */\n\th1,h2,h3,h4,h5,h6 {\n\t\tcolor: #000!important;\n\t\theight: auto;\n\t\tline-height: normal;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\ttext-shadow: 0 0 0 #000 !important;\n\t\ttext-align: left;\n\t\tletter-spacing: normal;\n\t}\n\t/* Need to reduce the size of the fonts for printing */\n\th1 { font-size: 28pt !important;  }\n\th2 { font-size: 24pt !important; }\n\th3 { font-size: 22pt !important; }\n\th4 { font-size: 22pt !important; font-variant: small-caps; }\n\th5 { font-size: 21pt !important; }\n\th6 { font-size: 20pt !important; font-style: italic; }\n\n\t/* SECTION 5: Make hyperlinks more usable.\n\t   Ensure links are underlined, and consider appending\n\t   the URL to the end of the link for usability. */\n\ta:link,\n\ta:visited {\n\t\tcolor: #000 !important;\n\t\tfont-weight: bold;\n\t\ttext-decoration: underline;\n\t}\n\t/*\n\t.reveal a:link:after,\n\t.reveal a:visited:after {\n\t\tcontent: \" (\" attr(href) \") \";\n\t\tcolor: #222 !important;\n\t\tfont-size: 90%;\n\t}\n\t*/\n\n\n\t/* SECTION 6: more reveal.js specific additions by @skypanther */\n\tul, ol, div, p {\n\t\tvisibility: visible;\n\t\tposition: static;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tdisplay: block;\n\t\toverflow: visible;\n\t\tmargin: 0;\n\t\ttext-align: left !important;\n\t}\n\t.reveal pre,\n\t.reveal table {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n\t.reveal pre code {\n\t\tpadding: 20px;\n\t\tborder: 1px solid #ddd;\n\t}\n\t.reveal blockquote {\n\t\tmargin: 20px 0;\n\t}\n\t.reveal .slides {\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 0 !important;\n\t\tzoom: 1 !important;\n\n\t\toverflow: visible !important;\n\t\tdisplay: block !important;\n\n\t\ttext-align: left !important;\n\t\t-webkit-perspective: none;\n\t\t   -moz-perspective: none;\n\t\t    -ms-perspective: none;\n\t\t        perspective: none;\n\n\t\t-webkit-perspective-origin: 50% 50%;\n\t\t   -moz-perspective-origin: 50% 50%;\n\t\t    -ms-perspective-origin: 50% 50%;\n\t\t        perspective-origin: 50% 50%;\n\t}\n\t.reveal .slides section {\n\t\tvisibility: visible !important;\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\t\tdisplay: block !important;\n\t\toverflow: visible !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 60px 20px !important;\n\t\tz-index: auto !important;\n\n\t\topacity: 1 !important;\n\n\t\tpage-break-after: always !important;\n\n\t\t-webkit-transform-style: flat !important;\n\t\t   -moz-transform-style: flat !important;\n\t\t    -ms-transform-style: flat !important;\n\t\t        transform-style: flat !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\n\t\t-webkit-transition: none !important;\n\t\t   -moz-transition: none !important;\n\t\t    -ms-transition: none !important;\n\t\t        transition: none !important;\n\t}\n\t.reveal .slides section.stack {\n\t\tpadding: 0 !important;\n\t}\n\t.reveal section:last-of-type {\n\t\tpage-break-after: avoid !important;\n\t}\n\t.reveal section .fragment {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\t}\n\t.reveal section img {\n\t\tdisplay: block;\n\t\tmargin: 15px 0px;\n\t\tbackground: rgba(255,255,255,1);\n\t\tborder: 1px solid #666;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal section small {\n\t\tfont-size: 0.8em;\n\t}\n\n}"
  },
  {
    "path": "doc/cppnow-2016/css/print/pdf.css",
    "content": "/**\n * This stylesheet is used to print reveal.js\n * presentations to PDF.\n *\n * https://github.com/hakimel/reveal.js#pdf-export\n */\n\n* {\n\t-webkit-print-color-adjust: exact;\n}\n\nbody {\n\tmargin: 0 auto !important;\n\tborder: 0;\n\tpadding: 0;\n\tfloat: none !important;\n\toverflow: visible;\n}\n\nhtml {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: visible;\n}\n\n/* Remove any elements not needed in print. */\n.nestedarrow,\n.reveal .controls,\n.reveal .progress,\n.reveal .playback,\n.reveal.overview,\n.fork-reveal,\n.share-reveal,\n.state-background {\n\tdisplay: none !important;\n}\n\nh1, h2, h3, h4, h5, h6 {\n\ttext-shadow: 0 0 0 #000 !important;\n}\n\n.reveal pre code {\n\toverflow: hidden !important;\n\tfont-family: Courier, 'Courier New', monospace !important;\n}\n\nul, ol, div, p {\n\tvisibility: visible;\n\tposition: static;\n\twidth: auto;\n\theight: auto;\n\tdisplay: block;\n\toverflow: visible;\n\tmargin: auto;\n}\n.reveal {\n\twidth: auto !important;\n\theight: auto !important;\n\toverflow: hidden !important;\n}\n.reveal .slides {\n\tposition: static;\n\twidth: 100%;\n\theight: auto;\n\n\tleft: auto;\n\ttop: auto;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\n\toverflow: visible;\n\tdisplay: block;\n\n\t-webkit-perspective: none;\n\t   -moz-perspective: none;\n\t    -ms-perspective: none;\n\t        perspective: none;\n\n\t-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */\n\t   -moz-perspective-origin: 50% 50%;\n\t    -ms-perspective-origin: 50% 50%;\n\t        perspective-origin: 50% 50%;\n}\n\n.reveal .slides section {\n\tpage-break-after: always !important;\n\n\tvisibility: visible !important;\n\tposition: relative !important;\n\tdisplay: block !important;\n\tposition: relative !important;\n\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tbox-sizing: border-box !important;\n\tmin-height: 1px;\n\n\topacity: 1 !important;\n\n\t-webkit-transform-style: flat !important;\n\t   -moz-transform-style: flat !important;\n\t    -ms-transform-style: flat !important;\n\t        transform-style: flat !important;\n\n\t-webkit-transform: none !important;\n\t   -moz-transform: none !important;\n\t    -ms-transform: none !important;\n\t        transform: none !important;\n}\n\n.reveal section.stack {\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tpage-break-after: avoid !important;\n\theight: auto !important;\n\tmin-height: auto !important;\n}\n\n.reveal img {\n\tbox-shadow: none;\n}\n\n.reveal .roll {\n\toverflow: visible;\n\tline-height: 1em;\n}\n\n/* Slide backgrounds are placed inside of their slide when exporting to PDF */\n.reveal section .slide-background {\n\tdisplay: block !important;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\tz-index: -1;\n}\n\n/* All elements should be above the slide-background */\n.reveal section>* {\n\tposition: relative;\n\tz-index: 1;\n}\n\n/* Display slide speaker notes when 'showNotes' is enabled */\n.reveal .speaker-notes-pdf {\n\tdisplay: block;\n\twidth: 100%;\n\tmax-height: none;\n\tleft: auto;\n\ttop: auto;\n\tz-index: 100;\n}\n\n/* Display slide numbers when 'slideNumber' is enabled */\n.reveal .slide-number-pdf {\n\tdisplay: block;\n\tposition: absolute;\n\tfont-size: 14px;\n}\n\n"
  },
  {
    "path": "doc/cppnow-2016/css/reveal.css",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n/*********************************************\n * RESET STYLES\n *********************************************/\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n  margin: 0;\n  padding: 0;\n  border: 0;\n  font-size: 100%;\n  font: inherit;\n  vertical-align: baseline; }\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n  display: block; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n  overflow: hidden; }\n\nbody {\n  position: relative;\n  line-height: 1;\n  background-color: #fff;\n  color: #000; }\n\nhtml:-webkit-full-screen-ancestor {\n  background-color: inherit; }\n\nhtml:-moz-full-screen-ancestor {\n  background-color: inherit; }\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n.reveal .slides section .fragment {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease; }\n  .reveal .slides section .fragment.visible {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.grow {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.grow.visible {\n    -webkit-transform: scale(1.3);\n        -ms-transform: scale(1.3);\n            transform: scale(1.3); }\n\n.reveal .slides section .fragment.shrink {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.shrink.visible {\n    -webkit-transform: scale(0.7);\n        -ms-transform: scale(0.7);\n            transform: scale(0.7); }\n\n.reveal .slides section .fragment.zoom-in {\n  -webkit-transform: scale(0.1);\n      -ms-transform: scale(0.1);\n          transform: scale(0.1); }\n  .reveal .slides section .fragment.zoom-in.visible {\n    -webkit-transform: none;\n        -ms-transform: none;\n            transform: none; }\n\n.reveal .slides section .fragment.fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.fade-out.visible {\n    opacity: 0;\n    visibility: hidden; }\n\n.reveal .slides section .fragment.semi-fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.semi-fade-out.visible {\n    opacity: 0.5;\n    visibility: visible; }\n\n.reveal .slides section .fragment.strike {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.strike.visible {\n    text-decoration: line-through; }\n\n.reveal .slides section .fragment.current-visible {\n  opacity: 0;\n  visibility: hidden; }\n  .reveal .slides section .fragment.current-visible.current-fragment {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red.visible {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-green.visible {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-blue.visible {\n  color: #1b91ff; }\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n  color: #1b91ff; }\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic; }\n\n.reveal iframe {\n  z-index: 1; }\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n  position: relative; }\n\n.reveal .stretch {\n  max-width: none;\n  max-height: none; }\n\n.reveal pre.stretch code {\n  height: 100%;\n  max-height: 100%;\n  box-sizing: border-box; }\n\n/*********************************************\n * CONTROLS\n *********************************************/\n.reveal .controls {\n  display: none;\n  position: fixed;\n  width: 110px;\n  height: 110px;\n  z-index: 30;\n  right: 10px;\n  bottom: 10px;\n  -webkit-user-select: none; }\n\n.reveal .controls button {\n  padding: 0;\n  position: absolute;\n  opacity: 0.05;\n  width: 0;\n  height: 0;\n  background-color: transparent;\n  border: 12px solid transparent;\n  -webkit-transform: scale(0.9999);\n      -ms-transform: scale(0.9999);\n          transform: scale(0.9999);\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease;\n  -webkit-appearance: none;\n  -webkit-tap-highlight-color: transparent; }\n\n.reveal .controls .enabled {\n  opacity: 0.7;\n  cursor: pointer; }\n\n.reveal .controls .enabled:active {\n  margin-top: 1px; }\n\n.reveal .controls .navigate-left {\n  top: 42px;\n  border-right-width: 22px;\n  border-right-color: #000; }\n\n.reveal .controls .navigate-left.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-right {\n  left: 74px;\n  top: 42px;\n  border-left-width: 22px;\n  border-left-color: #000; }\n\n.reveal .controls .navigate-right.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-up {\n  left: 42px;\n  border-bottom-width: 22px;\n  border-bottom-color: #000; }\n\n.reveal .controls .navigate-up.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-down {\n  left: 42px;\n  top: 74px;\n  border-top-width: 22px;\n  border-top-color: #000; }\n\n.reveal .controls .navigate-down.fragmented {\n  opacity: 0.3; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  position: fixed;\n  display: none;\n  height: 3px;\n  width: 100%;\n  bottom: 0;\n  left: 0;\n  z-index: 10;\n  background-color: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress:after {\n  content: '';\n  display: block;\n  position: absolute;\n  height: 20px;\n  width: 100%;\n  top: -20px; }\n\n.reveal .progress span {\n  display: block;\n  height: 100%;\n  width: 0px;\n  background-color: #000;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n.reveal .slide-number {\n  position: fixed;\n  display: block;\n  right: 8px;\n  bottom: 8px;\n  z-index: 31;\n  font-family: Helvetica, sans-serif;\n  font-size: 12px;\n  line-height: 1;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.4);\n  padding: 5px; }\n\n.reveal .slide-number-delimiter {\n  margin: 0 3px; }\n\n/*********************************************\n * SLIDES\n *********************************************/\n.reveal {\n  position: relative;\n  width: 100%;\n  height: 100%;\n  overflow: hidden;\n  -ms-touch-action: none;\n      touch-action: none; }\n\n.reveal .slides {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  overflow: visible;\n  z-index: 1;\n  text-align: center;\n  -webkit-perspective: 600px;\n          perspective: 600px;\n  -webkit-perspective-origin: 50% 40%;\n          perspective-origin: 50% 40%; }\n\n.reveal .slides > section {\n  -ms-perspective: 600px; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  display: none;\n  position: absolute;\n  width: 100%;\n  padding: 20px 0px;\n  z-index: 10;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: -ms-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] .slides section {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal .slides section[data-transition-speed=\"slow\"] {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n.reveal .slides > section.stack {\n  padding-top: 0;\n  padding-bottom: 0; }\n\n.reveal .slides > section.present,\n.reveal .slides > section > section.present {\n  display: block;\n  z-index: 11;\n  opacity: 1; }\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n  min-height: 0 !important; }\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides > section.future,\n.reveal .slides > section > section.future,\n.reveal .slides > section.past,\n.reveal .slides > section > section.past {\n  pointer-events: none; }\n\n.reveal.overview .slides > section,\n.reveal.overview .slides > section > section {\n  pointer-events: auto; }\n\n.reveal .slides > section.past,\n.reveal .slides > section.future,\n.reveal .slides > section > section.past,\n.reveal .slides > section > section.future {\n  opacity: 0; }\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n.reveal.slide section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=slide].past,\n.reveal .slides > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=slide].future,\n.reveal .slides > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=slide].past,\n.reveal .slides > section > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=slide].future,\n.reveal .slides > section > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n.reveal.linear section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=linear].past,\n.reveal .slides > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=linear].future,\n.reveal .slides > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=linear].past,\n.reveal .slides > section > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=linear].future,\n.reveal .slides > section > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n.reveal .slides > section[data-transition=default].past,\n.reveal .slides > section[data-transition~=default-out].past,\n.reveal.default .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=default].future,\n.reveal .slides > section[data-transition~=default-in].future,\n.reveal.default .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=default].past,\n.reveal .slides > section > section[data-transition~=default-out].past,\n.reveal.default .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=default].future,\n.reveal .slides > section > section[data-transition~=default-in].future,\n.reveal.default .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n.reveal .slides > section[data-transition=convex].past,\n.reveal .slides > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=convex].future,\n.reveal .slides > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=convex].past,\n.reveal .slides > section > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=convex].future,\n.reveal .slides > section > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n.reveal .slides > section[data-transition=concave].past,\n.reveal .slides > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=concave].future,\n.reveal .slides > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=concave].past,\n.reveal .slides > section > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n          transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); }\n\n.reveal .slides > section > section[data-transition=concave].future,\n.reveal .slides > section > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n          transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); }\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=zoom],\n.reveal.zoom .slides section:not([data-transition]) {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal .slides > section[data-transition=zoom].past,\n.reveal .slides > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section:not([data-transition]).past {\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal .slides > section[data-transition=zoom].future,\n.reveal .slides > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section:not([data-transition]).future {\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .slides > section > section[data-transition=zoom].past,\n.reveal .slides > section > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=zoom].future,\n.reveal .slides > section > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n.reveal.cube .slides {\n  -webkit-perspective: 1300px;\n          perspective: 1300px; }\n\n.reveal.cube .slides section {\n  padding: 30px;\n  min-height: 700px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  box-sizing: border-box; }\n\n.reveal.center.cube .slides section {\n  min-height: 0; }\n\n.reveal.cube .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  border-radius: 4px;\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.cube .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg);\n          transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.cube .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.cube .slides > section.past {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg); }\n\n.reveal.cube .slides > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);\n          transform: translate3d(100%, 0, 0) rotateY(90deg); }\n\n.reveal.cube .slides > section > section.past {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);\n          transform: translate3d(0, -100%, 0) rotateX(90deg); }\n\n.reveal.cube .slides > section > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg); }\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n.reveal.page .slides {\n  -webkit-perspective-origin: 0% 50%;\n          perspective-origin: 0% 50%;\n  -webkit-perspective: 3000px;\n          perspective: 3000px; }\n\n.reveal.page .slides section {\n  padding: 30px;\n  min-height: 700px;\n  box-sizing: border-box; }\n\n.reveal.page .slides section.past {\n  z-index: 12; }\n\n.reveal.page .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.page .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.page .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.page .slides > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);\n          transform: translate3d(-40%, 0, 0) rotateY(-80deg); }\n\n.reveal.page .slides > section.future {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n.reveal.page .slides > section > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);\n          transform: translate3d(0, -40%, 0) rotateX(80deg); }\n\n.reveal.page .slides > section > section.future {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides > section > section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: opacity 0.5s;\n          transition: opacity 0.5s; }\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides > section > section {\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=none],\n.reveal.none .slides section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n.reveal .pause-overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  background: black;\n  visibility: hidden;\n  opacity: 0;\n  z-index: 100;\n  -webkit-transition: all 1s ease;\n          transition: all 1s ease; }\n\n.reveal.paused .pause-overlay {\n  visibility: visible;\n  opacity: 1; }\n\n/*********************************************\n * FALLBACK\n *********************************************/\n.no-transforms {\n  overflow-y: auto; }\n\n.no-transforms .reveal .slides {\n  position: relative;\n  width: 80%;\n  height: auto !important;\n  top: 0;\n  left: 50%;\n  margin: 0;\n  text-align: center; }\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n  display: none !important; }\n\n.no-transforms .reveal .slides section {\n  display: block !important;\n  opacity: 1 !important;\n  position: relative !important;\n  height: auto;\n  min-height: 0;\n  top: 0;\n  left: -50%;\n  margin: 70px 0;\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none; }\n\n.no-transforms .reveal .slides section section {\n  left: 0; }\n\n.reveal .no-transition,\n.reveal .no-transition * {\n  -webkit-transition: none !important;\n          transition: none !important; }\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n.reveal .backgrounds {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  -webkit-perspective: 600px;\n          perspective: 600px; }\n\n.reveal .slide-background {\n  display: none;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  opacity: 0;\n  visibility: hidden;\n  background-color: transparent;\n  background-position: 50% 50%;\n  background-repeat: no-repeat;\n  background-size: cover;\n  -webkit-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal .slide-background.stack {\n  display: block; }\n\n.reveal .slide-background.present {\n  opacity: 1;\n  visibility: visible; }\n\n.print-pdf .reveal .slide-background {\n  opacity: 1 !important;\n  visibility: visible !important; }\n\n/* Video backgrounds */\n.reveal .slide-background video {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  max-width: none;\n  max-height: none;\n  top: 0;\n  left: 0; }\n\n/* Immediate transition style */\n.reveal[data-background-transition=none] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=none] {\n  -webkit-transition: none;\n          transition: none; }\n\n/* Slide */\n.reveal[data-background-transition=slide] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=slide] {\n  opacity: 1;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(-100%, 0);\n      -ms-transform: translate(-100%, 0);\n          transform: translate(-100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(100%, 0);\n      -ms-transform: translate(100%, 0);\n          transform: translate(100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(0, -100%);\n      -ms-transform: translate(0, -100%);\n          transform: translate(0, -100%); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(0, 100%);\n      -ms-transform: translate(0, 100%);\n          transform: translate(0, 100%); }\n\n/* Convex */\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); }\n\n/* Concave */\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); }\n\n/* Zoom */\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=zoom] {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n.reveal.overview {\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%;\n  -webkit-perspective: 700px;\n          perspective: 700px; }\n  .reveal.overview .slides section {\n    height: 700px;\n    opacity: 1 !important;\n    overflow: hidden;\n    visibility: visible !important;\n    cursor: pointer;\n    box-sizing: border-box; }\n  .reveal.overview .slides section:hover,\n  .reveal.overview .slides section.present {\n    outline: 10px solid rgba(150, 150, 150, 0.4);\n    outline-offset: 10px; }\n  .reveal.overview .slides section .fragment {\n    opacity: 1;\n    -webkit-transition: none;\n            transition: none; }\n  .reveal.overview .slides section:after,\n  .reveal.overview .slides section:before {\n    display: none !important; }\n  .reveal.overview .slides > section.stack {\n    padding: 0;\n    top: 0 !important;\n    background: none;\n    outline: none;\n    overflow: visible; }\n  .reveal.overview .backgrounds {\n    -webkit-perspective: inherit;\n            perspective: inherit; }\n  .reveal.overview .backgrounds .slide-background {\n    opacity: 1;\n    visibility: visible;\n    outline: 10px solid rgba(150, 150, 150, 0.1);\n    outline-offset: 10px; }\n\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview-animated .slides {\n  -webkit-transition: -webkit-transform 0.4s ease;\n          transition: transform 0.4s ease; }\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n  direction: rtl;\n  font-family: sans-serif; }\n\n.reveal.rtl pre,\n.reveal.rtl code {\n  direction: ltr; }\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n  text-align: right; }\n\n.reveal.rtl .progress span {\n  float: right; }\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n.reveal.has-parallax-background .backgrounds {\n  -webkit-transition: all 0.8s ease;\n          transition: all 0.8s ease; }\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n.reveal .overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1000;\n  background: rgba(0, 0, 0, 0.9);\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.visible {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay .spinner {\n  position: absolute;\n  display: block;\n  top: 50%;\n  left: 50%;\n  width: 32px;\n  height: 32px;\n  margin: -16px 0 0 -16px;\n  z-index: 10;\n  background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n  visibility: visible;\n  opacity: 0.6;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay header {\n  position: absolute;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 40px;\n  z-index: 2;\n  border-bottom: 1px solid #222; }\n\n.reveal .overlay header a {\n  display: inline-block;\n  width: 40px;\n  height: 40px;\n  padding: 0 10px;\n  float: right;\n  opacity: 0.6;\n  box-sizing: border-box; }\n\n.reveal .overlay header a:hover {\n  opacity: 1; }\n\n.reveal .overlay header a .icon {\n  display: inline-block;\n  width: 20px;\n  height: 20px;\n  background-position: 50% 50%;\n  background-size: 100%;\n  background-repeat: no-repeat; }\n\n.reveal .overlay header a.close .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); }\n\n.reveal .overlay header a.external .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); }\n\n.reveal .overlay .viewport {\n  position: absolute;\n  top: 40px;\n  right: 0;\n  bottom: 0;\n  left: 0; }\n\n.reveal .overlay.overlay-preview .viewport iframe {\n  width: 100%;\n  height: 100%;\n  max-width: 100%;\n  max-height: 100%;\n  border: 0;\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.overlay-preview.loaded .viewport iframe {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay.overlay-preview.loaded .spinner {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .overlay.overlay-help .viewport {\n  overflow: auto;\n  color: #fff; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner {\n  width: 600px;\n  margin: 0 auto;\n  padding: 60px;\n  text-align: center;\n  letter-spacing: normal; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n  font-size: 20px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table {\n  border: 1px solid #fff;\n  border-collapse: collapse;\n  font-size: 14px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n  width: 200px;\n  padding: 10px;\n  border: 1px solid #fff;\n  vertical-align: middle; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n  padding-top: 20px;\n  padding-bottom: 20px; }\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n.reveal .playback {\n  position: fixed;\n  left: 15px;\n  bottom: 20px;\n  z-index: 30;\n  cursor: pointer;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease; }\n\n.reveal.overview .playback {\n  opacity: 0;\n  visibility: hidden; }\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n.reveal .roll {\n  display: inline-block;\n  line-height: 1.2;\n  overflow: hidden;\n  vertical-align: top;\n  -webkit-perspective: 400px;\n          perspective: 400px;\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%; }\n\n.reveal .roll:hover {\n  background: none;\n  text-shadow: none; }\n\n.reveal .roll span {\n  display: block;\n  position: relative;\n  padding: 0 2px;\n  pointer-events: none;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .roll:hover span {\n  background: rgba(0, 0, 0, 0.5);\n  -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg);\n          transform: translate3d(0px, 0px, -45px) rotateX(90deg); }\n\n.reveal .roll span:after {\n  content: attr(data-title);\n  display: block;\n  position: absolute;\n  left: 0;\n  top: 0;\n  padding: 0 2px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg);\n          transform: translate3d(0px, 110%, 0px) rotateX(-90deg); }\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n.reveal aside.notes {\n  display: none; }\n\n.reveal .speaker-notes {\n  display: none;\n  position: absolute;\n  width: 70%;\n  max-height: 15%;\n  left: 15%;\n  bottom: 26px;\n  padding: 10px;\n  z-index: 1;\n  font-size: 18px;\n  line-height: 1.4;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.5);\n  overflow: auto;\n  box-sizing: border-box;\n  text-align: left;\n  font-family: Helvetica, sans-serif;\n  -webkit-overflow-scrolling: touch; }\n\n.reveal .speaker-notes.visible:not(:empty) {\n  display: block; }\n\n@media screen and (max-width: 1024px) {\n  .reveal .speaker-notes {\n    font-size: 14px; } }\n\n@media screen and (max-width: 600px) {\n  .reveal .speaker-notes {\n    width: 90%;\n    left: 5%; } }\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n  -webkit-backface-visibility: visible !important;\n          backface-visibility: visible !important; }\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n  opacity: 0; }\n\n.zoomed .reveal .roll span {\n  background: none; }\n\n.zoomed .reveal .roll span:after {\n  visibility: hidden; }\n"
  },
  {
    "path": "doc/cppnow-2016/css/reveal.scss",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n/*********************************************\n * RESET STYLES\n *********************************************/\n\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\tfont-size: 100%;\n\tfont: inherit;\n\tvertical-align: baseline;\n}\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n\tdisplay: block;\n}\n\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nhtml,\nbody {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n}\n\nbody {\n\tposition: relative;\n\tline-height: 1;\n\n\tbackground-color: #fff;\n\tcolor: #000;\n}\n\n// Ensures that the main background color matches the\n// theme in fullscreen mode\nhtml:-webkit-full-screen-ancestor {\n\tbackground-color: inherit;\n}\nhtml:-moz-full-screen-ancestor {\n\tbackground-color: inherit;\n}\n\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n\n.reveal .slides section .fragment {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all .2s ease;\n\n\t&.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.grow {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 1.3 );\n\t}\n}\n\n.reveal .slides section .fragment.shrink {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 0.7 );\n\t}\n}\n\n.reveal .slides section .fragment.zoom-in {\n\ttransform: scale( 0.1 );\n\n\t&.visible {\n\t\ttransform: none;\n\t}\n}\n\n.reveal .slides section .fragment.fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t}\n}\n\n.reveal .slides section .fragment.semi-fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0.5;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.strike {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttext-decoration: line-through;\n\t}\n}\n\n.reveal .slides section .fragment.current-visible {\n\topacity: 0;\n\tvisibility: hidden;\n\n\t&.current-fragment {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n\topacity: 1;\n\tvisibility: visible;\n}\n\t.reveal .slides section .fragment.highlight-red.visible {\n\t\tcolor: #ff2c2d\n\t}\n\t.reveal .slides section .fragment.highlight-green.visible {\n\t\tcolor: #17ff2e;\n\t}\n\t.reveal .slides section .fragment.highlight-blue.visible {\n\t\tcolor: #1b91ff;\n\t}\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n\tcolor: #ff2c2d\n}\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n\tcolor: #17ff2e;\n}\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n\tcolor: #1b91ff;\n}\n\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic;\n}\n\n.reveal iframe {\n\tz-index: 1;\n}\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n\tposition: relative;\n}\n\n.reveal .stretch {\n\tmax-width: none;\n\tmax-height: none;\n}\n\n.reveal pre.stretch code {\n\theight: 100%;\n\tmax-height: 100%;\n\tbox-sizing: border-box;\n}\n\n\n/*********************************************\n * CONTROLS\n *********************************************/\n\n.reveal .controls {\n\tdisplay: none;\n\tposition: fixed;\n\twidth: 110px;\n\theight: 110px;\n\tz-index: 30;\n\tright: 10px;\n\tbottom: 10px;\n\n\t-webkit-user-select: none;\n}\n\n.reveal .controls button {\n\tpadding: 0;\n\tposition: absolute;\n\topacity: 0.05;\n\twidth: 0;\n\theight: 0;\n\tbackground-color: transparent;\n\tborder: 12px solid transparent;\n\ttransform: scale(.9999);\n\ttransition: all 0.2s ease;\n\t-webkit-appearance: none;\n\t-webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );\n}\n\n.reveal .controls .enabled {\n\topacity: 0.7;\n\tcursor: pointer;\n}\n\n.reveal .controls .enabled:active {\n\tmargin-top: 1px;\n}\n\n\t.reveal .controls .navigate-left {\n\t\ttop: 42px;\n\n\t\tborder-right-width: 22px;\n\t\tborder-right-color: #000;\n\t}\n\t\t.reveal .controls .navigate-left.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-right {\n\t\tleft: 74px;\n\t\ttop: 42px;\n\n\t\tborder-left-width: 22px;\n\t\tborder-left-color: #000;\n\t}\n\t\t.reveal .controls .navigate-right.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-up {\n\t\tleft: 42px;\n\n\t\tborder-bottom-width: 22px;\n\t\tborder-bottom-color: #000;\n\t}\n\t\t.reveal .controls .navigate-up.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-down {\n\t\tleft: 42px;\n\t\ttop: 74px;\n\n\t\tborder-top-width: 22px;\n\t\tborder-top-color: #000;\n\t}\n\t\t.reveal .controls .navigate-down.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tposition: fixed;\n\tdisplay: none;\n\theight: 3px;\n\twidth: 100%;\n\tbottom: 0;\n\tleft: 0;\n\tz-index: 10;\n\n\tbackground-color: rgba( 0, 0, 0, 0.2 );\n}\n\t.reveal .progress:after {\n\t\tcontent: '';\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\theight: 20px;\n\t\twidth: 100%;\n\t\ttop: -20px;\n\t}\n\t.reveal .progress span {\n\t\tdisplay: block;\n\t\theight: 100%;\n\t\twidth: 0px;\n\n\t\tbackground-color: #000;\n\t\ttransition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n\n.reveal .slide-number {\n\tposition: fixed;\n\tdisplay: block;\n\tright: 8px;\n\tbottom: 8px;\n\tz-index: 31;\n\tfont-family: Helvetica, sans-serif;\n\tfont-size: 12px;\n\tline-height: 1;\n\tcolor: #fff;\n\tbackground-color: rgba( 0, 0, 0, 0.4 );\n\tpadding: 5px;\n}\n\n.reveal .slide-number-delimiter {\n\tmargin: 0 3px;\n}\n\n/*********************************************\n * SLIDES\n *********************************************/\n\n.reveal {\n\tposition: relative;\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n\ttouch-action: none;\n}\n\n.reveal .slides {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tmargin: auto;\n\n\toverflow: visible;\n\tz-index: 1;\n\ttext-align: center;\n\tperspective: 600px;\n\tperspective-origin: 50% 40%;\n}\n\n.reveal .slides>section {\n\t-ms-perspective: 600px;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 100%;\n\tpadding: 20px 0px;\n\n\tz-index: 10;\n\ttransform-style: preserve-3d;\n\ttransition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\ttransform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\tvisibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\topacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n}\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"] .slides section {\n\ttransition-duration: 1200ms;\n}\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n\ttransition-duration: 400ms;\n}\n.reveal .slides section[data-transition-speed=\"slow\"] {\n\ttransition-duration: 1200ms;\n}\n\n.reveal .slides>section.stack {\n\tpadding-top: 0;\n\tpadding-bottom: 0;\n}\n\n.reveal .slides>section.present,\n.reveal .slides>section>section.present {\n\tdisplay: block;\n\tz-index: 11;\n\topacity: 1;\n}\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n\tmin-height: 0 !important;\n}\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides>section.future,\n.reveal .slides>section>section.future,\n.reveal .slides>section.past,\n.reveal .slides>section>section.past {\n\tpointer-events: none;\n}\n\n.reveal.overview .slides>section,\n.reveal.overview .slides>section>section {\n\tpointer-events: auto;\n}\n\n.reveal .slides>section.past,\n.reveal .slides>section.future,\n.reveal .slides>section>section.past,\n.reveal .slides>section>section.future {\n\topacity: 0;\n}\n\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n\n@mixin transition-global($style) {\n\t.reveal .slides section[data-transition=#{$style}],\n\t.reveal.#{$style} .slides section:not([data-transition]) {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-past($style) {\n\t.reveal .slides>section[data-transition=#{$style}].past,\n\t.reveal .slides>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-future($style) {\n\t.reveal .slides>section[data-transition=#{$style}].future,\n\t.reveal .slides>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n@mixin transition-vertical-past($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].past,\n\t.reveal .slides>section>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-vertical-future($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].future,\n\t.reveal .slides>section>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n\n@each $stylename in slide, linear {\n\t.reveal.#{$stylename} section {\n\t\tbackface-visibility: hidden;\n\t}\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate(-150%, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate(150%, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate(0, -150%);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate(0, 150%);\n\t}\n}\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n\n@each $stylename in default, convex {\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n\t}\n}\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n\n@include transition-horizontal-past(concave) {\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n@include transition-horizontal-future(concave) {\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n@include transition-vertical-past(concave) {\n\ttransform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n}\n@include transition-vertical-future(concave) {\n\ttransform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n}\n\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n\n@include transition-global(zoom) {\n\ttransition-timing-function: ease;\n}\n@include transition-horizontal-past(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n@include transition-horizontal-future(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n@include transition-vertical-past(zoom) {\n\ttransform: translate(0, -150%);\n}\n@include transition-vertical-future(zoom) {\n\ttransform: translate(0, 150%);\n}\n\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n\n.reveal.cube .slides {\n\tperspective: 1300px;\n}\n\n.reveal.cube .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbackface-visibility: hidden;\n\tbox-sizing: border-box;\n}\n\t.reveal.center.cube .slides section {\n\t\tmin-height: 0;\n\t}\n\t.reveal.cube .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\tborder-radius: 4px;\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.cube .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\t\ttransform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.cube .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.cube .slides>section.past {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg);\n}\n\n.reveal.cube .slides>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg);\n}\n\n.reveal.cube .slides>section>section.past {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg);\n}\n\n.reveal.cube .slides>section>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg);\n}\n\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n\n.reveal.page .slides {\n\tperspective-origin: 0% 50%;\n\tperspective: 3000px;\n}\n\n.reveal.page .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbox-sizing: border-box;\n}\n\t.reveal.page .slides section.past {\n\t\tz-index: 12;\n\t}\n\t.reveal.page .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.page .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\n\t\t-webkit-transform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.page .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.page .slides>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(-40%, 0, 0) rotateY(-80deg);\n}\n\n.reveal.page .slides>section.future {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n.reveal.page .slides>section>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, -40%, 0) rotateX(80deg);\n}\n\n.reveal.page .slides>section>section.future {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides>section>section:not([data-transition]) {\n\ttransform: none;\n\ttransition: opacity 0.5s;\n}\n\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides>section>section {\n\ttransition: none;\n}\n\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n\n@include transition-global(none) {\n\ttransform: none;\n\ttransition: none;\n}\n\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n\n.reveal .pause-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tbackground: black;\n\tvisibility: hidden;\n\topacity: 0;\n\tz-index: 100;\n\ttransition: all 1s ease;\n}\n.reveal.paused .pause-overlay {\n\tvisibility: visible;\n\topacity: 1;\n}\n\n\n/*********************************************\n * FALLBACK\n *********************************************/\n\n.no-transforms {\n\toverflow-y: auto;\n}\n\n.no-transforms .reveal .slides {\n\tposition: relative;\n\twidth: 80%;\n\theight: auto !important;\n\ttop: 0;\n\tleft: 50%;\n\tmargin: 0;\n\ttext-align: center;\n}\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n\tdisplay: none !important;\n}\n\n.no-transforms .reveal .slides section {\n\tdisplay: block !important;\n\topacity: 1 !important;\n\tposition: relative !important;\n\theight: auto;\n\tmin-height: 0;\n\ttop: 0;\n\tleft: -50%;\n\tmargin: 70px 0;\n\ttransform: none;\n}\n\n.no-transforms .reveal .slides section section {\n\tleft: 0;\n}\n\n.reveal .no-transition,\n.reveal .no-transition * {\n\ttransition: none !important;\n}\n\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n\n.reveal .backgrounds {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tperspective: 600px;\n}\n\t.reveal .slide-background {\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\n\t\tbackground-color: rgba( 0, 0, 0, 0 );\n\t\tbackground-position: 50% 50%;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: cover;\n\n\t\ttransition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\t.reveal .slide-background.stack {\n\t\tdisplay: block;\n\t}\n\n\t.reveal .slide-background.present {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.print-pdf .reveal .slide-background {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\t}\n\n/* Video backgrounds */\n.reveal .slide-background video {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\tmax-width: none;\n\tmax-height: none;\n\ttop: 0;\n\tleft: 0;\n}\n\n/* Immediate transition style */\n.reveal[data-background-transition=none]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=none] {\n\ttransition: none;\n}\n\n/* Slide */\n.reveal[data-background-transition=slide]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=slide] {\n\topacity: 1;\n\tbackface-visibility: hidden;\n}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.past,\n\t.reveal>.backgrounds .slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(-100%, 0);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.future,\n\t.reveal>.backgrounds .slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(100%, 0);\n\t}\n\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past,\n\t.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(0, -100%);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future,\n\t.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(0, 100%);\n\t}\n\n\n/* Convex */\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n}\n\n\n/* Concave */\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n}\n\n/* Zoom */\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=zoom] {\n\ttransition-timing-function: ease;\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"]>.backgrounds .slide-background {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"]>.backgrounds .slide-background {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n\n.reveal.overview {\n\tperspective-origin: 50% 50%;\n\tperspective: 700px;\n\n\t.slides section {\n\t\theight: 700px;\n\t\topacity: 1 !important;\n\t\toverflow: hidden;\n\t\tvisibility: visible !important;\n\t\tcursor: pointer;\n\t\tbox-sizing: border-box;\n\t}\n\t.slides section:hover,\n\t.slides section.present {\n\t\toutline: 10px solid rgba(150,150,150,0.4);\n\t\toutline-offset: 10px;\n\t}\n\t.slides section .fragment {\n\t\topacity: 1;\n\t\ttransition: none;\n\t}\n\t.slides section:after,\n\t.slides section:before {\n\t\tdisplay: none !important;\n\t}\n\t.slides>section.stack {\n\t\tpadding: 0;\n\t\ttop: 0 !important;\n\t\tbackground: none;\n\t\toutline: none;\n\t\toverflow: visible;\n\t}\n\n\t.backgrounds {\n\t\tperspective: inherit;\n\t}\n\n\t.backgrounds .slide-background {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\n\t\t// This can't be applied to the slide itself in Safari\n\t\toutline: 10px solid rgba(150,150,150,0.1);\n\t\toutline-offset: 10px;\n\t}\n}\n\n// Disable transitions transitions while we're activating\n// or deactivating the overview mode.\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n\ttransition: none;\n}\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n\ttransition: none;\n}\n\n.reveal.overview-animated .slides {\n\ttransition: transform 0.4s ease;\n}\n\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n\tdirection: rtl;\n\tfont-family: sans-serif;\n}\n\n.reveal.rtl pre,\n.reveal.rtl code {\n\tdirection: ltr;\n}\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n\ttext-align: right;\n}\n\n.reveal.rtl .progress span {\n\tfloat: right\n}\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n\n.reveal.has-parallax-background .backgrounds {\n\ttransition: all 0.8s ease;\n}\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n\ttransition-duration: 400ms;\n}\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n\n.reveal .overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1000;\n\tbackground: rgba( 0, 0, 0, 0.9 );\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all 0.3s ease;\n}\n\t.reveal .overlay.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay .spinner {\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\ttop: 50%;\n\t\tleft: 50%;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tmargin: -16px 0 0 -16px;\n\t\tz-index: 10;\n\t\tbackground-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n\n\t\tvisibility: visible;\n\t\topacity: 0.6;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay header {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\twidth: 100%;\n\t\theight: 40px;\n\t\tz-index: 2;\n\t\tborder-bottom: 1px solid #222;\n\t}\n\t\t.reveal .overlay header a {\n\t\t\tdisplay: inline-block;\n\t\t\twidth: 40px;\n\t\t\theight: 40px;\n\t\t\tpadding: 0 10px;\n\t\t\tfloat: right;\n\t\t\topacity: 0.6;\n\n\t\t\tbox-sizing: border-box;\n\t\t}\n\t\t\t.reveal .overlay header a:hover {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t\t.reveal .overlay header a .icon {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: 20px;\n\t\t\t\theight: 20px;\n\n\t\t\t\tbackground-position: 50% 50%;\n\t\t\t\tbackground-size: 100%;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t}\n\t\t\t.reveal .overlay header a.close .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC);\n\t\t\t}\n\t\t\t.reveal .overlay header a.external .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==);\n\t\t\t}\n\n\t.reveal .overlay .viewport {\n\t\tposition: absolute;\n\t\ttop: 40px;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\n\t.reveal .overlay.overlay-preview .viewport iframe {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tmax-width: 100%;\n\t\tmax-height: 100%;\n\t\tborder: 0;\n\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .viewport iframe {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .spinner {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(0.2);\n\t}\n\n\t.reveal .overlay.overlay-help .viewport {\n\t\toverflow: auto;\n\t\tcolor: #fff;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner {\n\t\twidth: 600px;\n\t\tmargin: 0 auto;\n\t\tpadding: 60px;\n\t\ttext-align: center;\n\t\tletter-spacing: normal;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n\t\tfont-size: 20px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table {\n\t\tborder: 1px solid #fff;\n\t\tborder-collapse: collapse;\n\t\tfont-size: 14px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n\t\twidth: 200px;\n\t\tpadding: 10px;\n\t\tborder: 1px solid #fff;\n\t\tvertical-align: middle;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n\t\tpadding-top: 20px;\n\t\tpadding-bottom: 20px;\n\t}\n\n\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n\n.reveal .playback {\n\tposition: fixed;\n\tleft: 15px;\n\tbottom: 20px;\n\tz-index: 30;\n\tcursor: pointer;\n\ttransition: all 400ms ease;\n}\n\n.reveal.overview .playback {\n\topacity: 0;\n\tvisibility: hidden;\n}\n\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n\n.reveal .roll {\n\tdisplay: inline-block;\n\tline-height: 1.2;\n\toverflow: hidden;\n\n\tvertical-align: top;\n\tperspective: 400px;\n\tperspective-origin: 50% 50%;\n}\n\t.reveal .roll:hover {\n\t\tbackground: none;\n\t\ttext-shadow: none;\n\t}\n.reveal .roll span {\n\tdisplay: block;\n\tposition: relative;\n\tpadding: 0 2px;\n\n\tpointer-events: none;\n\ttransition: all 400ms ease;\n\ttransform-origin: 50% 0%;\n\ttransform-style: preserve-3d;\n\tbackface-visibility: hidden;\n}\n\t.reveal .roll:hover span {\n\t    background: rgba(0,0,0,0.5);\n\t    transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );\n\t}\n.reveal .roll span:after {\n\tcontent: attr(data-title);\n\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 0;\n\ttop: 0;\n\tpadding: 0 2px;\n\tbackface-visibility: hidden;\n\ttransform-origin: 50% 0%;\n\ttransform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );\n}\n\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n\n// Hide on-page notes\n.reveal aside.notes {\n\tdisplay: none;\n}\n\n// An interface element that can optionally be used to show the\n// speaker notes to all viewers, on top of the presentation\n.reveal .speaker-notes {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 70%;\n\tmax-height: 15%;\n\tleft: 15%;\n\tbottom: 26px;\n\tpadding: 10px;\n\tz-index: 1;\n\tfont-size: 18px;\n\tline-height: 1.4;\n\tcolor: #fff;\n\tbackground-color: rgba(0,0,0,0.5);\n\toverflow: auto;\n\tbox-sizing: border-box;\n\ttext-align: left;\n\tfont-family: Helvetica, sans-serif;\n\t-webkit-overflow-scrolling: touch;\n}\n\n.reveal .speaker-notes.visible:not(:empty) {\n\tdisplay: block;\n}\n\n@media screen and (max-width: 1024px) {\n\t.reveal .speaker-notes {\n\t\tfont-size: 14px;\n\t}\n}\n\n@media screen and (max-width: 600px) {\n\t.reveal .speaker-notes {\n\t\twidth: 90%;\n\t\tleft: 5%;\n\t}\n}\n\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n\tbackface-visibility: visible !important;\n}\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n\topacity: 0;\n}\n\n.zoomed .reveal .roll span {\n\tbackground: none;\n}\n\n.zoomed .reveal .roll span:after {\n\tvisibility: hidden;\n}\n\n\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/README.md",
    "content": "## Dependencies\n\nThemes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup\n\n## Creating a Theme\n\nTo create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`.\n\nEach theme file does four things in the following order:\n\n1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**\nShared utility functions.\n\n2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**\nDeclares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.\n\n3. **Override**\nThis is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.\n\n4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**\nThe template theme file which will generate final CSS output based on the currently defined variables.\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/beige.css",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #f7f2d3;\n  background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));\n  background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background-color: #f7f3de; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: rgba(79, 64, 28, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #8b743d;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #c0a86e;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #564826; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #8b743d;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #8b743d; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #8b743d; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #8b743d; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #8b743d; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #c0a86e; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #c0a86e; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #c0a86e; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #c0a86e; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #8b743d;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/black.css",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {\n  color: #222; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: black; }\n\n::selection {\n  color: #fff;\n  background: #bee4fd;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #ff6a00;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #42affa;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8dcffc;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #068de9; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #fff;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #42affa;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #42affa; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #42affa; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #42affa; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #42affa; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8dcffc; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8dcffc; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8dcffc; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8dcffc; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #42affa;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/blood.css",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: Ubuntu, \"sans-serif\";\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #a23;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: Ubuntu, \"sans-serif\";\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 2px 2px 2px #222;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #a23;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #dd5566;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #6a1520; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #a23;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #a23; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #a23; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #a23; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #a23; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #dd5566; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #dd5566; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #dd5566; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #dd5566; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #a23;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal p {\n  font-weight: 300;\n  text-shadow: 1px 1px #222; }\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  font-weight: 700; }\n\n.reveal p code {\n  background-color: #23241f;\n  display: inline-block;\n  border-radius: 7px; }\n\n.reveal small code {\n  vertical-align: baseline; }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/league.css",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #1c1e20;\n  background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));\n  background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background-color: #2b2b2b; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #FF5E99;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #13DAEC;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #71e9f4;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #0d99a5; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #13DAEC;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #13DAEC; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #13DAEC; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #13DAEC; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #13DAEC; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #71e9f4; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #71e9f4; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #71e9f4; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #71e9f4; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #13DAEC;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/moon.css",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #002b36;\n  background-color: #002b36; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #93a1a1; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee8d5;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #93a1a1;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/night.css",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #111;\n  background-color: #111; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 30px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #e7ad52;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"Montserrat\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.03em;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #e7ad52;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #f3d7ac;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #d08a1d; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #e7ad52;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #e7ad52; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #e7ad52; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #e7ad52; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #e7ad52; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #f3d7ac; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #f3d7ac; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #f3d7ac; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #f3d7ac; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #e7ad52;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/serif.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #F0F1EB;\n  background-color: #F0F1EB; }\n\n.reveal {\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: #26351C;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #383D3D;\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #51483D;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8b7c69;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #25211c; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #51483D;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #51483D; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #51483D; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #51483D; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #51483D; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8b7c69; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8b7c69; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8b7c69; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8b7c69; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #51483D;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/simple.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: rgba(0, 0, 0, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #000;\n  font-family: \"News Cycle\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #00008B;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #0000f1;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #00003f; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #00008B;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #00008B; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #00008B; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #00008B; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #00008B; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #0000f1; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #0000f1; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #0000f1; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #0000f1; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #00008B;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/sky.css",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #add9e4;\n  background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));\n  background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background-color: #f7fbfc; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: #134674;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"Quicksand\", sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.08em;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #3b759e;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #74a7cb;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #264c66; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #3b759e;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #3b759e; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #3b759e; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #3b759e; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #3b759e; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #74a7cb; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #74a7cb; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #74a7cb; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #74a7cb; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #3b759e;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/solarized.css",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fdf6e3;\n  background-color: #fdf6e3; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #657b83; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #586e75;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #657b83;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/beige.scss",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: #333;\n$headingColor: #333;\n$headingTextShadow: none;\n$backgroundColor: #f7f3de;\n$linkColor: #8b743d;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(79, 64, 28, 0.99);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/black.scss",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #222;\n\n$mainColor: #fff;\n$headingColor: #fff;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #42affa;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-light-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #222;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/blood.scss",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n\n // Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n// Include theme-specific fonts\n\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n\n// Colors used in the theme\n$blood: #a23;\n$coal: #222;\n$codeBackground: #23241f;\n\n$backgroundColor: $coal;\n\n// Main text\n$mainFont: Ubuntu, 'sans-serif';\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Headings\n$headingFont: Ubuntu, 'sans-serif';\n$headingTextShadow: 2px 2px 2px $coal;\n\n// h1 shadow, borrowed humbly from \n// (c) Default theme by Hakim El Hattab\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Links\n$linkColor: $blood;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: $blood;\n$selectionColor: #fff;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n\n// some overrides after theme template import\n\n.reveal p {\n    font-weight: 300;\n    text-shadow: 1px 1px $coal;\n}\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n    font-weight: 700;\n}\n\n.reveal p code {\n    background-color: $codeBackground;\n    display: inline-block;\n    border-radius: 7px;\n}\n\n.reveal small code {\n    vertical-align: baseline;\n}"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/league.scss",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n// Override theme settings (see ../template/settings.scss)\n$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/moon.scss",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base1;\n$headingColor: $base2;\n$headingTextShadow: none;\n$backgroundColor: $base03;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/night.scss",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #111;\n\n$mainFont: 'Open Sans', sans-serif;\n$linkColor: #e7ad52;\n$linkColorHover: lighten( $linkColor, 20% );\n$headingFont: 'Montserrat', Impact, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: -0.03em;\n$headingTextTransform: none;\n$selectionBackgroundColor: #e7ad52;\n$mainFontSize: 30px;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/serif.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$mainColor: #000;\n$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$headingColor: #383D3D;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #F0F1EB;\n$linkColor: #51483D;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #26351C;\n\n.reveal a {\n  line-height: 1.3em;\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/simple.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Lato', sans-serif;\n$mainColor: #000;\n$headingFont: 'News Cycle', Impact, sans-serif;\n$headingColor: #000;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #fff;\n$linkColor: #00008B;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(0, 0, 0, 0.99);\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/sky.scss",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Open Sans', sans-serif;\n$mainColor: #333;\n$headingFont: 'Quicksand', sans-serif;\n$headingColor: #333;\n$headingLetterSpacing: -0.08em;\n$headingTextShadow: none;\n$backgroundColor: #f7fbfc;\n$linkColor: #3b759e;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #134674;\n\n// Fix links so they are not cut off\n.reveal a {\n\tline-height: 1.3em;\n}\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( #add9e4, #f7fbfc );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/solarized.scss",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base00;\n$headingColor: $base01;\n$headingTextShadow: none;\n$backgroundColor: $base3;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n// Background generator\n// @mixin bodyBackground() {\n// \t@include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );\n// }\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/source/white.scss",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #fff;\n\n$mainColor: #222;\n$headingColor: #222;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #2a76dd;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-dark-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #fff;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2016/css/theme/template/mixins.scss",
    "content": "@mixin vertical-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( top, $top 0%, $bottom 100% );\n}\n\n@mixin horizontal-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( left, $top 0%, $bottom 100% );\n}\n\n@mixin radial-gradient( $outer, $inner, $type: circle ) {\n\tbackground: $outer;\n\tbackground: -moz-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );\n\tbackground: -webkit-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -o-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -ms-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n}"
  },
  {
    "path": "doc/cppnow-2016/css/theme/template/settings.scss",
    "content": "// Base settings for all themes that can optionally be\n// overridden by the super-theme\n\n// Background of the presentation\n$backgroundColor: #2b2b2b;\n\n// Primary/body text\n$mainFont: 'Lato', sans-serif;\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Vertical spacing between blocks of text\n$blockMargin: 20px;\n\n// Headings\n$headingMargin: 0 0 $blockMargin 0;\n$headingFont: 'League Gothic', Impact, sans-serif;\n$headingColor: #eee;\n$headingLineHeight: 1.2;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingTextShadow: none;\n$headingFontWeight: normal;\n$heading1TextShadow: $headingTextShadow;\n\n$heading1Size: 3.77em;\n$heading2Size: 2.11em;\n$heading3Size: 1.55em;\n$heading4Size: 1.00em;\n\n// Links and actions\n$linkColor: #13DAEC;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: #FF5E99;\n$selectionColor: #fff;\n\n// Generates the presentation background, can be overridden\n// to return a background image or gradient\n@mixin bodyBackground() {\n\tbackground: $backgroundColor;\n}"
  },
  {
    "path": "doc/cppnow-2016/css/theme/template/theme.scss",
    "content": "// Base theme template for reveal.js\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nbody {\n\t@include bodyBackground();\n\tbackground-color: $backgroundColor;\n}\n\n.reveal {\n\tfont-family: $mainFont;\n\tfont-size: $mainFontSize;\n\tfont-weight: normal;\n\tcolor: $mainColor;\n}\n\n::selection {\n\tcolor: $selectionColor;\n\tbackground: $selectionBackgroundColor;\n\ttext-shadow: none;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tline-height: 1.3;\n\tfont-weight: inherit;\n}\n\n/*********************************************\n * HEADERS\n *********************************************/\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n\tmargin: $headingMargin;\n\tcolor: $headingColor;\n\n\tfont-family: $headingFont;\n\tfont-weight: $headingFontWeight;\n\tline-height: $headingLineHeight;\n\tletter-spacing: $headingLetterSpacing;\n\n\ttext-transform: $headingTextTransform;\n\ttext-shadow: $headingTextShadow;\n\n\tword-wrap: break-word;\n}\n\n.reveal h1 {font-size: $heading1Size; }\n.reveal h2 {font-size: $heading2Size; }\n.reveal h3 {font-size: $heading3Size; }\n.reveal h4 {font-size: $heading4Size; }\n\n.reveal h1 {\n\ttext-shadow: $heading1TextShadow;\n}\n\n\n/*********************************************\n * OTHER\n *********************************************/\n\n.reveal p {\n\tmargin: $blockMargin 0;\n\tline-height: 1.3;\n}\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n\tmax-width: 95%;\n\tmax-height: 95%;\n}\n.reveal strong,\n.reveal b {\n\tfont-weight: bold;\n}\n\n.reveal em {\n\tfont-style: italic;\n}\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n\tdisplay: inline-block;\n\n\ttext-align: left;\n\tmargin: 0 0 0 1em;\n}\n\n.reveal ol {\n\tlist-style-type: decimal;\n}\n\n.reveal ul {\n\tlist-style-type: disc;\n}\n\n.reveal ul ul {\n\tlist-style-type: square;\n}\n\n.reveal ul ul ul {\n\tlist-style-type: circle;\n}\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n\tdisplay: block;\n\tmargin-left: 40px;\n}\n\n.reveal dt {\n\tfont-weight: bold;\n}\n\n.reveal dd {\n\tmargin-left: 40px;\n}\n\n.reveal q,\n.reveal blockquote {\n\tquotes: none;\n}\n\n.reveal blockquote {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 70%;\n\tmargin: $blockMargin auto;\n\tpadding: 5px;\n\n\tfont-style: italic;\n\tbackground: rgba(255, 255, 255, 0.05);\n\tbox-shadow: 0px 0px 2px rgba(0,0,0,0.2);\n}\n\t.reveal blockquote p:first-child,\n\t.reveal blockquote p:last-child {\n\t\tdisplay: inline-block;\n\t}\n\n.reveal q {\n\tfont-style: italic;\n}\n\n.reveal pre {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 90%;\n\tmargin: $blockMargin auto;\n\n\ttext-align: left;\n\tfont-size: 0.55em;\n\tfont-family: monospace;\n\tline-height: 1.2em;\n\n\tword-wrap: break-word;\n\n\tbox-shadow: 0px 0px 6px rgba(0,0,0,0.3);\n}\n.reveal code {\n\tfont-family: monospace;\n}\n\n.reveal pre code {\n\tdisplay: block;\n\tpadding: 5px;\n\toverflow: auto;\n\tmax-height: 400px;\n\tword-wrap: normal;\n}\n\n.reveal table {\n\tmargin: auto;\n\tborder-collapse: collapse;\n\tborder-spacing: 0;\n}\n\n.reveal table th {\n\tfont-weight: bold;\n}\n\n.reveal table th,\n.reveal table td {\n\ttext-align: left;\n\tpadding: 0.2em 0.5em 0.2em 0.5em;\n\tborder-bottom: 1px solid;\n}\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n\ttext-align: center;\n}\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n\ttext-align: right;\n}\n\n.reveal table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.reveal sup {\n\tvertical-align: super;\n}\n.reveal sub {\n\tvertical-align: sub;\n}\n\n.reveal small {\n\tdisplay: inline-block;\n\tfont-size: 0.6em;\n\tline-height: 1.2em;\n\tvertical-align: top;\n}\n\n.reveal small * {\n\tvertical-align: top;\n}\n\n\n/*********************************************\n * LINKS\n *********************************************/\n\n.reveal a {\n\tcolor: $linkColor;\n\ttext-decoration: none;\n\n\t-webkit-transition: color .15s ease;\n\t   -moz-transition: color .15s ease;\n\t        transition: color .15s ease;\n}\n\t.reveal a:hover {\n\t\tcolor: $linkColorHover;\n\n\t\ttext-shadow: none;\n\t\tborder: none;\n\t}\n\n.reveal .roll span:after {\n\tcolor: #fff;\n\tbackground: darken( $linkColor, 15% );\n}\n\n\n/*********************************************\n * IMAGES\n *********************************************/\n\n.reveal section img {\n\tmargin: 15px 0px;\n\tbackground: rgba(255,255,255,0.12);\n\tborder: 4px solid $mainColor;\n\n\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.15);\n}\n\n\t.reveal section img.plain {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal a img {\n\t\t-webkit-transition: all .15s linear;\n\t\t   -moz-transition: all .15s linear;\n\t\t        transition: all .15s linear;\n\t}\n\n\t.reveal a:hover img {\n\t\tbackground: rgba(255,255,255,0.2);\n\t\tborder-color: $linkColor;\n\n\t\tbox-shadow: 0 0 20px rgba(0, 0, 0, 0.55);\n\t}\n\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n\tborder-right-color: $linkColor;\n}\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n\tborder-left-color: $linkColor;\n}\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n\tborder-bottom-color: $linkColor;\n}\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n\tborder-top-color: $linkColor;\n}\n\n.reveal .controls .navigate-left.enabled:hover {\n\tborder-right-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-right.enabled:hover {\n\tborder-left-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-up.enabled:hover {\n\tborder-bottom-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-down.enabled:hover {\n\tborder-top-color: $linkColorHover;\n}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tbackground: rgba(0,0,0,0.2);\n}\n\t.reveal .progress span {\n\t\tbackground: $linkColor;\n\n\t\t-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t   -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t        transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\n"
  },
  {
    "path": "doc/cppnow-2016/css/theme/white.css",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {\n  color: #fff; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: #222; }\n\n::selection {\n  color: #fff;\n  background: #98bdef;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #222;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #2a76dd;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #6ca0e8;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a53a1; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #222;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #2a76dd;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #2a76dd; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #2a76dd; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #2a76dd; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #2a76dd; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #6ca0e8; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #6ca0e8; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #6ca0e8; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #6ca0e8; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #2a76dd;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2016/example/ctor1.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <type_traits>\n\nstruct any_type {\n  template<class T>\n  operator T();\n};\n\n\nint main() {\n  struct example {\n    example(int, double);\n  };\n\n  static_assert(std::is_constructible<example, any_type, any_type>::value);\n}\n"
  },
  {
    "path": "doc/cppnow-2016/example/ctor2.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <type_traits>\n\nstruct any_type {\n  template<class T>\n  operator T();\n};\n\n\nint main() {\n  struct example {\n    example(int, double);\n  };\n\n  static_assert(!std::is_constructible<example, any_type>::value);\n}\n"
  },
  {
    "path": "doc/cppnow-2016/example/ctor3.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <type_traits>\n\ntemplate<class TParent>\nstruct any_type {\n  template<class T, class = std::enable_if_t<!std::is_convertible<TParent, T>{}>>\n  operator T();\n};\n\n\nint main() {\n  struct example {\n    example(int, double);\n  };\n\n  static_assert(!std::is_constructible<example, any_type<example>>::value);\n}\n"
  },
  {
    "path": "doc/cppnow-2016/example/ctor4.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <utility>\n#include <type_traits>\n\ntemplate<class TParent>\nstruct any_type {\n  template<class T, class = std::enable_if_t<!std::is_convertible<TParent, T>{}>>\n  operator T();\n};\n\nconstexpr auto BOOST_DI_CFG_CTOR_LIMIT_SIZE = 10;\n\ntemplate<class T, std::size_t>\nusing any_type_t = any_type<T>;\n\ntemplate<class...>\nstruct is_constructible;\n\ntemplate<class T, std::size_t... Ns>\nstruct is_constructible<T, std::index_sequence<Ns...>>\n  : std::is_constructible<T, any_type_t<T, Ns>...>\n{ };\n\ntemplate <class T, std::size_t... Ns>\nconstexpr auto ctor(std::index_sequence<Ns...>) noexcept {\n  auto value = 0;\n  int _[]{0, (is_constructible<T, std::make_index_sequence<Ns>>{} ? value = Ns : value)...};\n  (void)_;\n  return value;\n}\n\nint main() {\n  struct example {\n    example(int, double, float);\n  };\n\n  static_assert(3 == ctor<example>(std::make_index_sequence<BOOST_DI_CFG_CTOR_LIMIT_SIZE>{}));\n}\n"
  },
  {
    "path": "doc/cppnow-2016/example/resolve.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <type_traits>\n\ntemplate<class, class> struct pair {};\n\ntemplate<class T>\nstruct dependency_concept { };\n\ntemplate<class I, class Impl>\nstruct dependency : pair<dependency_concept<I>, dependency<I, Impl>> { };\n\ntemplate<class... Ts>\nstruct injector : Ts...  { };\n\ntemplate<class... Ts>\nauto make_injector(Ts...) {\n  return injector<Ts...>{};\n}\n\nstruct binder {\n  template <class TDefault, class>\n  static TDefault resolve_impl(...) noexcept {\n    return {};\n  }\n  template <class, class TConcept, class TDependency>\n  static decltype(auto)\n  resolve_impl(pair<TConcept, TDependency>* dep) noexcept {\n    return static_cast<TDependency&>(*dep);\n  }\n\n  template <class T, class TDefault, class TDeps>\n  static decltype(auto) resolve(TDeps* deps) noexcept {\n    using dependency = dependency_concept<std::decay_t<T>>;\n    return resolve_impl<TDefault, dependency>(deps);\n  }\n};\n\nstruct i0 {}; struct impl0 {};\nstruct i1 {}; struct impl1 {};\nstruct i2 {}; struct impl2 {};\nstruct i3 {}; struct impl3 {};\nstruct i4 {}; struct impl4 {};\nstruct i5 {}; struct impl5 {};\nstruct i6 {}; struct impl6 {};\nstruct i7 {}; struct impl7 {};\nstruct i8 {}; struct impl8 {};\nstruct i9 {}; struct impl9 {};\nstruct i10 {}; struct impl10 {};\nstruct i11 {}; struct impl11 {};\nstruct i12 {}; struct impl12 {};\nstruct i13 {}; struct impl13 {};\nstruct i14 {}; struct impl14 {};\nstruct i15 {}; struct impl15 {};\nstruct i16 {}; struct impl16 {};\nstruct i17 {}; struct impl17 {};\nstruct i18 {}; struct impl18 {};\nstruct i19 {}; struct impl19 {};\nstruct i20 {}; struct impl20 {};\nstruct i21 {}; struct impl21 {};\nstruct i22 {}; struct impl22 {};\nstruct i23 {}; struct impl23 {};\nstruct i24 {}; struct impl24 {};\nstruct i25 {}; struct impl25 {};\nstruct i26 {}; struct impl26 {};\nstruct i27 {}; struct impl27 {};\nstruct i28 {}; struct impl28 {};\nstruct i29 {}; struct impl29 {};\nstruct i30 {}; struct impl30 {};\nstruct i31 {}; struct impl31 {};\nstruct i32 {}; struct impl32 {};\nstruct i33 {}; struct impl33 {};\nstruct i34 {}; struct impl34 {};\nstruct i35 {}; struct impl35 {};\nstruct i36 {}; struct impl36 {};\nstruct i37 {}; struct impl37 {};\nstruct i38 {}; struct impl38 {};\nstruct i39 {}; struct impl39 {};\nstruct i40 {}; struct impl40 {};\nstruct i41 {}; struct impl41 {};\nstruct i42 {}; struct impl42 {};\nstruct i43 {}; struct impl43 {};\nstruct i44 {}; struct impl44 {};\nstruct i45 {}; struct impl45 {};\nstruct i46 {}; struct impl46 {};\nstruct i47 {}; struct impl47 {};\nstruct i48 {}; struct impl48 {};\nstruct i49 {}; struct impl49 {};\nstruct i50 {}; struct impl50 {};\nstruct i51 {}; struct impl51 {};\nstruct i52 {}; struct impl52 {};\nstruct i53 {}; struct impl53 {};\nstruct i54 {}; struct impl54 {};\nstruct i55 {}; struct impl55 {};\nstruct i56 {}; struct impl56 {};\nstruct i57 {}; struct impl57 {};\nstruct i58 {}; struct impl58 {};\nstruct i59 {}; struct impl59 {};\nstruct i60 {}; struct impl60 {};\nstruct i61 {}; struct impl61 {};\nstruct i62 {}; struct impl62 {};\nstruct i63 {}; struct impl63 {};\nstruct i64 {}; struct impl64 {};\nstruct i65 {}; struct impl65 {};\nstruct i66 {}; struct impl66 {};\nstruct i67 {}; struct impl67 {};\nstruct i68 {}; struct impl68 {};\nstruct i69 {}; struct impl69 {};\nstruct i70 {}; struct impl70 {};\nstruct i71 {}; struct impl71 {};\nstruct i72 {}; struct impl72 {};\nstruct i73 {}; struct impl73 {};\nstruct i74 {}; struct impl74 {};\nstruct i75 {}; struct impl75 {};\nstruct i76 {}; struct impl76 {};\nstruct i77 {}; struct impl77 {};\nstruct i78 {}; struct impl78 {};\nstruct i79 {}; struct impl79 {};\nstruct i80 {}; struct impl80 {};\nstruct i81 {}; struct impl81 {};\nstruct i82 {}; struct impl82 {};\nstruct i83 {}; struct impl83 {};\nstruct i84 {}; struct impl84 {};\nstruct i85 {}; struct impl85 {};\nstruct i86 {}; struct impl86 {};\nstruct i87 {}; struct impl87 {};\nstruct i88 {}; struct impl88 {};\nstruct i89 {}; struct impl89 {};\nstruct i90 {}; struct impl90 {};\nstruct i91 {}; struct impl91 {};\nstruct i92 {}; struct impl92 {};\nstruct i93 {}; struct impl93 {};\nstruct i94 {}; struct impl94 {};\nstruct i95 {}; struct impl95 {};\nstruct i96 {}; struct impl96 {};\nstruct i97 {}; struct impl97 {};\nstruct i98 {}; struct impl98 {};\nstruct i99 {}; struct impl99 {};\nstruct i100 {}; struct impl100 {};\nstruct i101 {}; struct impl101 {};\nstruct i102 {}; struct impl102 {};\nstruct i103 {}; struct impl103 {};\nstruct i104 {}; struct impl104 {};\nstruct i105 {}; struct impl105 {};\nstruct i106 {}; struct impl106 {};\nstruct i107 {}; struct impl107 {};\nstruct i108 {}; struct impl108 {};\nstruct i109 {}; struct impl109 {};\nstruct i110 {}; struct impl110 {};\nstruct i111 {}; struct impl111 {};\nstruct i112 {}; struct impl112 {};\nstruct i113 {}; struct impl113 {};\nstruct i114 {}; struct impl114 {};\nstruct i115 {}; struct impl115 {};\nstruct i116 {}; struct impl116 {};\nstruct i117 {}; struct impl117 {};\nstruct i118 {}; struct impl118 {};\nstruct i119 {}; struct impl119 {};\nstruct i120 {}; struct impl120 {};\nstruct i121 {}; struct impl121 {};\nstruct i122 {}; struct impl122 {};\nstruct i123 {}; struct impl123 {};\nstruct i124 {}; struct impl124 {};\nstruct i125 {}; struct impl125 {};\nstruct i126 {}; struct impl126 {};\nstruct i127 {}; struct impl127 {};\nstruct i128 {}; struct impl128 {};\n\nint main() {\n  auto injector = make_injector(\n    dependency<i1, impl1>{}\n  , dependency<i2, impl2>{}\n  , dependency<i3, impl3>{}\n  , dependency<i4, impl4>{}\n  , dependency<i5, impl5>{}\n  , dependency<i6, impl6>{}\n  , dependency<i7, impl7>{}\n  , dependency<i8, impl8>{}\n  , dependency<i9, impl9>{}\n  , dependency<i10, impl10>{}\n  , dependency<i11, impl11>{}\n  , dependency<i12, impl12>{}\n  , dependency<i13, impl13>{}\n  , dependency<i14, impl14>{}\n  , dependency<i15, impl15>{}\n  , dependency<i16, impl16>{}\n  , dependency<i17, impl17>{}\n  , dependency<i18, impl18>{}\n  , dependency<i19, impl19>{}\n  , dependency<i20, impl20>{}\n  , dependency<i21, impl21>{}\n  , dependency<i22, impl22>{}\n  , dependency<i23, impl23>{}\n  , dependency<i24, impl24>{}\n  , dependency<i25, impl25>{}\n  , dependency<i26, impl26>{}\n  , dependency<i27, impl27>{}\n  , dependency<i28, impl28>{}\n  , dependency<i29, impl29>{}\n  , dependency<i30, impl30>{}\n  , dependency<i31, impl31>{}\n  , dependency<i32, impl32>{}\n  , dependency<i33, impl33>{}\n  , dependency<i34, impl34>{}\n  , dependency<i35, impl35>{}\n  , dependency<i36, impl36>{}\n  , dependency<i37, impl37>{}\n  , dependency<i38, impl38>{}\n  , dependency<i39, impl39>{}\n  , dependency<i40, impl40>{}\n  , dependency<i41, impl41>{}\n  , dependency<i42, impl42>{}\n  , dependency<i43, impl43>{}\n  , dependency<i44, impl44>{}\n  , dependency<i45, impl45>{}\n  , dependency<i46, impl46>{}\n  , dependency<i47, impl47>{}\n  , dependency<i48, impl48>{}\n  , dependency<i49, impl49>{}\n  , dependency<i50, impl50>{}\n  , dependency<i51, impl51>{}\n  , dependency<i52, impl52>{}\n  , dependency<i53, impl53>{}\n  , dependency<i54, impl54>{}\n  , dependency<i55, impl55>{}\n  , dependency<i56, impl56>{}\n  , dependency<i57, impl57>{}\n  , dependency<i58, impl58>{}\n  , dependency<i59, impl59>{}\n  , dependency<i60, impl60>{}\n  , dependency<i61, impl61>{}\n  , dependency<i62, impl62>{}\n  , dependency<i63, impl63>{}\n  , dependency<i64, impl64>{}\n  , dependency<i65, impl65>{}\n  , dependency<i66, impl66>{}\n  , dependency<i67, impl67>{}\n  , dependency<i68, impl68>{}\n  , dependency<i69, impl69>{}\n  , dependency<i70, impl70>{}\n  , dependency<i71, impl71>{}\n  , dependency<i72, impl72>{}\n  , dependency<i73, impl73>{}\n  , dependency<i74, impl74>{}\n  , dependency<i75, impl75>{}\n  , dependency<i76, impl76>{}\n  , dependency<i77, impl77>{}\n  , dependency<i78, impl78>{}\n  , dependency<i79, impl79>{}\n  , dependency<i80, impl80>{}\n  , dependency<i81, impl81>{}\n  , dependency<i82, impl82>{}\n  , dependency<i83, impl83>{}\n  , dependency<i84, impl84>{}\n  , dependency<i85, impl85>{}\n  , dependency<i86, impl86>{}\n  , dependency<i87, impl87>{}\n  , dependency<i88, impl88>{}\n  , dependency<i89, impl89>{}\n  , dependency<i90, impl90>{}\n  , dependency<i91, impl91>{}\n  , dependency<i92, impl92>{}\n  , dependency<i93, impl93>{}\n  , dependency<i94, impl94>{}\n  , dependency<i95, impl95>{}\n  , dependency<i96, impl96>{}\n  , dependency<i97, impl97>{}\n  , dependency<i98, impl98>{}\n  , dependency<i99, impl99>{}\n  , dependency<i100, impl100>{}\n  , dependency<i101, impl101>{}\n  , dependency<i102, impl102>{}\n  , dependency<i103, impl103>{}\n  , dependency<i104, impl104>{}\n  , dependency<i105, impl105>{}\n  , dependency<i106, impl106>{}\n  , dependency<i107, impl107>{}\n  , dependency<i108, impl108>{}\n  , dependency<i109, impl109>{}\n  , dependency<i110, impl110>{}\n  , dependency<i111, impl111>{}\n  , dependency<i112, impl112>{}\n  , dependency<i113, impl113>{}\n  , dependency<i114, impl114>{}\n  , dependency<i115, impl115>{}\n  , dependency<i116, impl116>{}\n  , dependency<i117, impl117>{}\n  , dependency<i118, impl118>{}\n  , dependency<i119, impl119>{}\n  , dependency<i120, impl120>{}\n  , dependency<i121, impl121>{}\n  , dependency<i122, impl122>{}\n  , dependency<i123, impl123>{}\n  , dependency<i124, impl124>{}\n  , dependency<i125, impl125>{}\n  , dependency<i126, impl126>{}\n  , dependency<i127, impl127>{}\n  , dependency<i128, impl128>{}\n  );\n\n  struct default_dependency{};\n  static_assert(std::is_same<dependency<i64, impl64>, std::decay_t<decltype(binder{}.resolve<i64, default_dependency>(&injector))>>{});\n  static_assert(std::is_same<default_dependency, std::decay_t<decltype(binder{}.resolve<i0, default_dependency>(&injector))>>{});\n}\n"
  },
  {
    "path": "doc/cppnow-2016/example/typename_erasure.cpp",
    "content": "//\n// Copyright (c) 2016 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n#if defined(TYPENAME_ERASURE)\nstatic auto make_injector_impl = [](auto injector) {\n  using injector_t = decltype(injector);\n  struct i : injector_t {\n    explicit i(injector_t &&other)\n        : injector_t(static_cast<injector_t &&>(other)) {}\n  };\n  return i{static_cast<injector_t &&>(injector)};\n};\n\ntemplate <class TConfig = BOOST_DI_CFG, class... TDeps,\n          BOOST_DI_REQUIRES_MSG(\n              di::concepts::boundable<di::aux::type_list<TDeps...>>) = 0,\n          BOOST_DI_REQUIRES_MSG(di::concepts::configurable<TConfig>) = 0>\ninline auto make_injector_test(TDeps... args) noexcept {\n\n  return make_injector_impl(\n      di::core::injector<\n          TConfig,\n          decltype(\n              ((TConfig *)0)->policies((di::concepts::injector<TConfig> *)0)),\n          TDeps...>{di::core::init{}, static_cast<TDeps &&>(args)...});\n}\n#else\ntemplate <class TConfig = BOOST_DI_CFG, class... TDeps,\n          BOOST_DI_REQUIRES_MSG(\n              di::concepts::boundable<di::aux::type_list<TDeps...>>) = 0,\n          BOOST_DI_REQUIRES_MSG(di::concepts::configurable<TConfig>) = 0>\ninline auto make_injector_test(TDeps... args) noexcept {\n  return di::core::injector<\n      TConfig,\n      decltype(((TConfig *)0)->policies((di::concepts::injector<TConfig> *)0)),\n      TDeps...>{di::core::init{}, static_cast<TDeps &&>(args)...};\n}\n#endif\n\n// clang-format off\nstruct X0 { X0(){} };\nstruct X1 { X1(){} };\nstruct X2 { X2(){} };\nstruct X3 { X3(){} };\nstruct X4 { X4(){} };\nstruct X5 { X5(){} };\nstruct X6 { X6(){} };\nstruct X7 { X7(){} };\nstruct X8 { X8(){} };\nstruct X9 { X9(){} };\nstruct X10 { X10(){} };\nstruct X11 { X11(){} };\nstruct X12 { X12(){} };\nstruct X13 { X13(){} };\nstruct X14 { X14(){} };\nstruct X15 { X15(){} };\nstruct X16 { X16(){} };\nstruct X17 { X17(){} };\nstruct X18 { X18(){} };\nstruct X19 { X19(){} };\nstruct X20 { X20(){} };\nstruct X21 { X21(){} };\nstruct X22 { X22(){} };\nstruct X23 { X23(){} };\nstruct X24 { X24(){} };\nstruct X25 { X25(){} };\nstruct X26 { X26(){} };\nstruct X27 { X27(){} };\nstruct X28 { X28(){} };\nstruct X29 { X29(){} };\nstruct X30 { X30(){} };\nstruct X31 { X31(){} };\nstruct X32 { X32(){} };\nstruct X33 { X33(){} };\nstruct X34 { X34(){} };\nstruct X35 { X35(){} };\nstruct X36 { X36(){} };\nstruct X37 { X37(){} };\nstruct X38 { X38(){} };\nstruct X39 { X39(){} };\nstruct X40 { X40(){} };\nstruct X41 { X41(){} };\nstruct X42 { X42(){} };\nstruct X43 { X43(){} };\nstruct X44 { X44(){} };\nstruct X45 { X45(){} };\nstruct X46 { X46(){} };\nstruct X47 { X47(){} };\nstruct X48 { X48(){} };\nstruct X49 { X49(){} };\nstruct X50 { X50(){} };\nstruct X51 { X51(){} };\nstruct X52 { X52(){} };\nstruct X53 { X53(){} };\nstruct X54 { X54(){} };\nstruct X55 { X55(){} };\nstruct X56 { X56(){} };\nstruct X57 { X57(){} };\nstruct X58 { X58(){} };\nstruct X59 { X59(){} };\nstruct X60 { X60(){} };\nstruct X61 { X61(){} };\nstruct X62 { X62(){} };\nstruct X63 { X63(){} };\nstruct X64 { X64(){} };\nstruct X65 { X65(){} };\nstruct X66 { X66(){} };\nstruct X67 { X67(){} };\nstruct X68 { X68(){} };\nstruct X69 { X69(){} };\nstruct X70 { X70(){} };\nstruct X71 { X71(){} };\nstruct X72 { X72(){} };\nstruct X73 { X73(){} };\nstruct X74 { X74(){} };\nstruct X75 { X75(){} };\nstruct X76 { X76(){} };\nstruct X77 { X77(){} };\nstruct X78 { X78(){} };\nstruct X79 { X79(){} };\nstruct X80 { X80(){} };\nstruct X81 { X81(){} };\nstruct X82 { X82(){} };\nstruct X83 { X83(){} };\nstruct X84 { X84(){} };\nstruct X85 { X85(){} };\nstruct X86 { X86(){} };\nstruct X87 { X87(){} };\nstruct X88 { X88(){} };\nstruct X89 { X89(){} };\nstruct X90 { X90(){} };\nstruct X91 { X91(){} };\nstruct X92 { X92(){} };\nstruct X93 { X93(){} };\nstruct X94 { X94(){} };\nstruct X95 { X95(){} };\nstruct X96 { X96(){} };\nstruct X97 { X97(){} };\nstruct X98 { X98(){} };\nstruct X99 { X99(){} };\nstruct X100 { X100(X0, X12, X15, X26, X27, X45, X58, X63, X80, X83){} };\nstruct X101 { X101(X9, X23, X24, X39, X44, X49, X56, X61, X92, X93){} };\nstruct X102 { X102(X8, X11, X17, X30, X33, X45, X50, X53, X56, X95){} };\nstruct X103 { X103(X6, X19, X44, X61, X63, X64, X73, X89, X91, X96){} };\nstruct X104 { X104(X12, X18, X25, X32, X35, X72, X81, X88, X92, X101){} };\nstruct X105 { X105(X44, X47, X61, X67, X76, X79, X81, X88, X94, X103){} };\nstruct X106 { X106(X1, X6, X9, X22, X23, X33, X51, X72, X77, X82){} };\nstruct X107 { X107(X8, X38, X40, X65, X66, X74, X75, X86, X92, X105){} };\nstruct X108 { X108(X7, X9, X18, X48, X53, X55, X60, X67, X69, X98){} };\nstruct X109 { X109(X16, X32, X40, X49, X60, X68, X76, X88, X91, X107){} };\nstruct X110 { X110(X8, X19, X26, X27, X29, X65, X76, X83, X86, X98){} };\nstruct X111 { X111(X5, X29, X35, X38, X51, X54, X57, X62, X92){} };\nstruct X112 { X112(X1, X2, X39, X48, X49, X55, X65, X78, X80, X105){} };\nstruct X113 { X113(X1, X10, X12, X15, X17, X30, X79, X87, X96, X104){} };\nstruct X114 { X114(X0, X1, X17, X62, X64, X69, X80, X89, X92, X109){} };\nstruct X115 { X115(X6, X29, X52, X65, X70, X82, X89, X93, X98, X113){} };\nstruct X116 { X116(X13, X31, X39, X47, X48, X58, X63, X70, X77, X99){} };\nstruct X117 { X117(X16, X40, X55, X59, X78, X79, X83, X91, X100, X106){} };\nstruct X118 { X118(X4, X16, X34, X53, X69, X74, X94, X96, X105, X116){} };\nstruct X119 { X119(X0, X19, X20, X22, X60, X76, X78, X83, X105, X112){} };\nstruct X120 { X120(X12, X14, X23, X24, X54, X60, X65, X70, X86, X105){} };\nstruct X121 { X121(X1, X4, X12, X16, X21, X31, X36, X54, X57, X96){} };\nstruct X122 { X122(X12, X13, X26, X37, X42, X54, X57, X64, X94, X105){} };\nstruct X123 { X123(X41, X63, X77, X79, X81, X90, X97, X103, X114, X120){} };\nstruct X124 { X124(X0, X10, X15, X45, X52, X54, X86, X90, X109, X110){} };\nstruct X125 { X125(X8, X11, X28, X32, X44, X45, X48, X92, X94, X112){} };\nstruct X126 { X126(X0, X27, X48, X64, X69, X72, X79, X97, X109, X124){} };\nstruct X127 { X127(X2, X3, X14, X29, X55, X79, X86, X92, X115, X122){} };\nstruct X128 { X128(X10, X35, X63, X66, X87, X98, X100, X107, X117, X119){} };\nstruct X129 { X129(X1, X9, X10, X16, X29, X62, X98, X117, X125, X128){} };\nstruct X130 { X130(X6, X29, X53, X81, X89, X90, X93, X105, X106, X108){} };\nstruct X131 { X131(X3, X9, X20, X36, X42, X53, X77, X84, X89, X119){} };\nstruct X132 { X132(X38, X41, X47, X87, X90, X99, X107, X119, X120, X126){} };\nstruct X133 { X133(X8, X11, X18, X28, X43, X45, X62, X90, X107, X109){} };\nstruct X134 { X134(X7, X23, X56, X69, X77, X80, X81, X86, X101, X103){} };\nstruct X135 { X135(X6, X13, X50, X69, X75, X80, X82, X93, X98, X106){} };\nstruct X136 { X136(X16, X41, X49, X63, X66, X78, X90, X103, X117, X122){} };\nstruct X137 { X137(X20, X21, X29, X30, X52, X53, X60, X66, X91, X131){} };\nstruct X138 { X138(X1, X10, X51, X53, X54, X73, X90, X96, X114, X115){} };\nstruct X139 { X139(X1, X2, X6, X19, X21, X47, X73, X76, X109, X126){} };\nstruct X140 { X140(X7, X18, X25, X38, X46, X55, X67, X90, X92, X103){} };\nstruct X141 { X141(X0, X28, X36, X47, X63, X66, X79, X101, X102, X126){} };\nstruct X142 { X142(X2, X13, X23, X27, X40, X49, X85, X104, X108, X137){} };\nstruct X143 { X143(X27, X36, X65, X68, X74, X76, X80, X93, X114, X116){} };\nstruct X144 { X144(X30, X37, X43, X81, X89, X90, X121, X125, X138, X143){} };\nstruct X145 { X145(X9, X25, X59, X82, X95, X99, X100, X114, X133, X137){} };\nstruct X146 { X146(X16, X44, X72, X93, X114, X120, X134, X135, X138, X141){} };\nstruct X147 { X147(X20, X28, X57, X73, X84, X94, X101, X107, X129, X137){} };\nstruct X148 { X148(X1, X60, X61, X73, X83, X90, X104, X107, X140, X143){} };\nstruct X149 { X149(X9, X23, X34, X39, X55, X68, X94, X97, X105, X114){} };\nstruct X150 { X150(X1, X19, X28, X35, X40, X55, X117, X125, X139, X149){} };\nstruct X151 { X151(X29, X40, X42, X56, X75, X77, X90, X120, X126, X143){} };\nstruct X152 { X152(X21, X27, X36, X38, X50, X71, X77, X102, X132, X133){} };\nstruct X153 { X153(X16, X23, X30, X58, X69, X74, X92, X106, X123, X139){} };\nstruct X154 { X154(X13, X20, X23, X54, X72, X82, X85, X96, X100, X119){} };\nstruct X155 { X155(X29, X57, X67, X78, X82, X85, X113, X114, X116, X121){} };\nstruct X156 { X156(X2, X6, X44, X66, X77, X88, X101, X107, X108, X141){} };\nstruct X157 { X157(X23, X38, X55, X56, X65, X82, X100, X106, X110, X150){} };\nstruct X158 { X158(X71, X75, X101, X105, X109, X118, X119, X137, X146, X150){} };\nstruct X159 { X159(X4, X9, X27, X59, X84, X87, X116, X124, X132, X154){} };\nstruct X160 { X160(X44, X66, X68, X81, X90, X125, X134, X135, X137, X147){} };\nstruct X161 { X161(X9, X24, X42, X47, X73, X118, X126, X132, X148, X149){} };\nstruct X162 { X162(X1, X10, X21, X37, X56, X70, X102, X106, X113, X161){} };\nstruct X163 { X163(X11, X31, X59, X60, X93, X98, X126, X134, X144, X151){} };\nstruct X164 { X164(X17, X18, X36, X39, X76, X106, X108, X140, X142, X160){} };\nstruct X165 { X165(X1, X47, X92, X93, X94, X101, X102, X125, X133, X146){} };\nstruct X166 { X166(X38, X40, X70, X97, X126, X128, X129, X133, X147, X164){} };\nstruct X167 { X167(X0, X1, X18, X20, X53, X79, X114, X128, X146, X165){} };\nstruct X168 { X168(X4, X5, X9, X84, X88, X96, X133, X143, X150, X152){} };\nstruct X169 { X169(X10, X59, X70, X81, X83, X87, X95, X97, X152, X165){} };\nstruct X170 { X170(X23, X26, X35, X74, X92, X93, X99, X144, X152, X156){} };\nstruct X171 { X171(X1, X3, X77, X88, X89, X108, X110, X116, X135, X159){} };\nstruct X172 { X172(X38, X44, X51, X55, X66, X74, X94, X132, X135, X159){} };\nstruct X173 { X173(X12, X22, X59, X66, X73, X83, X89, X105, X126, X137){} };\nstruct X174 { X174(X2, X7, X61, X64, X72, X99, X141, X149, X153, X169){} };\nstruct X175 { X175(X10, X29, X31, X84, X94, X96, X112, X124, X166, X170){} };\nstruct X176 { X176(X26, X33, X64, X74, X82, X105, X124, X141, X161, X172){} };\nstruct X177 { X177(X13, X19, X65, X91, X119, X120, X129, X142, X143, X161){} };\nstruct X178 { X178(X47, X49, X68, X99, X110, X141, X151, X169, X170, X172){} };\nstruct X179 { X179(X20, X23, X26, X28, X71, X74, X95, X101, X136, X170){} };\nstruct X180 { X180(X3, X15, X57, X65, X70, X92, X109, X111, X134, X140){} };\nstruct X181 { X181(X10, X14, X22, X23, X112, X116, X118, X130, X134, X152){} };\nstruct X182 { X182(X22, X28, X33, X48, X83, X84, X89, X129, X171, X180){} };\nstruct X183 { X183(X28, X35, X50, X75, X79, X87, X101, X127, X142, X179){} };\nstruct X184 { X184(X58, X60, X90, X105, X130, X150, X156, X162, X170, X179){} };\nstruct X185 { X185(X22, X44, X48, X91, X109, X111, X112, X140, X160, X179){} };\nstruct X186 { X186(X19, X38, X39, X41, X52, X83, X91, X155, X179, X183){} };\nstruct X187 { X187(X6, X19, X38, X48, X55, X78, X84, X104, X116, X178){} };\nstruct X188 { X188(X0, X19, X23, X75, X151, X152, X158, X163, X174, X186){} };\nstruct X189 { X189(X24, X52, X57, X76, X89, X96, X126, X128, X136, X140){} };\nstruct X190 { X190(X14, X18, X28, X84, X94, X133, X146, X160, X176, X188){} };\nstruct X191 { X191(X25, X38, X75, X102, X104, X128, X133, X136, X155, X180){} };\nstruct X192 { X192(X6, X54, X85, X97, X127, X128, X132, X158, X169, X187){} };\nstruct X193 { X193(X17, X20, X25, X30, X55, X70, X84, X94, X121, X172){} };\nstruct X194 { X194(X3, X22, X88, X116, X142, X146, X151, X152, X171, X191){} };\nstruct X195 { X195(X17, X71, X76, X77, X113, X130, X155, X163, X171, X185){} };\nstruct X196 { X196(X62, X76, X106, X116, X117, X134, X153, X155, X177, X190){} };\nstruct X197 { X197(X19, X42, X61, X73, X99, X101, X106, X126, X159, X181){} };\nstruct X198 { X198(X4, X15, X33, X48, X62, X87, X97, X99, X148, X160){} };\nstruct X199 { X199(X17, X20, X33, X57, X67, X69, X80, X99, X122, X136){} };\n// clang-format on\n\nauto module = [] {\n  // clang-format off\n  return make_injector_test(\n      di::bind<X0>.in(di::unique)\n    , di::bind<X1>.in(di::unique)\n    , di::bind<X2>.in(di::unique)\n    , di::bind<X3>.in(di::unique)\n    , di::bind<X4>.in(di::unique)\n    , di::bind<X5>.in(di::unique)\n    , di::bind<X6>.in(di::unique)\n    , di::bind<X7>.in(di::unique)\n    , di::bind<X8>.in(di::unique)\n    , di::bind<X9>.in(di::unique)\n    , di::bind<X10>.in(di::unique)\n    , di::bind<X11>.in(di::unique)\n    , di::bind<X12>.in(di::unique)\n    , di::bind<X13>.in(di::unique)\n    , di::bind<X14>.in(di::unique)\n    , di::bind<X15>.in(di::unique)\n    , di::bind<X16>.in(di::unique)\n    , di::bind<X17>.in(di::unique)\n    , di::bind<X18>.in(di::unique)\n    , di::bind<X19>.in(di::unique)\n    , di::bind<X20>.in(di::unique)\n    , di::bind<X21>.in(di::unique)\n    , di::bind<X22>.in(di::unique)\n    , di::bind<X23>.in(di::unique)\n    , di::bind<X24>.in(di::unique)\n    , di::bind<X25>.in(di::unique)\n    , di::bind<X26>.in(di::unique)\n    , di::bind<X27>.in(di::unique)\n    , di::bind<X28>.in(di::unique)\n    , di::bind<X29>.in(di::unique)\n    , di::bind<X30>.in(di::unique)\n    , di::bind<X31>.in(di::unique)\n    , di::bind<X32>.in(di::unique)\n    , di::bind<X33>.in(di::unique)\n    , di::bind<X34>.in(di::unique)\n    , di::bind<X35>.in(di::unique)\n    , di::bind<X36>.in(di::unique)\n    , di::bind<X37>.in(di::unique)\n    , di::bind<X38>.in(di::unique)\n    , di::bind<X39>.in(di::unique)\n    , di::bind<X40>.in(di::unique)\n    , di::bind<X41>.in(di::unique)\n    , di::bind<X42>.in(di::unique)\n    , di::bind<X43>.in(di::unique)\n    , di::bind<X44>.in(di::unique)\n    , di::bind<X45>.in(di::unique)\n    , di::bind<X46>.in(di::unique)\n    , di::bind<X47>.in(di::unique)\n    , di::bind<X48>.in(di::unique)\n    , di::bind<X49>.in(di::unique)\n    , di::bind<X50>.in(di::unique)\n    , di::bind<X51>.in(di::unique)\n    , di::bind<X52>.in(di::unique)\n    , di::bind<X53>.in(di::unique)\n    , di::bind<X54>.in(di::unique)\n    , di::bind<X55>.in(di::unique)\n    , di::bind<X56>.in(di::unique)\n    , di::bind<X57>.in(di::unique)\n    , di::bind<X58>.in(di::unique)\n    , di::bind<X59>.in(di::unique)\n    , di::bind<X60>.in(di::unique)\n    , di::bind<X61>.in(di::unique)\n    , di::bind<X62>.in(di::unique)\n    , di::bind<X63>.in(di::unique)\n    , di::bind<X64>.in(di::unique)\n    , di::bind<X65>.in(di::unique)\n    , di::bind<X66>.in(di::unique)\n    , di::bind<X67>.in(di::unique)\n    , di::bind<X68>.in(di::unique)\n    , di::bind<X69>.in(di::unique)\n    , di::bind<X70>.in(di::unique)\n    , di::bind<X71>.in(di::unique)\n    , di::bind<X72>.in(di::unique)\n    , di::bind<X73>.in(di::unique)\n    , di::bind<X74>.in(di::unique)\n    , di::bind<X75>.in(di::unique)\n    , di::bind<X76>.in(di::unique)\n    , di::bind<X77>.in(di::unique)\n    , di::bind<X78>.in(di::unique)\n    , di::bind<X79>.in(di::unique)\n    , di::bind<X80>.in(di::unique)\n    , di::bind<X81>.in(di::unique)\n    , di::bind<X82>.in(di::unique)\n    , di::bind<X83>.in(di::unique)\n    , di::bind<X84>.in(di::unique)\n    , di::bind<X85>.in(di::unique)\n    , di::bind<X86>.in(di::unique)\n    , di::bind<X87>.in(di::unique)\n    , di::bind<X88>.in(di::unique)\n    , di::bind<X89>.in(di::unique)\n    , di::bind<X90>.in(di::unique)\n    , di::bind<X91>.in(di::unique)\n    , di::bind<X92>.in(di::unique)\n    , di::bind<X93>.in(di::unique)\n    , di::bind<X94>.in(di::unique)\n    , di::bind<X95>.in(di::unique)\n    , di::bind<X96>.in(di::unique)\n    , di::bind<X97>.in(di::unique)\n    , di::bind<X98>.in(di::unique)\n    , di::bind<X99>.in(di::unique)\n    , di::bind<X100>.in(di::unique)\n    , di::bind<X101>.in(di::unique)\n    , di::bind<X102>.in(di::unique)\n    , di::bind<X103>.in(di::unique)\n    , di::bind<X104>.in(di::unique)\n    , di::bind<X105>.in(di::unique)\n    , di::bind<X106>.in(di::unique)\n    , di::bind<X107>.in(di::unique)\n    , di::bind<X108>.in(di::unique)\n    , di::bind<X109>.in(di::unique)\n    , di::bind<X110>.in(di::unique)\n    , di::bind<X111>.in(di::unique)\n    , di::bind<X112>.in(di::unique)\n    , di::bind<X113>.in(di::unique)\n    , di::bind<X114>.in(di::unique)\n    , di::bind<X115>.in(di::unique)\n    , di::bind<X116>.in(di::unique)\n    , di::bind<X117>.in(di::unique)\n    , di::bind<X118>.in(di::unique)\n    , di::bind<X119>.in(di::unique)\n    , di::bind<X120>.in(di::unique)\n    , di::bind<X121>.in(di::unique)\n    , di::bind<X122>.in(di::unique)\n    , di::bind<X123>.in(di::unique)\n    , di::bind<X124>.in(di::unique)\n    , di::bind<X125>.in(di::unique)\n    , di::bind<X126>.in(di::unique)\n    , di::bind<X127>.in(di::unique)\n    , di::bind<X128>.in(di::unique)\n    , di::bind<X129>.in(di::unique)\n    , di::bind<X130>.in(di::unique)\n    , di::bind<X131>.in(di::unique)\n    , di::bind<X132>.in(di::unique)\n    , di::bind<X133>.in(di::unique)\n    , di::bind<X134>.in(di::unique)\n    , di::bind<X135>.in(di::unique)\n    , di::bind<X136>.in(di::unique)\n    , di::bind<X137>.in(di::unique)\n    , di::bind<X138>.in(di::unique)\n    , di::bind<X139>.in(di::unique)\n    , di::bind<X140>.in(di::unique)\n    , di::bind<X141>.in(di::unique)\n    , di::bind<X142>.in(di::unique)\n    , di::bind<X143>.in(di::unique)\n    , di::bind<X144>.in(di::unique)\n    , di::bind<X145>.in(di::unique)\n    , di::bind<X146>.in(di::unique)\n    , di::bind<X147>.in(di::unique)\n    , di::bind<X148>.in(di::unique)\n    , di::bind<X149>.in(di::unique)\n    , di::bind<X150>.in(di::unique)\n    , di::bind<X151>.in(di::unique)\n    , di::bind<X152>.in(di::unique)\n    , di::bind<X153>.in(di::unique)\n    , di::bind<X154>.in(di::unique)\n    , di::bind<X155>.in(di::unique)\n    , di::bind<X156>.in(di::unique)\n    , di::bind<X157>.in(di::unique)\n    , di::bind<X158>.in(di::unique)\n    , di::bind<X159>.in(di::unique)\n    , di::bind<X160>.in(di::unique)\n    , di::bind<X161>.in(di::unique)\n    , di::bind<X162>.in(di::unique)\n    , di::bind<X163>.in(di::unique)\n    , di::bind<X164>.in(di::unique)\n    , di::bind<X165>.in(di::unique)\n    , di::bind<X166>.in(di::unique)\n    , di::bind<X167>.in(di::unique)\n    , di::bind<X168>.in(di::unique)\n    , di::bind<X169>.in(di::unique)\n    , di::bind<X170>.in(di::unique)\n    , di::bind<X171>.in(di::unique)\n    , di::bind<X172>.in(di::unique)\n    , di::bind<X173>.in(di::unique)\n    , di::bind<X174>.in(di::unique)\n    , di::bind<X175>.in(di::unique)\n    , di::bind<X176>.in(di::unique)\n    , di::bind<X177>.in(di::unique)\n    , di::bind<X178>.in(di::unique)\n    , di::bind<X179>.in(di::unique)\n    , di::bind<X180>.in(di::unique)\n    , di::bind<X181>.in(di::unique)\n    , di::bind<X182>.in(di::unique)\n    , di::bind<X183>.in(di::unique)\n    , di::bind<X184>.in(di::unique)\n    , di::bind<X185>.in(di::unique)\n    , di::bind<X186>.in(di::unique)\n    , di::bind<X187>.in(di::unique)\n    , di::bind<X188>.in(di::unique)\n    , di::bind<X189>.in(di::unique)\n    , di::bind<X190>.in(di::unique)\n    , di::bind<X191>.in(di::unique)\n    , di::bind<X192>.in(di::unique)\n    , di::bind<X193>.in(di::unique)\n    , di::bind<X194>.in(di::unique)\n    , di::bind<X195>.in(di::unique)\n    , di::bind<X196>.in(di::unique)\n    , di::bind<X197>.in(di::unique)\n    , di::bind<X198>.in(di::unique)\n    , di::bind<X199>.in(di::unique)\n  );\n  // clang-format on\n};\n\ntemplate <class> struct q;\nint main() {\n  auto injector = make_injector_test(module());\n\n  injector.create<X0>();\n  injector.create<X1>();\n  injector.create<X2>();\n  injector.create<X3>();\n  injector.create<X4>();\n  injector.create<X5>();\n  injector.create<X6>();\n  injector.create<X7>();\n  injector.create<X8>();\n  injector.create<X9>();\n  injector.create<X10>();\n  injector.create<X11>();\n  injector.create<X12>();\n  injector.create<X13>();\n  injector.create<X14>();\n  injector.create<X15>();\n  injector.create<X16>();\n  injector.create<X17>();\n  injector.create<X18>();\n  injector.create<X19>();\n  injector.create<X20>();\n  injector.create<X21>();\n  injector.create<X22>();\n  injector.create<X23>();\n  injector.create<X24>();\n  injector.create<X25>();\n  injector.create<X26>();\n  injector.create<X27>();\n  injector.create<X28>();\n  injector.create<X29>();\n  injector.create<X30>();\n  injector.create<X31>();\n  injector.create<X32>();\n  injector.create<X33>();\n  injector.create<X34>();\n  injector.create<X35>();\n  injector.create<X36>();\n  injector.create<X37>();\n  injector.create<X38>();\n  injector.create<X39>();\n  injector.create<X40>();\n  injector.create<X41>();\n  injector.create<X42>();\n  injector.create<X43>();\n  injector.create<X44>();\n  injector.create<X45>();\n  injector.create<X46>();\n  injector.create<X47>();\n  injector.create<X48>();\n  injector.create<X49>();\n  injector.create<X50>();\n  injector.create<X51>();\n  injector.create<X52>();\n  injector.create<X53>();\n  injector.create<X54>();\n  injector.create<X55>();\n  injector.create<X56>();\n  injector.create<X57>();\n  injector.create<X58>();\n  injector.create<X59>();\n  injector.create<X60>();\n  injector.create<X61>();\n  injector.create<X62>();\n  injector.create<X63>();\n  injector.create<X64>();\n  injector.create<X65>();\n  injector.create<X66>();\n  injector.create<X67>();\n  injector.create<X68>();\n  injector.create<X69>();\n  injector.create<X70>();\n  injector.create<X71>();\n  injector.create<X72>();\n  injector.create<X73>();\n  injector.create<X74>();\n  injector.create<X75>();\n  injector.create<X76>();\n  injector.create<X77>();\n  injector.create<X78>();\n  injector.create<X79>();\n  injector.create<X80>();\n  injector.create<X81>();\n  injector.create<X82>();\n  injector.create<X83>();\n  injector.create<X84>();\n  injector.create<X85>();\n  injector.create<X86>();\n  injector.create<X87>();\n  injector.create<X88>();\n  injector.create<X89>();\n  injector.create<X90>();\n  injector.create<X91>();\n  injector.create<X92>();\n  injector.create<X93>();\n  injector.create<X94>();\n  injector.create<X95>();\n  injector.create<X96>();\n  injector.create<X97>();\n  injector.create<X98>();\n  injector.create<X99>();\n  injector.create<X100>();\n  injector.create<X101>();\n  injector.create<X102>();\n  injector.create<X103>();\n  injector.create<X104>();\n  injector.create<X105>();\n  injector.create<X106>();\n  injector.create<X107>();\n  injector.create<X108>();\n  injector.create<X109>();\n  injector.create<X110>();\n  injector.create<X111>();\n  injector.create<X112>();\n  injector.create<X113>();\n  injector.create<X114>();\n  injector.create<X115>();\n  injector.create<X116>();\n  injector.create<X117>();\n  injector.create<X118>();\n  injector.create<X119>();\n  injector.create<X120>();\n  injector.create<X121>();\n  injector.create<X122>();\n  injector.create<X123>();\n  injector.create<X124>();\n  injector.create<X125>();\n  injector.create<X126>();\n  injector.create<X127>();\n  injector.create<X128>();\n  injector.create<X129>();\n  injector.create<X130>();\n  injector.create<X131>();\n  injector.create<X132>();\n  injector.create<X133>();\n  injector.create<X134>();\n  injector.create<X135>();\n  injector.create<X136>();\n  injector.create<X137>();\n  injector.create<X138>();\n  injector.create<X139>();\n  injector.create<X140>();\n  injector.create<X141>();\n  injector.create<X142>();\n  injector.create<X143>();\n  injector.create<X144>();\n  injector.create<X145>();\n  injector.create<X146>();\n  injector.create<X147>();\n  injector.create<X148>();\n  injector.create<X149>();\n  injector.create<X150>();\n  injector.create<X151>();\n  injector.create<X152>();\n  injector.create<X153>();\n  injector.create<X154>();\n  injector.create<X155>();\n  injector.create<X156>();\n  injector.create<X157>();\n  injector.create<X158>();\n  injector.create<X159>();\n  injector.create<X160>();\n  injector.create<X161>();\n  injector.create<X162>();\n  injector.create<X163>();\n  injector.create<X164>();\n  injector.create<X165>();\n  injector.create<X166>();\n  injector.create<X167>();\n  injector.create<X168>();\n  injector.create<X169>();\n  injector.create<X170>();\n  injector.create<X171>();\n  injector.create<X172>();\n  injector.create<X173>();\n  injector.create<X174>();\n  injector.create<X175>();\n  injector.create<X176>();\n  injector.create<X177>();\n  injector.create<X178>();\n  injector.create<X179>();\n  injector.create<X180>();\n  injector.create<X181>();\n  injector.create<X182>();\n  injector.create<X183>();\n  injector.create<X184>();\n  injector.create<X185>();\n  injector.create<X186>();\n  injector.create<X187>();\n  injector.create<X188>();\n  injector.create<X189>();\n  injector.create<X190>();\n  injector.create<X191>();\n  injector.create<X192>();\n  injector.create<X193>();\n  injector.create<X194>();\n  injector.create<X195>();\n  injector.create<X196>();\n  injector.create<X197>();\n  injector.create<X198>();\n  injector.create<X199>();\n}\n"
  },
  {
    "path": "doc/cppnow-2016/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>[Boost].DI</title>\n\n\t\t<meta name=\"description\" content=\"A framework for easily creating beautiful presentations using HTML\">\n\t\t<meta name=\"author\" content=\"Hakim El Hattab\">\n\n\t\t<meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n\t\t<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\">\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui\">\n\n\t\t<link rel=\"stylesheet\" href=\"css/reveal.css\">\n    <link rel=\"stylesheet\" href=\"css/theme/league.css\" id=\"theme\">\n\n\t\t<!-- Code syntax highlighting -->\n    <link rel=\"stylesheet\" href=\"lib/css/zenburn.css\">\n\n\t\t<!-- Printing and PDF exports -->\n\t\t<script>\n\t\t\tvar link = document.createElement( 'link' );\n\t\t\tlink.rel = 'stylesheet';\n\t\t\tlink.type = 'text/css';\n\t\t\tlink.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';\n\t\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( link );\n\t\t</script>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\t\t\t<div class=\"slides\">\n          <section data-markdown=\"\"\n                   data-separator=\"^====+$\"\n                   data-separator-vertical=\"^----+$\"\n                   data-notes=\"^Note:\">\n\t\t\t\t\t<script type=\"text/template\">\n\nC++Now 2016\n\n#C++14 Dependency Injection Library\n\nhttps://github.com/boost-experimental/di\n\nKris Jusiak\n\n==============================================================================\n\n##Dependency Injection\n\nnote:\n1. Why DI\n2. Constructor deduction without reflection\n3. No performance overhead\n4. Quick compilation times\n5. Error messages (concepts)\n6. Serialize (extensions)\n\n----\n\n(DI) involves passing (injecting) one or more dependencies (or services) to a dependent object (or client) which become part of the client’s state. It is like the Strategy Pattern, except the strategy is set once, at construction. DI enables loosely coupled designs, which are easier to maintain and test\n\nRob Stewart\n\n----\n\n## \"Let's make some coffee!\"\n\n<center>[![Coffee Maker](images/coffee_maker.png)](images/coffee_maker.png)</center>\n\n----\n\n##No Dependency Injection\n\n```cpp\nclass coffee_maker {\npublic:\n  // create dependencies in the constructor\n  coffee_maker()\n    : heater(std::make_shared<electric_heater>())\n    , pump(std::make_unique<heat_pump>(heater))\n  { }\n\n  void brew() {\n    heater->on();\n    pump->pump();\n  }\n\nprivate:\n  std::shared_ptr<iheater> heater;\n  std::unique_ptr<ipump> pump;\n};\n```\n\n----\n\n##Dependency Injection\n\n```cpp\nclass coffee_maker {\npublic:\n  // inject dependencies via constructor\n  coffee_maker(std::shared_ptr<iheater> heater\n             , std::unique_ptr<ipump> pump)\n    : heater(heater), pump(std::move(pump))\n  { }\n\n  void brew() {\n    heater->on();\n    pump->pump();\n  }\n\nprivate:\n  std::shared_ptr<iheater> heater;\n  std::unique_ptr<ipump> pump;\n};\n```\n\n----\n\n##It's all about the construction!\n\n> \"Don't call us, we'll call you\", Hollywood principle\n\n----\n\n##Do I need Dependency Injection?\n\n----\n\n###No, but...\n\n----\n\n* DI promote loosely coupled code\n  * Separation of business logic and object creation\n  * Expresses `WHAT`, not `HOW`!\n\n* DI creates easier to maintain code\n  * Simplified refactoring of dependencies\n\n* DI creates easy to test code\n  * Fakes objects might be injected (automatically)\n\n==============================================================================\n\n##Do I need a DI Framework/Library?\n\n----\n\n###No, but DI library will **free you** from maintaining boilerplate code\n\n----\n\n```cpp\nauto create() {\n  logger logger_;\n  renderer renderer_;\n  view view_{renderer_, logger_};\n  model model_{logger_};\n  controller controller_{model_, view_, logger_};\n  user user_{logger_};\n  ...\n  return make_unique<app>(controller, user_, logger_).run();\n}\n```\n\n> Boilerplate code which has to be maintained\n\nnote:\nTedious/Borking to write/maintain\n\nDevs takes shortcuts via extending types -> Legacy code\n\nSingle Responsibility/Law of Demeter Principle\n\n----\n\n* ORDER in which above dependencies are created is **IMPORTANT**\n\n* **ANY** change in **ANY** of the objects constructor will **REQUIRE** a change in the code\n\n----\n\n###Showcase / Motivation\n\n---\n\nhttp://melpon.org/wandbox/permlink/m103wMvJYyRhDdkU\n\n----\n\n###DI can also help with\n\n----\n\n* Testing\n  * [Mocks provider](http://boost-experimental.github.io/di/extensions/index.html#mocks-provider)\n* Serializing\n  * [Automatic serialization of PODs](http://boost-experimental.github.io/di/extensions/index.html#serialize)\n* Understanding dependencies\n  * [Dump relationship between types](http://boost-experimental.github.io/di/extensions/index.html#uml-dumper)\n* Restricting allowed types\n  * [Disallow raw pointers, etc.](http://boost-experimental.github.io/di/user_guide/index.html#di_constructible)\n\n----\n\n###Try it yourself online!\n\n---\n\nhttp://boost-experimental.github.io/di/try_it\n\n----\n\n##Still not convinced?\n\n----\n\n###Real-life example?\n\n----\n\n> Let's make a web match-3 game in C++14\n\n\n* [Emscripten](http://emscripten.org)\n* [Ranges](https://github.com/ericniebler/range-v3)\n* [Dependency Injection](https://github.com/boost-experimental/di)\n* [Meta State Machine](https://github.com/boost-experimental/msm-lite)\n\n---\n\n[https://github.com/modern-cpp-examples/match3](https://github.com/modern-cpp-examples/match3)\n\n==============================================================================\n\n##C++ vs Java vs C# Libraries\n\n----\n\n###Writing a DI library is not easy\n\n----\n\n> In C++ it's even harder\n\n* Performance is important\n* Lack of static reflection\n* Pointers, References, Rvalues, Smart Pointers, ...\n* Qualifiers - const, volatile, ...\n* Templates, Concepts, ...\n\n----\n\n###DI Libraries\n\n----\n\n![Libraries](images/libraries.png)\n\n----\n\n##Benchmarks\n\n----\n\n###Create unique objects tree\n\n----\n\n###Baseline - Objects created manually\n\n----\n\n> Types = 64 | Constructor parameters <= 4\n\n![Libraries](images/benchmark_64.png)\n\n----\n\n> Types = 256 | Constructor parameters <= 4\n\n![Libraries](images/benchmark_256.png)\n\n----\n\n> Types = 512 | Constructor parameters <= 4\n\n![Libraries](images/benchmark_512.png)\n\n----\n\n###More Benchmarks\n\n---\n\nhttp://boost-experimental.github.io/di/benchmarks\n\n==============================================================================\n\n##[Boost].DI\n\n==============================================================================\n\n##Overview\n\n----\n\n###A bit of history\n\n----\n\n2012 - 2014\n\n---\n\nVersion C++98 / C++11 - never released\n\n---\n\nhttps://github.com/boost-experimental/di/tree/cpp03\n\n----\n\n* Compiled slowly (Boost.MPL)\n* Long error messages\n* A lot of preprocessor magic (BOOST_PP)\n* A lot of workarounds for compilers (MSVC 2013)\n\n----\n\n2014 - Now\n\n---\n\nVersion C++14 - v1.0.1\n\n---\n\nhttps://github.com/boost-experimental/di\n\nnote:\nExperiments with Boost.Hana\n\n----\n\n* One header (boost/di.hpp) / generated\n* 3k LOC\n* Neither Boost nor STL is required\n* No 'if' branches\n* No 'virtual' methods\n* No 'exceptions' (-fno-exceptions)\n\n----\n\n##Tested compilers\n\n----\n\n* [Clang-3.4+](https://travis-ci.org/boost-experimental/di)\n\n* [XCode-6.1+](https://travis-ci.org/boost-experimental/di)\n\n* [GCC-5.2+](https://travis-ci.org/boost-experimental/di)\n\n* [MSVC-2015+](https://ci.appveyor.com/project/krzysztof-jusiak/di)\n\n----\n\n##Quality (per commit)\n\n> CONTINOUS INTEGRATION\n\n----\n\n* Build with `-Wall -Wextra -Werror -pedantic -pedantic-errors`\n* Travis/Appveyor build on Linux/OS X/Windows (`Boost-Build/CMake`)\n  * Clang-3.4/3.5/3.6/3.7/3.8 (`libc++/stdlibc++`)\n  * GCC-5\n  * MSVC-2015\n* Clang static analysis / Clang-tidy (static check)\n* Valgrind / Dr. Memory (dynamic memory check)\n* Clang-format (style check)\n* Documentation deployment to 'GitHub/gh-pages'\n\n----\n\n##Tests\n\n----\n\n##99% test code coverage\n\n+\n\n##101 examples\n\n----\n\n* Unit tests\n* Functional tests\n* Performance tests / [Benchmarks](https://github.com/boost-experimental/di/tree/cpp14/benchmark)\n* Compilation-error tests ([Validates error message](https://github.com/boost-experimental/di/blob/cpp14/test/pt/di_compile_time.cpp))\n* Run-time performance tests ([Compares generated assembler opcodes](https://github.com/boost-experimental/di/blob/cpp14/test/pt/di_run_time.cpp))\n\n==============================================================================\n\n##Design\n\n----\n\n##Goals\n\n----\n\n* ###Be as fast as possible\n\n  * [Boost].DI has none or minimal run-time overhead\n\n----\n\n* ###Compile as fast as possible\n\n  * [Boost].DI compiles **faster than Java-Dagger2!**\n\n----\n\n* ###Guarantee object creation at compile-time\n\n  * [Boost].DI resolves types at compile-time and gives short and intuitive error messages\n\n> If it compiles it will work!\n\n----\n\n* ###Be as non-intrusive as possible\n\n  * [Boost].DI deduces constructor parameters without reflection\n\n----\n\n* ###Be easy to extend\n\n  * [Boost].DI provides easy way to write custom scopes/policies/providers\n\n----\n\n###Architecture\n\n----\n\n####Design\n\n<img style=\"height:550px;\" src=\"images/di.png\" />\n\n----\n\n* [Bindings](http://boost-experimental.github.io/di/user_guide/index.html#bindings)\n\n  * DSL to create dependencies representation which will be used by core to resolve types\n\n----\n\n* [Scopes]((http://boost-experimental.github.io/di/user_guide/index.html#scopes)\n\n  * Responsible for maintain objects life time\n\n----\n\n* [Providers](http://boost-experimental.github.io/di/user_guide/index.html#providers)\n\n  * Responsible for providing object instance\n\n----\n\n* [Policies](http://boost-experimental.github.io/di/user_guide/index.html#policies)\n\n  * Compile-time limitations for types / Run-time types visitor\n\n----\n\n* [Config](http://boost-experimental.github.io/di/user_guide/index.html#configuration)\n\n  * Configuration for Policies and Providers\n\n----\n\n##In a nutshell (Pseudo-code)\n\n----\n\n####Design\n\n```cpp\ntemplate<class TConfig, class... TBindings>\nclass core::injector {\n  template<class T> constexpr auto create() const noexcept {\n    TConfig::policies<T>()...;\n\n    auto&& dependency = binder{}.resolve<T>(TBindings...);\n    using ctor = ctor_traits<injector, T>();\n\n    return wrapper<T>{\n      dependency.create( // create in a dependency scope\n        TConfig::provider{}.get<decltype(dependency.impl)>(\n          create<ctor>()...))\n    };\n  }\n};\n```\n\n==============================================================================\n\n##User Guide\n\n----\n\n###Create objects tree\n\n----\n\n####App\n[![Create objects tree](images/tutorial_create_objects_tree.png)](images/tutorial_create_objects_tree.png)\n\n----\n\n####App\n```cpp\nstruct renderer { int device; };\nclass iview {\npublic:\n  virtual ~iview() = default;\n  virtual void update() = 0;\n};\nclass model {};\nclass controller {\npublic:\n  controller(model&, view&) {}\n};\nclass user {};\nclass app {\npublic:\n  app(controller&, user&) {}\n};\n```\n\n----\n\n###Usual approach to create `app`\n\n----\n\n####Create App\n```cpp\nrenderer renderer_;\nview view_{\"title\", renderer_};\nmodel model_;\ncontroller controller_{model_, view_};\nuser user_;\napp app_{controller_, user_};\n```\n\n----\n\n###With [Boost].DI\n\n----\n\n####Create App\n```cpp\nauto app = di::make_injector().create<app>();\n```\n\n----\n\n###Where\n\n----\n\n####Make injector\n```cpp\ntemplate<class TConfig = di::config, class... TDeps>\n  requires configurable<TConfig>() && boundable<TDeps...>()\nauto make_injector(TDeps&&...) noexcept;\n```\n\n----\n\n####Injector\n```cpp\ntemplate<class... TDeps> requires boundable<TDeps...>()\nclass injector {\npublic:\n  explicit injector(TDeps&&...) noexcept;\n  injector(injector&&) = default;\n  injector& operator=(injector&&) = default;\n\n  template<class T> requires creatable<T>()\n  constexpr T create() const;\n};\n```\n\n----\n\n###How is that possible without static reflection?\n\n----\n\n###User-defined/implicit/generic conversion operator\n\n----\n\n####Any Type\n```cpp\nstruct any_type {\n  template<class T>\n  constexpr operator T(); // non explicit\n};\n\nint main() {\n  struct example {\n    example(int, double);\n  };\n\n  static_assert(\n    std::is_constructible<example, any_type, any_type>::value);\n}\n```\nhttp://melpon.org/wandbox/permlink/55bToJVYIWO4gald\n\n----\n\n###Problem - Copy constructor / Move constructor\n\n```cpp\nstatic_assert(\n  !std::is_constructible<example, any_type>::value;\n);\n```\nhttp://melpon.org/wandbox/permlink/KFYmTrdJpTjB6UEr\n\n----\n\n###Solution\n\n> Disable the operator when type T is convertible to the parent type\n\n----\n\n###Any Type V2\n\n```cpp\ntemplate<class TParent>\nstruct any_type {\n  template<class T, class =\n    std::enable_if_t<!std::is_same<TParent, T>{}>\n  > constexpr operator T();\n};\n\nint main() {\n  struct example {\n    example(int, double);\n  };\n\n  static_assert(\n    !std::is_constructible<example, any_type<example>>::value);\n}\n```\nhttp://melpon.org/wandbox/permlink/v7OIgdzA81TtVF5a\n\n----\n\n###Generic converting constructor?\n\n----\n\n####Example\n\n```cpp\nclass example {\npublic:\n  template<class T>\n  example(T); // non explicit\n};\n```\n\n----\n\n###Solution\n\n* Restrict allowed types `T`\n* Register constructor explicitly via [inject]\n\n----\n\n###STD.function\n\n```cpp\ntemplate<typename _Res, typename... _ArgTypes>\nclass function<_Res(_ArgTypes...)> {\npublic:\n  template<typename _Functor, typename =\n    _Requires<_Callable<_Functor>, void>> // solve the issue\n\tfunction(_Functor);\n};\n```\n\n----\n\n###Calculate the number of parameters?\n\n----\n\n####Is constructible\n```cpp\nconstexpr auto BOOST_DI_CFG_CTOR_LIMIT_SIZE = 10;\n\ntemplate<class T, std::size_t>\nusing any_type_t = any_type<T>;\n\ntemplate<class...>\nstruct is_constructible;\n\ntemplate<class T, std::size_t... Ns>\nstruct is_constructible<T, std::index_sequence<Ns...>>\n  : std::is_constructible<T, any_type_t<T, Ns>...>\n{ };\n```\n\n----\n\n####Number of constructor parameters\n```cpp\ntemplate <class T, std::size_t... Ns>\nconstexpr auto get_ctor_size(std::index_sequence<Ns...>) noexcept {\n  auto value = 0;\n  int _[]{0, (is_constructible<T, std::make_index_sequence<Ns>>{}\n    ? value = Ns : value)...};\n  return value;\n}\n\nint main() {\n  struct example {\n    example(int, double, float);\n  };\n\n  static_assert(3 == get_ctor_size<example>(\n    std::make_index_sequence<BOOST_DI_CFG_CTOR_LIMIT_SIZE>{}));\n}\n```\nhttp://melpon.org/wandbox/permlink/xoKrb40GYTi5deoJ\n\n----\n\n###How it's done in DI?\n\n----\n\n###Is braces constructible\n\n----\n\n####Is braces constructible\n```cpp\ntemplate <class T, class... TArgs>\ndecltype(void(T{declval<TArgs>()...}), true_type{})\ntest_is_braces_constructible(int);\n\ntemplate <class, class...>\nfalse_type test_is_braces_constructible(...);\n\ntemplate <class T, class... TArgs>\nusing is_braces_constructible =\n  decltype(test_is_braces_constructible<T, TArgs...>(0));\n\ntemplate <class T, class... TArgs>\nusing is_braces_constructible_t =\n  typename is_braces_constructible<T, TArgs...>::type;\n\n```\n\n```cpp\nstruct example { int a; int b; };\nstatic_assert(is_braces_constructible<example, any_type, any_type>{});\n```\n\n----\n\n###Implementation (Pseudo-code)\n\n----\n\n####Any Type V3\n```cpp\ntemplate<class TInjector, class TParent>\nstruct any_type {\n  template<class T, class =\n    std::enable_if_t<!std::is_same<TParent, T>{}>\n    ... // Concepts\n  > constexpr operator T() {\n    return injector_.template create<T>();\n  }\n\n  const TInjector& injector_;\n};\n```\n\n----\n\n####Constructor traits\n```cpp\ntemplate<class TInjector, class T> auto ctor_traits() {\n  if (has_inject<T>() { // BOOST_DI_INJECT\n    return pair<direct, typename T::inject>{};\n  }\n  for (auto i = BOOST_DI_CFG_CTOR_LIMIT_SIZE; i >= 0; --i) {\n    if (is_constructible<T, any_type<TInjector, T>...>())\n      return pair<direct, any_type<TInjector, T>...>{};\n    }\n  }\n  for (auto i = BOOST_DI_CFG_CTOR_LIMIT_SIZE; i >= 0; --i) {\n    if (is_braces_constructible<T, any_type<TInjector, T>...>())\n      return pair<uniform, any_type<TInjector, T>...>{};\n    }\n  }\n  return error(...); // concepts emulation\n};\n```\n\n----\n\n###Coming back to the design\n\n----\n\n####Design\n\n```cpp\ntemplate<class TConfig, class... TBindings>\nclass core::injector {\n  template<class T> constexpr auto create() const noexcept {\n    TConfig::policies<T>()...;\n    auto&& dependency = binder{}.resolve<T>(TBindings...);\n\n    using ctor = ctor_traits<injector, T>(); // -\\\n     // pair<direct/uniform, TCtor...>  <--------/\n\n    return wrapper<T>{\n      dependency.create( // create in a dependency scope\n        TConfig::provider{}.get<decltype(dependency.impl)>(\n          create<ctor>()...))\n    };\n  }\n};\n```\n\n----\n\n##Bindings\n\n> DI Configuration\n\n----\n\n###Interfaces\n\n----\n\n####Interface -> Implementations\n```cpp\nclass iview {\npublic:\n  virtual ~iview() noexcept = default;\n  virtual void update() =0;\n};\n\nclass gui_view: public iview {\npublic:\n  gui_view(std::string title, const renderer&) {}\n  void update() override {}\n};\n\nclass text_view: public iview {\npublic:\n  void update() override {}\n};\n```\n\n----\n\n####Bindings\n```cpp\nauto injector = di::make_injector(\n  di::bind<iview>.to<gui_view>() // bind interface to implementation\n);\n```\n\n####Test\n```cpp\nassert(dynamic_cast<gui_view*>(\n  injector.create<std::unique_ptr<iview>().get())\n);\n```\n\n----\n\n###Values\n\n----\n\n####Aggregate\n```cpp\nstruct T { // create using uniform initialization\n  int& a;  // might be used to serialize\n  double b;\n};\n```\n\n####Bindings\n```cpp\n auto i = 42;\n auto injector = di::make_injector(\n    di::bind<int>.to(i),\n    di::bind<double>.to(87.0)\n );\n injector.create<T>(); // will create T{i, 87.0};\n```\n\n----\n\n###Dynamic conditions\n\n----\n\n####Bindings\n```cpp\nauto use_gui_view = true/false;\n\nauto injector = di::make_injector(\n  di::bind<iview>.to([&](const auto& injector) -> iview& {\n    return use_gui_view ?\n      injector.template create<gui_view&>() :\n      injector.template create<text_view&>();\n  })\n);\n```\n\n####Test\n```cpp\nuse_gui_view = true;\nassert(dynamic_cast<gui_view*>(\n  injector.create<std::unique_ptr<iview>().get())\n);\n\nuse_gui_view = false;\nassert(dynamic_cast<text_view*>(\n  injector.create<std::unique_ptr<iview>().get())\n);\n```\n\n----\n\n###This way XML injection might be easily achieved\n\n---\n\n[XML Injection](http://boost-experimental.github.io/di/extensions/index.html#xml-injection)\n\n----\n\n###Vectors/Lists/Arrays/...\n\n----\n\n###Using initializer list\n\n----\n\n####Bindings\n\n```cpp\nauto injector = di::make_injector(\n  di::bind<int[]>().to({1, 2, 3})\n);\n```\n\n####Test\n```cpp\nauto v = injector.create<std::vector<int>>();\n         // or std::array / std::set\n\nassert(3 == v.size());\nassert(1 == v[0]);\nassert(2 == v[1]);\nassert(3 == v[2]);\n```\n\n----\n\n###Using list of types\n\n----\n\n####Bindings\n\n```cpp\nauto injector = di::make_injector(\n  di::bind<interface*[]>().to<implementation1, implementation2>()\n);\n```\n\n####Test\n```cpp\nauto v = injector.create<\n  std::vector<std::unique_ptr<interface>>>();\n    // or std::array / std::set with\n    // std::shared_ptr, raw pointer, reference, ...\n\nassert(2 == v.size());\nassert(dynamic_cast<implementation1*>(v[0].get()));\nassert(dynamic_cast<implementation2*>(v[1].get()));\n```\n\n----\n\n##Scopes\n\n> Objects life time\n\n----\n\n* [Deduce scope](http://boost-experimental.github.io//di/user_guide/index.html#di_deduce) (default)\n* [Instance scope](http://boost-experimental.github.io//di/user_guide/index.html#di_instance) (bind<>.to(value) where value is maintained by the user)\n* [Unique scope](http://boost-experimental.github.io//di/user_guide/index.html#di_unique) (one instance per request)\n* [Singleton scope](http://boost-experimental.github.io//di/user_guide/index.html#di_singleton) (shared instance)\n\n----\n\n####Scopes life time\n\n```\n+----------------------------------------------+ Singleton scope\n|\n|          Unique scope     Unique scope\n|          +---+            +------+\n|          |                |\n+--+-------+----------------+------------------> Application life time\n   |\n   |\n   +------------------------+ Instance / User scope\n                             (is not controlled by DI)\n```\n\n----\n\n###Scopes deduction\n\n----\n\n| Type | Scope |\n|------|-------|\n| `T`, `T&&`, `T*`, `const T*`, `std::unique_ptr<T>` | [Unique scope](http://boost-experimental.github.io//di/user_guide/index.html#di_unique) |\n| `T&`, `const T&`, `std::shared_ptr<T>`, `boost::shared_ptr<T>`, `std::weak_ptr<T>` | [Singleton scope](http://boost-experimental.github.io//di/user_guide/index.html#di_singleton) |\n\n----\n\n###Explicit change of the scope for a given type\n\n----\n\n####Bindings\n\n```cpp\nauto injector = di::make_injector(\n  di::bind<iview>.to<gui_view>().in(di::singleton) // explicitly\n);\n```\n\n####Test\n\n```cpp\nassert(&injector.create<iview&>() == &injector.create<iview&>());\n```\n----\n\n##Injections / Annotations\n\n----\n\n####Ambiguous constructors\n\n```cpp\nclass model {\n public:\n   model(int size, double precision) { }\n   model(int rows, int cols) { }\n};\n```\n\n> Constructor ambiguity (compilation error)\n\n----\n\n###Solution\n\n----\n\n####Inject\n\n```cpp\nclass model {\n public:\n   model(int size, double precision) { assert(false); }\n   BOOST_DI_INJECT(model, int rows, int cols); // pick me!\n};\n\nmodel::model(int rows, int cols) {} // implementation is not affected\n```\n\n####Test\n\n```cpp\nauto injector = di::make_injector();\ninjector.create<model>(); // compiles and run\n```\n----\n\n###Distinguish rows from columns\n\n----\n\n###Annotations / Names\n\n----\n\n####Names\n\n```cpp\nclass model {\n public:\n   model(int size, double precision) { }\n\n   BOOST_DI_INJECT(model, (named = \"rows\"_s) int rows\n                        , (named = \"cols\"_s) int cols);\n};\n\nmodel::model(int rows, int cols) {} // implementation stays the same\n```\n\n####Bindings\n\n```cpp\nauto injector = di::make_injector(\n  di::bind<int>.named(\"rows\"_s).to(6)\n, di::bind<int>.named(\"cols\"_s).to(8)\n);\n```\n\n----\n\n###Where\n\n----\n\n####Compile-time string\n\n```cpp\ntemplate <char...>\nstruct string {};\n\ntemplate <class T, T... Ts>\nconstexpr auto operator\"\"_s() {\n  return string<Ts...>{}\n}\n```\n\n> It's not standard!\n> For a standard solution use unique types instead\n\n```cpp\nauto rows = []{}; // using r = decltype(rows);\nauto cols = []{}; // static_assert(!std::is_same<decltype(cols), r>{});\n```\n\n----\n\n##Modules\n\n> Split DI configuration\n\n----\n\n###Modules\n\n```cpp\nauto view_module = [] {\n  return di::make_injector(\n    di::bind<icanvas>.to<sdl_canvas>()\n  , di::bind<irenderer>.to<gui_renderer>()\n  );\n};\n\nauto model_module = [] {\n  return di::make_injector(\n    di::bind<config>.to({6, 8})\n  , di::bind<irandom>.to<mt19937_random>()\n  );\n};\n```\n\n####Bindings\n\n```cpp\nauto injector = di::make_injector(\n  view_module(), model_module()\n);\n\ninjector.create<app>();\n```\n\n----\n\n###Module in CPP file\n\n----\n\n###Expose types via injector\n\n> Only exposed types will be creatable\n\n----\n\n####Expose Modules\n\n```cpp\ndi::injector<view&> view_module() { // expose view\n  return di::make_injector(\n    di::bind<icanvas>.to<sdl_canvas>()\n  , di::bind<irenderer>.to<gui_renderer>()\n  );\n}\n```\n\n```cpp\ndi::injector<model&> model_module() { // expose model\n  return di::make_injector(\n    di::bind<config>.to({6, 8})\n  , di::bind<irandom>.to<mt19937_random>()\n  );\n}\n```\n\n####Bindings\n\n```cpp\nauto injector = di::make_injector(\n  view_module(), model_module()\n);\n\ninjector.create<app>();\n```\n\n----\n\n##Additional Readings\n\n---\n\nhttp://boost-experimental.github.io/di/user_guide\n\nhttp://boost-experimental.github.io/di/tutorial\n\n==============================================================================\n\n##Error messages / Concepts\n\n----\n\n###Concepts emulation\n\n----\n\n###Common approach without concepts\n\n----\n\n####Requires\n```cpp\n#define REQUIRES(...) \\\n  typename std::enable_if<__VA_ARGS__, int>::type = 0\n```\n\n####Example\n```cpp\ntemplate<class T, REQUIRES(std::is_same<T, int>{})>\nvoid call_if_int();\n```\n\n----\n\n####Example - Providable\n```cpp\ntemplate <class...>\nusing is_valid_expr = true_type;\n```\n\n```cpp\ntemplate <class T>\nstd::false_type providable_impl(...); // or some type error message\n\ntemplate <class T>\nauto providable_impl(T&& t) -> is_valid_expr<\n  decltype(t.template is_creatable<T>())\n, decltype(t.template get<T>())\n>;\n\ntemplate <class T>\nconstexpr auto providable() {\n  return decltype(providable_impl(std::declval<T>()))::value;\n}\n```\n\n----\n\n###How to get better error messages?\n\n----\n\n###Transport the substitution failures\n\n----\n\n###Problem\n\n> User-defined/implicit/generic conversion operator\n\n----\n\n###Any Type\n```cpp\nstruct any_type {\n  template<class T>\n  constexpr operator T(); // no easy way to return a failure from T\n};\n```\n\n----\n\n###Solution\n\n----\n\n###Split concepts emulation into 2 parts\n\n----\n\n###Check the predicate\n\n----\n\n###Display the error message\n\n----\n\n###How?\n\n----\n\n###Creatable / Concept\n\n----\n\n####Creatable\n```cpp\ntemplate <class T, class TDependency = binder::resolve_t<T>>\nusing creatable = std::is_convertible<\n  TDependency::template try_create<T>(\n    provider<ctor_traits<typename TDependency::impl>>{}\n  );\n>;\n```\n\n####Where\n\n```cpp\ntemplate <class T, class TProvider>\nauto try_create(const TProvider& provider) -> wrapper<\n  unique, decltype(provider.get())> // `auto -> decltype` will disable\n                                    // function if not applicable\ntry_create(const TProvider&);\n```\n\n----\n\n####Constructor deduction\n\n```cpp\nstruct any_type {\n  template <class T, REQUIRES(creatable<T>())>\n  constexpr operator T(); // disabled when type is not creatable\n};\n```\n\n----\n\n###Show the error\n\n----\n\n####Error deduction / Simplified\n```cpp\ntemplate<class T>\nconstexpr auto show_the_error() {\n  return aux::is_polymorphic<T>{} ?\n    abstract_type<T>::is_not_bound{} :\n    type<T>::cant_be_created{};\n};\n```\n\n----\n\n> Static inline function without implementation will show\n  a warning without a CALL STACK!\n\n----\n\n###Abstract type is not bound\n\n----\n\n####Abstract Type is not bound\n```cpp\ntemplate <class T>\nstruct abstract_type {\n  struct is_not_bound {\n    constexpr operator T() const { return error(); }\n\n    // no implementation\n    static inline T\n      error(_ = \"type is not bound, did you forget to add:\n          'di::bind<interface>.to<implementation>()'?\");\n  };\n};\n```\n\n----\n\n###Change the warning into error\n\n----\n\n####Lift warnings into errors\n```cpp\n#if defined(__clang__)\n#pragma clang diagnostic error \"-Wundefined-inline\"\n#elif defined(__GCC__)\n#pragma GCC diagnostic error \"-Werror\"\n#elif defined(__MSVC__)\n#pragma warning(disable : 4822)\n#endif\n```\n\n----\n\n###From top to bottom\n\n----\n\n####Injector\n\n```cpp\ntemplate <class T, REQUIRES(creatable<T>())>\nconstexpr T create() const {\n  return create_successful_impl(type<T>{}); // compilation time speed up\n}\n\ntemplate <class T, REQUIRES(!creatable<T>())>\n[[deprecated(\"creatable constraint not satisfied\")]]\nconstexpr T create() const {\n  return create_impl(type<T>{});\n}\n```\n\n----\n\n####Error deduction\n\n```cpp\ntemplate<class T, class... TArgs,\n  REQUIRES(std::is_constructible<T, TArgs...>{})>\n  // TArgs migth be disabled by any_type\nconstexpr auto create_impl(TArgs&&... args) {\n  return T{std::forward<TArgs>(args...)};\n}\n\ntemplate<class T, class... TArgs,\n  REQUIRES(!std::is_constructible<T, TArgs...>{})>\nconstexpr auto create_impl(TArgs&&... args) {\n  return show_the_error<T>{};\n}\n```\n\n----\n\n###Example\n\n----\n\n####App\n```cpp\nstruct renderer {\n  int device;\n};\nclass view {\npublic:\n  view(std::string title, const renderer&);\n};\nclass model {};\nclass controller {\npublic:\n  controller(model&, iview&) {} // iview interface\n};\nclass user {};\nclass app {\npublic:\n  app(controller&, user&) {}\n};\n```\n\n```cpp\nauto injector = di::make_injector(); // no bindings for iview\ninjector.create<app>(); // compilation error\n```\n\n----\n\n###Compilation error message\n\n----\n\n###Clang\n\n```cpp\nerror: 'create<app>' is deprecated: creatable constraint not satisfied\n  injector.create<app>();\n           ^\nnote 'create<app>' has been explicitly marked deprecated here\n  create\n  ^\nerror: inline function 'abstract_type<iview>::is_not_bound::error'\n error(_ = \"type is not bound, did you forget to add:\n           'di::bind<interface>.to<implementation>()'?\");\n```\n\n----\n\n###GCC\n\n```cpp\nerror: ‘T injector<...>::create() const [with T = app]’ is deprecated:\n  creatable constraint not satisfied\n   injector.create<app>();\n                        ^\nnote declared here\n   create\n   ^\nerror: inline function ‘abstract_type<T>::is_not_bound::error(_)\n  [with T = iview]’ used but never defined\n  error(_ = \"type is not bound, did you forget to add:\n            'di::bind<interface>.to<implementation>()'?\");\n```\n\n----\n\n###MSVC\n\n```cpp\nerror C4996: 'injector<...>::create': creatable constraint not\n                                      satisfied\n        with\n        [\n            TConfig=config\n        ]\nnote see declaration of 'injector<...>::create'\n        with\n        [\n            TConfig=config\n        ]\nerror C4506: no definition for inline function\n            'abstract_type<T>::is_not_bound::error(_)'\n        with\n        [\n            T=iview\n        ]\n```\n\n> Suggestions are not shown on MSVC\n\n----\n\n##BOOST DI CFG DIAGNOSTICS LEVEL\n\n----\n\n###BOOST DI CFG DIAGNOSTICS LEVEL=0\n\n```cpp\nerror: 'create<app>' is deprecated: creatable constraint not satisfied\n```\n\n----\n\n###BOOST DI CFG DIAGNOSTICS LEVEL=1\n\n> Default\n\n```cpp\nerror: 'create<app>' is deprecated: creatable constraint not satisfied\n  injector.create<app>();\n\nerror: inline function 'abstract_type<iview>::is_not_bound::error'\n error(_ = \"type is not bound, did you forget to add:\n           'di::bind<interface>.to<implementation>()'?\");\n```\n----\n\n###BOOST DI CFG DIAGNOSTICS LEVEL=2\n\n```cpp\nerror: 'create<app>' is deprecated: creatable constraint not satisfied\n\nerror: function ‘T creating<T>::type(_) [with T = app]’\nerror: function ‘T creating<T>::type(_) [with T = controller]’\n\nerror: inline function 'abstract_type<iview>::is_not_bound::error'\n error(_ = \"type is not bound, did you forget to add:\n           'di::bind<interface>.to<implementation>()'?\");\n```\n\n==============================================================================\n\n##Extensions\n\n----\n\n###Provide an easy way to extend DI functionality without changing the core\n\n----\n\n* [Scopes](http://boost-experimental.github.io/di/user_guide/index.html#scopes)\n  * Customize object life time\n\n* [Policies](http://boost-experimental.github.io/di/user_guide/index.html#policies)\n  * Check/Visit created objects\n\n* [Providers](http://boost-experimental.github.io/di/user_guide/index.html#providers)\n  * Customize object creation\n\n----\n\n###Print types / Policy\n\n----\n\n####Dump types policy\n```cpp\nstruct types_dumper : di::config {\n  static auto policies(...) noexcept {\n    return di::make_policies([](auto type) {\n      using T = decltype(type);\n      using ctor = typename T::type;\n      using impl = typename T::given;\n      std::cout << ... << std::endl;\n    });\n  }\n};\n```\n\n----\n\n###Example Output\n\n----\n\n####App\n\n```cpp\nclass iview {\npublic:\n  virtual ~iview() noexcept = default;\n  virtual void update() =0;\n};\nstruct model { std::vector<int> board; };\nclass controller {\npublic:\n  controller(model&, iview&) {}\n};\nstruct user {};\n\nclass app {\npublic:\n  app(controller&, user&) {}\n};\n```\n\n----\n\n####Types dumper\n\n```cpp\nauto injector = di::make_injector<types_dumper>(\n  di::bind<iview>.to<gui_view>()\n);\n\ninjector.create<app>();\n```\n\n* app\n    * controller\n        * model\n            * int[]\n        * iview -> gui_view\n    * user\n\n----\n\n###Serialize / Policy\n\n> PODs only\n\n----\n\n###Serializable\n\n----\n\n####Configuration\n\n```cpp\nstruct serializable : di::config {\n  template <class TInjector>\n  static auto policies(const TInjector& injector) noexcept {\n    return di::make_policies([&](auto type) {\n      using T = decltype(type);\n      ...\n      auto& serialize = injector.template create<serializable&>();\n      auto ptr = reinterpret_cast<char*>(&injector.template create<T&>());\n      const auto offset = calculate_offset(sizeof(T), alignof(T));\n      serialize.emplace_back({get_type<T>(), ptr, offset});\n      ...\n    }\n  }\n};\n```\n\n----\n\n###Serialize\n\n----\n\n####Serialize closure\n```cpp\nauto serialize = [](const auto& injector, auto& str) {\n  serializable_call_t::apply(injector, [&](const auto& o, auto t) {\n    str << o.path << \" \"\n        << o.type << \" \"\n        << o.offset << \" \"\n        << std::to_string(\n             *reinterpret_cast<decltype(t)*>(o.ptr() + o.offset)\n           )\n        << std::endl;\n  });\n};\n```\n\n----\n\n###Deserialize\n\n----\n\n####Deserialize closure\n```cpp\nauto deserialize = [](const auto& injector, auto& str) {\n  serializable_call_t::apply(\n    injector, [&](const auto& o, auto t, auto line) {\n    std::string line, path, type;\n    decltype(t) value = {};\n    auto offset = 0;\n    std::istringstream iss{line};\n    iss >> path >> type >> offset >> value;\n    *reinterpret_cast<decltype(t)*>(o.ptr() + offset) = value;\n  });\n};\n```\n\n----\n\n###Example\n\n----\n\n####App\n\n```cpp\nstruct data { unsigned int ui; long l; float f; };\nstruct even_more_data { double d; bool b; long long ll; };\nstruct more_data { int i; long double ld; even_more_data d; short s; };\n\nclass app {\npublic:\n  app(data& d, more_data& md) : d(d), md(md) {}\n\n  void update(); // change data, more_data\n\nprivate:\n  data& d;\n  more_data& md;\n};\n```\n\n----\n\n####Create injector\n```cpp\nauto injector = di::make_injector<serializable>();\ninjector.create<app>();\n```\n\n####Serialize\n```cpp\nstd::stringstream str;\nserialize(injector, str);\n```\n\n####Deserialize\n```cpp\ndeserialize(injector, str);\n```\n\n----\n\n####Example Output\n\n```cpp\napp->data unsigned_int 13\napp->data long 23\napp->data float 0.330000\napp->more_data int 44\napp->more_data long_double 42.000000\napp->more_data->even_more_data double 55.000000\napp->more_data->even_more_data bool 1\napp->more_data->even_more_data long_long 66\napp->more_data short 77\n```\n\n----\n\n###Constructible / Policy\n\n----\n\n###let's disallow types which are not PODs or are not bound\n\n----\n\n####Configuration\n```cpp\nstruct is_pod_or_is_bound : di::config {\n  static auto policies(...) noexcept {\n    using namespace di::policies;\n    return di::make_policies(\n      constructible(std::is_pod<_>{} || is_bound<_>{})\n    );\n  }\n};\n```\n\n----\n\n####App\n\n```cpp\nstruct not_a_pod { virtual ~not_a_pod() = default; };\nstruct app { app(not_a_pod, int, double) { } };\n```\n\n####Injector\n```cpp\nauto injector = di::make_injector<is_pod_or_is_bound>(\n  di::bind<>().to(42)\n, di::bind<not_a_pod>().to(not_a_pod{})\n);\n\ninjector.create<app>();\n```\n\n----\n\n###Error case / compilation error\n\n----\n\n####Create\n```cpp\ndi::make_injector<is_pod_or_is_bound>().create<app>();\n```\n\n####Error message\n```cpp\nerror: 'create<app>' is deprecated: creatable constraint not satisfied\n  injector.create<app>();\n           ^\nerror: inline function 'type<not_a_pod>::not_allowed_by<\n  or_<std::is_pod<_>, is_bound<_>>>::error'\n\n  error(_ = \"type disabled by constructible policy\n           , added by BOOST_DI_CFG or make_injector<CONFIG>!\");\n```\n\n> Error will be shown for ALL types which don't satisfy requirements\n\n----\n\n###Mocks injector / Provider\n\n----\n\n###Automatic injection of mocks for interfaces\n\n----\n\n####Configuration\n\n```cpp\nstruct mocks_provider : di::config {\n  struct mock_provider {\n    template <class T, class TInit, class TMemory, class... TArgs>\n    std::enable_if_t<!std::is_polymorphic<T>::value, T*> get(\n    get(const TInit&, const TMemory&, TArgs&&... args) {\n      return new T{std::forward<TArgs>(args)...);\n    }\n\n    template <class T, class TInit, class TMemory, class... TArgs>\n    std::enable_if_t<std::is_polymorphic<T>::value, T*> get(\n      return &get_mock<T>();\n    }\n  };\n\npublic:\n  static auto provider(...) noexcept { return mock_provider{}; }\n};\n```\n\n----\n\n###Get mock\n\n---\n\n> https://github.com/eranpeer/FakeIt\nhttps://github.com/dascandy/hippomocks\n\n----\n\n###Example\n\n----\n\n####App\n\n```cpp\nclass iview {\npublic:\n  virtual ~iview() noexcept = default;\n  virtual void update() =0;\n};\nstruct model { std::vector<int> board; };\nclass controller {\npublic:\n  controller(model&, iview&) {}\n};\nstruct user {};\n\nclass app {\npublic:\n  app(controller&, user&) {}\n};\n```\n\n----\n\n####Injector\n\n```cpp\nauto injector = di::make_injector<mocks_provider>(\n  di::bind<int[]>.to({1, 2, 3, 4, 5, 6})\n  // we don't have to bind iview!\n);\n\ninjector.create<app>();\n```\n\n####Fake it\n\n```cpp\nauto&& v = get_mock<iview>();\nWhen(Method(v, update)).AlwaysDo([]{...});\n```\n\n---\n\nhttps://github.com/modern-cpp-examples/match3\n\n----\n\n###More extensions\n\n---\n\n[Constructor Bindings](http://boost-experimental.github.io/di/extensions/index.html#constructor-bindings) | [Contextual Bindings](http://boost-experimental.github.io/di/extensions/index.html#contextual-bindings)\n\n[XML Injection](http://boost-experimental.github.io/di/extensions/index.html#xml-injection) | [Assisted Injection](http://boost-experimental.github.io/di/extensions/index.html#assisted-injection)\n\n[Concepts](http://boost-experimental.github.io/di/extensions/index.html#concepts) | [Lazy](http://boost-experimental.github.io/di/extensions/index.html#lazy) | [Named Parameters](http://boost-experimental.github.io/di/extensions/index.html#named-parameters)\n\n[Types Dumper](http://boost-experimental.github.io/di/extensions/index.html#types-dumper) | [UML Dumper](http://boost-experimental.github.io/di/extensions/index.html#uml-dumper) | [Serialize](http://boost-experimental.github.io/di/extensions/index.html#serialize)\n\n[Mocks Provider](http://boost-experimental.github.io/di/extensions/index.html#mocks-provider)\n\n[Scoped Scope](http://boost-experimental.github.io/di/extensions/index.html#scoped-scope) | [Session Scope](http://boost-experimental.github.io/di/extensions/index.html#session-scope) | [Shared Scope](http://boost-experimental.github.io/di/extensions/index.html#shared-scope)\n\n==============================================================================\n\n##Performance\n\n----\n\n###Environment\n\n----\n\n###2.3 GHz Intel Core i7 / 16 GB 1600 Mhz DDR3\n\n----\n\n##Run-time\n\n----\n\n###Bind type to value\n\n----\n\n####Bindings\n```cpp\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto test() {\n  auto injector = di::make_injector(\n    di::bind<int>.to(42)\n  );\n\n  return injector.create<int>();\n}\n```\n\n----\n\n###ASM x86-64\n\n```\nmov $0x2a,%eax\nretq\n```\n\n####Same as\n\n```\nreturn 42;\n```\n\n\n----\n\n###How?\n\n----\n\n###No run-time branches\n\n> Everything is known at compile-time and may be optimized\n\n----\n\n####Create (ASM x86-64)\n\n```cpp\ninjector.create<int>();  ---------------\\\n  create_successful_impl(type<int>());  |      mov $0x2a,%eax\n    scope.create<int>(provider);        |--->  retq\n      provider.get<int>();              |\n        return 42; ---------------------/\n```\n\n----\n\n###Bind interface to implementation\n\n----\n\n####Bindings\n```cpp\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\nauto test() {\n  auto injector = di::make_injector(\n    di::bind<interface>.to<implementation>()\n  );\n\n  return injector.create<std::unique_ptr<interface>>();\n}\n```\n\n----\n\n###ASM x86-64\n\n```\npush   %rbx\nmov    %rdi,%rbx\nmov    $0x8,%edi\ncallq  0x4009f0 <_Znwm@plt>\nmovq   $0x400e78,(%rax)\nmov    %rax,(%rbx)\nmov    %rbx,%rax\npop    %rbx\nretq\n```\n\n####Same as\n\n```cpp\nreturn std::make_unique<implementation>();\n```\n\n----\n\n##Compile-time\n\n----\n\n###Include DI header\n\n----\n\n####di.hpp\n```cpp\n#include <boost/di.hpp>\n\nint main() {}\n```\n\n```sh\n$CXX -std=c++14 di.cpp # 0.050s\n```\n> Neither STL nor Boost is required\n\n----\n\n###Construction Benchmarks\n\n----\n\n####Create Benchmark\n![Performance](images/performance_small.png)\n\n```cpp\n4248897537 instances created\n132 different types\n10 modules\n```\n\n----\n\n##How quick compilation times were achieved?\n\n----\n\n###Always measure!\n\n----\n\n###Guidelines\n\n----\n\n###Limit template instantiations\n\n----\n\n###Avoid 'naive' recursive template algorithms\n\n----\n\n###Do checks once and as early as possible\n\n----\n\n###Avoid long type names (Variadic templates)\n\n----\n\n###Take advantage of compiler built-ins (via STL) and common tricks to gain performance\n\n```cpp\ntemplate<bool...> struct bool_seq;\n\ntemplate<class... Ts>\nusing and_ = std::is_same<\n    bool_seq<Ts::value...>,\n    bool_seq<(Ts::value, true)...>\n>;\n```\n\n```cpp\n__make_index_seq is O(1) since Clang 3.9\n```\n\n----\n\n###Implementation details\n\n----\n\n###Resolve\n\n----\n\n####Injector Dependencies\n\n```cpp\ntemplate<class T>\nstruct dependency_concept { };\n\ntemplate<class I, class Impl>\nstruct dependency\n  : pair<dependency_concept<I>, dependency<I, Impl>> { };\n\ntemplate<class... Ts>\nstruct injector : Ts...  { };\n\ntemplate<class... Ts>\nauto make_injector(Ts...) {\n  return injector<Ts...>{};\n}\n```\n\n----\n\n####Binder / Resolver\n\n```cpp\nstruct binder {\n  template <class TDefault, class>\n  static TDefault resolve_impl(...) noexcept { return {}; }\n\n  template <class, class TConcept, class TDependency>\n  static decltype(auto)\n  resolve_impl(pair<TConcept, TDependency>* dep) noexcept {\n    return static_cast<TDependency&>(*dep);\n  }\n\n  template <class T, class TDefault, class TDeps>\n  static decltype(auto) resolve(TDeps* deps) noexcept {\n    using dependency = dependency_concept<std::decay_t<T>>;\n    return resolve_impl<TDefault, dependency>(deps);\n  }\n};\n```\n\n----\n\n###Example\n\n----\n\n####Resolve\n```cpp\nauto injector = make_injector(dependency<i1, impl1>{});\n\nstruct default_dependency{};\n\nstatic_assert(std::is_same<dependency<i1, impl1>,\n  std::decay_t<decltype(\n    binder{}.resolve<i1, default_dependency>(&injector))\n  >>{}\n);\n\nstatic_assert(std::is_same<default_dependency,\n  std::decay_t<decltype(\n    binder{}.resolve<i2, default_dependency>(&injector)\n  )>>{}\n);\n```\nhttp://melpon.org/wandbox/permlink/yMIaCIIDtjBXmV0E\n\n----\n\n###Resolve - Benchmark\n\n----\n\n| Number of dependencies | Resolve dependencies (all)       |\n| ---------------------- | -------------------------------- |\n| 1                      | 0.077s                           |\n| 16                     | 0.079s                           |\n| 32                     | 0.082s                           |\n| 64                     | 0.083s                           |\n| 128                    | 0.089s                           |\n\n----\n\n###Creatable Concept\n\n----\n\n###Idea\n\n----\n\n```cpp\n                            creatable<T>\n                                 |\n                  /--------------+-----------------\\\n                Yes                                No\n                 |                                 |\n        create_successful_impl                 create_impl\n        // No error checking                // Error checking\n```\n\n----\n\n####Creatable concept\n```cpp\ntemplate <class T> requires creatable<T>()\nconstexpr T create() const {\n  // no checks for errors!\n  return create_successful_impl(type<T>{});\n}\n\ntemplate <class T> requires !creatable<T>()\n[[deprecated(\"creatable constraint not satisfied\")]]\nconstexpr T create() const {\n  // checks for errors to report it\n  return create_impl(type<T>{});\n}\n```\n\n----\n\n###'Type-Name' erasure\n\n----\n\n###Long type names may increase your compilation times by a huge factor!\n\n----\n\n####Long Type-Name due to variadic templates\n```cpp\ntemplate<class... Ts> auto make_injector(Ts... args) {\n  return injector<Ts...>(args...); // may produce a long type name\n}\n\nauto injector = make_injector(...);\ninjector.create<T>(); // compiles slowly due to\n                      // long type names comparisons\n```\n\n----\n\n###Solution - inheritance\n\n> Hide the long type name\n\n----\n\n####Type-Name erasure\n```cpp\nauto injector = di::make_injector(...);\n\nstruct erase_long_type_name : decltype(injector) {\n  using decltype(injector)::injector;\n};\n\nerase_long_type_name{injector}.create<T>(); // quick to compile\n                                            // type name =>\n                                            // erase_long_type_name\n```\n\n----\n\n###Problem - it's not flexible\n\n> It has to be done from 'non long type name' context -> user context\n\n----\n\n###Solution - lambda expression\n\n----\n\n####Type-Name erasure\n```cpp\nstatic auto make_injector_impl = [](auto injector) {\n  using injector_t = decltype(injector);\n\n  struct i : injector_t {\n    explicit i(injector_t&& other)\n      : injector_t(std::move(other)) { }\n  };\n\n  return i{std::move(injector)};\n};\n```\n\n----\n\n###'Type-Name' erasure - Benchmark\n\n---\n\nhttp://melpon.org/wandbox/permlink/aot9ePGgtKtVKVKP\n\n----\n\n| Solution                         | Number of bindings | Time    |\n| -------------------------------- | ------------------ | ------- |\n| Long Type-Name                   | 256                | 5.321s  |\n| Type-Name erasure / inheritance       | 256                | 2.521s  |\n| Type-Name erasure / lambda expression | 256                | 3.278s  |\n\n----\n\n##More Benchmarks\n\n---\n\nhttp://boost-experimental.github.io/di/overview\n\n==============================================================================\n\n##DI vs ISO C++\n\n----\n\n###Missing Features\n\n----\n\n###Static reflection\n\n----\n\n####Deduction of constructor parameters\n\n```cpp\nclass example {\npublic:\n  example(int, double);\n};\n\nstatic_assert(std::is_same<\n  std::tuple<int, double>\n, std::function_traits_t<decltype(&example::example)>::args\n>{});\n```\n\n----\n\n###User defined attributes\n\n----\n\n####Select constructor\n\n```cpp\nclass example {\npublic:\n  [[inject]]\n  example(double, int); // pick me!\n\n  example(int, double);\n  example(int, double, float);\n};\n```\n\n----\n\n####Named parameters\n\n```cpp\nclass example {\npublic:\n  example([[named(\"int_a\")]] int a, [[named(\"int_b\")]] int b) {\n    assert(42 == a);\n    assert(87 == b);\n  }\n};\n```\n\n####Bindings\n\n```cpp\nauto injector = di::make_injector(\n  di::bind<int>.named(\"int_a\"_s).to(42)\n, di::bind<int>.named(\"int_b\"_s).to(87)\n);\n```\n\n----\n\n###Where\n\n----\n\n####Compile-time name\n\n```cpp\n\"int_a\"_s\n\"int_b\"_s\n```\n\n####String-literal-operator-template\n```cpp\ntemplate <class T, T... Ts>\nconstexpr auto operator\"\"_s();\n```\n\n----\n\n###Retrieve a concept type\n\n----\n\n####Dummy Concept\n\n```cpp\ntemplate <typename T>\nconcept bool Dummy() {\n  return requires(T t) {\n    { t.dummy() };\n  };\n}\n\nstruct DummyImpl {\n  void dummy() {}\n};\n```\n\n```cpp\nstruct app {\n  app(Dummy); // => template<class T> app(T) requires Dummy<T>()\n};            // T vs Dummy?\n```\n\n####Bind concept to a type\n\n```cpp\ndi::bind<Dummy>.to<DummyImpl>() // not possible\n```\n\n==============================================================================\n\n##Questions?\n\n* Documentation\n    * http://boost-experimental.github.io/di\n\n* Source Code\n    * https://github.com/boost-experimental/di\n\n* Try it online\n    * http://boost-experimental.github.io/di/try_it\n\n==============================================================================\n\n##Thank you\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"lib/js/head.min.js\"></script>\n\t\t<script src=\"js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available at:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\n        // Display controls in the bottom right corner\n        controls: true,\n\n        // Display a presentation progress bar\n        progress: true,\n\n        // Display the page number of the current slide\n        slideNumber: true,\n\n        // Push each slide change to the browser history\n        history: true,\n\n        // Enable keyboard shortcuts for navigation\n        keyboard: true,\n\n        // Enable the slide overview mode\n        overview: true,\n\n        // Vertical centering of slides\n        center: true,\n\n        // Enables touch navigation on devices with touch input\n        touch: true,\n\n        // Loop the presentation\n        loop: false,\n\n        // Change the presentation direction to be RTL\n        rtl: false,\n\n        // Turns fragments on and off globally\n        fragments: false,\n\n        // Flags if the presentation is running in an embedded mode,\n        // i.e. contained within a limited portion of the screen\n        embedded: false,\n\n        // Flags if we should show a help overlay when the questionmark\n        // key is pressed\n        help: true,\n\n        // Flags if speaker notes should be visible to all viewers\n        showNotes: false,\n\n        // Number of milliseconds between automatically proceeding to the\n        // next slide, disabled when set to 0, this value can be overwritten\n        // by using a data-autoslide attribute on your slides\n        autoSlide: 0,\n\n        // Stop auto-sliding after user input\n        autoSlideStoppable: true,\n\n        // Enable slide navigation via mouse wheel\n        mouseWheel: true,\n\n        // Hides the address bar on mobile devices\n        hideAddressBar: true,\n\n        // Opens links in an iframe preview overlay\n        previewLinks: false,\n\n        // Transition style\n        transition: 'convex', // none/fade/slide/convex/concave/zoom\n\n        // Transition speed\n        transitionSpeed: 'default', // default/fast/slow\n\n        // Transition style for full page slide backgrounds\n        backgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n        // Number of slides away from the current that are visible\n        viewDistance: 3,\n\n        // Parallax background image\n        parallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n        // Parallax background size\n        parallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n        // Number of pixels to move the parallax background per slide\n        // - Calculated automatically unless specified\n        // - Set to 0 to disable movement along an axis\n        parallaxBackgroundHorizontal: null,\n        parallaxBackgroundVertical: null,\n\n\t\t\t\t// Optional reveal.js plugins\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\t\t\t\t\t{ src: 'plugin/notes/notes.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/js/reveal.js",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n(function( root, factory ) {\n\tif( typeof define === 'function' && define.amd ) {\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine( function() {\n\t\t\troot.Reveal = factory();\n\t\t\treturn root.Reveal;\n\t\t} );\n\t} else if( typeof exports === 'object' ) {\n\t\t// Node. Does not work with strict CommonJS.\n\t\tmodule.exports = factory();\n\t} else {\n\t\t// Browser globals.\n\t\troot.Reveal = factory();\n\t}\n}( this, function() {\n\n\t'use strict';\n\n\tvar Reveal;\n\n\tvar SLIDES_SELECTOR = '.slides section',\n\t\tHORIZONTAL_SLIDES_SELECTOR = '.slides>section',\n\t\tVERTICAL_SLIDES_SELECTOR = '.slides>section.present>section',\n\t\tHOME_SLIDE_SELECTOR = '.slides>section:first-of-type',\n\n\t\t// Configuration defaults, can be overridden at initialization time\n\t\tconfig = {\n\n\t\t\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t\t\t// when the presentation is scaled to fit different resolutions\n\t\t\twidth: 960,\n\t\t\theight: 700,\n\n\t\t\t// Factor of the display size that should remain empty around the content\n\t\t\tmargin: 0.1,\n\n\t\t\t// Bounds for smallest/largest possible scale to apply to content\n\t\t\tminScale: 0.2,\n\t\t\tmaxScale: 1.5,\n\n\t\t\t// Display controls in the bottom right corner\n\t\t\tcontrols: true,\n\n\t\t\t// Display a presentation progress bar\n\t\t\tprogress: true,\n\n\t\t\t// Display the page number of the current slide\n\t\t\tslideNumber: false,\n\n\t\t\t// Push each slide change to the browser history\n\t\t\thistory: false,\n\n\t\t\t// Enable keyboard shortcuts for navigation\n\t\t\tkeyboard: true,\n\n\t\t\t// Optional function that blocks keyboard events when retuning false\n\t\t\tkeyboardCondition: null,\n\n\t\t\t// Enable the slide overview mode\n\t\t\toverview: true,\n\n\t\t\t// Vertical centering of slides\n\t\t\tcenter: true,\n\n\t\t\t// Enables touch navigation on devices with touch input\n\t\t\ttouch: true,\n\n\t\t\t// Loop the presentation\n\t\t\tloop: false,\n\n\t\t\t// Change the presentation direction to be RTL\n\t\t\trtl: false,\n\n\t\t\t// Turns fragments on and off globally\n\t\t\tfragments: true,\n\n\t\t\t// Flags if the presentation is running in an embedded mode,\n\t\t\t// i.e. contained within a limited portion of the screen\n\t\t\tembedded: false,\n\n\t\t\t// Flags if we should show a help overlay when the questionmark\n\t\t\t// key is pressed\n\t\t\thelp: true,\n\n\t\t\t// Flags if it should be possible to pause the presentation (blackout)\n\t\t\tpause: true,\n\n\t\t\t// Flags if speaker notes should be visible to all viewers\n\t\t\tshowNotes: false,\n\n\t\t\t// Number of milliseconds between automatically proceeding to the\n\t\t\t// next slide, disabled when set to 0, this value can be overwritten\n\t\t\t// by using a data-autoslide attribute on your slides\n\t\t\tautoSlide: 0,\n\n\t\t\t// Stop auto-sliding after user input\n\t\t\tautoSlideStoppable: true,\n\n\t\t\t// Enable slide navigation via mouse wheel\n\t\t\tmouseWheel: false,\n\n\t\t\t// Apply a 3D roll to links on hover\n\t\t\trollingLinks: false,\n\n\t\t\t// Hides the address bar on mobile devices\n\t\t\thideAddressBar: true,\n\n\t\t\t// Opens links in an iframe preview overlay\n\t\t\tpreviewLinks: false,\n\n\t\t\t// Exposes the reveal.js API through window.postMessage\n\t\t\tpostMessage: true,\n\n\t\t\t// Dispatches all reveal.js events to the parent window through postMessage\n\t\t\tpostMessageEvents: false,\n\n\t\t\t// Focuses body when page changes visiblity to ensure keyboard shortcuts work\n\t\t\tfocusBodyOnPageVisibilityChange: true,\n\n\t\t\t// Transition style\n\t\t\ttransition: 'slide', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Transition speed\n\t\t\ttransitionSpeed: 'default', // default/fast/slow\n\n\t\t\t// Transition style for full page slide backgrounds\n\t\t\tbackgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Parallax background image\n\t\t\tparallaxBackgroundImage: '', // CSS syntax, e.g. \"a.jpg\"\n\n\t\t\t// Parallax background size\n\t\t\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"3000px 2000px\"\n\n\t\t\t// Amount of pixels to move the parallax background per slide step\n\t\t\tparallaxBackgroundHorizontal: null,\n\t\t\tparallaxBackgroundVertical: null,\n\n\t\t\t// Number of slides away from the current that are visible\n\t\t\tviewDistance: 3,\n\n\t\t\t// Script dependencies to load\n\t\t\tdependencies: []\n\n\t\t},\n\n\t\t// Flags if reveal.js is loaded (has dispatched the 'ready' event)\n\t\tloaded = false,\n\n\t\t// Flags if the overview mode is currently active\n\t\toverview = false,\n\n\t\t// The horizontal and vertical index of the currently active slide\n\t\tindexh,\n\t\tindexv,\n\n\t\t// The previous and current slide HTML elements\n\t\tpreviousSlide,\n\t\tcurrentSlide,\n\n\t\tpreviousBackground,\n\n\t\t// Slides may hold a data-state attribute which we pick up and apply\n\t\t// as a class to the body. This list contains the combined state of\n\t\t// all current slides.\n\t\tstate = [],\n\n\t\t// The current scale of the presentation (see width/height config)\n\t\tscale = 1,\n\n\t\t// CSS transform that is currently applied to the slides container,\n\t\t// split into two groups\n\t\tslidesTransform = { layout: '', overview: '' },\n\n\t\t// Cached references to DOM elements\n\t\tdom = {},\n\n\t\t// Features supported by the browser, see #checkCapabilities()\n\t\tfeatures = {},\n\n\t\t// Client is a mobile device, see #checkCapabilities()\n\t\tisMobileDevice,\n\n\t\t// Throttles mouse wheel navigation\n\t\tlastMouseWheelStep = 0,\n\n\t\t// Delays updates to the URL due to a Chrome thumbnailer bug\n\t\twriteURLTimeout = 0,\n\n\t\t// Flags if the interaction event listeners are bound\n\t\teventsAreBound = false,\n\n\t\t// The current auto-slide duration\n\t\tautoSlide = 0,\n\n\t\t// Auto slide properties\n\t\tautoSlidePlayer,\n\t\tautoSlideTimeout = 0,\n\t\tautoSlideStartTime = -1,\n\t\tautoSlidePaused = false,\n\n\t\t// Holds information about the currently ongoing touch input\n\t\ttouch = {\n\t\t\tstartX: 0,\n\t\t\tstartY: 0,\n\t\t\tstartSpan: 0,\n\t\t\tstartCount: 0,\n\t\t\tcaptured: false,\n\t\t\tthreshold: 40\n\t\t},\n\n\t\t// Holds information about the keyboard shortcuts\n\t\tkeyboardShortcuts = {\n\t\t\t'N  ,  SPACE':\t\t\t'Next slide',\n\t\t\t'P':\t\t\t\t\t'Previous slide',\n\t\t\t'&#8592;  ,  H':\t\t'Navigate left',\n\t\t\t'&#8594;  ,  L':\t\t'Navigate right',\n\t\t\t'&#8593;  ,  K':\t\t'Navigate up',\n\t\t\t'&#8595;  ,  J':\t\t'Navigate down',\n\t\t\t'Home':\t\t\t\t\t'First slide',\n\t\t\t'End':\t\t\t\t\t'Last slide',\n\t\t\t'B  ,  .':\t\t\t\t'Pause',\n\t\t\t'F':\t\t\t\t\t'Fullscreen',\n\t\t\t'ESC, O':\t\t\t\t'Slide overview'\n\t\t};\n\n\t/**\n\t * Starts up the presentation if the client is capable.\n\t */\n\tfunction initialize( options ) {\n\n\t\tcheckCapabilities();\n\n\t\tif( !features.transforms2d && !features.transforms3d ) {\n\t\t\tdocument.body.setAttribute( 'class', 'no-transforms' );\n\n\t\t\t// Since JS won't be running any further, we load all lazy\n\t\t\t// loading elements upfront\n\t\t\tvar images = toArray( document.getElementsByTagName( 'img' ) ),\n\t\t\t\tiframes = toArray( document.getElementsByTagName( 'iframe' ) );\n\n\t\t\tvar lazyLoadable = images.concat( iframes );\n\n\t\t\tfor( var i = 0, len = lazyLoadable.length; i < len; i++ ) {\n\t\t\t\tvar element = lazyLoadable[i];\n\t\t\t\tif( element.getAttribute( 'data-src' ) ) {\n\t\t\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\t\t\telement.removeAttribute( 'data-src' );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If the browser doesn't support core features we won't be\n\t\t\t// using JavaScript to control the presentation\n\t\t\treturn;\n\t\t}\n\n\t\t// Cache references to key DOM elements\n\t\tdom.wrapper = document.querySelector( '.reveal' );\n\t\tdom.slides = document.querySelector( '.reveal .slides' );\n\n\t\t// Force a layout when the whole page, incl fonts, has loaded\n\t\twindow.addEventListener( 'load', layout, false );\n\n\t\tvar query = Reveal.getQueryHash();\n\n\t\t// Do not accept new dependencies via query config to avoid\n\t\t// the potential of malicious script injection\n\t\tif( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies'];\n\n\t\t// Copy options over to our config object\n\t\textend( config, options );\n\t\textend( config, query );\n\n\t\t// Hide the address bar in mobile browsers\n\t\thideAddressBar();\n\n\t\t// Loads the dependencies and continues to #start() once done\n\t\tload();\n\n\t}\n\n\t/**\n\t * Inspect the client to see what it's capable of, this\n\t * should only happens once per runtime.\n\t */\n\tfunction checkCapabilities() {\n\n\t\tfeatures.transforms3d = 'WebkitPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'msPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'OPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'perspective' in document.body.style;\n\n\t\tfeatures.transforms2d = 'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\t\tfeatures.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;\n\t\tfeatures.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function';\n\n\t\tfeatures.canvas = !!document.createElement( 'canvas' ).getContext;\n\n\t\tfeatures.touch = !!( 'ontouchstart' in window );\n\n\t\t// Transitions in the overview are disabled in desktop and\n\t\t// mobile Safari due to lag\n\t\tfeatures.overviewTransitions = !/Version\\/[\\d\\.]+.*Safari/.test( navigator.userAgent );\n\n\t\tisMobileDevice = /(iphone|ipod|ipad|android)/gi.test( navigator.userAgent );\n\n\t}\n\n    /**\n     * Loads the dependencies of reveal.js. Dependencies are\n     * defined via the configuration option 'dependencies'\n     * and will be loaded prior to starting/binding reveal.js.\n     * Some dependencies may have an 'async' flag, if so they\n     * will load after reveal.js has been started up.\n     */\n\tfunction load() {\n\n\t\tvar scripts = [],\n\t\t\tscriptsAsync = [],\n\t\t\tscriptsToPreload = 0;\n\n\t\t// Called once synchronous scripts finish loading\n\t\tfunction proceed() {\n\t\t\tif( scriptsAsync.length ) {\n\t\t\t\t// Load asynchronous scripts\n\t\t\t\thead.js.apply( null, scriptsAsync );\n\t\t\t}\n\n\t\t\tstart();\n\t\t}\n\n\t\tfunction loadScript( s ) {\n\t\t\thead.ready( s.src.match( /([\\w\\d_\\-]*)\\.?js$|[^\\\\\\/]*$/i )[0], function() {\n\t\t\t\t// Extension may contain callback functions\n\t\t\t\tif( typeof s.callback === 'function' ) {\n\t\t\t\t\ts.callback.apply( this );\n\t\t\t\t}\n\n\t\t\t\tif( --scriptsToPreload === 0 ) {\n\t\t\t\t\tproceed();\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfor( var i = 0, len = config.dependencies.length; i < len; i++ ) {\n\t\t\tvar s = config.dependencies[i];\n\n\t\t\t// Load if there's no condition or the condition is truthy\n\t\t\tif( !s.condition || s.condition() ) {\n\t\t\t\tif( s.async ) {\n\t\t\t\t\tscriptsAsync.push( s.src );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tscripts.push( s.src );\n\t\t\t\t}\n\n\t\t\t\tloadScript( s );\n\t\t\t}\n\t\t}\n\n\t\tif( scripts.length ) {\n\t\t\tscriptsToPreload = scripts.length;\n\n\t\t\t// Load synchronous scripts\n\t\t\thead.js.apply( null, scripts );\n\t\t}\n\t\telse {\n\t\t\tproceed();\n\t\t}\n\n\t}\n\n\t/**\n\t * Starts up reveal.js by binding input events and navigating\n\t * to the current URL deeplink if there is one.\n\t */\n\tfunction start() {\n\n\t\t// Make sure we've got all the DOM elements we need\n\t\tsetupDOM();\n\n\t\t// Listen to messages posted to this window\n\t\tsetupPostMessage();\n\n\t\t// Prevent iframes from scrolling the slides out of view\n\t\tsetupIframeScrollPrevention();\n\n\t\t// Resets all vertical slides so that only the first is visible\n\t\tresetVerticalSlides();\n\n\t\t// Updates the presentation to match the current configuration values\n\t\tconfigure();\n\n\t\t// Read the initial hash\n\t\treadURL();\n\n\t\t// Update all backgrounds\n\t\tupdateBackground( true );\n\n\t\t// Notify listeners that the presentation is ready but use a 1ms\n\t\t// timeout to ensure it's not fired synchronously after #initialize()\n\t\tsetTimeout( function() {\n\t\t\t// Enable transitions now that we're loaded\n\t\t\tdom.slides.classList.remove( 'no-transition' );\n\n\t\t\tloaded = true;\n\n\t\t\tdispatchEvent( 'ready', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\t\t}, 1 );\n\n\t\t// Special setup and config is required when printing to PDF\n\t\tif( isPrintingPDF() ) {\n\t\t\tremoveEventListeners();\n\n\t\t\t// The document needs to have loaded for the PDF layout\n\t\t\t// measurements to be accurate\n\t\t\tif( document.readyState === 'complete' ) {\n\t\t\t\tsetupPDF();\n\t\t\t}\n\t\t\telse {\n\t\t\t\twindow.addEventListener( 'load', setupPDF );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Finds and stores references to DOM elements which are\n\t * required by the presentation. If a required element is\n\t * not found, it is created.\n\t */\n\tfunction setupDOM() {\n\n\t\t// Prevent transitions while we're loading\n\t\tdom.slides.classList.add( 'no-transition' );\n\n\t\t// Background element\n\t\tdom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null );\n\n\t\t// Progress bar\n\t\tdom.progress = createSingletonNode( dom.wrapper, 'div', 'progress', '<span></span>' );\n\t\tdom.progressbar = dom.progress.querySelector( 'span' );\n\n\t\t// Arrow controls\n\t\tcreateSingletonNode( dom.wrapper, 'aside', 'controls',\n\t\t\t'<button class=\"navigate-left\" aria-label=\"previous slide\"></button>' +\n\t\t\t'<button class=\"navigate-right\" aria-label=\"next slide\"></button>' +\n\t\t\t'<button class=\"navigate-up\" aria-label=\"above slide\"></button>' +\n\t\t\t'<button class=\"navigate-down\" aria-label=\"below slide\"></button>' );\n\n\t\t// Slide number\n\t\tdom.slideNumber = createSingletonNode( dom.wrapper, 'div', 'slide-number', '' );\n\n\t\t// Element containing notes that are visible to the audience\n\t\tdom.speakerNotes = createSingletonNode( dom.wrapper, 'div', 'speaker-notes', null );\n\t\tdom.speakerNotes.setAttribute( 'data-prevent-swipe', '' );\n\n\t\t// Overlay graphic which is displayed during the paused mode\n\t\tcreateSingletonNode( dom.wrapper, 'div', 'pause-overlay', null );\n\n\t\t// Cache references to elements\n\t\tdom.controls = document.querySelector( '.reveal .controls' );\n\t\tdom.theme = document.querySelector( '#theme' );\n\n\t\tdom.wrapper.setAttribute( 'role', 'application' );\n\n\t\t// There can be multiple instances of controls throughout the page\n\t\tdom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );\n\t\tdom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) );\n\t\tdom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );\n\t\tdom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) );\n\t\tdom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) );\n\t\tdom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );\n\n\t\tdom.statusDiv = createStatusDiv();\n\t}\n\n\t/**\n\t * Creates a hidden div with role aria-live to announce the\n\t * current slide content. Hide the div off-screen to make it\n\t * available only to Assistive Technologies.\n\t */\n\tfunction createStatusDiv() {\n\n\t\tvar statusDiv = document.getElementById( 'aria-status-div' );\n\t\tif( !statusDiv ) {\n\t\t\tstatusDiv = document.createElement( 'div' );\n\t\t\tstatusDiv.style.position = 'absolute';\n\t\t\tstatusDiv.style.height = '1px';\n\t\t\tstatusDiv.style.width = '1px';\n\t\t\tstatusDiv.style.overflow ='hidden';\n\t\t\tstatusDiv.style.clip = 'rect( 1px, 1px, 1px, 1px )';\n\t\t\tstatusDiv.setAttribute( 'id', 'aria-status-div' );\n\t\t\tstatusDiv.setAttribute( 'aria-live', 'polite' );\n\t\t\tstatusDiv.setAttribute( 'aria-atomic','true' );\n\t\t\tdom.wrapper.appendChild( statusDiv );\n\t\t}\n\t\treturn statusDiv;\n\n\t}\n\n\t/**\n\t * Configures the presentation for printing to a static\n\t * PDF.\n\t */\n\tfunction setupPDF() {\n\n\t\tvar slideSize = getComputedSlideSize( window.innerWidth, window.innerHeight );\n\n\t\t// Dimensions of the PDF pages\n\t\tvar pageWidth = Math.floor( slideSize.width * ( 1 + config.margin ) ),\n\t\t\tpageHeight = Math.floor( slideSize.height * ( 1 + config.margin  ) );\n\n\t\t// Dimensions of slides within the pages\n\t\tvar slideWidth = slideSize.width,\n\t\t\tslideHeight = slideSize.height;\n\n\t\t// Let the browser know what page size we want to print\n\t\tinjectStyleSheet( '@page{size:'+ pageWidth +'px '+ pageHeight +'px; margin: 0;}' );\n\n\t\t// Limit the size of certain elements to the dimensions of the slide\n\t\tinjectStyleSheet( '.reveal section>img, .reveal section>video, .reveal section>iframe{max-width: '+ slideWidth +'px; max-height:'+ slideHeight +'px}' );\n\n\t\tdocument.body.classList.add( 'print-pdf' );\n\t\tdocument.body.style.width = pageWidth + 'px';\n\t\tdocument.body.style.height = pageHeight + 'px';\n\n\t\t// Add each slide's index as attributes on itself, we need these\n\t\t// indices to generate slide numbers below\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\n\t\t// Slide and slide background layout\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\n\t\t\t// Vertical stacks are not centred since their section\n\t\t\t// children will be\n\t\t\tif( slide.classList.contains( 'stack' ) === false ) {\n\t\t\t\t// Center the slide inside of the page, giving the slide some margin\n\t\t\t\tvar left = ( pageWidth - slideWidth ) / 2,\n\t\t\t\t\ttop = ( pageHeight - slideHeight ) / 2;\n\n\t\t\t\tvar contentHeight = getAbsoluteHeight( slide );\n\t\t\t\tvar numberOfPages = Math.max( Math.ceil( contentHeight / pageHeight ), 1 );\n\n\t\t\t\t// Center slides vertically\n\t\t\t\tif( numberOfPages === 1 && config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\ttop = Math.max( ( pageHeight - contentHeight ) / 2, 0 );\n\t\t\t\t}\n\n\t\t\t\t// Position the slide inside of the page\n\t\t\t\tslide.style.left = left + 'px';\n\t\t\t\tslide.style.top = top + 'px';\n\t\t\t\tslide.style.width = slideWidth + 'px';\n\n\t\t\t\t// TODO Backgrounds need to be multiplied when the slide\n\t\t\t\t// stretches over multiple pages\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background ) {\n\t\t\t\t\tbackground.style.width = pageWidth + 'px';\n\t\t\t\t\tbackground.style.height = ( pageHeight * numberOfPages ) + 'px';\n\t\t\t\t\tbackground.style.top = -top + 'px';\n\t\t\t\t\tbackground.style.left = -left + 'px';\n\t\t\t\t}\n\n\t\t\t\t// Inject notes if `showNotes` is enabled\n\t\t\t\tif( config.showNotes ) {\n\t\t\t\t\tvar notes = getSlideNotes( slide );\n\t\t\t\t\tif( notes ) {\n\t\t\t\t\t\tvar notesSpacing = 8;\n\t\t\t\t\t\tvar notesElement = document.createElement( 'div' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes-pdf' );\n\t\t\t\t\t\tnotesElement.innerHTML = notes;\n\t\t\t\t\t\tnotesElement.style.left = ( notesSpacing - left ) + 'px';\n\t\t\t\t\t\tnotesElement.style.bottom = ( notesSpacing - top ) + 'px';\n\t\t\t\t\t\tnotesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px';\n\t\t\t\t\t\tslide.appendChild( notesElement );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Inject slide numbers if `slideNumbers` are enabled\n\t\t\t\tif( config.slideNumber ) {\n\t\t\t\t\tvar slideNumberH = parseInt( slide.getAttribute( 'data-index-h' ), 10 ) + 1,\n\t\t\t\t\t\tslideNumberV = parseInt( slide.getAttribute( 'data-index-v' ), 10 ) + 1;\n\n\t\t\t\t\tvar numberElement = document.createElement( 'div' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number-pdf' );\n\t\t\t\t\tnumberElement.innerHTML = formatSlideNumber( slideNumberH, '.', slideNumberV );\n\t\t\t\t\tbackground.appendChild( numberElement );\n\t\t\t\t}\n\t\t\t}\n\n\t\t} );\n\n\t\t// Show all fragments\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' .fragment' ) ).forEach( function( fragment ) {\n\t\t\tfragment.classList.add( 'visible' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * This is an unfortunate necessity. Iframes can trigger the\n\t * parent window to scroll, for example by focusing an input.\n\t * This scrolling can not be prevented by hiding overflow in\n\t * CSS so we have to resort to repeatedly checking if the\n\t * browser has decided to offset our slides :(\n\t */\n\tfunction setupIframeScrollPrevention() {\n\n\t\tif( dom.slides.querySelector( 'iframe' ) ) {\n\t\t\tsetInterval( function() {\n\t\t\t\tif( dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) {\n\t\t\t\t\tdom.wrapper.scrollTop = 0;\n\t\t\t\t\tdom.wrapper.scrollLeft = 0;\n\t\t\t\t}\n\t\t\t}, 500 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates an HTML element and returns a reference to it.\n\t * If the element already exists the existing instance will\n\t * be returned.\n\t */\n\tfunction createSingletonNode( container, tagname, classname, innerHTML ) {\n\n\t\t// Find all nodes matching the description\n\t\tvar nodes = container.querySelectorAll( '.' + classname );\n\n\t\t// Check all matches to find one which is a direct child of\n\t\t// the specified container\n\t\tfor( var i = 0; i < nodes.length; i++ ) {\n\t\t\tvar testNode = nodes[i];\n\t\t\tif( testNode.parentNode === container ) {\n\t\t\t\treturn testNode;\n\t\t\t}\n\t\t}\n\n\t\t// If no node was found, create it now\n\t\tvar node = document.createElement( tagname );\n\t\tnode.classList.add( classname );\n\t\tif( typeof innerHTML === 'string' ) {\n\t\t\tnode.innerHTML = innerHTML;\n\t\t}\n\t\tcontainer.appendChild( node );\n\n\t\treturn node;\n\n\t}\n\n\t/**\n\t * Creates the slide background elements and appends them\n\t * to the background container. One element is created per\n\t * slide no matter if the given slide has visible background.\n\t */\n\tfunction createBackgrounds() {\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\t// Clear prior backgrounds\n\t\tdom.background.innerHTML = '';\n\t\tdom.background.classList.add( 'no-transition' );\n\n\t\t// Iterate over all horizontal slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( slideh ) {\n\n\t\t\tvar backgroundStack;\n\n\t\t\tif( printMode ) {\n\t\t\t\tbackgroundStack = createBackground( slideh, slideh );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundStack = createBackground( slideh, dom.background );\n\t\t\t}\n\n\t\t\t// Iterate over all vertical slides\n\t\t\ttoArray( slideh.querySelectorAll( 'section' ) ).forEach( function( slidev ) {\n\n\t\t\t\tif( printMode ) {\n\t\t\t\t\tcreateBackground( slidev, slidev );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tcreateBackground( slidev, backgroundStack );\n\t\t\t\t}\n\n\t\t\t\tbackgroundStack.classList.add( 'stack' );\n\n\t\t\t} );\n\n\t\t} );\n\n\t\t// Add parallax background if specified\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tdom.background.style.backgroundImage = 'url(\"' + config.parallaxBackgroundImage + '\")';\n\t\t\tdom.background.style.backgroundSize = config.parallaxBackgroundSize;\n\n\t\t\t// Make sure the below properties are set on the element - these properties are\n\t\t\t// needed for proper transitions to be set on the element via CSS. To remove\n\t\t\t// annoying background slide-in effect when the presentation starts, apply\n\t\t\t// these properties after short time delay\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.wrapper.classList.add( 'has-parallax-background' );\n\t\t\t}, 1 );\n\n\t\t}\n\t\telse {\n\n\t\t\tdom.background.style.backgroundImage = '';\n\t\t\tdom.wrapper.classList.remove( 'has-parallax-background' );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates a background for the given slide.\n\t *\n\t * @param {HTMLElement} slide\n\t * @param {HTMLElement} container The element that the background\n\t * should be appended to\n\t */\n\tfunction createBackground( slide, container ) {\n\n\t\tvar data = {\n\t\t\tbackground: slide.getAttribute( 'data-background' ),\n\t\t\tbackgroundSize: slide.getAttribute( 'data-background-size' ),\n\t\t\tbackgroundImage: slide.getAttribute( 'data-background-image' ),\n\t\t\tbackgroundVideo: slide.getAttribute( 'data-background-video' ),\n\t\t\tbackgroundIframe: slide.getAttribute( 'data-background-iframe' ),\n\t\t\tbackgroundColor: slide.getAttribute( 'data-background-color' ),\n\t\t\tbackgroundRepeat: slide.getAttribute( 'data-background-repeat' ),\n\t\t\tbackgroundPosition: slide.getAttribute( 'data-background-position' ),\n\t\t\tbackgroundTransition: slide.getAttribute( 'data-background-transition' )\n\t\t};\n\n\t\tvar element = document.createElement( 'div' );\n\n\t\t// Carry over custom classes from the slide to the background\n\t\telement.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' );\n\n\t\tif( data.background ) {\n\t\t\t// Auto-wrap image urls in url(...)\n\t\t\tif( /^(http|file|\\/\\/)/gi.test( data.background ) || /\\.(svg|png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) {\n\t\t\t\tslide.setAttribute( 'data-background-image', data.background );\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.background = data.background;\n\t\t\t}\n\t\t}\n\n\t\t// Create a hash for this combination of background settings.\n\t\t// This is used to determine when two slide backgrounds are\n\t\t// the same.\n\t\tif( data.background || data.backgroundColor || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) {\n\t\t\telement.setAttribute( 'data-background-hash', data.background +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundSize +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundImage +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundVideo +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundIframe +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundColor +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundRepeat +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundPosition +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundTransition );\n\t\t}\n\n\t\t// Additional and optional background properties\n\t\tif( data.backgroundSize ) element.style.backgroundSize = data.backgroundSize;\n\t\tif( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;\n\t\tif( data.backgroundRepeat ) element.style.backgroundRepeat = data.backgroundRepeat;\n\t\tif( data.backgroundPosition ) element.style.backgroundPosition = data.backgroundPosition;\n\t\tif( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );\n\n\t\tcontainer.appendChild( element );\n\n\t\t// If backgrounds are being recreated, clear old classes\n\t\tslide.classList.remove( 'has-dark-background' );\n\t\tslide.classList.remove( 'has-light-background' );\n\n\t\t// If this slide has a background color, add a class that\n\t\t// signals if it is light or dark. If the slide has no background\n\t\t// color, no class will be set\n\t\tvar computedBackgroundColor = window.getComputedStyle( element ).backgroundColor;\n\t\tif( computedBackgroundColor ) {\n\t\t\tvar rgb = colorToRgb( computedBackgroundColor );\n\n\t\t\t// Ignore fully transparent backgrounds. Some browsers return\n\t\t\t// rgba(0,0,0,0) when reading the computed background color of\n\t\t\t// an element with no background\n\t\t\tif( rgb && rgb.a !== 0 ) {\n\t\t\t\tif( colorBrightness( computedBackgroundColor ) < 128 ) {\n\t\t\t\t\tslide.classList.add( 'has-dark-background' );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.classList.add( 'has-light-background' );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn element;\n\n\t}\n\n\t/**\n\t * Registers a listener to postMessage events, this makes it\n\t * possible to call all reveal.js API methods from another\n\t * window. For example:\n\t *\n\t * revealWindow.postMessage( JSON.stringify({\n\t *   method: 'slide',\n\t *   args: [ 2 ]\n\t * }), '*' );\n\t */\n\tfunction setupPostMessage() {\n\n\t\tif( config.postMessage ) {\n\t\t\twindow.addEventListener( 'message', function ( event ) {\n\t\t\t\tvar data = event.data;\n\n\t\t\t\t// Make sure we're dealing with JSON\n\t\t\t\tif( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) {\n\t\t\t\t\tdata = JSON.parse( data );\n\n\t\t\t\t\t// Check if the requested method can be found\n\t\t\t\t\tif( data.method && typeof Reveal[data.method] === 'function' ) {\n\t\t\t\t\t\tReveal[data.method].apply( Reveal, data.args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies the configuration settings from the config\n\t * object. May be called multiple times.\n\t */\n\tfunction configure( options ) {\n\n\t\tvar numberOfSlides = dom.wrapper.querySelectorAll( SLIDES_SELECTOR ).length;\n\n\t\tdom.wrapper.classList.remove( config.transition );\n\n\t\t// New config options may be passed when this method\n\t\t// is invoked through the API after initialization\n\t\tif( typeof options === 'object' ) extend( config, options );\n\n\t\t// Force linear transition based on browser capabilities\n\t\tif( features.transforms3d === false ) config.transition = 'linear';\n\n\t\tdom.wrapper.classList.add( config.transition );\n\n\t\tdom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );\n\t\tdom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition );\n\n\t\tdom.controls.style.display = config.controls ? 'block' : 'none';\n\t\tdom.progress.style.display = config.progress ? 'block' : 'none';\n\t\tdom.slideNumber.style.display = config.slideNumber && !isPrintingPDF() ? 'block' : 'none';\n\n\t\tif( config.rtl ) {\n\t\t\tdom.wrapper.classList.add( 'rtl' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'rtl' );\n\t\t}\n\n\t\tif( config.center ) {\n\t\t\tdom.wrapper.classList.add( 'center' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'center' );\n\t\t}\n\n\t\t// Exit the paused mode if it was configured off\n\t\tif( config.pause === false ) {\n\t\t\tresume();\n\t\t}\n\n\t\tif( config.showNotes ) {\n\t\t\tdom.speakerNotes.classList.add( 'visible' );\n\t\t}\n\t\telse {\n\t\t\tdom.speakerNotes.classList.remove( 'visible' );\n\t\t}\n\n\t\tif( config.mouseWheel ) {\n\t\t\tdocument.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.addEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\t\telse {\n\t\t\tdocument.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\n\t\t// Rolling 3D links\n\t\tif( config.rollingLinks ) {\n\t\t\tenableRollingLinks();\n\t\t}\n\t\telse {\n\t\t\tdisableRollingLinks();\n\t\t}\n\n\t\t// Iframe link previews\n\t\tif( config.previewLinks ) {\n\t\t\tenablePreviewLinks();\n\t\t}\n\t\telse {\n\t\t\tdisablePreviewLinks();\n\t\t\tenablePreviewLinks( '[data-preview-link]' );\n\t\t}\n\n\t\t// Remove existing auto-slide controls\n\t\tif( autoSlidePlayer ) {\n\t\t\tautoSlidePlayer.destroy();\n\t\t\tautoSlidePlayer = null;\n\t\t}\n\n\t\t// Generate auto-slide controls if needed\n\t\tif( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) {\n\t\t\tautoSlidePlayer = new Playback( dom.wrapper, function() {\n\t\t\t\treturn Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 );\n\t\t\t} );\n\n\t\t\tautoSlidePlayer.on( 'click', onAutoSlidePlayerClick );\n\t\t\tautoSlidePaused = false;\n\t\t}\n\n\t\t// When fragments are turned off they should be visible\n\t\tif( config.fragments === false ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( '.fragment' ) ).forEach( function( element ) {\n\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t} );\n\t\t}\n\n\t\tsync();\n\n\t}\n\n\t/**\n\t * Binds all event listeners.\n\t */\n\tfunction addEventListeners() {\n\n\t\teventsAreBound = true;\n\n\t\twindow.addEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.addEventListener( 'resize', onWindowResize, false );\n\n\t\tif( config.touch ) {\n\t\t\tdom.wrapper.addEventListener( 'touchstart', onTouchStart, false );\n\t\t\tdom.wrapper.addEventListener( 'touchmove', onTouchMove, false );\n\t\t\tdom.wrapper.addEventListener( 'touchend', onTouchEnd, false );\n\n\t\t\t// Support pointer-style touch interaction as well\n\t\t\tif( window.navigator.pointerEnabled ) {\n\t\t\t\t// IE 11 uses un-prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'pointerdown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointermove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointerup', onPointerUp, false );\n\t\t\t}\n\t\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\t\t// IE 10 uses prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t\t}\n\t\t}\n\n\t\tif( config.keyboard ) {\n\t\t\tdocument.addEventListener( 'keydown', onDocumentKeyDown, false );\n\t\t\tdocument.addEventListener( 'keypress', onDocumentKeyPress, false );\n\t\t}\n\n\t\tif( config.progress && dom.progress ) {\n\t\t\tdom.progress.addEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\tif( config.focusBodyOnPageVisibilityChange ) {\n\t\t\tvar visibilityChange;\n\n\t\t\tif( 'hidden' in document ) {\n\t\t\t\tvisibilityChange = 'visibilitychange';\n\t\t\t}\n\t\t\telse if( 'msHidden' in document ) {\n\t\t\t\tvisibilityChange = 'msvisibilitychange';\n\t\t\t}\n\t\t\telse if( 'webkitHidden' in document ) {\n\t\t\t\tvisibilityChange = 'webkitvisibilitychange';\n\t\t\t}\n\n\t\t\tif( visibilityChange ) {\n\t\t\t\tdocument.addEventListener( visibilityChange, onPageVisibilityChange, false );\n\t\t\t}\n\t\t}\n\n\t\t// Listen to both touch and click events, in case the device\n\t\t// supports both\n\t\tvar pointerEvents = [ 'touchstart', 'click' ];\n\n\t\t// Only support touch for Android, fixes double navigations in\n\t\t// stock browser\n\t\tif( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tpointerEvents = [ 'touchstart' ];\n\t\t}\n\n\t\tpointerEvents.forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbinds all event listeners.\n\t */\n\tfunction removeEventListeners() {\n\n\t\teventsAreBound = false;\n\n\t\tdocument.removeEventListener( 'keydown', onDocumentKeyDown, false );\n\t\tdocument.removeEventListener( 'keypress', onDocumentKeyPress, false );\n\t\twindow.removeEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.removeEventListener( 'resize', onWindowResize, false );\n\n\t\tdom.wrapper.removeEventListener( 'touchstart', onTouchStart, false );\n\t\tdom.wrapper.removeEventListener( 'touchmove', onTouchMove, false );\n\t\tdom.wrapper.removeEventListener( 'touchend', onTouchEnd, false );\n\n\t\t// IE11\n\t\tif( window.navigator.pointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'pointerdown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointermove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointerup', onPointerUp, false );\n\t\t}\n\t\t// IE10\n\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t}\n\n\t\tif ( config.progress && dom.progress ) {\n\t\t\tdom.progress.removeEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\t[ 'touchstart', 'click' ].forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Extend object a with the properties of object b.\n\t * If there's a conflict, object b takes precedence.\n\t */\n\tfunction extend( a, b ) {\n\n\t\tfor( var i in b ) {\n\t\t\ta[ i ] = b[ i ];\n\t\t}\n\n\t}\n\n\t/**\n\t * Converts the target object to an array.\n\t */\n\tfunction toArray( o ) {\n\n\t\treturn Array.prototype.slice.call( o );\n\n\t}\n\n\t/**\n\t * Utility for deserializing a value.\n\t */\n\tfunction deserialize( value ) {\n\n\t\tif( typeof value === 'string' ) {\n\t\t\tif( value === 'null' ) return null;\n\t\t\telse if( value === 'true' ) return true;\n\t\t\telse if( value === 'false' ) return false;\n\t\t\telse if( value.match( /^\\d+$/ ) ) return parseFloat( value );\n\t\t}\n\n\t\treturn value;\n\n\t}\n\n\t/**\n\t * Measures the distance in pixels between point a\n\t * and point b.\n\t *\n\t * @param {Object} a point with x/y properties\n\t * @param {Object} b point with x/y properties\n\t */\n\tfunction distanceBetween( a, b ) {\n\n\t\tvar dx = a.x - b.x,\n\t\t\tdy = a.y - b.y;\n\n\t\treturn Math.sqrt( dx*dx + dy*dy );\n\n\t}\n\n\t/**\n\t * Applies a CSS transform to the target element.\n\t */\n\tfunction transformElement( element, transform ) {\n\n\t\telement.style.WebkitTransform = transform;\n\t\telement.style.MozTransform = transform;\n\t\telement.style.msTransform = transform;\n\t\telement.style.transform = transform;\n\n\t}\n\n\t/**\n\t * Applies CSS transforms to the slides container. The container\n\t * is transformed from two separate sources: layout and the overview\n\t * mode.\n\t */\n\tfunction transformSlides( transforms ) {\n\n\t\t// Pick up new transforms from arguments\n\t\tif( typeof transforms.layout === 'string' ) slidesTransform.layout = transforms.layout;\n\t\tif( typeof transforms.overview === 'string' ) slidesTransform.overview = transforms.overview;\n\n\t\t// Apply the transforms to the slides container\n\t\tif( slidesTransform.layout ) {\n\t\t\ttransformElement( dom.slides, slidesTransform.layout + ' ' + slidesTransform.overview );\n\t\t}\n\t\telse {\n\t\t\ttransformElement( dom.slides, slidesTransform.overview );\n\t\t}\n\n\t}\n\n\t/**\n\t * Injects the given CSS styles into the DOM.\n\t */\n\tfunction injectStyleSheet( value ) {\n\n\t\tvar tag = document.createElement( 'style' );\n\t\ttag.type = 'text/css';\n\t\tif( tag.styleSheet ) {\n\t\t\ttag.styleSheet.cssText = value;\n\t\t}\n\t\telse {\n\t\t\ttag.appendChild( document.createTextNode( value ) );\n\t\t}\n\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( tag );\n\n\t}\n\n\t/**\n\t * Converts various color input formats to an {r:0,g:0,b:0} object.\n\t *\n\t * @param {String} color The string representation of a color,\n\t * the following formats are supported:\n\t * - #000\n\t * - #000000\n\t * - rgb(0,0,0)\n\t */\n\tfunction colorToRgb( color ) {\n\n\t\tvar hex3 = color.match( /^#([0-9a-f]{3})$/i );\n\t\tif( hex3 && hex3[1] ) {\n\t\t\thex3 = hex3[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex3.charAt( 0 ), 16 ) * 0x11,\n\t\t\t\tg: parseInt( hex3.charAt( 1 ), 16 ) * 0x11,\n\t\t\t\tb: parseInt( hex3.charAt( 2 ), 16 ) * 0x11\n\t\t\t};\n\t\t}\n\n\t\tvar hex6 = color.match( /^#([0-9a-f]{6})$/i );\n\t\tif( hex6 && hex6[1] ) {\n\t\t\thex6 = hex6[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex6.substr( 0, 2 ), 16 ),\n\t\t\t\tg: parseInt( hex6.substr( 2, 2 ), 16 ),\n\t\t\t\tb: parseInt( hex6.substr( 4, 2 ), 16 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgb = color.match( /^rgb\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\)$/i );\n\t\tif( rgb ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgb[1], 10 ),\n\t\t\t\tg: parseInt( rgb[2], 10 ),\n\t\t\t\tb: parseInt( rgb[3], 10 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgba = color.match( /^rgba\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\,\\s*([\\d]+|[\\d]*.[\\d]+)\\s*\\)$/i );\n\t\tif( rgba ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgba[1], 10 ),\n\t\t\t\tg: parseInt( rgba[2], 10 ),\n\t\t\t\tb: parseInt( rgba[3], 10 ),\n\t\t\t\ta: parseFloat( rgba[4] )\n\t\t\t};\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Calculates brightness on a scale of 0-255.\n\t *\n\t * @param color See colorStringToRgb for supported formats.\n\t */\n\tfunction colorBrightness( color ) {\n\n\t\tif( typeof color === 'string' ) color = colorToRgb( color );\n\n\t\tif( color ) {\n\t\t\treturn ( color.r * 299 + color.g * 587 + color.b * 114 ) / 1000;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the height of the given element by looking\n\t * at the position and height of its immediate children.\n\t */\n\tfunction getAbsoluteHeight( element ) {\n\n\t\tvar height = 0;\n\n\t\tif( element ) {\n\t\t\tvar absoluteChildren = 0;\n\n\t\t\ttoArray( element.childNodes ).forEach( function( child ) {\n\n\t\t\t\tif( typeof child.offsetTop === 'number' && child.style ) {\n\t\t\t\t\t// Count # of abs children\n\t\t\t\t\tif( window.getComputedStyle( child ).position === 'absolute' ) {\n\t\t\t\t\t\tabsoluteChildren += 1;\n\t\t\t\t\t}\n\n\t\t\t\t\theight = Math.max( height, child.offsetTop + child.offsetHeight );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t// If there are no absolute children, use offsetHeight\n\t\t\tif( absoluteChildren === 0 ) {\n\t\t\t\theight = element.offsetHeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Returns the remaining height within the parent of the\n\t * target element.\n\t *\n\t * remaining height = [ configured parent height ] - [ current parent height ]\n\t */\n\tfunction getRemainingHeight( element, height ) {\n\n\t\theight = height || 0;\n\n\t\tif( element ) {\n\t\t\tvar newHeight, oldHeight = element.style.height;\n\n\t\t\t// Change the .stretch element height to 0 in order find the height of all\n\t\t\t// the other elements\n\t\t\telement.style.height = '0px';\n\t\t\tnewHeight = height - element.parentNode.offsetHeight;\n\n\t\t\t// Restore the old height, just in case\n\t\t\telement.style.height = oldHeight + 'px';\n\n\t\t\treturn newHeight;\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Checks if this instance is being used to print a PDF.\n\t */\n\tfunction isPrintingPDF() {\n\n\t\treturn ( /print-pdf/gi ).test( window.location.search );\n\n\t}\n\n\t/**\n\t * Hides the address bar if we're on a mobile device.\n\t */\n\tfunction hideAddressBar() {\n\n\t\tif( config.hideAddressBar && isMobileDevice ) {\n\t\t\t// Events that should trigger the address bar to hide\n\t\t\twindow.addEventListener( 'load', removeAddressBar, false );\n\t\t\twindow.addEventListener( 'orientationchange', removeAddressBar, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Causes the address bar to hide on mobile devices,\n\t * more vertical space ftw.\n\t */\n\tfunction removeAddressBar() {\n\n\t\tsetTimeout( function() {\n\t\t\twindow.scrollTo( 0, 1 );\n\t\t}, 10 );\n\n\t}\n\n\t/**\n\t * Dispatches an event of the specified type from the\n\t * reveal DOM element.\n\t */\n\tfunction dispatchEvent( type, args ) {\n\n\t\tvar event = document.createEvent( 'HTMLEvents', 1, 2 );\n\t\tevent.initEvent( type, true, true );\n\t\textend( event, args );\n\t\tdom.wrapper.dispatchEvent( event );\n\n\t\t// If we're in an iframe, post each reveal.js event to the\n\t\t// parent window. Used by the notes plugin\n\t\tif( config.postMessageEvents && window.parent !== window.self ) {\n\t\t\twindow.parent.postMessage( JSON.stringify({ namespace: 'reveal', eventName: type, state: getState() }), '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Wrap all links in 3D goodness.\n\t */\n\tfunction enableRollingLinks() {\n\n\t\tif( features.transforms3d && !( 'msPerspective' in document.body.style ) ) {\n\t\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a' );\n\n\t\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\t\tvar anchor = anchors[i];\n\n\t\t\t\tif( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {\n\t\t\t\t\tvar span = document.createElement('span');\n\t\t\t\t\tspan.setAttribute('data-title', anchor.text);\n\t\t\t\t\tspan.innerHTML = anchor.innerHTML;\n\n\t\t\t\t\tanchor.classList.add( 'roll' );\n\t\t\t\t\tanchor.innerHTML = '';\n\t\t\t\t\tanchor.appendChild(span);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Unwrap all 3D links.\n\t */\n\tfunction disableRollingLinks() {\n\n\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );\n\n\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\tvar anchor = anchors[i];\n\t\t\tvar span = anchor.querySelector( 'span' );\n\n\t\t\tif( span ) {\n\t\t\t\tanchor.classList.remove( 'roll' );\n\t\t\t\tanchor.innerHTML = span.innerHTML;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Bind preview frame links.\n\t */\n\tfunction enablePreviewLinks( selector ) {\n\n\t\tvar anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.addEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbind preview frame links.\n\t */\n\tfunction disablePreviewLinks() {\n\n\t\tvar anchors = toArray( document.querySelectorAll( 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.removeEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Opens a preview window for the target URL.\n\t */\n\tfunction showPreview( url ) {\n\n\t\tcloseOverlay();\n\n\t\tdom.overlay = document.createElement( 'div' );\n\t\tdom.overlay.classList.add( 'overlay' );\n\t\tdom.overlay.classList.add( 'overlay-preview' );\n\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\tdom.overlay.innerHTML = [\n\t\t\t'<header>',\n\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'<a class=\"external\" href=\"'+ url +'\" target=\"_blank\"><span class=\"icon\"></span></a>',\n\t\t\t'</header>',\n\t\t\t'<div class=\"spinner\"></div>',\n\t\t\t'<div class=\"viewport\">',\n\t\t\t\t'<iframe src=\"'+ url +'\"></iframe>',\n\t\t\t'</div>'\n\t\t].join('');\n\n\t\tdom.overlay.querySelector( 'iframe' ).addEventListener( 'load', function( event ) {\n\t\t\tdom.overlay.classList.add( 'loaded' );\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t\tevent.preventDefault();\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.external' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t}, false );\n\n\t\tsetTimeout( function() {\n\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Opens a overlay window with help material.\n\t */\n\tfunction showHelp() {\n\n\t\tif( config.help ) {\n\n\t\t\tcloseOverlay();\n\n\t\t\tdom.overlay = document.createElement( 'div' );\n\t\t\tdom.overlay.classList.add( 'overlay' );\n\t\t\tdom.overlay.classList.add( 'overlay-help' );\n\t\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\t\tvar html = '<p class=\"title\">Keyboard Shortcuts</p><br/>';\n\n\t\t\thtml += '<table><th>KEY</th><th>ACTION</th>';\n\t\t\tfor( var key in keyboardShortcuts ) {\n\t\t\t\thtml += '<tr><td>' + key + '</td><td>' + keyboardShortcuts[ key ] + '</td></tr>';\n\t\t\t}\n\n\t\t\thtml += '</table>';\n\n\t\t\tdom.overlay.innerHTML = [\n\t\t\t\t'<header>',\n\t\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'</header>',\n\t\t\t\t'<div class=\"viewport\">',\n\t\t\t\t\t'<div class=\"viewport-inner\">'+ html +'</div>',\n\t\t\t\t'</div>'\n\t\t\t].join('');\n\n\t\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\t\tcloseOverlay();\n\t\t\t\tevent.preventDefault();\n\t\t\t}, false );\n\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t\t}, 1 );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Closes any currently open overlay.\n\t */\n\tfunction closeOverlay() {\n\n\t\tif( dom.overlay ) {\n\t\t\tdom.overlay.parentNode.removeChild( dom.overlay );\n\t\t\tdom.overlay = null;\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies JavaScript-controlled layout rules to the\n\t * presentation.\n\t */\n\tfunction layout() {\n\n\t\tif( dom.wrapper && !isPrintingPDF() ) {\n\n\t\t\tvar size = getComputedSlideSize();\n\n\t\t\tvar slidePadding = 20; // TODO Dig this out of DOM\n\n\t\t\t// Layout the contents of the slides\n\t\t\tlayoutSlideContents( config.width, config.height, slidePadding );\n\n\t\t\tdom.slides.style.width = size.width + 'px';\n\t\t\tdom.slides.style.height = size.height + 'px';\n\n\t\t\t// Determine scale of content to fit within available space\n\t\t\tscale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height );\n\n\t\t\t// Respect max/min scale settings\n\t\t\tscale = Math.max( scale, config.minScale );\n\t\t\tscale = Math.min( scale, config.maxScale );\n\n\t\t\t// Don't apply any scaling styles if scale is 1\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\tdom.slides.style.left = '';\n\t\t\t\tdom.slides.style.top = '';\n\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\tdom.slides.style.right = '';\n\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Use zoom to scale up in desktop Chrome so that content\n\t\t\t\t// remains crisp. We don't use zoom to scale down since that\n\t\t\t\t// can lead to shifts in text layout/line breaks.\n\t\t\t\tif( scale > 1 && !isMobileDevice && /chrome/i.test( navigator.userAgent ) && typeof dom.slides.style.zoom !== 'undefined' ) {\n\t\t\t\t\tdom.slides.style.zoom = scale;\n\t\t\t\t\tdom.slides.style.left = '';\n\t\t\t\t\tdom.slides.style.top = '';\n\t\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\t\tdom.slides.style.right = '';\n\t\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t\t}\n\t\t\t\t// Apply scale transform as a fallback\n\t\t\t\telse {\n\t\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\t\tdom.slides.style.left = '50%';\n\t\t\t\t\tdom.slides.style.top = '50%';\n\t\t\t\t\tdom.slides.style.bottom = 'auto';\n\t\t\t\t\tdom.slides.style.right = 'auto';\n\t\t\t\t\ttransformSlides( { layout: 'translate(-50%, -50%) scale('+ scale +')' } );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Select all slides, vertical and horizontal\n\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) );\n\n\t\t\tfor( var i = 0, len = slides.length; i < len; i++ ) {\n\t\t\t\tvar slide = slides[ i ];\n\n\t\t\t\t// Don't bother updating invisible slides\n\t\t\t\tif( slide.style.display === 'none' ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\t// Vertical stacks are not centred since their section\n\t\t\t\t\t// children will be\n\t\t\t\t\tif( slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\t\tslide.style.top = 0;\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tslide.style.top = Math.max( ( ( size.height - getAbsoluteHeight( slide ) ) / 2 ) - slidePadding, 0 ) + 'px';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.style.top = '';\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tupdateProgress();\n\t\t\tupdateParallax();\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies layout logic to the contents of all slides in\n\t * the presentation.\n\t */\n\tfunction layoutSlideContents( width, height, padding ) {\n\n\t\t// Handle sizing of elements with the 'stretch' class\n\t\ttoArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) {\n\n\t\t\t// Determine how much vertical space we can use\n\t\t\tvar remainingHeight = getRemainingHeight( element, height );\n\n\t\t\t// Consider the aspect ratio of media elements\n\t\t\tif( /(img|video)/gi.test( element.nodeName ) ) {\n\t\t\t\tvar nw = element.naturalWidth || element.videoWidth,\n\t\t\t\t\tnh = element.naturalHeight || element.videoHeight;\n\n\t\t\t\tvar es = Math.min( width / nw, remainingHeight / nh );\n\n\t\t\t\telement.style.width = ( nw * es ) + 'px';\n\t\t\t\telement.style.height = ( nh * es ) + 'px';\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.width = width + 'px';\n\t\t\t\telement.style.height = remainingHeight + 'px';\n\t\t\t}\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Calculates the computed pixel size of our slides. These\n\t * values are based on the width and height configuration\n\t * options.\n\t */\n\tfunction getComputedSlideSize( presentationWidth, presentationHeight ) {\n\n\t\tvar size = {\n\t\t\t// Slide size\n\t\t\twidth: config.width,\n\t\t\theight: config.height,\n\n\t\t\t// Presentation size\n\t\t\tpresentationWidth: presentationWidth || dom.wrapper.offsetWidth,\n\t\t\tpresentationHeight: presentationHeight || dom.wrapper.offsetHeight\n\t\t};\n\n\t\t// Reduce available space by margin\n\t\tsize.presentationWidth -= ( size.presentationWidth * config.margin );\n\t\tsize.presentationHeight -= ( size.presentationHeight * config.margin );\n\n\t\t// Slide width may be a percentage of available width\n\t\tif( typeof size.width === 'string' && /%$/.test( size.width ) ) {\n\t\t\tsize.width = parseInt( size.width, 10 ) / 100 * size.presentationWidth;\n\t\t}\n\n\t\t// Slide height may be a percentage of available height\n\t\tif( typeof size.height === 'string' && /%$/.test( size.height ) ) {\n\t\t\tsize.height = parseInt( size.height, 10 ) / 100 * size.presentationHeight;\n\t\t}\n\n\t\treturn size;\n\n\t}\n\n\t/**\n\t * Stores the vertical index of a stack so that the same\n\t * vertical slide can be selected when navigating to and\n\t * from the stack.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t * @param {int} v Index to memorize\n\t */\n\tfunction setPreviousVerticalIndex( stack, v ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {\n\t\t\tstack.setAttribute( 'data-previous-indexv', v || 0 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the vertical index which was stored using\n\t * #setPreviousVerticalIndex() or 0 if no previous index\n\t * exists.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t */\n\tfunction getPreviousVerticalIndex( stack ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {\n\t\t\t// Prefer manually defined start-indexv\n\t\t\tvar attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv';\n\n\t\t\treturn parseInt( stack.getAttribute( attributeName ) || 0, 10 );\n\t\t}\n\n\t\treturn 0;\n\n\t}\n\n\t/**\n\t * Displays the overview of slides (quick nav) by scaling\n\t * down and arranging all slide elements.\n\t */\n\tfunction activateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview && !isOverview() ) {\n\n\t\t\toverview = true;\n\n\t\t\tdom.wrapper.classList.add( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\n\t\t\tif( features.overviewTransitions ) {\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tdom.wrapper.classList.add( 'overview-animated' );\n\t\t\t\t}, 1 );\n\t\t\t}\n\n\t\t\t// Don't auto-slide while in overview mode\n\t\t\tcancelAutoSlide();\n\n\t\t\t// Move the backgrounds element into the slide container to\n\t\t\t// that the same scaling is applied\n\t\t\tdom.slides.appendChild( dom.background );\n\n\t\t\t// Clicking on an overview slide navigates to it\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\tif( !slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\tslide.addEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tupdateSlidesVisibility();\n\t\t\tlayoutOverview();\n\t\t\tupdateOverview();\n\n\t\t\tlayout();\n\n\t\t\t// Notify observers of the overview showing\n\t\t\tdispatchEvent( 'overviewshown', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Uses CSS transforms to position all slides in a grid for\n\t * display inside of the overview mode.\n\t */\n\tfunction layoutOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\t// Layout slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\t\t\ttransformElement( hslide, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\n\t\t\t\t\ttransformElement( vslide, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t\t} );\n\n\t\t\t}\n\t\t} );\n\n\t\t// Layout slide backgrounds\n\t\ttoArray( dom.background.childNodes ).forEach( function( hbackground, h ) {\n\t\t\ttransformElement( hbackground, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\ttoArray( hbackground.querySelectorAll( '.slide-background' ) ).forEach( function( vbackground, v ) {\n\t\t\t\ttransformElement( vbackground, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Moves the overview viewport to the current slides.\n\t * Called each time the current slide changes.\n\t */\n\tfunction updateOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\ttransformSlides( {\n\t\t\toverview: [\n\t\t\t\t'translateX('+ ( -indexh * slideWidth ) +'px)',\n\t\t\t\t'translateY('+ ( -indexv * slideHeight ) +'px)',\n\t\t\t\t'translateZ('+ ( window.innerWidth < 400 ? -1000 : -2500 ) +'px)'\n\t\t\t].join( ' ' )\n\t\t} );\n\n\t}\n\n\t/**\n\t * Exits the slide overview and enters the currently\n\t * active slide.\n\t */\n\tfunction deactivateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview ) {\n\n\t\t\toverview = false;\n\n\t\t\tdom.wrapper.classList.remove( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-animated' );\n\n\t\t\t// Temporarily add a class so that transitions can do different things\n\t\t\t// depending on whether they are exiting/entering overview, or just\n\t\t\t// moving from slide to slide\n\t\t\tdom.wrapper.classList.add( 'overview-deactivating' );\n\n\t\t\tsetTimeout( function () {\n\t\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\t\t\t}, 1 );\n\n\t\t\t// Move the background element back out\n\t\t\tdom.wrapper.appendChild( dom.background );\n\n\t\t\t// Clean up changes made to slides\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\ttransformElement( slide, '' );\n\n\t\t\t\tslide.removeEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t} );\n\n\t\t\t// Clean up changes made to backgrounds\n\t\t\ttoArray( dom.background.querySelectorAll( '.slide-background' ) ).forEach( function( background ) {\n\t\t\t\ttransformElement( background, '' );\n\t\t\t} );\n\n\t\t\ttransformSlides( { overview: '' } );\n\n\t\t\tslide( indexh, indexv );\n\n\t\t\tlayout();\n\n\t\t\tcueAutoSlide();\n\n\t\t\t// Notify observers of the overview hiding\n\t\t\tdispatchEvent( 'overviewhidden', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\t}\n\n\t/**\n\t * Toggles the slide overview mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which overrides the\n\t * toggle logic and forcibly sets the desired state. True means\n\t * overview is open, false means it's closed.\n\t */\n\tfunction toggleOverview( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? activateOverview() : deactivateOverview();\n\t\t}\n\t\telse {\n\t\t\tisOverview() ? deactivateOverview() : activateOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the overview is currently active.\n\t *\n\t * @return {Boolean} true if the overview is active,\n\t * false otherwise\n\t */\n\tfunction isOverview() {\n\n\t\treturn overview;\n\n\t}\n\n\t/**\n\t * Checks if the current or specified slide is vertical\n\t * (nested within another slide).\n\t *\n\t * @param {HTMLElement} slide [optional] The slide to check\n\t * orientation of\n\t */\n\tfunction isVerticalSlide( slide ) {\n\n\t\t// Prefer slide argument, otherwise use current slide\n\t\tslide = slide ? slide : currentSlide;\n\n\t\treturn slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i );\n\n\t}\n\n\t/**\n\t * Handling the fullscreen functionality via the fullscreen API\n\t *\n\t * @see http://fullscreen.spec.whatwg.org/\n\t * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode\n\t */\n\tfunction enterFullscreen() {\n\n\t\tvar element = document.body;\n\n\t\t// Check which implementation is available\n\t\tvar requestMethod = element.requestFullScreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullscreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullScreen ||\n\t\t\t\t\t\t\telement.mozRequestFullScreen ||\n\t\t\t\t\t\t\telement.msRequestFullscreen;\n\n\t\tif( requestMethod ) {\n\t\t\trequestMethod.apply( element );\n\t\t}\n\n\t}\n\n\t/**\n\t * Enters the paused mode which fades everything on screen to\n\t * black.\n\t */\n\tfunction pause() {\n\n\t\tif( config.pause ) {\n\t\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\n\t\t\tcancelAutoSlide();\n\t\t\tdom.wrapper.classList.add( 'paused' );\n\n\t\t\tif( wasPaused === false ) {\n\t\t\t\tdispatchEvent( 'paused' );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Exits from the paused mode.\n\t */\n\tfunction resume() {\n\n\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\t\tdom.wrapper.classList.remove( 'paused' );\n\n\t\tcueAutoSlide();\n\n\t\tif( wasPaused ) {\n\t\t\tdispatchEvent( 'resumed' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Toggles the paused mode on and off.\n\t */\n\tfunction togglePause( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? pause() : resume();\n\t\t}\n\t\telse {\n\t\t\tisPaused() ? resume() : pause();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if we are currently in the paused mode.\n\t */\n\tfunction isPaused() {\n\n\t\treturn dom.wrapper.classList.contains( 'paused' );\n\n\t}\n\n\t/**\n\t * Toggles the auto slide mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which sets the desired state.\n\t * True means autoplay starts, false means it stops.\n\t */\n\n\tfunction toggleAutoSlide( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t\telse {\n\t\t\tautoSlidePaused ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the auto slide mode is currently on.\n\t */\n\tfunction isAutoSliding() {\n\n\t\treturn !!( autoSlide && !autoSlidePaused );\n\n\t}\n\n\t/**\n\t * Steps from the current point in the presentation to the\n\t * slide which matches the specified horizontal and vertical\n\t * indices.\n\t *\n\t * @param {int} h Horizontal index of the target slide\n\t * @param {int} v Vertical index of the target slide\n\t * @param {int} f Optional index of a fragment within the\n\t * target slide to activate\n\t * @param {int} o Optional origin for use in multimaster environments\n\t */\n\tfunction slide( h, v, f, o ) {\n\n\t\t// Remember where we were at before\n\t\tpreviousSlide = currentSlide;\n\n\t\t// Query all horizontal slides in the deck\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );\n\n\t\t// If no vertical index is specified and the upcoming slide is a\n\t\t// stack, resume at its previous vertical index\n\t\tif( v === undefined && !isOverview() ) {\n\t\t\tv = getPreviousVerticalIndex( horizontalSlides[ h ] );\n\t\t}\n\n\t\t// If we were on a vertical stack, remember what vertical index\n\t\t// it was on so we can resume at the same position when returning\n\t\tif( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {\n\t\t\tsetPreviousVerticalIndex( previousSlide.parentNode, indexv );\n\t\t}\n\n\t\t// Remember the state before this slide\n\t\tvar stateBefore = state.concat();\n\n\t\t// Reset the state array\n\t\tstate.length = 0;\n\n\t\tvar indexhBefore = indexh || 0,\n\t\t\tindexvBefore = indexv || 0;\n\n\t\t// Activate and transition to the new slide\n\t\tindexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );\n\t\tindexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );\n\n\t\t// Update the visibility of slides now that the indices have changed\n\t\tupdateSlidesVisibility();\n\n\t\tlayout();\n\n\t\t// Apply the new state\n\t\tstateLoop: for( var i = 0, len = state.length; i < len; i++ ) {\n\t\t\t// Check if this state existed on the previous slide. If it\n\t\t\t// did, we will avoid adding it repeatedly\n\t\t\tfor( var j = 0; j < stateBefore.length; j++ ) {\n\t\t\t\tif( stateBefore[j] === state[i] ) {\n\t\t\t\t\tstateBefore.splice( j, 1 );\n\t\t\t\t\tcontinue stateLoop;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdocument.documentElement.classList.add( state[i] );\n\n\t\t\t// Dispatch custom event matching the state's name\n\t\t\tdispatchEvent( state[i] );\n\t\t}\n\n\t\t// Clean up the remains of the previous state\n\t\twhile( stateBefore.length ) {\n\t\t\tdocument.documentElement.classList.remove( stateBefore.pop() );\n\t\t}\n\n\t\t// Update the overview if it's currently active\n\t\tif( isOverview() ) {\n\t\t\tupdateOverview();\n\t\t}\n\n\t\t// Find the current horizontal slide and any possible vertical slides\n\t\t// within it\n\t\tvar currentHorizontalSlide = horizontalSlides[ indexh ],\n\t\t\tcurrentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );\n\n\t\t// Store references to the previous and current slides\n\t\tcurrentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;\n\n\t\t// Show fragment, if specified\n\t\tif( typeof f !== 'undefined' ) {\n\t\t\tnavigateFragment( f );\n\t\t}\n\n\t\t// Dispatch an event if the slide changed\n\t\tvar slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore );\n\t\tif( slideChanged ) {\n\t\t\tdispatchEvent( 'slidechanged', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'previousSlide': previousSlide,\n\t\t\t\t'currentSlide': currentSlide,\n\t\t\t\t'origin': o\n\t\t\t} );\n\t\t}\n\t\telse {\n\t\t\t// Ensure that the previous slide is never the same as the current\n\t\t\tpreviousSlide = null;\n\t\t}\n\n\t\t// Solves an edge case where the previous slide maintains the\n\t\t// 'present' class when navigating between adjacent vertical\n\t\t// stacks\n\t\tif( previousSlide ) {\n\t\t\tpreviousSlide.classList.remove( 'present' );\n\t\t\tpreviousSlide.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t// Reset all slides upon navigate to home\n\t\t\t// Issue: #285\n\t\t\tif ( dom.wrapper.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) {\n\t\t\t\t// Launch async task\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i;\n\t\t\t\t\tfor( i in slides ) {\n\t\t\t\t\t\tif( slides[i] ) {\n\t\t\t\t\t\t\t// Reset stack\n\t\t\t\t\t\t\tsetPreviousVerticalIndex( slides[i], 0 );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}, 0 );\n\t\t\t}\n\t\t}\n\n\t\t// Handle embedded content\n\t\tif( slideChanged || !previousSlide ) {\n\t\t\tstopEmbeddedContent( previousSlide );\n\t\t\tstartEmbeddedContent( currentSlide );\n\t\t}\n\n\t\t// Announce the current slide contents, for screen readers\n\t\tdom.statusDiv.textContent = currentSlide.textContent;\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground();\n\t\tupdateParallax();\n\t\tupdateSlideNumber();\n\t\tupdateNotes();\n\n\t\t// Update the URL hash\n\t\twriteURL();\n\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Syncs the presentation with the current DOM. Useful\n\t * when new slides or control elements are added or when\n\t * the configuration has changed.\n\t */\n\tfunction sync() {\n\n\t\t// Subscribe to input\n\t\tremoveEventListeners();\n\t\taddEventListeners();\n\n\t\t// Force a layout to make sure the current config is accounted for\n\t\tlayout();\n\n\t\t// Reflect the current autoSlide value\n\t\tautoSlide = config.autoSlide;\n\n\t\t// Start auto-sliding if it's enabled\n\t\tcueAutoSlide();\n\n\t\t// Re-create the slide backgrounds\n\t\tcreateBackgrounds();\n\n\t\t// Write the current hash to the URL\n\t\twriteURL();\n\n\t\tsortAllFragments();\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground( true );\n\t\tupdateSlideNumber();\n\t\tupdateSlidesVisibility();\n\t\tupdateNotes();\n\n\t\tformatEmbeddedContent();\n\t\tstartEmbeddedContent( currentSlide );\n\n\t\tif( isOverview() ) {\n\t\t\tlayoutOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Resets all vertical slides so that only the first\n\t * is visible.\n\t */\n\tfunction resetVerticalSlides() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tif( y > 0 ) {\n\t\t\t\t\tverticalSlide.classList.remove( 'present' );\n\t\t\t\t\tverticalSlide.classList.remove( 'past' );\n\t\t\t\t\tverticalSlide.classList.add( 'future' );\n\t\t\t\t\tverticalSlide.setAttribute( 'aria-hidden', 'true' );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Sorts and formats all of fragments in the\n\t * presentation.\n\t */\n\tfunction sortAllFragments() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tsortFragments( verticalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t\t} );\n\n\t\t\tif( verticalSlides.length === 0 ) sortFragments( horizontalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Updates one dimension of slides by showing the slide\n\t * with the specified index.\n\t *\n\t * @param {String} selector A CSS selector that will fetch\n\t * the group of slides we are working with\n\t * @param {Number} index The index of the slide that should be\n\t * shown\n\t *\n\t * @return {Number} The index of the slide that is now shown,\n\t * might differ from the passed in index if it was out of\n\t * bounds.\n\t */\n\tfunction updateSlides( selector, index ) {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar slides = toArray( dom.wrapper.querySelectorAll( selector ) ),\n\t\t\tslidesLength = slides.length;\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\tif( slidesLength ) {\n\n\t\t\t// Should the index loop?\n\t\t\tif( config.loop ) {\n\t\t\t\tindex %= slidesLength;\n\n\t\t\t\tif( index < 0 ) {\n\t\t\t\t\tindex = slidesLength + index;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Enforce max and minimum index bounds\n\t\t\tindex = Math.max( Math.min( index, slidesLength - 1 ), 0 );\n\n\t\t\tfor( var i = 0; i < slidesLength; i++ ) {\n\t\t\t\tvar element = slides[i];\n\n\t\t\t\tvar reverse = config.rtl && !isVerticalSlide( element );\n\n\t\t\t\telement.classList.remove( 'past' );\n\t\t\t\telement.classList.remove( 'present' );\n\t\t\t\telement.classList.remove( 'future' );\n\n\t\t\t\t// http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute\n\t\t\t\telement.setAttribute( 'hidden', '' );\n\t\t\t\telement.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t\t// If this element contains vertical slides\n\t\t\t\tif( element.querySelector( 'section' ) ) {\n\t\t\t\t\telement.classList.add( 'stack' );\n\t\t\t\t}\n\n\t\t\t\t// If we're printing static slides, all slides are \"present\"\n\t\t\t\tif( printMode ) {\n\t\t\t\t\telement.classList.add( 'present' );\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( i < index ) {\n\t\t\t\t\t// Any element previous to index is given the 'past' class\n\t\t\t\t\telement.classList.add( reverse ? 'future' : 'past' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar pastFragments = toArray( element.querySelectorAll( '.fragment' ) );\n\n\t\t\t\t\t\t// Show all fragments on prior slides\n\t\t\t\t\t\twhile( pastFragments.length ) {\n\t\t\t\t\t\t\tvar pastFragment = pastFragments.pop();\n\t\t\t\t\t\t\tpastFragment.classList.add( 'visible' );\n\t\t\t\t\t\t\tpastFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( i > index ) {\n\t\t\t\t\t// Any element subsequent to index is given the 'future' class\n\t\t\t\t\telement.classList.add( reverse ? 'past' : 'future' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar futureFragments = toArray( element.querySelectorAll( '.fragment.visible' ) );\n\n\t\t\t\t\t\t// No fragments in future slides should be visible ahead of time\n\t\t\t\t\t\twhile( futureFragments.length ) {\n\t\t\t\t\t\t\tvar futureFragment = futureFragments.pop();\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'visible' );\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Mark the current slide as present\n\t\t\tslides[index].classList.add( 'present' );\n\t\t\tslides[index].removeAttribute( 'hidden' );\n\t\t\tslides[index].removeAttribute( 'aria-hidden' );\n\n\t\t\t// If this slide has a state associated with it, add it\n\t\t\t// onto the current state of the deck\n\t\t\tvar slideState = slides[index].getAttribute( 'data-state' );\n\t\t\tif( slideState ) {\n\t\t\t\tstate = state.concat( slideState.split( ' ' ) );\n\t\t\t}\n\n\t\t}\n\t\telse {\n\t\t\t// Since there are no slides we can't be anywhere beyond the\n\t\t\t// zeroth index\n\t\t\tindex = 0;\n\t\t}\n\n\t\treturn index;\n\n\t}\n\n\t/**\n\t * Optimization method; hide all slides that are far away\n\t * from the present slide.\n\t */\n\tfunction updateSlidesVisibility() {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ),\n\t\t\thorizontalSlidesLength = horizontalSlides.length,\n\t\t\tdistanceX,\n\t\t\tdistanceY;\n\n\t\tif( horizontalSlidesLength && typeof indexh !== 'undefined' ) {\n\n\t\t\t// The number of steps away from the present slide that will\n\t\t\t// be visible\n\t\t\tvar viewDistance = isOverview() ? 10 : config.viewDistance;\n\n\t\t\t// Limit view distance on weaker devices\n\t\t\tif( isMobileDevice ) {\n\t\t\t\tviewDistance = isOverview() ? 6 : 2;\n\t\t\t}\n\n\t\t\t// All slides need to be visible when exporting to PDF\n\t\t\tif( isPrintingPDF() ) {\n\t\t\t\tviewDistance = Number.MAX_VALUE;\n\t\t\t}\n\n\t\t\tfor( var x = 0; x < horizontalSlidesLength; x++ ) {\n\t\t\t\tvar horizontalSlide = horizontalSlides[x];\n\n\t\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ),\n\t\t\t\t\tverticalSlidesLength = verticalSlides.length;\n\n\t\t\t\t// Determine how far away this slide is from the present\n\t\t\t\tdistanceX = Math.abs( ( indexh || 0 ) - x ) || 0;\n\n\t\t\t\t// If the presentation is looped, distance should measure\n\t\t\t\t// 1 between the first and last slides\n\t\t\t\tif( config.loop ) {\n\t\t\t\t\tdistanceX = Math.abs( ( ( indexh || 0 ) - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0;\n\t\t\t\t}\n\n\t\t\t\t// Show the horizontal slide if it's within the view distance\n\t\t\t\tif( distanceX < viewDistance ) {\n\t\t\t\t\tshowSlide( horizontalSlide );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\thideSlide( horizontalSlide );\n\t\t\t\t}\n\n\t\t\t\tif( verticalSlidesLength ) {\n\n\t\t\t\t\tvar oy = getPreviousVerticalIndex( horizontalSlide );\n\n\t\t\t\t\tfor( var y = 0; y < verticalSlidesLength; y++ ) {\n\t\t\t\t\t\tvar verticalSlide = verticalSlides[y];\n\n\t\t\t\t\t\tdistanceY = x === ( indexh || 0 ) ? Math.abs( ( indexv || 0 ) - y ) : Math.abs( y - oy );\n\n\t\t\t\t\t\tif( distanceX + distanceY < viewDistance ) {\n\t\t\t\t\t\t\tshowSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\thideSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Pick up notes from the current slide and display tham\n\t * to the viewer.\n\t *\n\t * @see `showNotes` config value\n\t */\n\tfunction updateNotes() {\n\n\t\tif( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) {\n\n\t\t\tdom.speakerNotes.innerHTML = getSlideNotes() || '';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the progress bar to reflect the current slide.\n\t */\n\tfunction updateProgress() {\n\n\t\t// Update progress if enabled\n\t\tif( config.progress && dom.progressbar ) {\n\n\t\t\tdom.progressbar.style.width = getProgress() * dom.wrapper.offsetWidth + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the slide number div to reflect the current slide.\n\t *\n\t * The following slide number formats are available:\n\t *  \"h.v\": \thorizontal . vertical slide number (default)\n\t *  \"h/v\": \thorizontal / vertical slide number\n\t *    \"c\": \tflattened slide number\n\t *  \"c/t\": \tflattened slide number / total slides\n\t */\n\tfunction updateSlideNumber() {\n\n\t\t// Update slide number if enabled\n\t\tif( config.slideNumber && dom.slideNumber ) {\n\n\t\t\tvar value = [];\n\t\t\tvar format = 'h.v';\n\n\t\t\t// Check if a custom number format is available\n\t\t\tif( typeof config.slideNumber === 'string' ) {\n\t\t\t\tformat = config.slideNumber;\n\t\t\t}\n\n\t\t\tswitch( format ) {\n\t\t\t\tcase 'c':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'c/t':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1, '/', getTotalSlides() );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'h/v':\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '/', indexv + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '.', indexv + 1 );\n\t\t\t}\n\n\t\t\tdom.slideNumber.innerHTML = formatSlideNumber( value[0], value[1], value[2] );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies HTML formatting to a slide number before it's\n\t * written to the DOM.\n\t */\n\tfunction formatSlideNumber( a, delimiter, b ) {\n\n\t\tif( typeof b === 'number' && !isNaN( b ) ) {\n\t\t\treturn  '<span class=\"slide-number-a\">'+ a +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-delimiter\">'+ delimiter +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-b\">'+ b +'</span>';\n\t\t}\n\t\telse {\n\t\t\treturn '<span class=\"slide-number-a\">'+ a +'</span>';\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the state of all control/navigation arrows.\n\t */\n\tfunction updateControls() {\n\n\t\tvar routes = availableRoutes();\n\t\tvar fragments = availableFragments();\n\n\t\t// Remove the 'enabled' class from all directions\n\t\tdom.controlsLeft.concat( dom.controlsRight )\n\t\t\t\t\t\t.concat( dom.controlsUp )\n\t\t\t\t\t\t.concat( dom.controlsDown )\n\t\t\t\t\t\t.concat( dom.controlsPrev )\n\t\t\t\t\t\t.concat( dom.controlsNext ).forEach( function( node ) {\n\t\t\tnode.classList.remove( 'enabled' );\n\t\t\tnode.classList.remove( 'fragmented' );\n\t\t} );\n\n\t\t// Add the 'enabled' class to the available routes\n\t\tif( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Prev/next buttons\n\t\tif( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Highlight fragment directions\n\t\tif( currentSlide ) {\n\n\t\t\t// Always apply fragment decorator to prev/next buttons\n\t\t\tif( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\tif( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\n\t\t\t// Apply fragment decorators to directional buttons based on\n\t\t\t// what slide axis they are in\n\t\t\tif( isVerticalSlide( currentSlide ) ) {\n\t\t\t\tif( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the background elements to reflect the current\n\t * slide.\n\t *\n\t * @param {Boolean} includeAll If true, the backgrounds of\n\t * all vertical slides (not just the present) will be updated.\n\t */\n\tfunction updateBackground( includeAll ) {\n\n\t\tvar currentBackground = null;\n\n\t\t// Reverse past/future classes when in RTL mode\n\t\tvar horizontalPast = config.rtl ? 'future' : 'past',\n\t\t\thorizontalFuture = config.rtl ? 'past' : 'future';\n\n\t\t// Update the classes of all backgrounds to match the\n\t\t// states of their slides (past/present/future)\n\t\ttoArray( dom.background.childNodes ).forEach( function( backgroundh, h ) {\n\n\t\t\tbackgroundh.classList.remove( 'past' );\n\t\t\tbackgroundh.classList.remove( 'present' );\n\t\t\tbackgroundh.classList.remove( 'future' );\n\n\t\t\tif( h < indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalPast );\n\t\t\t}\n\t\t\telse if ( h > indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalFuture );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundh.classList.add( 'present' );\n\n\t\t\t\t// Store a reference to the current background element\n\t\t\t\tcurrentBackground = backgroundh;\n\t\t\t}\n\n\t\t\tif( includeAll || h === indexh ) {\n\t\t\t\ttoArray( backgroundh.querySelectorAll( '.slide-background' ) ).forEach( function( backgroundv, v ) {\n\n\t\t\t\t\tbackgroundv.classList.remove( 'past' );\n\t\t\t\t\tbackgroundv.classList.remove( 'present' );\n\t\t\t\t\tbackgroundv.classList.remove( 'future' );\n\n\t\t\t\t\tif( v < indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'past' );\n\t\t\t\t\t}\n\t\t\t\t\telse if ( v > indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'future' );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tbackgroundv.classList.add( 'present' );\n\n\t\t\t\t\t\t// Only if this is the present horizontal and vertical slide\n\t\t\t\t\t\tif( h === indexh ) currentBackground = backgroundv;\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\t\t\t}\n\n\t\t} );\n\n\t\t// Stop any currently playing video background\n\t\tif( previousBackground ) {\n\n\t\t\tvar previousVideo = previousBackground.querySelector( 'video' );\n\t\t\tif( previousVideo ) previousVideo.pause();\n\n\t\t}\n\n\t\tif( currentBackground ) {\n\n\t\t\t// Start video playback\n\t\t\tvar currentVideo = currentBackground.querySelector( 'video' );\n\t\t\tif( currentVideo ) {\n\t\t\t\tif( currentVideo.currentTime > 0 ) currentVideo.currentTime = 0;\n\t\t\t\tcurrentVideo.play();\n\t\t\t}\n\n\t\t\tvar backgroundImageURL = currentBackground.style.backgroundImage || '';\n\n\t\t\t// Restart GIFs (doesn't work in Firefox)\n\t\t\tif( /\\.gif/i.test( backgroundImageURL ) ) {\n\t\t\t\tcurrentBackground.style.backgroundImage = '';\n\t\t\t\twindow.getComputedStyle( currentBackground ).opacity;\n\t\t\t\tcurrentBackground.style.backgroundImage = backgroundImageURL;\n\t\t\t}\n\n\t\t\t// Don't transition between identical backgrounds. This\n\t\t\t// prevents unwanted flicker.\n\t\t\tvar previousBackgroundHash = previousBackground ? previousBackground.getAttribute( 'data-background-hash' ) : null;\n\t\t\tvar currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' );\n\t\t\tif( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== previousBackground ) {\n\t\t\t\tdom.background.classList.add( 'no-transition' );\n\t\t\t}\n\n\t\t\tpreviousBackground = currentBackground;\n\n\t\t}\n\n\t\t// If there's a background brightness flag for this slide,\n\t\t// bubble it to the .reveal container\n\t\tif( currentSlide ) {\n\t\t\t[ 'has-light-background', 'has-dark-background' ].forEach( function( classToBubble ) {\n\t\t\t\tif( currentSlide.classList.contains( classToBubble ) ) {\n\t\t\t\t\tdom.wrapper.classList.add( classToBubble );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tdom.wrapper.classList.remove( classToBubble );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Allow the first background to apply without transition\n\t\tsetTimeout( function() {\n\t\t\tdom.background.classList.remove( 'no-transition' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Updates the position of the parallax background based\n\t * on the current slide index.\n\t */\n\tfunction updateParallax() {\n\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\t\tvar backgroundSize = dom.background.style.backgroundSize.split( ' ' ),\n\t\t\t\tbackgroundWidth, backgroundHeight;\n\n\t\t\tif( backgroundSize.length === 1 ) {\n\t\t\t\tbackgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundWidth = parseInt( backgroundSize[0], 10 );\n\t\t\t\tbackgroundHeight = parseInt( backgroundSize[1], 10 );\n\t\t\t}\n\n\t\t\tvar slideWidth = dom.background.offsetWidth,\n\t\t\t\thorizontalSlideCount = horizontalSlides.length,\n\t\t\t\thorizontalOffsetMultiplier,\n\t\t\t\thorizontalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundHorizontal === 'number' ) {\n\t\t\t\thorizontalOffsetMultiplier = config.parallaxBackgroundHorizontal;\n\t\t\t}\n\t\t\telse {\n\t\t\t\thorizontalOffsetMultiplier = ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 );\n\t\t\t}\n\n\t\t\thorizontalOffset = horizontalOffsetMultiplier * indexh * -1;\n\n\t\t\tvar slideHeight = dom.background.offsetHeight,\n\t\t\t\tverticalSlideCount = verticalSlides.length,\n\t\t\t\tverticalOffsetMultiplier,\n\t\t\t\tverticalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundVertical === 'number' ) {\n\t\t\t\tverticalOffsetMultiplier = config.parallaxBackgroundVertical;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tverticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 );\n\t\t\t}\n\n\t\t\tverticalOffset = verticalSlideCount > 0 ?  verticalOffsetMultiplier * indexv * 1 : 0;\n\n\t\t\tdom.background.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is within the configured view\n\t * distance. Shows the slide element and loads any content\n\t * that is set to load lazily (data-src).\n\t */\n\tfunction showSlide( slide ) {\n\n\t\t// Show the slide element\n\t\tslide.style.display = 'block';\n\n\t\t// Media elements with data-src attributes\n\t\ttoArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src]' ) ).forEach( function( element ) {\n\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\telement.removeAttribute( 'data-src' );\n\t\t} );\n\n\t\t// Media elements with <source> children\n\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( media ) {\n\t\t\tvar sources = 0;\n\n\t\t\ttoArray( media.querySelectorAll( 'source[data-src]' ) ).forEach( function( source ) {\n\t\t\t\tsource.setAttribute( 'src', source.getAttribute( 'data-src' ) );\n\t\t\t\tsource.removeAttribute( 'data-src' );\n\t\t\t\tsources += 1;\n\t\t\t} );\n\n\t\t\t// If we rewrote sources for this video/audio element, we need\n\t\t\t// to manually tell it to load from its new origin\n\t\t\tif( sources > 0 ) {\n\t\t\t\tmedia.load();\n\t\t\t}\n\t\t} );\n\n\n\t\t// Show the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'block';\n\n\t\t\t// If the background contains media, load it\n\t\t\tif( background.hasAttribute( 'data-loaded' ) === false ) {\n\t\t\t\tbackground.setAttribute( 'data-loaded', 'true' );\n\n\t\t\t\tvar backgroundImage = slide.getAttribute( 'data-background-image' ),\n\t\t\t\t\tbackgroundVideo = slide.getAttribute( 'data-background-video' ),\n\t\t\t\t\tbackgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ),\n\t\t\t\t\tbackgroundIframe = slide.getAttribute( 'data-background-iframe' );\n\n\t\t\t\t// Images\n\t\t\t\tif( backgroundImage ) {\n\t\t\t\t\tbackground.style.backgroundImage = 'url('+ backgroundImage +')';\n\t\t\t\t}\n\t\t\t\t// Videos\n\t\t\t\telse if ( backgroundVideo && !isSpeakerNotes() ) {\n\t\t\t\t\tvar video = document.createElement( 'video' );\n\n\t\t\t\t\tif( backgroundVideoLoop ) {\n\t\t\t\t\t\tvideo.setAttribute( 'loop', '' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support comma separated lists of video sources\n\t\t\t\t\tbackgroundVideo.split( ',' ).forEach( function( source ) {\n\t\t\t\t\t\tvideo.innerHTML += '<source src=\"'+ source +'\">';\n\t\t\t\t\t} );\n\n\t\t\t\t\tbackground.appendChild( video );\n\t\t\t\t}\n\t\t\t\t// Iframes\n\t\t\t\telse if( backgroundIframe ) {\n\t\t\t\t\tvar iframe = document.createElement( 'iframe' );\n\t\t\t\t\t\tiframe.setAttribute( 'src', backgroundIframe );\n\t\t\t\t\t\tiframe.style.width  = '100%';\n\t\t\t\t\t\tiframe.style.height = '100%';\n\t\t\t\t\t\tiframe.style.maxHeight = '100%';\n\t\t\t\t\t\tiframe.style.maxWidth = '100%';\n\n\t\t\t\t\tbackground.appendChild( iframe );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is moved outside of the\n\t * configured view distance.\n\t */\n\tfunction hideSlide( slide ) {\n\n\t\t// Hide the slide element\n\t\tslide.style.display = 'none';\n\n\t\t// Hide the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'none';\n\t\t}\n\n\t}\n\n\t/**\n\t * Determine what available routes there are for navigation.\n\t *\n\t * @return {Object} containing four booleans: left/right/up/down\n\t */\n\tfunction availableRoutes() {\n\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\tvar routes = {\n\t\t\tleft: indexh > 0 || config.loop,\n\t\t\tright: indexh < horizontalSlides.length - 1 || config.loop,\n\t\t\tup: indexv > 0,\n\t\t\tdown: indexv < verticalSlides.length - 1\n\t\t};\n\n\t\t// reverse horizontal controls for rtl\n\t\tif( config.rtl ) {\n\t\t\tvar left = routes.left;\n\t\t\troutes.left = routes.right;\n\t\t\troutes.right = left;\n\t\t}\n\n\t\treturn routes;\n\n\t}\n\n\t/**\n\t * Returns an object describing the available fragment\n\t * directions.\n\t *\n\t * @return {Object} two boolean properties: prev/next\n\t */\n\tfunction availableFragments() {\n\n\t\tif( currentSlide && config.fragments ) {\n\t\t\tvar fragments = currentSlide.querySelectorAll( '.fragment' );\n\t\t\tvar hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' );\n\n\t\t\treturn {\n\t\t\t\tprev: fragments.length - hiddenFragments.length > 0,\n\t\t\t\tnext: !!hiddenFragments.length\n\t\t\t};\n\t\t}\n\t\telse {\n\t\t\treturn { prev: false, next: false };\n\t\t}\n\n\t}\n\n\t/**\n\t * Enforces origin-specific format rules for embedded media.\n\t */\n\tfunction formatEmbeddedContent() {\n\n\t\tvar _appendParamToIframeSource = function( sourceAttribute, sourceURL, param ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( 'iframe['+ sourceAttribute +'*=\"'+ sourceURL +'\"]' ) ).forEach( function( el ) {\n\t\t\t\tvar src = el.getAttribute( sourceAttribute );\n\t\t\t\tif( src && src.indexOf( param ) === -1 ) {\n\t\t\t\t\tel.setAttribute( sourceAttribute, src + ( !/\\?/.test( src ) ? '?' : '&' ) + param );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\t// YouTube frames must include \"?enablejsapi=1\"\n\t\t_appendParamToIframeSource( 'src', 'youtube.com/embed/', 'enablejsapi=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'youtube.com/embed/', 'enablejsapi=1' );\n\n\t\t// Vimeo frames must include \"?api=1\"\n\t\t_appendParamToIframeSource( 'src', 'player.vimeo.com/', 'api=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'player.vimeo.com/', 'api=1' );\n\n\t}\n\n\t/**\n\t * Start playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction startEmbeddedContent( slide ) {\n\n\t\tif( slide && !isSpeakerNotes() ) {\n\t\t\t// Restart GIFs\n\t\t\ttoArray( slide.querySelectorAll( 'img[src$=\".gif\"]' ) ).forEach( function( el ) {\n\t\t\t\t// Setting the same unchanged source like this was confirmed\n\t\t\t\t// to work in Chrome, FF & Safari\n\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'src' ) );\n\t\t\t} );\n\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) && typeof el.play === 'function' ) {\n\t\t\t\t\tel.play();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Normal iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src]' ) ).forEach( function( el ) {\n\t\t\t\tstartEmbeddedIframe( { target: el } );\n\t\t\t} );\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\tif( el.getAttribute( 'src' ) !== el.getAttribute( 'data-src' ) ) {\n\t\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe ); // remove first to avoid dupes\n\t\t\t\t\tel.addEventListener( 'load', startEmbeddedIframe );\n\t\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'data-src' ) );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * \"Starts\" the content of an embedded iframe using the\n\t * postmessage API.\n\t */\n\tfunction startEmbeddedIframe( event ) {\n\n\t\tvar iframe = event.target;\n\n\t\t// YouTube postMessage API\n\t\tif( /youtube\\.com\\/embed\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"playVideo\",\"args\":\"\"}', '*' );\n\t\t}\n\t\t// Vimeo postMessage API\n\t\telse if( /player\\.vimeo\\.com\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"method\":\"play\"}', '*' );\n\t\t}\n\t\t// Generic postMessage API\n\t\telse {\n\t\t\tiframe.contentWindow.postMessage( 'slide:start', '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Stop playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction stopEmbeddedContent( slide ) {\n\n\t\tif( slide && slide.parentNode ) {\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) {\n\t\t\t\t\tel.pause();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Generic postMessage API for non-lazy loaded iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe' ) ).forEach( function( el ) {\n\t\t\t\tel.contentWindow.postMessage( 'slide:stop', '*' );\n\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe );\n\t\t\t});\n\n\t\t\t// YouTube postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"youtube.com/embed/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"pauseVideo\",\"args\":\"\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Vimeo postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"player.vimeo.com/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"method\":\"pause\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\t// Only removing the src doesn't actually unload the frame\n\t\t\t\t// in all browsers (Firefox) so we set it to blank first\n\t\t\t\tel.setAttribute( 'src', 'about:blank' );\n\t\t\t\tel.removeAttribute( 'src' );\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Returns the number of past slides. This can be used as a global\n\t * flattened index for slides.\n\t */\n\tfunction getSlidePastCount() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t// The number of past slides\n\t\tvar pastCount = 0;\n\n\t\t// Step through all slides and count the past ones\n\t\tmainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) {\n\n\t\t\tvar horizontalSlide = horizontalSlides[i];\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\n\t\t\tfor( var j = 0; j < verticalSlides.length; j++ ) {\n\n\t\t\t\t// Stop as soon as we arrive at the present\n\t\t\t\tif( verticalSlides[j].classList.contains( 'present' ) ) {\n\t\t\t\t\tbreak mainLoop;\n\t\t\t\t}\n\n\t\t\t\tpastCount++;\n\n\t\t\t}\n\n\t\t\t// Stop as soon as we arrive at the present\n\t\t\tif( horizontalSlide.classList.contains( 'present' ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// Don't count the wrapping section for vertical slides\n\t\t\tif( horizontalSlide.classList.contains( 'stack' ) === false ) {\n\t\t\t\tpastCount++;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount;\n\n\t}\n\n\t/**\n\t * Returns a value ranging from 0-1 that represents\n\t * how far into the presentation we have navigated.\n\t */\n\tfunction getProgress() {\n\n\t\t// The number of past and total slides\n\t\tvar totalCount = getTotalSlides();\n\t\tvar pastCount = getSlidePastCount();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar allFragments = currentSlide.querySelectorAll( '.fragment' );\n\n\t\t\t// If there are fragments in the current slide those should be\n\t\t\t// accounted for in the progress.\n\t\t\tif( allFragments.length > 0 ) {\n\t\t\t\tvar visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );\n\n\t\t\t\t// This value represents how big a portion of the slide progress\n\t\t\t\t// that is made up by its fragments (0-1)\n\t\t\t\tvar fragmentWeight = 0.9;\n\n\t\t\t\t// Add fragment progress to the past slide count\n\t\t\t\tpastCount += ( visibleFragments.length / allFragments.length ) * fragmentWeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount / ( totalCount - 1 );\n\n\t}\n\n\t/**\n\t * Checks if this presentation is running inside of the\n\t * speaker notes window.\n\t */\n\tfunction isSpeakerNotes() {\n\n\t\treturn !!window.location.search.match( /receiver/gi );\n\n\t}\n\n\t/**\n\t * Reads the current URL (hash) and navigates accordingly.\n\t */\n\tfunction readURL() {\n\n\t\tvar hash = window.location.hash;\n\n\t\t// Attempt to parse the hash as either an index or name\n\t\tvar bits = hash.slice( 2 ).split( '/' ),\n\t\t\tname = hash.replace( /#|\\//gi, '' );\n\n\t\t// If the first bit is invalid and there is a name we can\n\t\t// assume that this is a named link\n\t\tif( isNaN( parseInt( bits[0], 10 ) ) && name.length ) {\n\t\t\tvar element;\n\n\t\t\t// Ensure the named link is a valid HTML ID attribute\n\t\t\tif( /^[a-zA-Z][\\w:.-]*$/.test( name ) ) {\n\t\t\t\t// Find the slide with the specified ID\n\t\t\t\telement = document.getElementById( name );\n\t\t\t}\n\n\t\t\tif( element ) {\n\t\t\t\t// Find the position of the named slide and navigate to it\n\t\t\t\tvar indices = Reveal.getIndices( element );\n\t\t\t\tslide( indices.h, indices.v );\n\t\t\t}\n\t\t\t// If the slide doesn't exist, navigate to the current slide\n\t\t\telse {\n\t\t\t\tslide( indexh || 0, indexv || 0 );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Read the index components of the hash\n\t\t\tvar h = parseInt( bits[0], 10 ) || 0,\n\t\t\t\tv = parseInt( bits[1], 10 ) || 0;\n\n\t\t\tif( h !== indexh || v !== indexv ) {\n\t\t\t\tslide( h, v );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the page URL (hash) to reflect the current\n\t * state.\n\t *\n\t * @param {Number} delay The time in ms to wait before\n\t * writing the hash\n\t */\n\tfunction writeURL( delay ) {\n\n\t\tif( config.history ) {\n\n\t\t\t// Make sure there's never more than one timeout running\n\t\t\tclearTimeout( writeURLTimeout );\n\n\t\t\t// If a delay is specified, timeout this call\n\t\t\tif( typeof delay === 'number' ) {\n\t\t\t\twriteURLTimeout = setTimeout( writeURL, delay );\n\t\t\t}\n\t\t\telse if( currentSlide ) {\n\t\t\t\tvar url = '/';\n\n\t\t\t\t// Attempt to create a named link based on the slide's ID\n\t\t\t\tvar id = currentSlide.getAttribute( 'id' );\n\t\t\t\tif( id ) {\n\t\t\t\t\tid = id.replace( /[^a-zA-Z0-9\\-\\_\\:\\.]/g, '' );\n\t\t\t\t}\n\n\t\t\t\t// If the current slide has an ID, use that as a named link\n\t\t\t\tif( typeof id === 'string' && id.length ) {\n\t\t\t\t\turl = '/' + id;\n\t\t\t\t}\n\t\t\t\t// Otherwise use the /h/v index\n\t\t\t\telse {\n\t\t\t\t\tif( indexh > 0 || indexv > 0 ) url += indexh;\n\t\t\t\t\tif( indexv > 0 ) url += '/' + indexv;\n\t\t\t\t}\n\n\t\t\t\twindow.location.hash = url;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the h/v location of the current, or specified,\n\t * slide.\n\t *\n\t * @param {HTMLElement} slide If specified, the returned\n\t * index will be for this slide rather than the currently\n\t * active one\n\t *\n\t * @return {Object} { h: <int>, v: <int>, f: <int> }\n\t */\n\tfunction getIndices( slide ) {\n\n\t\t// By default, return the current indices\n\t\tvar h = indexh,\n\t\t\tv = indexv,\n\t\t\tf;\n\n\t\t// If a slide is specified, return the indices of that slide\n\t\tif( slide ) {\n\t\t\tvar isVertical = isVerticalSlide( slide );\n\t\t\tvar slideh = isVertical ? slide.parentNode : slide;\n\n\t\t\t// Select all horizontal slides\n\t\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t\t// Now that we know which the horizontal slide is, get its index\n\t\t\th = Math.max( horizontalSlides.indexOf( slideh ), 0 );\n\n\t\t\t// Assume we're not vertical\n\t\t\tv = undefined;\n\n\t\t\t// If this is a vertical slide, grab the vertical index\n\t\t\tif( isVertical ) {\n\t\t\t\tv = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 );\n\t\t\t}\n\t\t}\n\n\t\tif( !slide && currentSlide ) {\n\t\t\tvar hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0;\n\t\t\tif( hasFragments ) {\n\t\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\t\t\t\tif( currentFragment && currentFragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\tf = parseInt( currentFragment.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tf = currentSlide.querySelectorAll( '.fragment.visible' ).length - 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn { h: h, v: v, f: f };\n\n\t}\n\n\t/**\n\t * Retrieves the total number of slides in this presentation.\n\t */\n\tfunction getTotalSlides() {\n\n\t\treturn dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;\n\n\t}\n\n\t/**\n\t * Returns the slide element matching the specified index.\n\t */\n\tfunction getSlide( x, y ) {\n\n\t\tvar horizontalSlide = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];\n\t\tvar verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );\n\n\t\tif( verticalSlides && verticalSlides.length && typeof y === 'number' ) {\n\t\t\treturn verticalSlides ? verticalSlides[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalSlide;\n\n\t}\n\n\t/**\n\t * Returns the background element for the given slide.\n\t * All slides, even the ones with no background properties\n\t * defined, have a background element so as long as the\n\t * index is valid an element will be returned.\n\t */\n\tfunction getSlideBackground( x, y ) {\n\n\t\t// When printing to PDF the slide backgrounds are nested\n\t\t// inside of the slides\n\t\tif( isPrintingPDF() ) {\n\t\t\tvar slide = getSlide( x, y );\n\t\t\tif( slide ) {\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background && background.parentNode === slide ) {\n\t\t\t\t\treturn background;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn undefined;\n\t\t}\n\n\t\tvar horizontalBackground = dom.wrapper.querySelectorAll( '.backgrounds>.slide-background' )[ x ];\n\t\tvar verticalBackgrounds = horizontalBackground && horizontalBackground.querySelectorAll( '.slide-background' );\n\n\t\tif( verticalBackgrounds && verticalBackgrounds.length && typeof y === 'number' ) {\n\t\t\treturn verticalBackgrounds ? verticalBackgrounds[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalBackground;\n\n\t}\n\n\t/**\n\t * Retrieves the speaker notes from a slide. Notes can be\n\t * defined in two ways:\n\t * 1. As a data-notes attribute on the slide <section>\n\t * 2. As an <aside class=\"notes\"> inside of the slide\n\t */\n\tfunction getSlideNotes( slide ) {\n\n\t\t// Default to the current slide\n\t\tslide = slide || currentSlide;\n\n\t\t// Notes can be specified via the data-notes attribute...\n\t\tif( slide.hasAttribute( 'data-notes' ) ) {\n\t\t\treturn slide.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// ... or using an <aside class=\"notes\"> element\n\t\tvar notesElement = slide.querySelector( 'aside.notes' );\n\t\tif( notesElement ) {\n\t\t\treturn notesElement.innerHTML;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the current state of the presentation as\n\t * an object. This state can then be restored at any\n\t * time.\n\t */\n\tfunction getState() {\n\n\t\tvar indices = getIndices();\n\n\t\treturn {\n\t\t\tindexh: indices.h,\n\t\t\tindexv: indices.v,\n\t\t\tindexf: indices.f,\n\t\t\tpaused: isPaused(),\n\t\t\toverview: isOverview()\n\t\t};\n\n\t}\n\n\t/**\n\t * Restores the presentation to the given state.\n\t *\n\t * @param {Object} state As generated by getState()\n\t */\n\tfunction setState( state ) {\n\n\t\tif( typeof state === 'object' ) {\n\t\t\tslide( deserialize( state.indexh ), deserialize( state.indexv ), deserialize( state.indexf ) );\n\n\t\t\tvar pausedFlag = deserialize( state.paused ),\n\t\t\t\toverviewFlag = deserialize( state.overview );\n\n\t\t\tif( typeof pausedFlag === 'boolean' && pausedFlag !== isPaused() ) {\n\t\t\t\ttogglePause( pausedFlag );\n\t\t\t}\n\n\t\t\tif( typeof overviewFlag === 'boolean' && overviewFlag !== isOverview() ) {\n\t\t\t\ttoggleOverview( overviewFlag );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Return a sorted fragments list, ordered by an increasing\n\t * \"data-fragment-index\" attribute.\n\t *\n\t * Fragments will be revealed in the order that they are returned by\n\t * this function, so you can use the index attributes to control the\n\t * order of fragment appearance.\n\t *\n\t * To maintain a sensible default fragment order, fragments are presumed\n\t * to be passed in document order. This function adds a \"fragment-index\"\n\t * attribute to each node if such an attribute is not already present,\n\t * and sets that attribute to an integer value which is the position of\n\t * the fragment within the fragments list.\n\t */\n\tfunction sortFragments( fragments ) {\n\n\t\tfragments = toArray( fragments );\n\n\t\tvar ordered = [],\n\t\t\tunordered = [],\n\t\t\tsorted = [];\n\n\t\t// Group ordered and unordered elements\n\t\tfragments.forEach( function( fragment, i ) {\n\t\t\tif( fragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\tvar index = parseInt( fragment.getAttribute( 'data-fragment-index' ), 10 );\n\n\t\t\t\tif( !ordered[index] ) {\n\t\t\t\t\tordered[index] = [];\n\t\t\t\t}\n\n\t\t\t\tordered[index].push( fragment );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tunordered.push( [ fragment ] );\n\t\t\t}\n\t\t} );\n\n\t\t// Append fragments without explicit indices in their\n\t\t// DOM order\n\t\tordered = ordered.concat( unordered );\n\n\t\t// Manually count the index up per group to ensure there\n\t\t// are no gaps\n\t\tvar index = 0;\n\n\t\t// Push all fragments in their sorted order to an array,\n\t\t// this flattens the groups\n\t\tordered.forEach( function( group ) {\n\t\t\tgroup.forEach( function( fragment ) {\n\t\t\t\tsorted.push( fragment );\n\t\t\t\tfragment.setAttribute( 'data-fragment-index', index );\n\t\t\t} );\n\n\t\t\tindex ++;\n\t\t} );\n\n\t\treturn sorted;\n\n\t}\n\n\t/**\n\t * Navigate to the specified slide fragment.\n\t *\n\t * @param {Number} index The index of the fragment that\n\t * should be shown, -1 means all are invisible\n\t * @param {Number} offset Integer offset to apply to the\n\t * fragment index\n\t *\n\t * @return {Boolean} true if a change was made in any\n\t * fragments visibility as part of this call\n\t */\n\tfunction navigateFragment( index, offset ) {\n\n\t\tif( currentSlide && config.fragments ) {\n\n\t\t\tvar fragments = sortFragments( currentSlide.querySelectorAll( '.fragment' ) );\n\t\t\tif( fragments.length ) {\n\n\t\t\t\t// If no index is specified, find the current\n\t\t\t\tif( typeof index !== 'number' ) {\n\t\t\t\t\tvar lastVisibleFragment = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) ).pop();\n\n\t\t\t\t\tif( lastVisibleFragment ) {\n\t\t\t\t\t\tindex = parseInt( lastVisibleFragment.getAttribute( 'data-fragment-index' ) || 0, 10 );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tindex = -1;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If an offset is specified, apply it to the index\n\t\t\t\tif( typeof offset === 'number' ) {\n\t\t\t\t\tindex += offset;\n\t\t\t\t}\n\n\t\t\t\tvar fragmentsShown = [],\n\t\t\t\t\tfragmentsHidden = [];\n\n\t\t\t\ttoArray( fragments ).forEach( function( element, i ) {\n\n\t\t\t\t\tif( element.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\t\ti = parseInt( element.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Visible fragments\n\t\t\t\t\tif( i <= index ) {\n\t\t\t\t\t\tif( !element.classList.contains( 'visible' ) ) fragmentsShown.push( element );\n\t\t\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\n\t\t\t\t\t\t// Announce the fragments one by one to the Screen Reader\n\t\t\t\t\t\tdom.statusDiv.textContent = element.textContent;\n\n\t\t\t\t\t\tif( i === index ) {\n\t\t\t\t\t\t\telement.classList.add( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Hidden fragments\n\t\t\t\t\telse {\n\t\t\t\t\t\tif( element.classList.contains( 'visible' ) ) fragmentsHidden.push( element );\n\t\t\t\t\t\telement.classList.remove( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t\t\t}\n\n\n\t\t\t\t} );\n\n\t\t\t\tif( fragmentsHidden.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmenthidden', { fragment: fragmentsHidden[0], fragments: fragmentsHidden } );\n\t\t\t\t}\n\n\t\t\t\tif( fragmentsShown.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmentshown', { fragment: fragmentsShown[0], fragments: fragmentsShown } );\n\t\t\t\t}\n\n\t\t\t\tupdateControls();\n\t\t\t\tupdateProgress();\n\n\t\t\t\treturn !!( fragmentsShown.length || fragmentsHidden.length );\n\n\t\t\t}\n\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Navigate to the next slide fragment.\n\t *\n\t * @return {Boolean} true if there was a next fragment,\n\t * false otherwise\n\t */\n\tfunction nextFragment() {\n\n\t\treturn navigateFragment( null, 1 );\n\n\t}\n\n\t/**\n\t * Navigate to the previous slide fragment.\n\t *\n\t * @return {Boolean} true if there was a previous fragment,\n\t * false otherwise\n\t */\n\tfunction previousFragment() {\n\n\t\treturn navigateFragment( null, -1 );\n\n\t}\n\n\t/**\n\t * Cues a new automated slide if enabled in the config.\n\t */\n\tfunction cueAutoSlide() {\n\n\t\tcancelAutoSlide();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\n\t\t\tvar fragmentAutoSlide = currentFragment ? currentFragment.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar parentAutoSlide = currentSlide.parentNode ? currentSlide.parentNode.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar slideAutoSlide = currentSlide.getAttribute( 'data-autoslide' );\n\n\t\t\t// Pick value in the following priority order:\n\t\t\t// 1. Current fragment's data-autoslide\n\t\t\t// 2. Current slide's data-autoslide\n\t\t\t// 3. Parent slide's data-autoslide\n\t\t\t// 4. Global autoSlide setting\n\t\t\tif( fragmentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( fragmentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( slideAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( slideAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( parentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( parentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tautoSlide = config.autoSlide;\n\t\t\t}\n\n\t\t\t// If there are media elements with data-autoplay,\n\t\t\t// automatically set the autoSlide duration to the\n\t\t\t// length of that media. Not applicable if the slide\n\t\t\t// is divided up into fragments.\n\t\t\tif( currentSlide.querySelectorAll( '.fragment' ).length === 0 ) {\n\t\t\t\ttoArray( currentSlide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) ) {\n\t\t\t\t\t\tif( autoSlide && el.duration * 1000 > autoSlide ) {\n\t\t\t\t\t\t\tautoSlide = ( el.duration * 1000 ) + 1000;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Cue the next auto-slide if:\n\t\t\t// - There is an autoSlide value\n\t\t\t// - Auto-sliding isn't paused by the user\n\t\t\t// - The presentation isn't paused\n\t\t\t// - The overview isn't active\n\t\t\t// - The presentation isn't over\n\t\t\tif( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || availableFragments().next || config.loop === true ) ) {\n\t\t\t\tautoSlideTimeout = setTimeout( navigateNext, autoSlide );\n\t\t\t\tautoSlideStartTime = Date.now();\n\t\t\t}\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( autoSlideTimeout !== -1 );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Cancels any ongoing request to auto-slide.\n\t */\n\tfunction cancelAutoSlide() {\n\n\t\tclearTimeout( autoSlideTimeout );\n\t\tautoSlideTimeout = -1;\n\n\t}\n\n\tfunction pauseAutoSlide() {\n\n\t\tif( autoSlide && !autoSlidePaused ) {\n\t\t\tautoSlidePaused = true;\n\t\t\tdispatchEvent( 'autoslidepaused' );\n\t\t\tclearTimeout( autoSlideTimeout );\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( false );\n\t\t\t}\n\t\t}\n\n\t}\n\n\tfunction resumeAutoSlide() {\n\n\t\tif( autoSlide && autoSlidePaused ) {\n\t\t\tautoSlidePaused = false;\n\t\t\tdispatchEvent( 'autoslideresumed' );\n\t\t\tcueAutoSlide();\n\t\t}\n\n\t}\n\n\tfunction navigateLeft() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().left ) {\n\t\t\t\tslide( indexh + 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || previousFragment() === false ) && availableRoutes().left ) {\n\t\t\tslide( indexh - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateRight() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().right ) {\n\t\t\t\tslide( indexh - 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || nextFragment() === false ) && availableRoutes().right ) {\n\t\t\tslide( indexh + 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateUp() {\n\n\t\t// Prioritize hiding fragments\n\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().up ) {\n\t\t\tslide( indexh, indexv - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateDown() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().down ) {\n\t\t\tslide( indexh, indexv + 1 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Navigates backwards, prioritized in the following order:\n\t * 1) Previous fragment\n\t * 2) Previous vertical slide\n\t * 3) Previous horizontal slide\n\t */\n\tfunction navigatePrev() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( previousFragment() === false ) {\n\t\t\tif( availableRoutes().up ) {\n\t\t\t\tnavigateUp();\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Fetch the previous horizontal slide, if there is one\n\t\t\t\tvar previousSlide;\n\n\t\t\t\tif( config.rtl ) {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.future' ) ).pop();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.past' ) ).pop();\n\t\t\t\t}\n\n\t\t\t\tif( previousSlide ) {\n\t\t\t\t\tvar v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;\n\t\t\t\t\tvar h = indexh - 1;\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * The reverse of #navigatePrev().\n\t */\n\tfunction navigateNext() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( nextFragment() === false ) {\n\t\t\tif( availableRoutes().down ) {\n\t\t\t\tnavigateDown();\n\t\t\t}\n\t\t\telse if( config.rtl ) {\n\t\t\t\tnavigateLeft();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigateRight();\n\t\t\t}\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Checks if the target element prevents the triggering of\n\t * swipe navigation.\n\t */\n\tfunction isSwipePrevented( target ) {\n\n\t\twhile( target && typeof target.hasAttribute === 'function' ) {\n\t\t\tif( target.hasAttribute( 'data-prevent-swipe' ) ) return true;\n\t\t\ttarget = target.parentNode;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ----------------------------- EVENTS -------------------------------//\n\t// --------------------------------------------------------------------//\n\n\t/**\n\t * Called by all event handlers that are based on user\n\t * input.\n\t */\n\tfunction onUserInput( event ) {\n\n\t\tif( config.autoSlideStoppable ) {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keypress' event.\n\t */\n\tfunction onDocumentKeyPress( event ) {\n\n\t\t// Check if the pressed key is question mark\n\t\tif( event.shiftKey && event.charCode === 63 ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tshowHelp( true );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keydown' event.\n\t */\n\tfunction onDocumentKeyDown( event ) {\n\n\t\t// If there's a condition specified and it returns false,\n\t\t// ignore this event\n\t\tif( typeof config.keyboardCondition === 'function' && config.keyboardCondition() === false ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Remember if auto-sliding was paused so we can toggle it\n\t\tvar autoSlideWasPaused = autoSlidePaused;\n\n\t\tonUserInput( event );\n\n\t\t// Check if there's a focused element that could be using\n\t\t// the keyboard\n\t\tvar activeElementIsCE = document.activeElement && document.activeElement.contentEditable !== 'inherit';\n\t\tvar activeElementIsInput = document.activeElement && document.activeElement.tagName && /input|textarea/i.test( document.activeElement.tagName );\n\n\t\t// Disregard the event if there's a focused element or a\n\t\t// keyboard modifier key is present\n\t\tif( activeElementIsCE || activeElementIsInput || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t// While paused only allow resume keyboard events; 'b', '.''\n\t\tvar resumeKeyCodes = [66,190,191];\n\t\tvar key;\n\n\t\t// Custom key bindings for togglePause should be able to resume\n\t\tif( typeof config.keyboard === 'object' ) {\n\t\t\tfor( key in config.keyboard ) {\n\t\t\t\tif( config.keyboard[key] === 'togglePause' ) {\n\t\t\t\t\tresumeKeyCodes.push( parseInt( key, 10 ) );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif( isPaused() && resumeKeyCodes.indexOf( event.keyCode ) === -1 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar triggered = false;\n\n\t\t// 1. User defined key bindings\n\t\tif( typeof config.keyboard === 'object' ) {\n\n\t\t\tfor( key in config.keyboard ) {\n\n\t\t\t\t// Check if this binding matches the pressed key\n\t\t\t\tif( parseInt( key, 10 ) === event.keyCode ) {\n\n\t\t\t\t\tvar value = config.keyboard[ key ];\n\n\t\t\t\t\t// Callback function\n\t\t\t\t\tif( typeof value === 'function' ) {\n\t\t\t\t\t\tvalue.apply( null, [ event ] );\n\t\t\t\t\t}\n\t\t\t\t\t// String shortcuts to reveal.js API\n\t\t\t\t\telse if( typeof value === 'string' && typeof Reveal[ value ] === 'function' ) {\n\t\t\t\t\t\tReveal[ value ].call();\n\t\t\t\t\t}\n\n\t\t\t\t\ttriggered = true;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// 2. System defined key bindings\n\t\tif( triggered === false ) {\n\n\t\t\t// Assume true and try to prove false\n\t\t\ttriggered = true;\n\n\t\t\tswitch( event.keyCode ) {\n\t\t\t\t// p, page up\n\t\t\t\tcase 80: case 33: navigatePrev(); break;\n\t\t\t\t// n, page down\n\t\t\t\tcase 78: case 34: navigateNext(); break;\n\t\t\t\t// h, left\n\t\t\t\tcase 72: case 37: navigateLeft(); break;\n\t\t\t\t// l, right\n\t\t\t\tcase 76: case 39: navigateRight(); break;\n\t\t\t\t// k, up\n\t\t\t\tcase 75: case 38: navigateUp(); break;\n\t\t\t\t// j, down\n\t\t\t\tcase 74: case 40: navigateDown(); break;\n\t\t\t\t// home\n\t\t\t\tcase 36: slide( 0 ); break;\n\t\t\t\t// end\n\t\t\t\tcase 35: slide( Number.MAX_VALUE ); break;\n\t\t\t\t// space\n\t\t\t\tcase 32: isOverview() ? deactivateOverview() : event.shiftKey ? navigatePrev() : navigateNext(); break;\n\t\t\t\t// return\n\t\t\t\tcase 13: isOverview() ? deactivateOverview() : triggered = false; break;\n\t\t\t\t// two-spot, semicolon, b, period, Logitech presenter tools \"black screen\" button\n\t\t\t\tcase 58: case 59: case 66: case 190: case 191: togglePause(); break;\n\t\t\t\t// f\n\t\t\t\tcase 70: enterFullscreen(); break;\n\t\t\t\t// a\n\t\t\t\tcase 65: if ( config.autoSlideStoppable ) toggleAutoSlide( autoSlideWasPaused ); break;\n\t\t\t\tdefault:\n\t\t\t\t\ttriggered = false;\n\t\t\t}\n\n\t\t}\n\n\t\t// If the input resulted in a triggered action we should prevent\n\t\t// the browsers default behavior\n\t\tif( triggered ) {\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\t\t// ESC or O key\n\t\telse if ( ( event.keyCode === 27 || event.keyCode === 79 ) && features.transforms3d ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\ttoggleOverview();\n\t\t\t}\n\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Handler for the 'touchstart' event, enables support for\n\t * swipe and pinch gestures.\n\t */\n\tfunction onTouchStart( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\ttouch.startX = event.touches[0].clientX;\n\t\ttouch.startY = event.touches[0].clientY;\n\t\ttouch.startCount = event.touches.length;\n\n\t\t// If there's two touches we need to memorize the distance\n\t\t// between those two points to detect pinching\n\t\tif( event.touches.length === 2 && config.overview ) {\n\t\t\ttouch.startSpan = distanceBetween( {\n\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\ty: event.touches[1].clientY\n\t\t\t}, {\n\t\t\t\tx: touch.startX,\n\t\t\t\ty: touch.startY\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchmove' event.\n\t */\n\tfunction onTouchMove( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\t// Each touch should only trigger one action\n\t\tif( !touch.captured ) {\n\t\t\tonUserInput( event );\n\n\t\t\tvar currentX = event.touches[0].clientX;\n\t\t\tvar currentY = event.touches[0].clientY;\n\n\t\t\t// If the touch started with two points and still has\n\t\t\t// two active touches; test for the pinch gesture\n\t\t\tif( event.touches.length === 2 && touch.startCount === 2 && config.overview ) {\n\n\t\t\t\t// The current distance in pixels between the two touch points\n\t\t\t\tvar currentSpan = distanceBetween( {\n\t\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\t\ty: event.touches[1].clientY\n\t\t\t\t}, {\n\t\t\t\t\tx: touch.startX,\n\t\t\t\t\ty: touch.startY\n\t\t\t\t} );\n\n\t\t\t\t// If the span is larger than the desire amount we've got\n\t\t\t\t// ourselves a pinch\n\t\t\t\tif( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\n\t\t\t\t\tif( currentSpan < touch.startSpan ) {\n\t\t\t\t\t\tactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tdeactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tevent.preventDefault();\n\n\t\t\t}\n\t\t\t// There was only one touch point, look for a swipe\n\t\t\telse if( event.touches.length === 1 && touch.startCount !== 2 ) {\n\n\t\t\t\tvar deltaX = currentX - touch.startX,\n\t\t\t\t\tdeltaY = currentY - touch.startY;\n\n\t\t\t\tif( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateLeft();\n\t\t\t\t}\n\t\t\t\telse if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateRight();\n\t\t\t\t}\n\t\t\t\telse if( deltaY > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateUp();\n\t\t\t\t}\n\t\t\t\telse if( deltaY < -touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateDown();\n\t\t\t\t}\n\n\t\t\t\t// If we're embedded, only block touch events if they have\n\t\t\t\t// triggered an action\n\t\t\t\tif( config.embedded ) {\n\t\t\t\t\tif( touch.captured || isVerticalSlide( currentSlide ) ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Not embedded? Block them all to avoid needless tossing\n\t\t\t\t// around of the viewport in iOS\n\t\t\t\telse {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t\t// There's a bug with swiping on some Android devices unless\n\t\t// the default action is always prevented\n\t\telse if( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchend' event.\n\t */\n\tfunction onTouchEnd( event ) {\n\n\t\ttouch.captured = false;\n\n\t}\n\n\t/**\n\t * Convert pointer down to touch start.\n\t */\n\tfunction onPointerDown( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" ) {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchStart( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer move to touch move.\n\t */\n\tfunction onPointerMove( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchMove( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer up to touch end.\n\t */\n\tfunction onPointerUp( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchEnd( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles mouse wheel scrolling, throttled to avoid skipping\n\t * multiple slides.\n\t */\n\tfunction onDocumentMouseScroll( event ) {\n\n\t\tif( Date.now() - lastMouseWheelStep > 600 ) {\n\n\t\t\tlastMouseWheelStep = Date.now();\n\n\t\t\tvar delta = event.detail || -event.wheelDelta;\n\t\t\tif( delta > 0 ) {\n\t\t\t\tnavigateNext();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigatePrev();\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Clicking on the progress bar results in a navigation to the\n\t * closest approximate horizontal slide using this equation:\n\t *\n\t * ( clickX / presentationWidth ) * numberOfSlides\n\t */\n\tfunction onProgressClicked( event ) {\n\n\t\tonUserInput( event );\n\n\t\tevent.preventDefault();\n\n\t\tvar slidesTotal = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length;\n\t\tvar slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal );\n\n\t\tif( config.rtl ) {\n\t\t\tslideIndex = slidesTotal - slideIndex;\n\t\t}\n\n\t\tslide( slideIndex );\n\n\t}\n\n\t/**\n\t * Event handler for navigation control buttons.\n\t */\n\tfunction onNavigateLeftClicked( event ) { event.preventDefault(); onUserInput(); navigateLeft(); }\n\tfunction onNavigateRightClicked( event ) { event.preventDefault(); onUserInput(); navigateRight(); }\n\tfunction onNavigateUpClicked( event ) { event.preventDefault(); onUserInput(); navigateUp(); }\n\tfunction onNavigateDownClicked( event ) { event.preventDefault(); onUserInput(); navigateDown(); }\n\tfunction onNavigatePrevClicked( event ) { event.preventDefault(); onUserInput(); navigatePrev(); }\n\tfunction onNavigateNextClicked( event ) { event.preventDefault(); onUserInput(); navigateNext(); }\n\n\t/**\n\t * Handler for the window level 'hashchange' event.\n\t */\n\tfunction onWindowHashChange( event ) {\n\n\t\treadURL();\n\n\t}\n\n\t/**\n\t * Handler for the window level 'resize' event.\n\t */\n\tfunction onWindowResize( event ) {\n\n\t\tlayout();\n\n\t}\n\n\t/**\n\t * Handle for the window level 'visibilitychange' event.\n\t */\n\tfunction onPageVisibilityChange( event ) {\n\n\t\tvar isHidden =  document.webkitHidden ||\n\t\t\t\t\t\tdocument.msHidden ||\n\t\t\t\t\t\tdocument.hidden;\n\n\t\t// If, after clicking a link or similar and we're coming back,\n\t\t// focus the document.body to ensure we can use keyboard shortcuts\n\t\tif( isHidden === false && document.activeElement !== document.body ) {\n\t\t\t// Not all elements support .blur() - SVGs among them.\n\t\t\tif( typeof document.activeElement.blur === 'function' ) {\n\t\t\t\tdocument.activeElement.blur();\n\t\t\t}\n\t\t\tdocument.body.focus();\n\t\t}\n\n\t}\n\n\t/**\n\t * Invoked when a slide is and we're in the overview.\n\t */\n\tfunction onOverviewSlideClicked( event ) {\n\n\t\t// TODO There's a bug here where the event listeners are not\n\t\t// removed after deactivating the overview.\n\t\tif( eventsAreBound && isOverview() ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar element = event.target;\n\n\t\t\twhile( element && !element.nodeName.match( /section/gi ) ) {\n\t\t\t\telement = element.parentNode;\n\t\t\t}\n\n\t\t\tif( element && !element.classList.contains( 'disabled' ) ) {\n\n\t\t\t\tdeactivateOverview();\n\n\t\t\t\tif( element.nodeName.match( /section/gi ) ) {\n\t\t\t\t\tvar h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),\n\t\t\t\t\t\tv = parseInt( element.getAttribute( 'data-index-v' ), 10 );\n\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles clicks on links that are set to preview in the\n\t * iframe overlay.\n\t */\n\tfunction onPreviewLinkClicked( event ) {\n\n\t\tif( event.currentTarget && event.currentTarget.hasAttribute( 'href' ) ) {\n\t\t\tvar url = event.currentTarget.getAttribute( 'href' );\n\t\t\tif( url ) {\n\t\t\t\tshowPreview( url );\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles click on the auto-sliding controls element.\n\t */\n\tfunction onAutoSlidePlayerClick( event ) {\n\n\t\t// Replay\n\t\tif( Reveal.isLastSlide() && config.loop === false ) {\n\t\t\tslide( 0, 0 );\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Resume\n\t\telse if( autoSlidePaused ) {\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Pause\n\t\telse {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------ PLAYBACK COMPONENT ------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\t/**\n\t * Constructor for the playback component, which displays\n\t * play/pause/progress controls.\n\t *\n\t * @param {HTMLElement} container The component will append\n\t * itself to this\n\t * @param {Function} progressCheck A method which will be\n\t * called frequently to get the current progress on a range\n\t * of 0-1\n\t */\n\tfunction Playback( container, progressCheck ) {\n\n\t\t// Cosmetics\n\t\tthis.diameter = 50;\n\t\tthis.thickness = 3;\n\n\t\t// Flags if we are currently playing\n\t\tthis.playing = false;\n\n\t\t// Current progress on a 0-1 range\n\t\tthis.progress = 0;\n\n\t\t// Used to loop the animation smoothly\n\t\tthis.progressOffset = 1;\n\n\t\tthis.container = container;\n\t\tthis.progressCheck = progressCheck;\n\n\t\tthis.canvas = document.createElement( 'canvas' );\n\t\tthis.canvas.className = 'playback';\n\t\tthis.canvas.width = this.diameter;\n\t\tthis.canvas.height = this.diameter;\n\t\tthis.context = this.canvas.getContext( '2d' );\n\n\t\tthis.container.appendChild( this.canvas );\n\n\t\tthis.render();\n\n\t}\n\n\tPlayback.prototype.setPlaying = function( value ) {\n\n\t\tvar wasPlaying = this.playing;\n\n\t\tthis.playing = value;\n\n\t\t// Start repainting if we weren't already\n\t\tif( !wasPlaying && this.playing ) {\n\t\t\tthis.animate();\n\t\t}\n\t\telse {\n\t\t\tthis.render();\n\t\t}\n\n\t};\n\n\tPlayback.prototype.animate = function() {\n\n\t\tvar progressBefore = this.progress;\n\n\t\tthis.progress = this.progressCheck();\n\n\t\t// When we loop, offset the progress so that it eases\n\t\t// smoothly rather than immediately resetting\n\t\tif( progressBefore > 0.8 && this.progress < 0.2 ) {\n\t\t\tthis.progressOffset = this.progress;\n\t\t}\n\n\t\tthis.render();\n\n\t\tif( this.playing ) {\n\t\t\tfeatures.requestAnimationFrameMethod.call( window, this.animate.bind( this ) );\n\t\t}\n\n\t};\n\n\t/**\n\t * Renders the current progress and playback state.\n\t */\n\tPlayback.prototype.render = function() {\n\n\t\tvar progress = this.playing ? this.progress : 0,\n\t\t\tradius = ( this.diameter / 2 ) - this.thickness,\n\t\t\tx = this.diameter / 2,\n\t\t\ty = this.diameter / 2,\n\t\t\ticonSize = 14;\n\n\t\t// Ease towards 1\n\t\tthis.progressOffset += ( 1 - this.progressOffset ) * 0.1;\n\n\t\tvar endAngle = ( - Math.PI / 2 ) + ( progress * ( Math.PI * 2 ) );\n\t\tvar startAngle = ( - Math.PI / 2 ) + ( this.progressOffset * ( Math.PI * 2 ) );\n\n\t\tthis.context.save();\n\t\tthis.context.clearRect( 0, 0, this.diameter, this.diameter );\n\n\t\t// Solid background color\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius + 2, 0, Math.PI * 2, false );\n\t\tthis.context.fillStyle = 'rgba( 0, 0, 0, 0.4 )';\n\t\tthis.context.fill();\n\n\t\t// Draw progress track\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius, 0, Math.PI * 2, false );\n\t\tthis.context.lineWidth = this.thickness;\n\t\tthis.context.strokeStyle = '#666';\n\t\tthis.context.stroke();\n\n\t\tif( this.playing ) {\n\t\t\t// Draw progress on top of track\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.arc( x, y, radius, startAngle, endAngle, false );\n\t\t\tthis.context.lineWidth = this.thickness;\n\t\t\tthis.context.strokeStyle = '#fff';\n\t\t\tthis.context.stroke();\n\t\t}\n\n\t\tthis.context.translate( x - ( iconSize / 2 ), y - ( iconSize / 2 ) );\n\n\t\t// Draw play/pause icons\n\t\tif( this.playing ) {\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fillRect( 0, 0, iconSize / 2 - 2, iconSize );\n\t\t\tthis.context.fillRect( iconSize / 2 + 2, 0, iconSize / 2 - 2, iconSize );\n\t\t}\n\t\telse {\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.translate( 2, 0 );\n\t\t\tthis.context.moveTo( 0, 0 );\n\t\t\tthis.context.lineTo( iconSize - 2, iconSize / 2 );\n\t\t\tthis.context.lineTo( 0, iconSize );\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fill();\n\t\t}\n\n\t\tthis.context.restore();\n\n\t};\n\n\tPlayback.prototype.on = function( type, listener ) {\n\t\tthis.canvas.addEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.off = function( type, listener ) {\n\t\tthis.canvas.removeEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.destroy = function() {\n\n\t\tthis.playing = false;\n\n\t\tif( this.canvas.parentNode ) {\n\t\t\tthis.container.removeChild( this.canvas );\n\t\t}\n\n\t};\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------------- API --------------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\tReveal = {\n\t\tinitialize: initialize,\n\t\tconfigure: configure,\n\t\tsync: sync,\n\n\t\t// Navigation methods\n\t\tslide: slide,\n\t\tleft: navigateLeft,\n\t\tright: navigateRight,\n\t\tup: navigateUp,\n\t\tdown: navigateDown,\n\t\tprev: navigatePrev,\n\t\tnext: navigateNext,\n\n\t\t// Fragment methods\n\t\tnavigateFragment: navigateFragment,\n\t\tprevFragment: previousFragment,\n\t\tnextFragment: nextFragment,\n\n\t\t// Deprecated aliases\n\t\tnavigateTo: slide,\n\t\tnavigateLeft: navigateLeft,\n\t\tnavigateRight: navigateRight,\n\t\tnavigateUp: navigateUp,\n\t\tnavigateDown: navigateDown,\n\t\tnavigatePrev: navigatePrev,\n\t\tnavigateNext: navigateNext,\n\n\t\t// Forces an update in slide layout\n\t\tlayout: layout,\n\n\t\t// Returns an object with the available routes as booleans (left/right/top/bottom)\n\t\tavailableRoutes: availableRoutes,\n\n\t\t// Returns an object with the available fragments as booleans (prev/next)\n\t\tavailableFragments: availableFragments,\n\n\t\t// Toggles the overview mode on/off\n\t\ttoggleOverview: toggleOverview,\n\n\t\t// Toggles the \"black screen\" mode on/off\n\t\ttogglePause: togglePause,\n\n\t\t// Toggles the auto slide mode on/off\n\t\ttoggleAutoSlide: toggleAutoSlide,\n\n\t\t// State checks\n\t\tisOverview: isOverview,\n\t\tisPaused: isPaused,\n\t\tisAutoSliding: isAutoSliding,\n\n\t\t// Adds or removes all internal event listeners (such as keyboard)\n\t\taddEventListeners: addEventListeners,\n\t\tremoveEventListeners: removeEventListeners,\n\n\t\t// Facility for persisting and restoring the presentation state\n\t\tgetState: getState,\n\t\tsetState: setState,\n\n\t\t// Presentation progress on range of 0-1\n\t\tgetProgress: getProgress,\n\n\t\t// Returns the indices of the current, or specified, slide\n\t\tgetIndices: getIndices,\n\n\t\tgetTotalSlides: getTotalSlides,\n\n\t\t// Returns the slide element at the specified index\n\t\tgetSlide: getSlide,\n\n\t\t// Returns the slide background element at the specified index\n\t\tgetSlideBackground: getSlideBackground,\n\n\t\t// Returns the speaker notes string for a slide, or null\n\t\tgetSlideNotes: getSlideNotes,\n\n\t\t// Returns the previous slide element, may be null\n\t\tgetPreviousSlide: function() {\n\t\t\treturn previousSlide;\n\t\t},\n\n\t\t// Returns the current slide element\n\t\tgetCurrentSlide: function() {\n\t\t\treturn currentSlide;\n\t\t},\n\n\t\t// Returns the current scale of the presentation content\n\t\tgetScale: function() {\n\t\t\treturn scale;\n\t\t},\n\n\t\t// Returns the current configuration object\n\t\tgetConfig: function() {\n\t\t\treturn config;\n\t\t},\n\n\t\t// Helper method, retrieves query string as a key/value hash\n\t\tgetQueryHash: function() {\n\t\t\tvar query = {};\n\n\t\t\tlocation.search.replace( /[A-Z0-9]+?=([\\w\\.%-]*)/gi, function(a) {\n\t\t\t\tquery[ a.split( '=' ).shift() ] = a.split( '=' ).pop();\n\t\t\t} );\n\n\t\t\t// Basic deserialization\n\t\t\tfor( var i in query ) {\n\t\t\t\tvar value = query[ i ];\n\n\t\t\t\tquery[ i ] = deserialize( unescape( value ) );\n\t\t\t}\n\n\t\t\treturn query;\n\t\t},\n\n\t\t// Returns true if we're currently on the first slide\n\t\tisFirstSlide: function() {\n\t\t\treturn ( indexh === 0 && indexv === 0 );\n\t\t},\n\n\t\t// Returns true if we're currently on the last slide\n\t\tisLastSlide: function() {\n\t\t\tif( currentSlide ) {\n\t\t\t\t// Does this slide has next a sibling?\n\t\t\t\tif( currentSlide.nextElementSibling ) return false;\n\n\t\t\t\t// If it's vertical, does its parent have a next sibling?\n\t\t\t\tif( isVerticalSlide( currentSlide ) && currentSlide.parentNode.nextElementSibling ) return false;\n\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\n\t\t// Checks if reveal.js has been loaded and is ready for use\n\t\tisReady: function() {\n\t\t\treturn loaded;\n\t\t},\n\n\t\t// Forward event binding to the reveal DOM element\n\t\taddEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\t\tremoveEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\n\t\t// Programatically triggers a keyboard event\n\t\ttriggerKey: function( keyCode ) {\n\t\t\tonDocumentKeyDown( { keyCode: keyCode } );\n\t\t}\n\t};\n\n\treturn Reveal;\n\n}));\n"
  },
  {
    "path": "doc/cppnow-2016/lib/css/zenburn.css",
    "content": "/*\nZenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>\nbased on dark.css by Ivan Sagalaev\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #3f3f3f;\n  color: #dcdcdc;\n  -webkit-text-size-adjust: none;\n}\n\n.hljs-keyword,\n.hljs-tag,\n.css .hljs-class,\n.css .hljs-id,\n.lisp .hljs-title,\n.nginx .hljs-title,\n.hljs-request,\n.hljs-status,\n.clojure .hljs-attribute {\n  color: #e3ceab;\n}\n\n.django .hljs-template_tag,\n.django .hljs-variable,\n.django .hljs-filter .hljs-argument {\n  color: #dcdcdc;\n}\n\n.hljs-number,\n.hljs-date {\n  color: #8cd0d3;\n}\n\n.dos .hljs-envvar,\n.dos .hljs-stream,\n.hljs-variable,\n.apache .hljs-sqbracket,\n.hljs-name {\n  color: #efdcbc;\n}\n\n.dos .hljs-flow,\n.diff .hljs-change,\n.python .exception,\n.python .hljs-built_in,\n.hljs-literal,\n.tex .hljs-special {\n  color: #efefaf;\n}\n\n.diff .hljs-chunk,\n.hljs-subst {\n  color: #8f8f8f;\n}\n\n.dos .hljs-keyword,\n.hljs-decorator,\n.hljs-title,\n.hljs-type,\n.diff .hljs-header,\n.ruby .hljs-class .hljs-parent,\n.apache .hljs-tag,\n.nginx .hljs-built_in,\n.tex .hljs-command,\n.hljs-prompt {\n  color: #efef8f;\n}\n\n.dos .hljs-winutils,\n.ruby .hljs-symbol,\n.ruby .hljs-symbol .hljs-string,\n.ruby .hljs-string {\n  color: #dca3a3;\n}\n\n.diff .hljs-deletion,\n.hljs-string,\n.hljs-tag .hljs-value,\n.hljs-preprocessor,\n.hljs-pragma,\n.hljs-built_in,\n.smalltalk .hljs-class,\n.smalltalk .hljs-localvars,\n.smalltalk .hljs-array,\n.css .hljs-rule .hljs-value,\n.hljs-attr_selector,\n.hljs-pseudo,\n.apache .hljs-cbracket,\n.tex .hljs-formula,\n.coffeescript .hljs-attribute {\n  color: #cc9393;\n}\n\n.hljs-shebang,\n.diff .hljs-addition,\n.hljs-comment,\n.hljs-annotation,\n.hljs-pi,\n.hljs-doctype {\n  color: #7f9f7f;\n}\n\n.coffeescript .javascript,\n.javascript .xml,\n.tex .hljs-formula,\n.xml .javascript,\n.xml .vbscript,\n.xml .css,\n.xml .hljs-cdata {\n  opacity: 0.5;\n}"
  },
  {
    "path": "doc/cppnow-2016/lib/font/league-gothic/LICENSE",
    "content": "SIL Open Font License (OFL)\nhttp://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL\n"
  },
  {
    "path": "doc/cppnow-2016/lib/font/league-gothic/league-gothic.css",
    "content": "@font-face {\n    font-family: 'League Gothic';\n    src: url('league-gothic.eot');\n    src: url('league-gothic.eot?#iefix') format('embedded-opentype'),\n         url('league-gothic.woff') format('woff'),\n         url('league-gothic.ttf') format('truetype');\n\n    font-weight: normal;\n    font-style: normal;\n}"
  },
  {
    "path": "doc/cppnow-2016/lib/font/source-sans-pro/LICENSE",
    "content": "SIL Open Font License\n\nCopyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL\n\n—————————————————————————————-\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n—————————————————————————————-\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.\n\nDEFINITIONS\n“Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.\n\n“Reserved Font Name” refers to any names specified as such after the copyright statement(s).\n\n“Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).\n\n“Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.\n\n“Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.\n\n5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are not met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE."
  },
  {
    "path": "doc/cppnow-2016/lib/font/source-sans-pro/source-sans-pro.css",
    "content": "@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-regular.eot');\n    src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-regular.woff') format('woff'),\n         url('source-sans-pro-regular.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-italic.eot');\n    src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-italic.woff') format('woff'),\n         url('source-sans-pro-italic.ttf') format('truetype');\n    font-weight: normal;\n    font-style: italic;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibold.eot');\n    src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibold.woff') format('woff'),\n         url('source-sans-pro-semibold.ttf') format('truetype');\n    font-weight: 600;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibolditalic.eot');\n    src: url('source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibolditalic.woff') format('woff'),\n         url('source-sans-pro-semibolditalic.ttf') format('truetype');\n    font-weight: 600;\n    font-style: italic;\n}"
  },
  {
    "path": "doc/cppnow-2016/lib/js/classList.js",
    "content": "/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/\nif(typeof document!==\"undefined\"&&!(\"classList\" in document.createElement(\"a\"))){(function(j){var a=\"classList\",f=\"prototype\",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\\s+|\\s+$/g,\"\")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p<o;p++){if(p in this&&this[p]===q){return p}}return -1},n=function(o,p){this.name=o;this.code=DOMException[o];this.message=p},g=function(p,o){if(o===\"\"){throw new n(\"SYNTAX_ERR\",\"An invalid or illegal string was specified\")}if(/\\s/.test(o)){throw new n(\"INVALID_CHARACTER_ERR\",\"String contains an invalid character\")}return c.call(p,o)},d=function(s){var r=k.call(s.className),q=r?r.split(/\\s+/):[],p=0,o=q.length;for(;p<o;p++){this.push(q[p])}this._updateClassName=function(){s.className=this.toString()}},e=d[f]=[],i=function(){return new d(this)};n[f]=Error[f];e.item=function(o){return this[o]||null};e.contains=function(o){o+=\"\";return g(this,o)!==-1};e.add=function(o){o+=\"\";if(g(this,o)===-1){this.push(o);this._updateClassName()}};e.remove=function(p){p+=\"\";var o=g(this,p);if(o!==-1){this.splice(o,1);this._updateClassName()}};e.toggle=function(o){o+=\"\";if(g(this,o)===-1){this.add(o)}else{this.remove(o)}};e.toString=function(){return this.join(\" \")};if(b.defineProperty){var l={get:i,enumerable:true,configurable:true};try{b.defineProperty(m,a,l)}catch(h){if(h.number===-2146823252){l.enumerable=false;b.defineProperty(m,a,l)}}}else{if(b[f].__defineGetter__){m.__defineGetter__(a,i)}}}(self))};"
  },
  {
    "path": "doc/cppnow-2016/lib/js/html5shiv.js",
    "content": "document.createElement('header');\ndocument.createElement('nav');\ndocument.createElement('section');\ndocument.createElement('article');\ndocument.createElement('aside');\ndocument.createElement('footer');\ndocument.createElement('hgroup');"
  },
  {
    "path": "doc/cppnow-2016/package.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"homepage\": \"http://lab.hakim.se/reveal-js\",\n  \"subdomain\": \"revealjs\",\n  \"main\": \"js/reveal.js\",\n  \"scripts\": {\n    \"test\": \"grunt test\",\n    \"start\": \"grunt serve\"\n  },\n  \"author\": {\n    \"name\": \"Hakim El Hattab\",\n    \"email\": \"hakim.elhattab@gmail.com\",\n    \"web\": \"http://hakim.se\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"engines\": {\n    \"node\": \"~4.1.1\"\n  },\n  \"dependencies\": {\n    \"underscore\": \"~1.8.3\",\n    \"express\": \"~4.13.3\",\n    \"mustache\": \"~2.1.3\",\n    \"socket.io\": \"~1.3.7\"\n  },\n  \"devDependencies\": {\n    \"grunt-contrib-qunit\": \"~0.7.0\",\n    \"grunt-contrib-jshint\": \"~0.11.3\",\n    \"grunt-contrib-cssmin\": \"~0.14.0\",\n    \"grunt-contrib-uglify\": \"~0.9.2\",\n    \"grunt-contrib-watch\": \"~0.6.1\",\n    \"grunt-sass\": \"~1.1.0-beta\",\n    \"grunt-contrib-connect\": \"~0.11.2\",\n    \"grunt-autoprefixer\": \"~3.0.3\",\n    \"grunt-zip\": \"~0.17.1\",\n    \"grunt\": \"~0.4.5\",\n    \"node-sass\": \"~3.3.3\"\n  },\n  \n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/highlight/highlight.js",
    "content": "// START CUSTOM REVEAL.JS INTEGRATION\n(function() {\n\tif( typeof window.addEventListener === 'function' ) {\n\t\tvar hljs_nodes = document.querySelectorAll( 'pre code' );\n\n\t\tfor( var i = 0, len = hljs_nodes.length; i < len; i++ ) {\n\t\t\tvar element = hljs_nodes[i];\n\n\t\t\t// trim whitespace if data-trim attribute is present\n\t\t\tif( element.hasAttribute( 'data-trim' ) && typeof element.innerHTML.trim === 'function' ) {\n\t\t\t\telement.innerHTML = element.innerHTML.trim();\n\t\t\t}\n\n\t\t\t// Now escape html unless prevented by author\n\t\t\tif( ! element.hasAttribute( 'data-noescape' )) {\n\t\t\t\telement.innerHTML = element.innerHTML.replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\");\n\t\t\t}\n\n\t\t\t// re-highlight when focus is lost (for edited code)\n\t\t\telement.addEventListener( 'focusout', function( event ) {\n\t\t\t\thljs.highlightBlock( event.currentTarget );\n\t\t\t}, false );\n\t\t}\n\t}\n})();\n// END CUSTOM REVEAL.JS INTEGRATION\n\n// highlight.js v8.9.1 with support for all available languages\n\n!function(e){\"undefined\"!=typeof exports?e(exports):(window.hljs=e({}),\"function\"==typeof define&&define.amd&&define(\"hljs\",[],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var n,t,r,i=e.className+\" \";if(i+=e.parentNode?e.parentNode.className:\"\",t=/\\blang(?:uage)?-([\\w-]+)\\b/i.exec(i))return w(t[1])?t[1]:\"no-highlight\";for(i=i.split(/\\s+/),n=0,r=i.length;r>n;n++)if(w(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+Array.prototype.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"==e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else\"start\"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\b\\w+\\b/,!0),i&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&i.tE&&(a.tE+=(a.e?\"|\":\"\")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push(\"self\"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?\"\":E.classPrefix,i='<span class=\"'+a,o=t?\"\":\"</span>\";return i+=e+'\">',i+n+o}function p(){if(!L.k)return n(M);var e=\"\",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(M);r;){e+=n(M.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=h(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(M)}return e+n(M.substr(t))}function d(){var e=\"string\"==typeof L.sL;if(e&&!x[L.sL])return n(M);var t=e?l(L.sL,M,!0,y[L.sL]):f(M,L.sL.length?L.sL:void 0);return L.r>0&&(B+=t.r),e&&(y[L.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){return void 0!==L.sL?d():p()}function v(e,t){var r=e.cN?h(e.cN,\"\",!0):\"\";e.rB?(k+=r,M=\"\"):e.eB?(k+=n(t)+r,M=\"\"):(k+=r,M=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(M+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(M+=t),k+=b();do L.cN&&(k+=\"</span>\"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),M=\"\",a.starts&&v(a.starts,\"\"),i.rE?0:t.length}if(c(t,L))throw new Error('Illegal lexeme \"'+t+'\" for mode \"'+(L.cN||\"<unnamed>\")+'\"');return M+=t,t.length||1}var N=w(e);if(!N)throw new Error('Unknown language: \"'+e+'\"');s(N);var R,L=i||N,y={},k=\"\";for(R=L;R!=N;R=R.parent)R.cN&&(k=h(R.cN,\"\",!0)+k);var M=\"\",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+=\"</span>\");return{r:B,value:k,language:e,top:L}}catch(O){if(-1!=O.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw O}}function f(e,t){t=t||E.languages||Object.keys(x);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(w(n)){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return E.tabReplace&&(e=e.replace(/^((<[^>]+>|\\t)+)/gm,function(e,n){return n.replace(/\\t/g,E.tabReplace)})),E.useBR&&(e=e.replace(/\\n/g,\"<br>\")),e}function h(e,n,t){var r=n?R[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n=i(e);if(!a(n)){var t;E.useBR?(t=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),t.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):t=e;var r=t.textContent,o=n?l(n,r,!0):f(r),s=u(t);if(s.length){var p=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\");p.innerHTML=o.value,o.value=c(s,u(p),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=h(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){E=o(E,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll(\"pre code\");Array.prototype.forEach.call(e,p)}}function v(){addEventListener(\"DOMContentLoaded\",b,!1),addEventListener(\"load\",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){R[e]=n})}function N(){return Object.keys(x)}function w(e){return e=(e||\"\").toLowerCase(),x[e]||x[R[e]]}var E={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},x={},R={};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=w,e.inherit=o,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:\"doctag\",b:\"(?:TODO|FIXME|NOTE|BUG|XXX):\",r:0}),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e});hljs.registerLanguage(\"cs\",function(e){var r=\"abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield\",t=e.IR+\"(<\"+e.IR+\">)?\";return{aliases:[\"csharp\"],k:r,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line region endregion pragma checksum\"},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},e.ASM,e.QSM,e.CNM,{bK:\"class interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"namespace\",e:/[{;=]/,i:/[^\\s:]/,c:[{cN:\"title\",b:\"[a-zA-Z](\\\\.?\\\\w)*\",r:0},e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage(\"tp\",function(O){var R={cN:\"number\",b:\"[1-9][0-9]*\",r:0},E={cN:\"comment\",b:\":[^\\\\]]+\"},T={cN:\"built_in\",b:\"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|    TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\\\[\",e:\"\\\\]\",c:[\"self\",R,E]},N={cN:\"built_in\",b:\"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\\\[\",e:\"\\\\]\",c:[\"self\",R,O.QSM,E]};return{k:{keyword:\"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET\",constant:\"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET\"},c:[T,N,{cN:\"keyword\",b:\"/(PROG|ATTR|MN|POS|END)\\\\b\"},{cN:\"keyword\",b:\"(CALL|RUN|POINT_LOGIC|LBL)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)\"},{cN:\"number\",b:\"\\\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\\\b\",r:0},O.C(\"//\",\"[;$]\"),O.C(\"!\",\"[;$]\"),O.C(\"--eg:\",\"$\"),O.QSM,{cN:\"string\",b:\"'\",e:\"'\"},O.CNM,{cN:\"variable\",b:\"\\\\$[A-Za-z0-9_]+\"}]}});hljs.registerLanguage(\"irpf90\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here\"};return{cI:!0,k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),e.C(\"begin_doc\",\"end_doc\",{r:10}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"groovy\",function(e){return{k:{typename:\"byte short char int long boolean float double void\",literal:\"true false null\",keyword:\"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},{cN:\"string\",b:\"'''\",e:\"'''\"},{cN:\"string\",b:\"\\\\$/\",e:\"/\\\\$\",r:10},e.ASM,{cN:\"regexp\",b:/~?\\/[^\\/\\n]+\\//,c:[e.BE]},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.BNM,{cN:\"class\",bK:\"class interface trait enum\",e:\"{\",i:\":\",c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{cN:\"string\",b:/[^\\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\\?/,e:/\\:/},{cN:\"label\",b:\"^\\\\s*[A-Za-z0-9_$]+:\",r:0}],i:/#/}});hljs.registerLanguage(\"stata\",function(e){return{aliases:[\"do\",\"ado\"],cI:!0,k:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",c:[{cN:\"label\",v:[{b:\"\\\\$\\\\{?[a-zA-Z0-9_]+\\\\}?\"},{b:\"`[a-zA-Z0-9_]+'\"}]},{cN:\"string\",v:[{b:'`\"[^\\r\\n]*?\"\\''},{b:'\"[^\\r\\n\"]*\"'}]},{cN:\"literal\",v:[{b:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\(|$)\"}]},e.C(\"^[ \t]*\\\\*.*$\",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\.]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",operator:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"shebang\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage(\"handlebars\",function(e){var a=\"each in with if else unless bindattr action collection debugger log outlet template unbound view yield\";return{aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{{\",e:\"}}\",c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a}]}]}});hljs.registerLanguage(\"elm\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],i={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"}].concat(c)},t={cN:\"container\",b:\"{\",e:\"}\",c:n.c};return{k:\"let in if then else case of where module import exposing type alias as infix infixl infixr port\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 as exposing\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"typedef\",b:\"\\\\btype\\\\b\",e:\"$\",k:\"type alias\",c:[i,n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bport\\\\b\",e:\"$\",k:\"port\",c:c},e.QSM,e.CNM,i,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"javascript\",function(e){return{aliases:[\"js\"],k:{keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},c:[{cN:\"pi\",r:10,b:/^\\s*['\"]use (strict|asm)['\"]/},e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,{cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\"}]},e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\\s*[);\\]]/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\\[|%/},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0},{bK:\"import\",e:\"[;$]\",k:\"import from as\",c:[e.ASM,e.QSM]},{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]}],i:/#/}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"tag\",b:\"</?\",e:\">\"},{cN:\"keyword\",b:/\\w+/,r:0,k:{common:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"sqbracket\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"cbracket\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"vhdl\",function(e){var t=\"\\\\d(_|\\\\d)*\",r=\"[eE][-+]?\"+t,n=t+\"(\\\\.\"+t+\")?(\"+r+\")?\",o=\"\\\\w+\",i=t+\"#\"+o+\"(\\\\.\"+o+\")?#(\"+r+\")?\",a=\"\\\\b(\"+i+\"|\"+n+\")\";return{cI:!0,k:{keyword:\"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor\",typename:\"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector\"},i:\"{\",c:[e.CBCM,e.C(\"--\",\"$\"),e.QSM,{cN:\"number\",b:a,r:0},{cN:\"literal\",b:\"'(U|X|0|1|Z|W|L|H|-)'\",c:[e.BE]},{cN:\"attribute\",b:\"'[A-Za-z](_?[A-Za-z0-9])*\",c:[e.BE]}]}});hljs.registerLanguage(\"typescript\",function(e){var r={keyword:\"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void\"};return{aliases:[\"ts\"],k:r,c:[{cN:\"pi\",b:/^\\s*['\"]use strict['\"]/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM],r:0},{cN:\"function\",b:\"function\",e:/[\\{;]/,eE:!0,k:r,c:[\"self\",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/,r:0},{cN:\"constructor\",bK:\"constructor\",e:/\\{/,eE:!0,r:10},{cN:\"module\",bK:\"module\",e:/\\{/,eE:!0},{cN:\"interface\",bK:\"interface\",e:/\\{/,eE:!0,k:\"interface extends\"},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0}]}});hljs.registerLanguage(\"x86asm\",function(s){return{cI:!0,l:\"\\\\.?\"+s.IR,k:{keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",literal:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0  xmm1  xmm2  xmm3  xmm4  xmm5  xmm6  xmm7  xmm8  xmm9 xmm10  xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0  ymm1  ymm2  ymm3  ymm4  ymm5  ymm6  ymm7  ymm8  ymm9 ymm10  ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0  zmm1  zmm2  zmm3  zmm4  zmm5  zmm6  zmm7  zmm8  zmm9 zmm10  zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l\",pseudo:\"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times\",preprocessor:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__  __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__  __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public \",built_in:\"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},c:[s.C(\";\",\"$\",{r:0}),{cN:\"number\",v:[{b:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",r:0},{b:\"\\\\$[0-9][0-9A-Fa-f]*\",r:0},{b:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{b:\"\\\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"}]},s.QSM,{cN:\"string\",v:[{b:\"'\",e:\"[^\\\\\\\\]'\"},{b:\"`\",e:\"[^\\\\\\\\]`\"},{b:\"\\\\.[A-Za-z0-9]+\"}],r:0},{cN:\"label\",v:[{b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\"},{b:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\"}],r:0},{cN:\"argument\",b:\"%[0-9]+\",r:0},{cN:\"built_in\",b:\"%!S+\",r:0}]}});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{cN:\"constant\",e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"title\",b:/^[\\w]+:\\s*$/},{cN:\"phony\",b:/^\\.PHONY:/,e:/$/,k:\".PHONY\",l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"delphi\",function(e){var r=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure\",t=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],i={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:\"string\",b:/(#\\d+)+/},o={b:e.IR+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",rB:!0,c:[e.TM]},n={cN:\"function\",bK:\"function constructor destructor procedure\",e:/[:;]/,k:\"function constructor|10 destructor|10 procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage(\"erb\",function(e){return{sL:\"xml\",c:[e.C(\"<%#\",\"%>\"),{b:\"<%[%=-]?\",e:\"[%-]?%>\",sL:\"ruby\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\\\w+\"},i={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n=\"@interface @class @protocol @implementation\";return{aliases:[\"mm\",\"objc\",\"obj-c\"],k:i,l:o,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"preprocessor\",b:\"#\",e:\"$\",c:[{cN:\"title\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+n.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:n,l:o,c:[e.UTM]},{cN:\"variable\",b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"fortran\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image\"};return{cI:!0,aliases:[\"f90\",\"f95\"],k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"swift\",function(e){var i={keyword:\"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet\",literal:\"true false nil\",built_in:\"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip\"},t={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n=e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),r={cN:\"subst\",b:/\\\\\\(/,e:\"\\\\)\",k:i,c:[]},a={cN:\"number\",b:\"\\\\b([\\\\d_]+(\\\\.[\\\\deE_]+)?|0x[a-fA-F0-9_]+(\\\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\\\b\",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[a],{k:i,c:[o,e.CLCM,n,t,a,{cN:\"func\",bK:\"func\",e:\"{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\\(/}),{cN:\"generics\",b:/</,e:/>/,i:/>/},{cN:\"params\",b:/\\(/,e:/\\)/,endsParent:!0,k:i,c:[\"self\",a,o,e.CBCM,{b:\":\"}],i:/[\"']/}],i:/\\[|%/},{cN:\"class\",bK:\"struct protocol class extension enum\",k:i,e:\"\\\\{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:\"preprocessor\",b:\"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)\"},{bK:\"import\",e:/$/,c:[e.CLCM,n]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",r={cN:\"subst\",b:/#\\{/,e:/}/,k:c},t=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,r]},{b:/\"/,e:/\"/,c:[e.BE,r]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[r,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];r.c=t;var s=e.inherit(e.TM,{b:n}),i=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(t)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:t.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+i,e:\"[-=]>\",rB:!0,c:[s,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:i,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[s]},s]},{cN:\"attribute\",b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"puppet\",function(e){var s={keyword:\"and case default else elsif false if in import enherits node or true undef unless main settings $string \",literal:\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},r=e.C(\"#\",\"$\"),a=\"([A-Za-z_]|::)(\\\\w|::)*\",i=e.inherit(e.TM,{b:a}),o={cN:\"variable\",b:\"\\\\$\"+a},t={cN:\"string\",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]};return{aliases:[\"pp\"],c:[r,o,t,{bK:\"class\",e:\"\\\\{|;\",i:/=/,c:[i,r]},{bK:\"define\",e:/\\{/,c:[{cN:\"title\",b:e.IR,endsParent:!0}]},{b:e.IR+\"\\\\s+\\\\{\",rB:!0,e:/\\S/,c:[{cN:\"name\",b:e.IR},{b:/\\{/,e:/\\}/,k:s,r:0,c:[t,r,{b:\"[a-zA-Z_]+\\\\s*=>\"},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},o]}],r:0}]}});hljs.registerLanguage(\"tex\",function(c){var e={cN:\"command\",b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]?\"},m={cN:\"command\",b:\"\\\\\\\\[^a-zA-Zа-яА-я0-9]\"},r={cN:\"special\",b:\"[{}\\\\[\\\\]\\\\&#~]\",r:0};return{c:[{b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]? *= *-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",rB:!0,c:[e,m,{cN:\"number\",b:\" *=\",e:\"-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",eB:!0}],r:10},e,m,r,{cN:\"formula\",b:\"\\\\$\\\\$\",e:\"\\\\$\\\\$\",c:[e,m,r],r:0},{cN:\"formula\",b:\"\\\\$\",e:\"\\\\$\",c:[e,m,r],r:0},c.C(\"%\",\"$\",{r:0})]}});hljs.registerLanguage(\"glsl\",function(e){return{k:{keyword:\"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly\",built_in:\"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse\",literal:\"true false\"},i:'\"',c:[e.CLCM,e.CBCM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"}]}});hljs.registerLanguage(\"1c\",function(c){var e=\"[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*\",r=\"возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт\",t=\"ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку  стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон\",i={cN:\"dquote\",b:'\"\"'},n={cN:\"string\",b:'\"',e:'\"|$',c:[i]},a={cN:\"string\",b:\"\\\\|\",e:'\"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:\"function\",b:\"(процедура|функция)\",e:\"$\",l:e,k:\"процедура функция\",c:[c.inherit(c.TM,{b:e}),{cN:\"tail\",eW:!0,c:[{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:e,k:\"знач\",c:[n,a]},{cN:\"export\",b:\"экспорт\",eW:!0,l:e,k:\"экспорт\",c:[c.CLCM]}]},c.CLCM]},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"date\",b:\"'\\\\d{2}\\\\.\\\\d{2}\\\\.(\\\\d{2}|\\\\d{4})'\"}]}});hljs.registerLanguage(\"nsis\",function(e){var t={cN:\"symbol\",b:\"\\\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)\"},n={cN:\"constant\",b:\"\\\\$+{[a-zA-Z0-9_]+}\"},i={cN:\"variable\",b:\"\\\\$+[a-zA-Z0-9_]+\",i:\"\\\\(\\\\){}\"},r={cN:\"constant\",b:\"\\\\$+\\\\([a-zA-Z0-9_]+\\\\)\"},o={cN:\"params\",b:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},l={cN:\"constant\",b:\"\\\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)\"};return{cI:!1,k:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user \"},c:[e.HCM,e.CBCM,{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[{cN:\"symbol\",b:\"\\\\$(\\\\\\\\(n|r|t)|\\\\$)\"},t,n,i,r]},e.C(\";\",\"$\",{r:0}),{cN:\"function\",bK:\"Function PageEx Section SectionGroup SubSection\",e:\"$\"},l,n,i,r,o,e.NM,{cN:\"literal\",b:e.IR+\"::\"+e.IR}]}});hljs.registerLanguage(\"axapta\",function(e){return{k:\"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod\",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:\":\",c:[{bK:\"extends implements\"},e.UTM]}]}});hljs.registerLanguage(\"php\",function(e){var c={cN:\"variable\",b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},a={cN:\"preprocessor\",b:/<\\?(php)?|\\?>/},i={cN:\"string\",c:[e.BE,a],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},t={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"},a]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:/<<<['\"]?\\w+['\"]?$/,e:/^\\w+;?$/,c:[e.BE,{cN:\"subst\",v:[{b:/\\$\\w+/},{b:/\\{\\$/,e:/\\}/}]}]},a,c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,i,t]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,t]}});hljs.registerLanguage(\"go\",function(e){var t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer\",constant:\"true false iota nil\",typename:\"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{aliases:[\"golang\"],k:t,i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\"},{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"number\",b:e.CNR+\"[dflsi]?\",r:0},e.CNM]}});hljs.registerLanguage(\"dust\",function(e){var t=\"if eq ne lt lte gt gte select default math sep\";return{aliases:[\"dst\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{\",e:\"}\",r:0,c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:t},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:t},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:t,r:0}]}]}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"chunk\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"header\",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\\-\\-\\-/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+\\+\\+/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"haskell\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],a={cN:\"pragma\",b:\"{-#\",e:\"#-}\"},i={cN:\"preprocessor\",b:\"^#\",e:\"$\"},n={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},t={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[a,i,{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TM,{b:\"[_a-z][\\\\w']*\"})].concat(c)},l={cN:\"container\",b:\"{\",e:\"}\",c:t.c};return{aliases:[\"hs\"],k:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 qualified as hiding\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"class\",b:\"^(\\\\s*)?(class|instance)\\\\b\",e:\"where\",k:\"class family instance where\",c:[n,t].concat(c)},{cN:\"typedef\",b:\"\\\\b(data|(new)?type)\\\\b\",e:\"$\",k:\"data family type newtype deriving\",c:[a,n,t,l].concat(c)},{cN:\"default\",bK:\"default\",e:\"$\",c:[n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bforeign\\\\b\",e:\"$\",k:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",c:[n,e.QSM].concat(c)},{cN:\"shebang\",b:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",e:\"$\"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"erlang-repl\",function(r){return{k:{special_functions:\"spawn spawn_link self\",reserved:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},c:[{cN:\"prompt\",b:\"^[0-9]+> \",r:10},r.C(\"%\",\"$\"),{cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},r.ASM,r.QSM,{cN:\"constant\",b:\"\\\\?(::)?([A-Z]\\\\w*(::)?)+\"},{cN:\"arrow\",b:\"->\"},{cN:\"ok\",b:\"ok\"},{cN:\"exclamation_mark\",b:\"!\"},{cN:\"function_or_atom\",b:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",r:0},{cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_']*\",r:0}]}});hljs.registerLanguage(\"haxe\",function(e){var r=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\";return{aliases:[\"hx\"],k:{keyword:\"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while\",literal:\"true false null\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end error\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:\"type\",b:\":\",e:r,r:10}]}]}});hljs.registerLanguage(\"stylus\",function(t){var e={cN:\"variable\",b:\"\\\\$\"+t.IR},o={cN:\"hexcolor\",b:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\",r:10},i=[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"],r=[\"after\",\"before\",\"first-letter\",\"first-line\",\"active\",\"first-child\",\"focus\",\"hover\",\"lang\",\"link\",\"visited\"],n=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],a=\"[\\\\.\\\\s\\\\n\\\\[\\\\:,]\",l=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"],d=[\"\\\\{\",\"\\\\}\",\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"];return{aliases:[\"styl\"],cI:!1,i:\"(\"+d.join(\"|\")+\")\",k:\"if else for in\",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"class\",b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"id\",b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\b(\"+n.join(\"|\")+\")\"+a,rB:!0,c:[{cN:\"tag\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"}]},{cN:\"pseudo\",b:\"&?:?:\\\\b(\"+r.join(\"|\")+\")\"+a},{cN:\"at_rule\",b:\"@(\"+i.join(\"|\")+\")\\\\b\"},e,t.CSSNM,t.NM,{cN:\"function\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",i:\"[\\\\n]\",rB:!0,c:[{cN:\"title\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{cN:\"params\",b:/\\(/,e:/\\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:\"attribute\",b:\"\\\\b(\"+l.reverse().join(\"|\")+\")\\\\b\"}]}});hljs.registerLanguage(\"inform7\",function(e){var r=\"\\\\[\",o=\"\\\\]\";return{aliases:[\"i7\"],cI:!0,k:{keyword:\"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule\"},c:[{cN:\"string\",b:'\"',e:'\"',r:0,c:[{cN:\"subst\",b:r,e:o}]},{cN:\"title\",b:/^(Volume|Book|Part|Chapter|Section|Table)\\b/,e:\"$\"},{b:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b/,e:\":\",c:[{b:\"\\\\b\\\\(This\",e:\"\\\\)\"}]},{cN:\"comment\",b:r,e:o,c:[\"self\"]}]}});hljs.registerLanguage(\"ini\",function(e){var c={cN:\"string\",c:[e.BE],v:[{b:\"'''\",e:\"'''\",r:10},{b:'\"\"\"',e:'\"\"\"',r:10},{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]};return{aliases:[\"toml\"],cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),e.HCM,{cN:\"title\",b:/^\\s*\\[+/,e:/\\]+/},{cN:\"setting\",b:/^[a-z0-9\\[\\]_-]+\\s*=\\s*/,e:\"$\",c:[{cN:\"value\",eW:!0,k:\"on off true false yes no\",c:[{cN:\"variable\",v:[{b:/\\$[\\w\\d\"][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},c,{cN:\"number\",b:/([\\+\\-]+)?[\\d]+_[\\d_]+/},e.NM],r:0}]}]}});hljs.registerLanguage(\"sqf\",function(e){var t=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"or\",\"plus\",\"^\",\":\",\">>\",\"abs\",\"accTime\",\"acos\",\"action\",\"actionKeys\",\"actionKeysImages\",\"actionKeysNames\",\"actionKeysNamesArray\",\"actionName\",\"activateAddons\",\"activatedAddons\",\"activateKey\",\"addAction\",\"addBackpack\",\"addBackpackCargo\",\"addBackpackCargoGlobal\",\"addBackpackGlobal\",\"addCamShake\",\"addCuratorAddons\",\"addCuratorCameraArea\",\"addCuratorEditableObjects\",\"addCuratorEditingArea\",\"addCuratorPoints\",\"addEditorObject\",\"addEventHandler\",\"addGoggles\",\"addGroupIcon\",\"addHandgunItem\",\"addHeadgear\",\"addItem\",\"addItemCargo\",\"addItemCargoGlobal\",\"addItemPool\",\"addItemToBackpack\",\"addItemToUniform\",\"addItemToVest\",\"addLiveStats\",\"addMagazine\",\"addMagazine array\",\"addMagazineAmmoCargo\",\"addMagazineCargo\",\"addMagazineCargoGlobal\",\"addMagazineGlobal\",\"addMagazinePool\",\"addMagazines\",\"addMagazineTurret\",\"addMenu\",\"addMenuItem\",\"addMissionEventHandler\",\"addMPEventHandler\",\"addMusicEventHandler\",\"addPrimaryWeaponItem\",\"addPublicVariableEventHandler\",\"addRating\",\"addResources\",\"addScore\",\"addScoreSide\",\"addSecondaryWeaponItem\",\"addSwitchableUnit\",\"addTeamMember\",\"addToRemainsCollector\",\"addUniform\",\"addVehicle\",\"addVest\",\"addWaypoint\",\"addWeapon\",\"addWeaponCargo\",\"addWeaponCargoGlobal\",\"addWeaponGlobal\",\"addWeaponPool\",\"addWeaponTurret\",\"agent\",\"agents\",\"AGLToASL\",\"aimedAtTarget\",\"aimPos\",\"airDensityRTD\",\"airportSide\",\"AISFinishHeal\",\"alive\",\"allControls\",\"allCurators\",\"allDead\",\"allDeadMen\",\"allDisplays\",\"allGroups\",\"allMapMarkers\",\"allMines\",\"allMissionObjects\",\"allow3DMode\",\"allowCrewInImmobile\",\"allowCuratorLogicIgnoreAreas\",\"allowDamage\",\"allowDammage\",\"allowFileOperations\",\"allowFleeing\",\"allowGetIn\",\"allPlayers\",\"allSites\",\"allTurrets\",\"allUnits\",\"allUnitsUAV\",\"allVariables\",\"ammo\",\"and\",\"animate\",\"animateDoor\",\"animationPhase\",\"animationState\",\"append\",\"armoryPoints\",\"arrayIntersect\",\"asin\",\"ASLToAGL\",\"ASLToATL\",\"assert\",\"assignAsCargo\",\"assignAsCargoIndex\",\"assignAsCommander\",\"assignAsDriver\",\"assignAsGunner\",\"assignAsTurret\",\"assignCurator\",\"assignedCargo\",\"assignedCommander\",\"assignedDriver\",\"assignedGunner\",\"assignedItems\",\"assignedTarget\",\"assignedTeam\",\"assignedVehicle\",\"assignedVehicleRole\",\"assignItem\",\"assignTeam\",\"assignToAirport\",\"atan\",\"atan2\",\"atg\",\"ATLToASL\",\"attachedObject\",\"attachedObjects\",\"attachedTo\",\"attachObject\",\"attachTo\",\"attackEnabled\",\"backpack\",\"backpackCargo\",\"backpackContainer\",\"backpackItems\",\"backpackMagazines\",\"backpackSpaceFor\",\"behaviour\",\"benchmark\",\"binocular\",\"blufor\",\"boundingBox\",\"boundingBoxReal\",\"boundingCenter\",\"breakOut\",\"breakTo\",\"briefingName\",\"buildingExit\",\"buildingPos\",\"buttonAction\",\"buttonSetAction\",\"cadetMode\",\"call\",\"callExtension\",\"camCommand\",\"camCommit\",\"camCommitPrepared\",\"camCommitted\",\"camConstuctionSetParams\",\"camCreate\",\"camDestroy\",\"cameraEffect\",\"cameraEffectEnableHUD\",\"cameraInterest\",\"cameraOn\",\"cameraView\",\"campaignConfigFile\",\"camPreload\",\"camPreloaded\",\"camPrepareBank\",\"camPrepareDir\",\"camPrepareDive\",\"camPrepareFocus\",\"camPrepareFov\",\"camPrepareFovRange\",\"camPreparePos\",\"camPrepareRelPos\",\"camPrepareTarget\",\"camSetBank\",\"camSetDir\",\"camSetDive\",\"camSetFocus\",\"camSetFov\",\"camSetFovRange\",\"camSetPos\",\"camSetRelPos\",\"camSetTarget\",\"camTarget\",\"camUseNVG\",\"canAdd\",\"canAddItemToBackpack\",\"canAddItemToUniform\",\"canAddItemToVest\",\"cancelSimpleTaskDestination\",\"canFire\",\"canMove\",\"canSlingLoad\",\"canStand\",\"canUnloadInCombat\",\"captive\",\"captiveNum\",\"case\",\"catch\",\"cbChecked\",\"cbSetChecked\",\"ceil\",\"cheatsEnabled\",\"checkAIFeature\",\"civilian\",\"className\",\"clearAllItemsFromBackpack\",\"clearBackpackCargo\",\"clearBackpackCargoGlobal\",\"clearGroupIcons\",\"clearItemCargo\",\"clearItemCargoGlobal\",\"clearItemPool\",\"clearMagazineCargo\",\"clearMagazineCargoGlobal\",\"clearMagazinePool\",\"clearOverlay\",\"clearRadio\",\"clearWeaponCargo\",\"clearWeaponCargoGlobal\",\"clearWeaponPool\",\"closeDialog\",\"closeDisplay\",\"closeOverlay\",\"collapseObjectTree\",\"combatMode\",\"commandArtilleryFire\",\"commandChat\",\"commander\",\"commandFire\",\"commandFollow\",\"commandFSM\",\"commandGetOut\",\"commandingMenu\",\"commandMove\",\"commandRadio\",\"commandStop\",\"commandTarget\",\"commandWatch\",\"comment\",\"commitOverlay\",\"compile\",\"compileFinal\",\"completedFSM\",\"composeText\",\"configClasses\",\"configFile\",\"configHierarchy\",\"configName\",\"configProperties\",\"configSourceMod\",\"configSourceModList\",\"connectTerminalToUAV\",\"controlNull\",\"controlsGroupCtrl\",\"copyFromClipboard\",\"copyToClipboard\",\"copyWaypoints\",\"cos\",\"count\",\"countEnemy\",\"countFriendly\",\"countSide\",\"countType\",\"countUnknown\",\"createAgent\",\"createCenter\",\"createDialog\",\"createDiaryLink\",\"createDiaryRecord\",\"createDiarySubject\",\"createDisplay\",\"createGearDialog\",\"createGroup\",\"createGuardedPoint\",\"createLocation\",\"createMarker\",\"createMarkerLocal\",\"createMenu\",\"createMine\",\"createMissionDisplay\",\"createSimpleTask\",\"createSite\",\"createSoundSource\",\"createTask\",\"createTeam\",\"createTrigger\",\"createUnit\",\"createUnit array\",\"createVehicle\",\"createVehicle array\",\"createVehicleCrew\",\"createVehicleLocal\",\"crew\",\"ctrlActivate\",\"ctrlAddEventHandler\",\"ctrlAutoScrollDelay\",\"ctrlAutoScrollRewind\",\"ctrlAutoScrollSpeed\",\"ctrlChecked\",\"ctrlClassName\",\"ctrlCommit\",\"ctrlCommitted\",\"ctrlCreate\",\"ctrlDelete\",\"ctrlEnable\",\"ctrlEnabled\",\"ctrlFade\",\"ctrlHTMLLoaded\",\"ctrlIDC\",\"ctrlIDD\",\"ctrlMapAnimAdd\",\"ctrlMapAnimClear\",\"ctrlMapAnimCommit\",\"ctrlMapAnimDone\",\"ctrlMapCursor\",\"ctrlMapMouseOver\",\"ctrlMapScale\",\"ctrlMapScreenToWorld\",\"ctrlMapWorldToScreen\",\"ctrlModel\",\"ctrlModelDirAndUp\",\"ctrlModelScale\",\"ctrlParent\",\"ctrlPosition\",\"ctrlRemoveAllEventHandlers\",\"ctrlRemoveEventHandler\",\"ctrlScale\",\"ctrlSetActiveColor\",\"ctrlSetAutoScrollDelay\",\"ctrlSetAutoScrollRewind\",\"ctrlSetAutoScrollSpeed\",\"ctrlSetBackgroundColor\",\"ctrlSetChecked\",\"ctrlSetEventHandler\",\"ctrlSetFade\",\"ctrlSetFocus\",\"ctrlSetFont\",\"ctrlSetFontH1\",\"ctrlSetFontH1B\",\"ctrlSetFontH2\",\"ctrlSetFontH2B\",\"ctrlSetFontH3\",\"ctrlSetFontH3B\",\"ctrlSetFontH4\",\"ctrlSetFontH4B\",\"ctrlSetFontH5\",\"ctrlSetFontH5B\",\"ctrlSetFontH6\",\"ctrlSetFontH6B\",\"ctrlSetFontHeight\",\"ctrlSetFontHeightH1\",\"ctrlSetFontHeightH2\",\"ctrlSetFontHeightH3\",\"ctrlSetFontHeightH4\",\"ctrlSetFontHeightH5\",\"ctrlSetFontHeightH6\",\"ctrlSetFontP\",\"ctrlSetFontPB\",\"ctrlSetForegroundColor\",\"ctrlSetModel\",\"ctrlSetModelDirAndUp\",\"ctrlSetModelScale\",\"ctrlSetPosition\",\"ctrlSetScale\",\"ctrlSetStructuredText\",\"ctrlSetText\",\"ctrlSetTextColor\",\"ctrlSetTooltip\",\"ctrlSetTooltipColorBox\",\"ctrlSetTooltipColorShade\",\"ctrlSetTooltipColorText\",\"ctrlShow\",\"ctrlShown\",\"ctrlText\",\"ctrlTextHeight\",\"ctrlType\",\"ctrlVisible\",\"curatorAddons\",\"curatorCamera\",\"curatorCameraArea\",\"curatorCameraAreaCeiling\",\"curatorCoef\",\"curatorEditableObjects\",\"curatorEditingArea\",\"curatorEditingAreaType\",\"curatorMouseOver\",\"curatorPoints\",\"curatorRegisteredObjects\",\"curatorSelected\",\"curatorWaypointCost\",\"currentChannel\",\"currentCommand\",\"currentMagazine\",\"currentMagazineDetail\",\"currentMagazineDetailTurret\",\"currentMagazineTurret\",\"currentMuzzle\",\"currentNamespace\",\"currentTask\",\"currentTasks\",\"currentThrowable\",\"currentVisionMode\",\"currentWaypoint\",\"currentWeapon\",\"currentWeaponMode\",\"currentWeaponTurret\",\"currentZeroing\",\"cursorTarget\",\"customChat\",\"customRadio\",\"cutFadeOut\",\"cutObj\",\"cutRsc\",\"cutText\",\"damage\",\"date\",\"dateToNumber\",\"daytime\",\"deActivateKey\",\"debriefingText\",\"debugFSM\",\"debugLog\",\"default\",\"deg\",\"deleteAt\",\"deleteCenter\",\"deleteCollection\",\"deleteEditorObject\",\"deleteGroup\",\"deleteIdentity\",\"deleteLocation\",\"deleteMarker\",\"deleteMarkerLocal\",\"deleteRange\",\"deleteResources\",\"deleteSite\",\"deleteStatus\",\"deleteTeam\",\"deleteVehicle\",\"deleteVehicleCrew\",\"deleteWaypoint\",\"detach\",\"detectedMines\",\"diag activeMissionFSMs\",\"diag activeSQFScripts\",\"diag activeSQSScripts\",\"diag captureFrame\",\"diag captureSlowFrame\",\"diag fps\",\"diag fpsMin\",\"diag frameNo\",\"diag log\",\"diag logSlowFrame\",\"diag tickTime\",\"dialog\",\"diarySubjectExists\",\"didJIP\",\"didJIPOwner\",\"difficulty\",\"difficultyEnabled\",\"difficultyEnabledRTD\",\"direction\",\"directSay\",\"disableAI\",\"disableCollisionWith\",\"disableConversation\",\"disableDebriefingStats\",\"disableSerialization\",\"disableTIEquipment\",\"disableUAVConnectability\",\"disableUserInput\",\"displayAddEventHandler\",\"displayCtrl\",\"displayNull\",\"displayRemoveAllEventHandlers\",\"displayRemoveEventHandler\",\"displaySetEventHandler\",\"dissolveTeam\",\"distance\",\"distance2D\",\"distanceSqr\",\"distributionRegion\",\"do\",\"doArtilleryFire\",\"doFire\",\"doFollow\",\"doFSM\",\"doGetOut\",\"doMove\",\"doorPhase\",\"doStop\",\"doTarget\",\"doWatch\",\"drawArrow\",\"drawEllipse\",\"drawIcon\",\"drawIcon3D\",\"drawLine\",\"drawLine3D\",\"drawLink\",\"drawLocation\",\"drawRectangle\",\"driver\",\"drop\",\"east\",\"echo\",\"editObject\",\"editorSetEventHandler\",\"effectiveCommander\",\"else\",\"emptyPositions\",\"enableAI\",\"enableAIFeature\",\"enableAttack\",\"enableCamShake\",\"enableCaustics\",\"enableCollisionWith\",\"enableCopilot\",\"enableDebriefingStats\",\"enableDiagLegend\",\"enableEndDialog\",\"enableEngineArtillery\",\"enableEnvironment\",\"enableFatigue\",\"enableGunLights\",\"enableIRLasers\",\"enableMimics\",\"enablePersonTurret\",\"enableRadio\",\"enableReload\",\"enableRopeAttach\",\"enableSatNormalOnDetail\",\"enableSaving\",\"enableSentences\",\"enableSimulation\",\"enableSimulationGlobal\",\"enableTeamSwitch\",\"enableUAVConnectability\",\"enableUAVWaypoints\",\"endLoadingScreen\",\"endMission\",\"engineOn\",\"enginesIsOnRTD\",\"enginesRpmRTD\",\"enginesTorqueRTD\",\"entities\",\"estimatedEndServerTime\",\"estimatedTimeLeft\",\"evalObjectArgument\",\"everyBackpack\",\"everyContainer\",\"exec\",\"execEditorScript\",\"execFSM\",\"execVM\",\"exit\",\"exitWith\",\"exp\",\"expectedDestination\",\"eyeDirection\",\"eyePos\",\"face\",\"faction\",\"fadeMusic\",\"fadeRadio\",\"fadeSound\",\"fadeSpeech\",\"failMission\",\"false\",\"fillWeaponsFromPool\",\"find\",\"findCover\",\"findDisplay\",\"findEditorObject\",\"findEmptyPosition\",\"findEmptyPositionReady\",\"findNearestEnemy\",\"finishMissionInit\",\"finite\",\"fire\",\"fireAtTarget\",\"firstBackpack\",\"flag\",\"flagOwner\",\"fleeing\",\"floor\",\"flyInHeight\",\"fog\",\"fogForecast\",\"fogParams\",\"for\",\"forceAddUniform\",\"forceEnd\",\"forceMap\",\"forceRespawn\",\"forceSpeed\",\"forceWalk\",\"forceWeaponFire\",\"forceWeatherChange\",\"forEach\",\"forEachMember\",\"forEachMemberAgent\",\"forEachMemberTeam\",\"format\",\"formation\",\"formationDirection\",\"formationLeader\",\"formationMembers\",\"formationPosition\",\"formationTask\",\"formatText\",\"formLeader\",\"freeLook\",\"from\",\"fromEditor\",\"fuel\",\"fullCrew\",\"gearSlotAmmoCount\",\"gearSlotData\",\"getAllHitPointsDamage\",\"getAmmoCargo\",\"getArray\",\"getArtilleryAmmo\",\"getArtilleryComputerSettings\",\"getArtilleryETA\",\"getAssignedCuratorLogic\",\"getAssignedCuratorUnit\",\"getBackpackCargo\",\"getBleedingRemaining\",\"getBurningValue\",\"getCargoIndex\",\"getCenterOfMass\",\"getClientState\",\"getConnectedUAV\",\"getDammage\",\"getDescription\",\"getDir\",\"getDirVisual\",\"getDLCs\",\"getEditorCamera\",\"getEditorMode\",\"getEditorObjectScope\",\"getElevationOffset\",\"getFatigue\",\"getFriend\",\"getFSMVariable\",\"getFuelCargo\",\"getGroupIcon\",\"getGroupIconParams\",\"getGroupIcons\",\"getHideFrom\",\"getHit\",\"getHitIndex\",\"getHitPointDamage\",\"getItemCargo\",\"getMagazineCargo\",\"getMarkerColor\",\"getMarkerPos\",\"getMarkerSize\",\"getMarkerType\",\"getMass\",\"getModelInfo\",\"getNumber\",\"getObjectArgument\",\"getObjectChildren\",\"getObjectDLC\",\"getObjectMaterials\",\"getObjectProxy\",\"getObjectTextures\",\"getObjectType\",\"getObjectViewDistance\",\"getOxygenRemaining\",\"getPersonUsedDLCs\",\"getPlayerChannel\",\"getPlayerUID\",\"getPos\",\"getPosASL\",\"getPosASLVisual\",\"getPosASLW\",\"getPosATL\",\"getPosATLVisual\",\"getPosVisual\",\"getPosWorld\",\"getRepairCargo\",\"getResolution\",\"getShadowDistance\",\"getSlingLoad\",\"getSpeed\",\"getSuppression\",\"getTerrainHeightASL\",\"getText\",\"getVariable\",\"getWeaponCargo\",\"getWPPos\",\"glanceAt\",\"globalChat\",\"globalRadio\",\"goggles\",\"goto\",\"group\",\"groupChat\",\"groupFromNetId\",\"groupIconSelectable\",\"groupIconsVisible\",\"groupId\",\"groupOwner\",\"groupRadio\",\"groupSelectedUnits\",\"groupSelectUnit\",\"grpNull\",\"gunner\",\"gusts\",\"halt\",\"handgunItems\",\"handgunMagazine\",\"handgunWeapon\",\"handsHit\",\"hasInterface\",\"hasWeapon\",\"hcAllGroups\",\"hcGroupParams\",\"hcLeader\",\"hcRemoveAllGroups\",\"hcRemoveGroup\",\"hcSelected\",\"hcSelectGroup\",\"hcSetGroup\",\"hcShowBar\",\"hcShownBar\",\"headgear\",\"hideBody\",\"hideObject\",\"hideObjectGlobal\",\"hint\",\"hintC\",\"hintCadet\",\"hintSilent\",\"hmd\",\"hostMission\",\"htmlLoad\",\"HUDMovementLevels\",\"humidity\",\"if\",\"image\",\"importAllGroups\",\"importance\",\"in\",\"incapacitatedState\",\"independent\",\"inflame\",\"inflamed\",\"inGameUISetEventHandler\",\"inheritsFrom\",\"initAmbientLife\",\"inputAction\",\"inRangeOfArtillery\",\"insertEditorObject\",\"intersect\",\"isAbleToBreathe\",\"isAgent\",\"isArray\",\"isAutoHoverOn\",\"isAutonomous\",\"isAutotest\",\"isBleeding\",\"isBurning\",\"isClass\",\"isCollisionLightOn\",\"isCopilotEnabled\",\"isDedicated\",\"isDLCAvailable\",\"isEngineOn\",\"isEqualTo\",\"isFlashlightOn\",\"isFlatEmpty\",\"isForcedWalk\",\"isFormationLeader\",\"isHidden\",\"isInRemainsCollector\",\"isInstructorFigureEnabled\",\"isIRLaserOn\",\"isKeyActive\",\"isKindOf\",\"isLightOn\",\"isLocalized\",\"isManualFire\",\"isMarkedForCollection\",\"isMultiplayer\",\"isNil\",\"isNull\",\"isNumber\",\"isObjectHidden\",\"isObjectRTD\",\"isOnRoad\",\"isPipEnabled\",\"isPlayer\",\"isRealTime\",\"isServer\",\"isShowing3DIcons\",\"isSteamMission\",\"isStreamFriendlyUIEnabled\",\"isText\",\"isTouchingGround\",\"isTurnedOut\",\"isTutHintsEnabled\",\"isUAVConnectable\",\"isUAVConnected\",\"isUniformAllowed\",\"isWalking\",\"isWeaponDeployed\",\"isWeaponRested\",\"itemCargo\",\"items\",\"itemsWithMagazines\",\"join\",\"joinAs\",\"joinAsSilent\",\"joinSilent\",\"joinString\",\"kbAddDatabase\",\"kbAddDatabaseTargets\",\"kbAddTopic\",\"kbHasTopic\",\"kbReact\",\"kbRemoveTopic\",\"kbTell\",\"kbWasSaid\",\"keyImage\",\"keyName\",\"knowsAbout\",\"land\",\"landAt\",\"landResult\",\"language\",\"laserTarget\",\"lbAdd\",\"lbClear\",\"lbColor\",\"lbCurSel\",\"lbData\",\"lbDelete\",\"lbIsSelected\",\"lbPicture\",\"lbSelection\",\"lbSetColor\",\"lbSetCurSel\",\"lbSetData\",\"lbSetPicture\",\"lbSetPictureColor\",\"lbSetPictureColorDisabled\",\"lbSetPictureColorSelected\",\"lbSetSelectColor\",\"lbSetSelectColorRight\",\"lbSetSelected\",\"lbSetTooltip\",\"lbSetValue\",\"lbSize\",\"lbSort\",\"lbSortByValue\",\"lbText\",\"lbValue\",\"leader\",\"leaderboardDeInit\",\"leaderboardGetRows\",\"leaderboardInit\",\"leaveVehicle\",\"libraryCredits\",\"libraryDisclaimers\",\"lifeState\",\"lightAttachObject\",\"lightDetachObject\",\"lightIsOn\",\"lightnings\",\"limitSpeed\",\"linearConversion\",\"lineBreak\",\"lineIntersects\",\"lineIntersectsObjs\",\"lineIntersectsSurfaces\",\"lineIntersectsWith\",\"linkItem\",\"list\",\"listObjects\",\"ln\",\"lnbAddArray\",\"lnbAddColumn\",\"lnbAddRow\",\"lnbClear\",\"lnbColor\",\"lnbCurSelRow\",\"lnbData\",\"lnbDeleteColumn\",\"lnbDeleteRow\",\"lnbGetColumnsPosition\",\"lnbPicture\",\"lnbSetColor\",\"lnbSetColumnsPos\",\"lnbSetCurSelRow\",\"lnbSetData\",\"lnbSetPicture\",\"lnbSetText\",\"lnbSetValue\",\"lnbSize\",\"lnbText\",\"lnbValue\",\"load\",\"loadAbs\",\"loadBackpack\",\"loadFile\",\"loadGame\",\"loadIdentity\",\"loadMagazine\",\"loadOverlay\",\"loadStatus\",\"loadUniform\",\"loadVest\",\"local\",\"localize\",\"locationNull\",\"locationPosition\",\"lock\",\"lockCameraTo\",\"lockCargo\",\"lockDriver\",\"locked\",\"lockedCargo\",\"lockedDriver\",\"lockedTurret\",\"lockTurret\",\"lockWP\",\"log\",\"logEntities\",\"lookAt\",\"lookAtPos\",\"magazineCargo\",\"magazines\",\"magazinesAllTurrets\",\"magazinesAmmo\",\"magazinesAmmoCargo\",\"magazinesAmmoFull\",\"magazinesDetail\",\"magazinesDetailBackpack\",\"magazinesDetailUniform\",\"magazinesDetailVest\",\"magazinesTurret\",\"magazineTurretAmmo\",\"mapAnimAdd\",\"mapAnimClear\",\"mapAnimCommit\",\"mapAnimDone\",\"mapCenterOnCamera\",\"mapGridPosition\",\"markAsFinishedOnSteam\",\"markerAlpha\",\"markerBrush\",\"markerColor\",\"markerDir\",\"markerPos\",\"markerShape\",\"markerSize\",\"markerText\",\"markerType\",\"max\",\"members\",\"min\",\"mineActive\",\"mineDetectedBy\",\"missionConfigFile\",\"missionName\",\"missionNamespace\",\"missionStart\",\"mod\",\"modelToWorld\",\"modelToWorldVisual\",\"moonIntensity\",\"morale\",\"move\",\"moveInAny\",\"moveInCargo\",\"moveInCommander\",\"moveInDriver\",\"moveInGunner\",\"moveInTurret\",\"moveObjectToEnd\",\"moveOut\",\"moveTime\",\"moveTo\",\"moveToCompleted\",\"moveToFailed\",\"musicVolume\",\"name\",\"name location\",\"nameSound\",\"nearEntities\",\"nearestBuilding\",\"nearestLocation\",\"nearestLocations\",\"nearestLocationWithDubbing\",\"nearestObject\",\"nearestObjects\",\"nearObjects\",\"nearObjectsReady\",\"nearRoads\",\"nearSupplies\",\"nearTargets\",\"needReload\",\"netId\",\"netObjNull\",\"newOverlay\",\"nextMenuItemIndex\",\"nextWeatherChange\",\"nil\",\"nMenuItems\",\"not\",\"numberToDate\",\"objectCurators\",\"objectFromNetId\",\"objectParent\",\"objNull\",\"objStatus\",\"onBriefingGroup\",\"onBriefingNotes\",\"onBriefingPlan\",\"onBriefingTeamSwitch\",\"onCommandModeChanged\",\"onDoubleClick\",\"onEachFrame\",\"onGroupIconClick\",\"onGroupIconOverEnter\",\"onGroupIconOverLeave\",\"onHCGroupSelectionChanged\",\"onMapSingleClick\",\"onPlayerConnected\",\"onPlayerDisconnected\",\"onPreloadFinished\",\"onPreloadStarted\",\"onShowNewObject\",\"onTeamSwitch\",\"openCuratorInterface\",\"openMap\",\"openYoutubeVideo\",\"opfor\",\"or\",\"orderGetIn\",\"overcast\",\"overcastForecast\",\"owner\",\"param\",\"params\",\"parseNumber\",\"parseText\",\"parsingNamespace\",\"particlesQuality\",\"pi\",\"pickWeaponPool\",\"pitch\",\"playableSlotsNumber\",\"playableUnits\",\"playAction\",\"playActionNow\",\"player\",\"playerRespawnTime\",\"playerSide\",\"playersNumber\",\"playGesture\",\"playMission\",\"playMove\",\"playMoveNow\",\"playMusic\",\"playScriptedMission\",\"playSound\",\"playSound3D\",\"position\",\"positionCameraToWorld\",\"posScreenToWorld\",\"posWorldToScreen\",\"ppEffectAdjust\",\"ppEffectCommit\",\"ppEffectCommitted\",\"ppEffectCreate\",\"ppEffectDestroy\",\"ppEffectEnable\",\"ppEffectForceInNVG\",\"precision\",\"preloadCamera\",\"preloadObject\",\"preloadSound\",\"preloadTitleObj\",\"preloadTitleRsc\",\"preprocessFile\",\"preprocessFileLineNumbers\",\"primaryWeapon\",\"primaryWeaponItems\",\"primaryWeaponMagazine\",\"priority\",\"private\",\"processDiaryLink\",\"productVersion\",\"profileName\",\"profileNamespace\",\"profileNameSteam\",\"progressLoadingScreen\",\"progressPosition\",\"progressSetPosition\",\"publicVariable\",\"publicVariableClient\",\"publicVariableServer\",\"pushBack\",\"putWeaponPool\",\"queryItemsPool\",\"queryMagazinePool\",\"queryWeaponPool\",\"rad\",\"radioChannelAdd\",\"radioChannelCreate\",\"radioChannelRemove\",\"radioChannelSetCallSign\",\"radioChannelSetLabel\",\"radioVolume\",\"rain\",\"rainbow\",\"random\",\"rank\",\"rankId\",\"rating\",\"rectangular\",\"registeredTasks\",\"registerTask\",\"reload\",\"reloadEnabled\",\"remoteControl\",\"remoteExec\",\"remoteExecCall\",\"removeAction\",\"removeAllActions\",\"removeAllAssignedItems\",\"removeAllContainers\",\"removeAllCuratorAddons\",\"removeAllCuratorCameraAreas\",\"removeAllCuratorEditingAreas\",\"removeAllEventHandlers\",\"removeAllHandgunItems\",\"removeAllItems\",\"removeAllItemsWithMagazines\",\"removeAllMissionEventHandlers\",\"removeAllMPEventHandlers\",\"removeAllMusicEventHandlers\",\"removeAllPrimaryWeaponItems\",\"removeAllWeapons\",\"removeBackpack\",\"removeBackpackGlobal\",\"removeCuratorAddons\",\"removeCuratorCameraArea\",\"removeCuratorEditableObjects\",\"removeCuratorEditingArea\",\"removeDrawIcon\",\"removeDrawLinks\",\"removeEventHandler\",\"removeFromRemainsCollector\",\"removeGoggles\",\"removeGroupIcon\",\"removeHandgunItem\",\"removeHeadgear\",\"removeItem\",\"removeItemFromBackpack\",\"removeItemFromUniform\",\"removeItemFromVest\",\"removeItems\",\"removeMagazine\",\"removeMagazineGlobal\",\"removeMagazines\",\"removeMagazinesTurret\",\"removeMagazineTurret\",\"removeMenuItem\",\"removeMissionEventHandler\",\"removeMPEventHandler\",\"removeMusicEventHandler\",\"removePrimaryWeaponItem\",\"removeSecondaryWeaponItem\",\"removeSimpleTask\",\"removeSwitchableUnit\",\"removeTeamMember\",\"removeUniform\",\"removeVest\",\"removeWeapon\",\"removeWeaponGlobal\",\"removeWeaponTurret\",\"requiredVersion\",\"resetCamShake\",\"resetSubgroupDirection\",\"resistance\",\"resize\",\"resources\",\"respawnVehicle\",\"restartEditorCamera\",\"reveal\",\"revealMine\",\"reverse\",\"reversedMouseY\",\"roadsConnectedTo\",\"roleDescription\",\"ropeAttachedObjects\",\"ropeAttachedTo\",\"ropeAttachEnabled\",\"ropeAttachTo\",\"ropeCreate\",\"ropeCut\",\"ropeEndPosition\",\"ropeLength\",\"ropes\",\"ropeUnwind\",\"ropeUnwound\",\"rotorsForcesRTD\",\"rotorsRpmRTD\",\"round\",\"runInitScript\",\"safeZoneH\",\"safeZoneW\",\"safeZoneWAbs\",\"safeZoneX\",\"safeZoneXAbs\",\"safeZoneY\",\"saveGame\",\"saveIdentity\",\"saveJoysticks\",\"saveOverlay\",\"saveProfileNamespace\",\"saveStatus\",\"saveVar\",\"savingEnabled\",\"say\",\"say2D\",\"say3D\",\"scopeName\",\"score\",\"scoreSide\",\"screenToWorld\",\"scriptDone\",\"scriptName\",\"scriptNull\",\"scudState\",\"secondaryWeapon\",\"secondaryWeaponItems\",\"secondaryWeaponMagazine\",\"select\",\"selectBestPlaces\",\"selectDiarySubject\",\"selectedEditorObjects\",\"selectEditorObject\",\"selectionPosition\",\"selectLeader\",\"selectNoPlayer\",\"selectPlayer\",\"selectWeapon\",\"selectWeaponTurret\",\"sendAUMessage\",\"sendSimpleCommand\",\"sendTask\",\"sendTaskResult\",\"sendUDPMessage\",\"serverCommand\",\"serverCommandAvailable\",\"serverCommandExecutable\",\"serverName\",\"serverTime\",\"set\",\"setAccTime\",\"setAirportSide\",\"setAmmo\",\"setAmmoCargo\",\"setAperture\",\"setApertureNew\",\"setArmoryPoints\",\"setAttributes\",\"setAutonomous\",\"setBehaviour\",\"setBleedingRemaining\",\"setCameraInterest\",\"setCamShakeDefParams\",\"setCamShakeParams\",\"setCamUseTi\",\"setCaptive\",\"setCenterOfMass\",\"setCollisionLight\",\"setCombatMode\",\"setCompassOscillation\",\"setCuratorCameraAreaCeiling\",\"setCuratorCoef\",\"setCuratorEditingAreaType\",\"setCuratorWaypointCost\",\"setCurrentChannel\",\"setCurrentTask\",\"setCurrentWaypoint\",\"setDamage\",\"setDammage\",\"setDate\",\"setDebriefingText\",\"setDefaultCamera\",\"setDestination\",\"setDetailMapBlendPars\",\"setDir\",\"setDirection\",\"setDrawIcon\",\"setDropInterval\",\"setEditorMode\",\"setEditorObjectScope\",\"setEffectCondition\",\"setFace\",\"setFaceAnimation\",\"setFatigue\",\"setFlagOwner\",\"setFlagSide\",\"setFlagTexture\",\"setFog\",\"setFog array\",\"setFormation\",\"setFormationTask\",\"setFormDir\",\"setFriend\",\"setFromEditor\",\"setFSMVariable\",\"setFuel\",\"setFuelCargo\",\"setGroupIcon\",\"setGroupIconParams\",\"setGroupIconsSelectable\",\"setGroupIconsVisible\",\"setGroupId\",\"setGroupIdGlobal\",\"setGroupOwner\",\"setGusts\",\"setHideBehind\",\"setHit\",\"setHitIndex\",\"setHitPointDamage\",\"setHorizonParallaxCoef\",\"setHUDMovementLevels\",\"setIdentity\",\"setImportance\",\"setLeader\",\"setLightAmbient\",\"setLightAttenuation\",\"setLightBrightness\",\"setLightColor\",\"setLightDayLight\",\"setLightFlareMaxDistance\",\"setLightFlareSize\",\"setLightIntensity\",\"setLightnings\",\"setLightUseFlare\",\"setLocalWindParams\",\"setMagazineTurretAmmo\",\"setMarkerAlpha\",\"setMarkerAlphaLocal\",\"setMarkerBrush\",\"setMarkerBrushLocal\",\"setMarkerColor\",\"setMarkerColorLocal\",\"setMarkerDir\",\"setMarkerDirLocal\",\"setMarkerPos\",\"setMarkerPosLocal\",\"setMarkerShape\",\"setMarkerShapeLocal\",\"setMarkerSize\",\"setMarkerSizeLocal\",\"setMarkerText\",\"setMarkerTextLocal\",\"setMarkerType\",\"setMarkerTypeLocal\",\"setMass\",\"setMimic\",\"setMousePosition\",\"setMusicEffect\",\"setMusicEventHandler\",\"setName\",\"setNameSound\",\"setObjectArguments\",\"setObjectMaterial\",\"setObjectProxy\",\"setObjectTexture\",\"setObjectTextureGlobal\",\"setObjectViewDistance\",\"setOvercast\",\"setOwner\",\"setOxygenRemaining\",\"setParticleCircle\",\"setParticleClass\",\"setParticleFire\",\"setParticleParams\",\"setParticleRandom\",\"setPilotLight\",\"setPiPEffect\",\"setPitch\",\"setPlayable\",\"setPlayerRespawnTime\",\"setPos\",\"setPosASL\",\"setPosASL2\",\"setPosASLW\",\"setPosATL\",\"setPosition\",\"setPosWorld\",\"setRadioMsg\",\"setRain\",\"setRainbow\",\"setRandomLip\",\"setRank\",\"setRectangular\",\"setRepairCargo\",\"setShadowDistance\",\"setSide\",\"setSimpleTaskDescription\",\"setSimpleTaskDestination\",\"setSimpleTaskTarget\",\"setSimulWeatherLayers\",\"setSize\",\"setSkill\",\"setSkill array\",\"setSlingLoad\",\"setSoundEffect\",\"setSpeaker\",\"setSpeech\",\"setSpeedMode\",\"setStatValue\",\"setSuppression\",\"setSystemOfUnits\",\"setTargetAge\",\"setTaskResult\",\"setTaskState\",\"setTerrainGrid\",\"setText\",\"setTimeMultiplier\",\"setTitleEffect\",\"setTriggerActivation\",\"setTriggerArea\",\"setTriggerStatements\",\"setTriggerText\",\"setTriggerTimeout\",\"setTriggerType\",\"setType\",\"setUnconscious\",\"setUnitAbility\",\"setUnitPos\",\"setUnitPosWeak\",\"setUnitRank\",\"setUnitRecoilCoefficient\",\"setUnloadInCombat\",\"setUserActionText\",\"setVariable\",\"setVectorDir\",\"setVectorDirAndUp\",\"setVectorUp\",\"setVehicleAmmo\",\"setVehicleAmmoDef\",\"setVehicleArmor\",\"setVehicleId\",\"setVehicleLock\",\"setVehiclePosition\",\"setVehicleTiPars\",\"setVehicleVarName\",\"setVelocity\",\"setVelocityTransformation\",\"setViewDistance\",\"setVisibleIfTreeCollapsed\",\"setWaves\",\"setWaypointBehaviour\",\"setWaypointCombatMode\",\"setWaypointCompletionRadius\",\"setWaypointDescription\",\"setWaypointFormation\",\"setWaypointHousePosition\",\"setWaypointLoiterRadius\",\"setWaypointLoiterType\",\"setWaypointName\",\"setWaypointPosition\",\"setWaypointScript\",\"setWaypointSpeed\",\"setWaypointStatements\",\"setWaypointTimeout\",\"setWaypointType\",\"setWaypointVisible\",\"setWeaponReloadingTime\",\"setWind\",\"setWindDir\",\"setWindForce\",\"setWindStr\",\"setWPPos\",\"show3DIcons\",\"showChat\",\"showCinemaBorder\",\"showCommandingMenu\",\"showCompass\",\"showCuratorCompass\",\"showGPS\",\"showHUD\",\"showLegend\",\"showMap\",\"shownArtilleryComputer\",\"shownChat\",\"shownCompass\",\"shownCuratorCompass\",\"showNewEditorObject\",\"shownGPS\",\"shownHUD\",\"shownMap\",\"shownPad\",\"shownRadio\",\"shownUAVFeed\",\"shownWarrant\",\"shownWatch\",\"showPad\",\"showRadio\",\"showSubtitles\",\"showUAVFeed\",\"showWarrant\",\"showWatch\",\"showWaypoint\",\"side\",\"sideChat\",\"sideEnemy\",\"sideFriendly\",\"sideLogic\",\"sideRadio\",\"sideUnknown\",\"simpleTasks\",\"simulationEnabled\",\"simulCloudDensity\",\"simulCloudOcclusion\",\"simulInClouds\",\"simulWeatherSync\",\"sin\",\"size\",\"sizeOf\",\"skill\",\"skillFinal\",\"skipTime\",\"sleep\",\"sliderPosition\",\"sliderRange\",\"sliderSetPosition\",\"sliderSetRange\",\"sliderSetSpeed\",\"sliderSpeed\",\"slingLoadAssistantShown\",\"soldierMagazines\",\"someAmmo\",\"sort\",\"soundVolume\",\"spawn\",\"speaker\",\"speed\",\"speedMode\",\"splitString\",\"sqrt\",\"squadParams\",\"stance\",\"startLoadingScreen\",\"step\",\"stop\",\"stopped\",\"str\",\"sunOrMoon\",\"supportInfo\",\"suppressFor\",\"surfaceIsWater\",\"surfaceNormal\",\"surfaceType\",\"swimInDepth\",\"switch\",\"switchableUnits\",\"switchAction\",\"switchCamera\",\"switchGesture\",\"switchLight\",\"switchMove\",\"synchronizedObjects\",\"synchronizedTriggers\",\"synchronizedWaypoints\",\"synchronizeObjectsAdd\",\"synchronizeObjectsRemove\",\"synchronizeTrigger\",\"synchronizeWaypoint\",\"synchronizeWaypoint trigger\",\"systemChat\",\"systemOfUnits\",\"tan\",\"targetKnowledge\",\"targetsAggregate\",\"targetsQuery\",\"taskChildren\",\"taskCompleted\",\"taskDescription\",\"taskDestination\",\"taskHint\",\"taskNull\",\"taskParent\",\"taskResult\",\"taskState\",\"teamMember\",\"teamMemberNull\",\"teamName\",\"teams\",\"teamSwitch\",\"teamSwitchEnabled\",\"teamType\",\"terminate\",\"terrainIntersect\",\"terrainIntersectASL\",\"text\",\"text location\",\"textLog\",\"textLogFormat\",\"tg\",\"then\",\"throw\",\"time\",\"timeMultiplier\",\"titleCut\",\"titleFadeOut\",\"titleObj\",\"titleRsc\",\"titleText\",\"to\",\"toArray\",\"toLower\",\"toString\",\"toUpper\",\"triggerActivated\",\"triggerActivation\",\"triggerArea\",\"triggerAttachedVehicle\",\"triggerAttachObject\",\"triggerAttachVehicle\",\"triggerStatements\",\"triggerText\",\"triggerTimeout\",\"triggerTimeoutCurrent\",\"triggerType\",\"true\",\"try\",\"turretLocal\",\"turretOwner\",\"turretUnit\",\"tvAdd\",\"tvClear\",\"tvCollapse\",\"tvCount\",\"tvCurSel\",\"tvData\",\"tvDelete\",\"tvExpand\",\"tvPicture\",\"tvSetCurSel\",\"tvSetData\",\"tvSetPicture\",\"tvSetPictureColor\",\"tvSetTooltip\",\"tvSetValue\",\"tvSort\",\"tvSortByValue\",\"tvText\",\"tvValue\",\"type\",\"typeName\",\"typeOf\",\"UAVControl\",\"uiNamespace\",\"uiSleep\",\"unassignCurator\",\"unassignItem\",\"unassignTeam\",\"unassignVehicle\",\"underwater\",\"uniform\",\"uniformContainer\",\"uniformItems\",\"uniformMagazines\",\"unitAddons\",\"unitBackpack\",\"unitPos\",\"unitReady\",\"unitRecoilCoefficient\",\"units\",\"unitsBelowHeight\",\"unlinkItem\",\"unlockAchievement\",\"unregisterTask\",\"updateDrawIcon\",\"updateMenuItem\",\"updateObjectTree\",\"useAudioTimeForMoves\",\"vectorAdd\",\"vectorCos\",\"vectorCrossProduct\",\"vectorDiff\",\"vectorDir\",\"vectorDirVisual\",\"vectorDistance\",\"vectorDistanceSqr\",\"vectorDotProduct\",\"vectorFromTo\",\"vectorMagnitude\",\"vectorMagnitudeSqr\",\"vectorMultiply\",\"vectorNormalized\",\"vectorUp\",\"vectorUpVisual\",\"vehicle\",\"vehicleChat\",\"vehicleRadio\",\"vehicles\",\"vehicleVarName\",\"velocity\",\"velocityModelSpace\",\"verifySignature\",\"vest\",\"vestContainer\",\"vestItems\",\"vestMagazines\",\"viewDistance\",\"visibleCompass\",\"visibleGPS\",\"visibleMap\",\"visiblePosition\",\"visiblePositionASL\",\"visibleWatch\",\"waitUntil\",\"waves\",\"waypointAttachedObject\",\"waypointAttachedVehicle\",\"waypointAttachObject\",\"waypointAttachVehicle\",\"waypointBehaviour\",\"waypointCombatMode\",\"waypointCompletionRadius\",\"waypointDescription\",\"waypointFormation\",\"waypointHousePosition\",\"waypointLoiterRadius\",\"waypointLoiterType\",\"waypointName\",\"waypointPosition\",\"waypoints\",\"waypointScript\",\"waypointsEnabledUAV\",\"waypointShow\",\"waypointSpeed\",\"waypointStatements\",\"waypointTimeout\",\"waypointTimeoutCurrent\",\"waypointType\",\"waypointVisible\",\"weaponAccessories\",\"weaponCargo\",\"weaponDirection\",\"weaponLowered\",\"weapons\",\"weaponsItems\",\"weaponsItemsCargo\",\"weaponState\",\"weaponsTurret\",\"weightRTD\",\"west\",\"WFSideText\",\"while\",\"wind\",\"windDir\",\"windStr\",\"wingsForcesRTD\",\"with\",\"worldName\",\"worldSize\",\"worldToModel\",\"worldToModelVisual\",\"worldToScreen\"],a=[\"case\",\"catch\",\"default\",\"do\",\"else\",\"exit\",\"exitWith|5\",\"for\",\"forEach\",\"from\",\"if\",\"switch\",\"then\",\"throw\",\"to\",\"try\",\"while\",\"with\"],r=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"^\",\":\",\">>\"],o=[\"_forEachIndex|10\",\"_this|10\",\"_x|10\"],i=[\"true\",\"false\",\"nil\"],n=t.filter(function(e){return-1==a.indexOf(e)&&-1==i.indexOf(e)&&-1==r.indexOf(e)});n=n.concat(o);var s={cN:\"string\",r:0,v:[{b:'\"',e:'\"',c:[{b:'\"\"'}]},{b:\"'\",e:\"'\",c:[{b:\"''\"}]}]},l={cN:\"number\",b:e.NR,r:0},c={cN:\"string\",v:[e.QSM,{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},d={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[c,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},c,l,e.CLCM,e.CBCM]};return{aliases:[\"sqf\"],cI:!0,k:{keyword:a.join(\" \"),built_in:n.join(\" \"),literal:i.join(\" \")},c:[e.CLCM,e.CBCM,l,s,d]}});hljs.registerLanguage(\"vbscript-html\",function(r){return{sL:\"xml\",c:[{b:\"<%\",e:\"%>\",sL:\"vbscript\"}]}});hljs.registerLanguage(\"cal\",function(e){var r=\"div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var\",t=\"false true\",a=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],c={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},o={cN:\"string\",b:/(#\\d+)+/},n={cN:\"date\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(DT|D|T)\",r:0},i={cN:\"variable\",b:'\"',e:'\"'},d={cN:\"function\",bK:\"procedure\",e:/[:;]/,k:\"procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[c,o]}].concat(a)},b={cN:\"class\",b:\"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\\\d+) ([^\\\\r\\\\n]+)\",rB:!0,c:[e.TM,d]};return{cI:!0,k:{keyword:r,literal:t},i:/\\/\\*/,c:[c,o,n,i,e.NM,b,d]}});hljs.registerLanguage(\"mojolicious\",function(e){return{sL:\"xml\",c:[{cN:\"preprocessor\",b:\"^__(END|DATA)__$\"},{b:\"^\\\\s*%{1,2}={0,2}\",e:\"$\",sL:\"perl\"},{b:\"<%{1,2}={0,2}\",e:\"={0,1}%>\",sL:\"perl\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"clojure\",function(e){var t={built_in:\"def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},r=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+r+\"][\"+r+\"0-9/;:]*\",a=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",o={b:n,r:0},s={cN:\"number\",b:a,r:0},c=e.inherit(e.QSM,{i:null}),i=e.C(\";\",\"$\",{r:0}),d={cN:\"literal\",b:/\\b(true|false|nil)\\b/},l={cN:\"collection\",b:\"[\\\\[\\\\{]\",e:\"[\\\\]\\\\}]\"},m={cN:\"comment\",b:\"\\\\^\"+n},p=e.C(\"\\\\^\\\\{\",\"\\\\}\"),u={cN:\"attribute\",b:\"[:]\"+n},f={cN:\"list\",b:\"\\\\(\",e:\"\\\\)\"},h={eW:!0,r:0},y={k:t,l:n,cN:\"keyword\",b:n,starts:h},b=[f,c,m,p,i,u,l,s,d,o];return f.c=[e.C(\"comment\",\"\"),y,h],h.c=b,l.c=b,{aliases:[\"clj\"],i:/\\S/,c:[f,c,m,p,i,u,l,s,d]}});hljs.registerLanguage(\"dart\",function(e){var t={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"}\",k:\"true false null this is new super\"},r={cN:\"string\",v:[{b:\"r'''\",e:\"'''\"},{b:'r\"\"\"',e:'\"\"\"'},{b:\"r'\",e:\"'\",i:\"\\\\n\"},{b:'r\"',e:'\"',i:\"\\\\n\"},{b:\"'''\",e:\"'''\",c:[e.BE,t]},{b:'\"\"\"',e:'\"\"\"',c:[e.BE,t]},{b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE,t]},{b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:\"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with\",literal:\"abstract as dynamic export external factory get implements import library operator part set static typedef\",built_in:\"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList\"};return{k:n,c:[r,e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{sL:\"markdown\"}),e.C(\"///\",\"$\",{sL:\"markdown\"}),e.CLCM,e.CBCM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{b:\"=>\"}]}});hljs.registerLanguage(\"ruleslanguage\",function(T){return{k:{keyword:\"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING\",built_in:\"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME\"},c:[T.CLCM,T.CBCM,T.ASM,T.QSM,T.CNM,{cN:\"array\",v:[{b:\"#\\\\s+[a-zA-Z\\\\ \\\\.]*\",r:0},{b:\"#[a-zA-Z\\\\ \\\\.]+\"}]}]}});hljs.registerLanguage(\"applescript\",function(e){var t=e.inherit(e.QSM,{i:\"\"}),r={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CNM,t]},o=e.C(\"--\",\"$\"),n=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\",o]}),a=[o,n,e.HCM];return{aliases:[\"osascript\"],k:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",constant:\"AppleScript false linefeed return pi quote result space tab true\",type:\"alias application boolean class constant date file integer list number real record string text\",command:\"activate beep count delay launch log offset read round run say summarize write\",property:\"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},c:[t,e.CNM,{cN:\"type\",b:\"\\\\bPOSIX file\\\\b\"},{cN:\"command\",b:\"\\\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\\\b|^\\\\s*return\\\\b\"},{cN:\"constant\",b:\"\\\\b(text item delimiters|current application|missing value)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\\\b\"},{cN:\"property\",b:\"\\\\b(POSIX path|(date|time) string|quoted form)\\\\b\"},{cN:\"function_start\",bK:\"on\",i:\"[${=;\\\\n]\",c:[e.UTM,r]}].concat(a),i:\"//|->|=>|\\\\[\\\\[\"}});hljs.registerLanguage(\"xml\",function(t){var s=\"[A-Za-z0-9\\\\._:-]+\",c={b:/<\\?(php)?(?!\\w)/,e:/\\?>/,sL:\"php\"},e={eW:!0,i:/</,r:0,c:[c,{cN:\"attribute\",b:s,r:0},{b:\"=\",r:0,c:[{cN:\"value\",c:[c],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\\/>]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},t.C(\"<!--\",\"-->\",{r:10}),{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[e],starts:{e:\"</style>\",rE:!0,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[e],starts:{e:\"</script>\",rE:!0,sL:[\"actionscript\",\"javascript\",\"handlebars\"]}},c,{cN:\"pi\",b:/<\\?\\w+/,e:/\\?>/,r:10},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:/[^ \\/><\\n\\t]+/,r:0},e]}]}});hljs.registerLanguage(\"elixir\",function(e){var n=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\",r=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",b=\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote\",c={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:n,k:b},a={cN:\"string\",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},i={cN:\"function\",bK:\"def defp defmacro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:\"class\",bK:\"defmodule defrecord\",e:/\\bdo\\b|$|;/}),l=[a,e.HCM,s,i,{cN:\"constant\",b:\"(\\\\b[A-Z_]\\\\w*(.)?)+\",r:0},{cN:\"symbol\",b:\":\",c:[a,{b:r}],r:0},{cN:\"symbol\",b:n+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"->\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[e.HCM,{cN:\"regexp\",i:\"\\\\n\",c:[e.BE,c],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage(\"autoit\",function(e){var t=\"ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With\",r=\"True False And Null Not Or\",i=\"Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Opt Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown TCPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend UDPShutdown UDPStartup VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait WinWaitActive WinWaitClose WinWaitNotActive Array1DToHistogram ArrayAdd ArrayBinarySearch ArrayColDelete ArrayColInsert ArrayCombinations ArrayConcatenate ArrayDelete ArrayDisplay ArrayExtract ArrayFindAll ArrayInsert ArrayMax ArrayMaxIndex ArrayMin ArrayMinIndex ArrayPermute ArrayPop ArrayPush ArrayReverse ArraySearch ArrayShuffle ArraySort ArraySwap ArrayToClip ArrayToString ArrayTranspose ArrayTrim ArrayUnique Assert ChooseColor ChooseFont ClipBoard_ChangeChain ClipBoard_Close ClipBoard_CountFormats ClipBoard_Empty ClipBoard_EnumFormats ClipBoard_FormatStr ClipBoard_GetData ClipBoard_GetDataEx ClipBoard_GetFormatName ClipBoard_GetOpenWindow ClipBoard_GetOwner ClipBoard_GetPriorityFormat ClipBoard_GetSequenceNumber ClipBoard_GetViewer ClipBoard_IsFormatAvailable ClipBoard_Open ClipBoard_RegisterFormat ClipBoard_SetData ClipBoard_SetDataEx ClipBoard_SetViewer ClipPutFile ColorConvertHSLtoRGB ColorConvertRGBtoHSL ColorGetBlue ColorGetCOLORREF ColorGetGreen ColorGetRed ColorGetRGB ColorSetCOLORREF ColorSetRGB Crypt_DecryptData Crypt_DecryptFile Crypt_DeriveKey Crypt_DestroyKey Crypt_EncryptData Crypt_EncryptFile Crypt_GenRandom Crypt_HashData Crypt_HashFile Crypt_Shutdown Crypt_Startup DateAdd DateDayOfWeek DateDaysInMonth DateDiff DateIsLeapYear DateIsValid DateTimeFormat DateTimeSplit DateToDayOfWeek DateToDayOfWeekISO DateToDayValue DateToMonth Date_Time_CompareFileTime Date_Time_DOSDateTimeToArray Date_Time_DOSDateTimeToFileTime Date_Time_DOSDateTimeToStr Date_Time_DOSDateToArray Date_Time_DOSDateToStr Date_Time_DOSTimeToArray Date_Time_DOSTimeToStr Date_Time_EncodeFileTime Date_Time_EncodeSystemTime Date_Time_FileTimeToArray Date_Time_FileTimeToDOSDateTime Date_Time_FileTimeToLocalFileTime Date_Time_FileTimeToStr Date_Time_FileTimeToSystemTime Date_Time_GetFileTime Date_Time_GetLocalTime Date_Time_GetSystemTime Date_Time_GetSystemTimeAdjustment Date_Time_GetSystemTimeAsFileTime Date_Time_GetSystemTimes Date_Time_GetTickCount Date_Time_GetTimeZoneInformation Date_Time_LocalFileTimeToFileTime Date_Time_SetFileTime Date_Time_SetLocalTime Date_Time_SetSystemTime Date_Time_SetSystemTimeAdjustment Date_Time_SetTimeZoneInformation Date_Time_SystemTimeToArray Date_Time_SystemTimeToDateStr Date_Time_SystemTimeToDateTimeStr Date_Time_SystemTimeToFileTime Date_Time_SystemTimeToTimeStr Date_Time_SystemTimeToTzSpecificLocalTime Date_Time_TzSpecificLocalTimeToSystemTime DayValueToDate DebugBugReportEnv DebugCOMError DebugOut DebugReport DebugReportEx DebugReportVar DebugSetup Degree EventLog__Backup EventLog__Clear EventLog__Close EventLog__Count EventLog__DeregisterSource EventLog__Full EventLog__Notify EventLog__Oldest EventLog__Open EventLog__OpenBackup EventLog__Read EventLog__RegisterSource EventLog__Report Excel_BookAttach Excel_BookClose Excel_BookList Excel_BookNew Excel_BookOpen Excel_BookOpenText Excel_BookSave Excel_BookSaveAs Excel_Close Excel_ColumnToLetter Excel_ColumnToNumber Excel_ConvertFormula Excel_Export Excel_FilterGet Excel_FilterSet Excel_Open Excel_PictureAdd Excel_Print Excel_RangeCopyPaste Excel_RangeDelete Excel_RangeFind Excel_RangeInsert Excel_RangeLinkAddRemove Excel_RangeRead Excel_RangeReplace Excel_RangeSort Excel_RangeValidate Excel_RangeWrite Excel_SheetAdd Excel_SheetCopyMove Excel_SheetDelete Excel_SheetList FileCountLines FileCreate FileListToArray FileListToArrayRec FilePrint FileReadToArray FileWriteFromArray FileWriteLog FileWriteToLine FTP_Close FTP_Command FTP_Connect FTP_DecodeInternetStatus FTP_DirCreate FTP_DirDelete FTP_DirGetCurrent FTP_DirPutContents FTP_DirSetCurrent FTP_FileClose FTP_FileDelete FTP_FileGet FTP_FileGetSize FTP_FileOpen FTP_FilePut FTP_FileRead FTP_FileRename FTP_FileTimeLoHiToStr FTP_FindFileClose FTP_FindFileFirst FTP_FindFileNext FTP_GetLastResponseInfo FTP_ListToArray FTP_ListToArray2D FTP_ListToArrayEx FTP_Open FTP_ProgressDownload FTP_ProgressUpload FTP_SetStatusCallback GDIPlus_ArrowCapCreate GDIPlus_ArrowCapDispose GDIPlus_ArrowCapGetFillState GDIPlus_ArrowCapGetHeight GDIPlus_ArrowCapGetMiddleInset GDIPlus_ArrowCapGetWidth GDIPlus_ArrowCapSetFillState GDIPlus_ArrowCapSetHeight GDIPlus_ArrowCapSetMiddleInset GDIPlus_ArrowCapSetWidth GDIPlus_BitmapApplyEffect GDIPlus_BitmapApplyEffectEx GDIPlus_BitmapCloneArea GDIPlus_BitmapConvertFormat GDIPlus_BitmapCreateApplyEffect GDIPlus_BitmapCreateApplyEffectEx GDIPlus_BitmapCreateDIBFromBitmap GDIPlus_BitmapCreateFromFile GDIPlus_BitmapCreateFromGraphics GDIPlus_BitmapCreateFromHBITMAP GDIPlus_BitmapCreateFromHICON GDIPlus_BitmapCreateFromHICON32 GDIPlus_BitmapCreateFromMemory GDIPlus_BitmapCreateFromResource GDIPlus_BitmapCreateFromScan0 GDIPlus_BitmapCreateFromStream GDIPlus_BitmapCreateHBITMAPFromBitmap GDIPlus_BitmapDispose GDIPlus_BitmapGetHistogram GDIPlus_BitmapGetHistogramEx GDIPlus_BitmapGetHistogramSize GDIPlus_BitmapGetPixel GDIPlus_BitmapLockBits GDIPlus_BitmapSetPixel GDIPlus_BitmapUnlockBits GDIPlus_BrushClone GDIPlus_BrushCreateSolid GDIPlus_BrushDispose GDIPlus_BrushGetSolidColor GDIPlus_BrushGetType GDIPlus_BrushSetSolidColor GDIPlus_ColorMatrixCreate GDIPlus_ColorMatrixCreateGrayScale GDIPlus_ColorMatrixCreateNegative GDIPlus_ColorMatrixCreateSaturation GDIPlus_ColorMatrixCreateScale GDIPlus_ColorMatrixCreateTranslate GDIPlus_CustomLineCapClone GDIPlus_CustomLineCapCreate GDIPlus_CustomLineCapDispose GDIPlus_CustomLineCapGetStrokeCaps GDIPlus_CustomLineCapSetStrokeCaps GDIPlus_Decoders GDIPlus_DecodersGetCount GDIPlus_DecodersGetSize GDIPlus_DrawImageFX GDIPlus_DrawImageFXEx GDIPlus_DrawImagePoints GDIPlus_EffectCreate GDIPlus_EffectCreateBlur GDIPlus_EffectCreateBrightnessContrast GDIPlus_EffectCreateColorBalance GDIPlus_EffectCreateColorCurve GDIPlus_EffectCreateColorLUT GDIPlus_EffectCreateColorMatrix GDIPlus_EffectCreateHueSaturationLightness GDIPlus_EffectCreateLevels GDIPlus_EffectCreateRedEyeCorrection GDIPlus_EffectCreateSharpen GDIPlus_EffectCreateTint GDIPlus_EffectDispose GDIPlus_EffectGetParameters GDIPlus_EffectSetParameters GDIPlus_Encoders GDIPlus_EncodersGetCLSID GDIPlus_EncodersGetCount GDIPlus_EncodersGetParamList GDIPlus_EncodersGetParamListSize GDIPlus_EncodersGetSize GDIPlus_FontCreate GDIPlus_FontDispose GDIPlus_FontFamilyCreate GDIPlus_FontFamilyCreateFromCollection GDIPlus_FontFamilyDispose GDIPlus_FontFamilyGetCellAscent GDIPlus_FontFamilyGetCellDescent GDIPlus_FontFamilyGetEmHeight GDIPlus_FontFamilyGetLineSpacing GDIPlus_FontGetHeight GDIPlus_FontPrivateAddFont GDIPlus_FontPrivateAddMemoryFont GDIPlus_FontPrivateCollectionDispose GDIPlus_FontPrivateCreateCollection GDIPlus_GraphicsClear GDIPlus_GraphicsCreateFromHDC GDIPlus_GraphicsCreateFromHWND GDIPlus_GraphicsDispose GDIPlus_GraphicsDrawArc GDIPlus_GraphicsDrawBezier GDIPlus_GraphicsDrawClosedCurve GDIPlus_GraphicsDrawClosedCurve2 GDIPlus_GraphicsDrawCurve GDIPlus_GraphicsDrawCurve2 GDIPlus_GraphicsDrawEllipse GDIPlus_GraphicsDrawImage GDIPlus_GraphicsDrawImagePointsRect GDIPlus_GraphicsDrawImageRect GDIPlus_GraphicsDrawImageRectRect GDIPlus_GraphicsDrawLine GDIPlus_GraphicsDrawPath GDIPlus_GraphicsDrawPie GDIPlus_GraphicsDrawPolygon GDIPlus_GraphicsDrawRect GDIPlus_GraphicsDrawString GDIPlus_GraphicsDrawStringEx GDIPlus_GraphicsFillClosedCurve GDIPlus_GraphicsFillClosedCurve2 GDIPlus_GraphicsFillEllipse GDIPlus_GraphicsFillPath GDIPlus_GraphicsFillPie GDIPlus_GraphicsFillPolygon GDIPlus_GraphicsFillRect GDIPlus_GraphicsFillRegion GDIPlus_GraphicsGetCompositingMode GDIPlus_GraphicsGetCompositingQuality GDIPlus_GraphicsGetDC GDIPlus_GraphicsGetInterpolationMode GDIPlus_GraphicsGetSmoothingMode GDIPlus_GraphicsGetTransform GDIPlus_GraphicsMeasureCharacterRanges GDIPlus_GraphicsMeasureString GDIPlus_GraphicsReleaseDC GDIPlus_GraphicsResetClip GDIPlus_GraphicsResetTransform GDIPlus_GraphicsRestore GDIPlus_GraphicsRotateTransform GDIPlus_GraphicsSave GDIPlus_GraphicsScaleTransform GDIPlus_GraphicsSetClipPath GDIPlus_GraphicsSetClipRect GDIPlus_GraphicsSetClipRegion GDIPlus_GraphicsSetCompositingMode GDIPlus_GraphicsSetCompositingQuality GDIPlus_GraphicsSetInterpolationMode GDIPlus_GraphicsSetPixelOffsetMode GDIPlus_GraphicsSetSmoothingMode GDIPlus_GraphicsSetTextRenderingHint GDIPlus_GraphicsSetTransform GDIPlus_GraphicsTransformPoints GDIPlus_GraphicsTranslateTransform GDIPlus_HatchBrushCreate GDIPlus_HICONCreateFromBitmap GDIPlus_ImageAttributesCreate GDIPlus_ImageAttributesDispose GDIPlus_ImageAttributesSetColorKeys GDIPlus_ImageAttributesSetColorMatrix GDIPlus_ImageDispose GDIPlus_ImageGetDimension GDIPlus_ImageGetFlags GDIPlus_ImageGetGraphicsContext GDIPlus_ImageGetHeight GDIPlus_ImageGetHorizontalResolution GDIPlus_ImageGetPixelFormat GDIPlus_ImageGetRawFormat GDIPlus_ImageGetThumbnail GDIPlus_ImageGetType GDIPlus_ImageGetVerticalResolution GDIPlus_ImageGetWidth GDIPlus_ImageLoadFromFile GDIPlus_ImageLoadFromStream GDIPlus_ImageResize GDIPlus_ImageRotateFlip GDIPlus_ImageSaveToFile GDIPlus_ImageSaveToFileEx GDIPlus_ImageSaveToStream GDIPlus_ImageScale GDIPlus_LineBrushCreate GDIPlus_LineBrushCreateFromRect GDIPlus_LineBrushCreateFromRectWithAngle GDIPlus_LineBrushGetColors GDIPlus_LineBrushGetRect GDIPlus_LineBrushMultiplyTransform GDIPlus_LineBrushResetTransform GDIPlus_LineBrushSetBlend GDIPlus_LineBrushSetColors GDIPlus_LineBrushSetGammaCorrection GDIPlus_LineBrushSetLinearBlend GDIPlus_LineBrushSetPresetBlend GDIPlus_LineBrushSetSigmaBlend GDIPlus_LineBrushSetTransform GDIPlus_MatrixClone GDIPlus_MatrixCreate GDIPlus_MatrixDispose GDIPlus_MatrixGetElements GDIPlus_MatrixInvert GDIPlus_MatrixMultiply GDIPlus_MatrixRotate GDIPlus_MatrixScale GDIPlus_MatrixSetElements GDIPlus_MatrixShear GDIPlus_MatrixTransformPoints GDIPlus_MatrixTranslate GDIPlus_PaletteInitialize GDIPlus_ParamAdd GDIPlus_ParamInit GDIPlus_ParamSize GDIPlus_PathAddArc GDIPlus_PathAddBezier GDIPlus_PathAddClosedCurve GDIPlus_PathAddClosedCurve2 GDIPlus_PathAddCurve GDIPlus_PathAddCurve2 GDIPlus_PathAddCurve3 GDIPlus_PathAddEllipse GDIPlus_PathAddLine GDIPlus_PathAddLine2 GDIPlus_PathAddPath GDIPlus_PathAddPie GDIPlus_PathAddPolygon GDIPlus_PathAddRectangle GDIPlus_PathAddString GDIPlus_PathBrushCreate GDIPlus_PathBrushCreateFromPath GDIPlus_PathBrushGetCenterPoint GDIPlus_PathBrushGetFocusScales GDIPlus_PathBrushGetPointCount GDIPlus_PathBrushGetRect GDIPlus_PathBrushGetWrapMode GDIPlus_PathBrushMultiplyTransform GDIPlus_PathBrushResetTransform GDIPlus_PathBrushSetBlend GDIPlus_PathBrushSetCenterColor GDIPlus_PathBrushSetCenterPoint GDIPlus_PathBrushSetFocusScales GDIPlus_PathBrushSetGammaCorrection GDIPlus_PathBrushSetLinearBlend GDIPlus_PathBrushSetPresetBlend GDIPlus_PathBrushSetSigmaBlend GDIPlus_PathBrushSetSurroundColor GDIPlus_PathBrushSetSurroundColorsWithCount GDIPlus_PathBrushSetTransform GDIPlus_PathBrushSetWrapMode GDIPlus_PathClone GDIPlus_PathCloseFigure GDIPlus_PathCreate GDIPlus_PathCreate2 GDIPlus_PathDispose GDIPlus_PathFlatten GDIPlus_PathGetData GDIPlus_PathGetFillMode GDIPlus_PathGetLastPoint GDIPlus_PathGetPointCount GDIPlus_PathGetPoints GDIPlus_PathGetWorldBounds GDIPlus_PathIsOutlineVisiblePoint GDIPlus_PathIsVisiblePoint GDIPlus_PathIterCreate GDIPlus_PathIterDispose GDIPlus_PathIterGetSubpathCount GDIPlus_PathIterNextMarkerPath GDIPlus_PathIterNextSubpathPath GDIPlus_PathIterRewind GDIPlus_PathReset GDIPlus_PathReverse GDIPlus_PathSetFillMode GDIPlus_PathSetMarker GDIPlus_PathStartFigure GDIPlus_PathTransform GDIPlus_PathWarp GDIPlus_PathWiden GDIPlus_PathWindingModeOutline GDIPlus_PenCreate GDIPlus_PenCreate2 GDIPlus_PenDispose GDIPlus_PenGetAlignment GDIPlus_PenGetColor GDIPlus_PenGetCustomEndCap GDIPlus_PenGetDashCap GDIPlus_PenGetDashStyle GDIPlus_PenGetEndCap GDIPlus_PenGetMiterLimit GDIPlus_PenGetWidth GDIPlus_PenSetAlignment GDIPlus_PenSetColor GDIPlus_PenSetCustomEndCap GDIPlus_PenSetDashCap GDIPlus_PenSetDashStyle GDIPlus_PenSetEndCap GDIPlus_PenSetLineCap GDIPlus_PenSetLineJoin GDIPlus_PenSetMiterLimit GDIPlus_PenSetStartCap GDIPlus_PenSetWidth GDIPlus_RectFCreate GDIPlus_RegionClone GDIPlus_RegionCombinePath GDIPlus_RegionCombineRect GDIPlus_RegionCombineRegion GDIPlus_RegionCreate GDIPlus_RegionCreateFromPath GDIPlus_RegionCreateFromRect GDIPlus_RegionDispose GDIPlus_RegionGetBounds GDIPlus_RegionGetHRgn GDIPlus_RegionTransform GDIPlus_RegionTranslate GDIPlus_Shutdown GDIPlus_Startup GDIPlus_StringFormatCreate GDIPlus_StringFormatDispose GDIPlus_StringFormatGetMeasurableCharacterRangeCount GDIPlus_StringFormatSetAlign GDIPlus_StringFormatSetLineAlign GDIPlus_StringFormatSetMeasurableCharacterRanges GDIPlus_TextureCreate GDIPlus_TextureCreate2 GDIPlus_TextureCreateIA GetIP GUICtrlAVI_Close GUICtrlAVI_Create GUICtrlAVI_Destroy GUICtrlAVI_IsPlaying GUICtrlAVI_Open GUICtrlAVI_OpenEx GUICtrlAVI_Play GUICtrlAVI_Seek GUICtrlAVI_Show GUICtrlAVI_Stop GUICtrlButton_Click GUICtrlButton_Create GUICtrlButton_Destroy GUICtrlButton_Enable GUICtrlButton_GetCheck GUICtrlButton_GetFocus GUICtrlButton_GetIdealSize GUICtrlButton_GetImage GUICtrlButton_GetImageList GUICtrlButton_GetNote GUICtrlButton_GetNoteLength GUICtrlButton_GetSplitInfo GUICtrlButton_GetState GUICtrlButton_GetText GUICtrlButton_GetTextMargin GUICtrlButton_SetCheck GUICtrlButton_SetDontClick GUICtrlButton_SetFocus GUICtrlButton_SetImage GUICtrlButton_SetImageList GUICtrlButton_SetNote GUICtrlButton_SetShield GUICtrlButton_SetSize GUICtrlButton_SetSplitInfo GUICtrlButton_SetState GUICtrlButton_SetStyle GUICtrlButton_SetText GUICtrlButton_SetTextMargin GUICtrlButton_Show GUICtrlComboBoxEx_AddDir GUICtrlComboBoxEx_AddString GUICtrlComboBoxEx_BeginUpdate GUICtrlComboBoxEx_Create GUICtrlComboBoxEx_CreateSolidBitMap GUICtrlComboBoxEx_DeleteString GUICtrlComboBoxEx_Destroy GUICtrlComboBoxEx_EndUpdate GUICtrlComboBoxEx_FindStringExact GUICtrlComboBoxEx_GetComboBoxInfo GUICtrlComboBoxEx_GetComboControl GUICtrlComboBoxEx_GetCount GUICtrlComboBoxEx_GetCurSel GUICtrlComboBoxEx_GetDroppedControlRect GUICtrlComboBoxEx_GetDroppedControlRectEx GUICtrlComboBoxEx_GetDroppedState GUICtrlComboBoxEx_GetDroppedWidth GUICtrlComboBoxEx_GetEditControl GUICtrlComboBoxEx_GetEditSel GUICtrlComboBoxEx_GetEditText GUICtrlComboBoxEx_GetExtendedStyle GUICtrlComboBoxEx_GetExtendedUI GUICtrlComboBoxEx_GetImageList GUICtrlComboBoxEx_GetItem GUICtrlComboBoxEx_GetItemEx GUICtrlComboBoxEx_GetItemHeight GUICtrlComboBoxEx_GetItemImage GUICtrlComboBoxEx_GetItemIndent GUICtrlComboBoxEx_GetItemOverlayImage GUICtrlComboBoxEx_GetItemParam GUICtrlComboBoxEx_GetItemSelectedImage GUICtrlComboBoxEx_GetItemText GUICtrlComboBoxEx_GetItemTextLen GUICtrlComboBoxEx_GetList GUICtrlComboBoxEx_GetListArray GUICtrlComboBoxEx_GetLocale GUICtrlComboBoxEx_GetLocaleCountry GUICtrlComboBoxEx_GetLocaleLang GUICtrlComboBoxEx_GetLocalePrimLang GUICtrlComboBoxEx_GetLocaleSubLang GUICtrlComboBoxEx_GetMinVisible GUICtrlComboBoxEx_GetTopIndex GUICtrlComboBoxEx_GetUnicode GUICtrlComboBoxEx_InitStorage GUICtrlComboBoxEx_InsertString GUICtrlComboBoxEx_LimitText GUICtrlComboBoxEx_ReplaceEditSel GUICtrlComboBoxEx_ResetContent GUICtrlComboBoxEx_SetCurSel GUICtrlComboBoxEx_SetDroppedWidth GUICtrlComboBoxEx_SetEditSel GUICtrlComboBoxEx_SetEditText GUICtrlComboBoxEx_SetExtendedStyle GUICtrlComboBoxEx_SetExtendedUI GUICtrlComboBoxEx_SetImageList GUICtrlComboBoxEx_SetItem GUICtrlComboBoxEx_SetItemEx GUICtrlComboBoxEx_SetItemHeight GUICtrlComboBoxEx_SetItemImage GUICtrlComboBoxEx_SetItemIndent GUICtrlComboBoxEx_SetItemOverlayImage GUICtrlComboBoxEx_SetItemParam GUICtrlComboBoxEx_SetItemSelectedImage GUICtrlComboBoxEx_SetMinVisible GUICtrlComboBoxEx_SetTopIndex GUICtrlComboBoxEx_SetUnicode GUICtrlComboBoxEx_ShowDropDown GUICtrlComboBox_AddDir GUICtrlComboBox_AddString GUICtrlComboBox_AutoComplete GUICtrlComboBox_BeginUpdate GUICtrlComboBox_Create GUICtrlComboBox_DeleteString GUICtrlComboBox_Destroy GUICtrlComboBox_EndUpdate GUICtrlComboBox_FindString GUICtrlComboBox_FindStringExact GUICtrlComboBox_GetComboBoxInfo GUICtrlComboBox_GetCount GUICtrlComboBox_GetCueBanner GUICtrlComboBox_GetCurSel GUICtrlComboBox_GetDroppedControlRect GUICtrlComboBox_GetDroppedControlRectEx GUICtrlComboBox_GetDroppedState GUICtrlComboBox_GetDroppedWidth GUICtrlComboBox_GetEditSel GUICtrlComboBox_GetEditText GUICtrlComboBox_GetExtendedUI GUICtrlComboBox_GetHorizontalExtent GUICtrlComboBox_GetItemHeight GUICtrlComboBox_GetLBText GUICtrlComboBox_GetLBTextLen GUICtrlComboBox_GetList GUICtrlComboBox_GetListArray GUICtrlComboBox_GetLocale GUICtrlComboBox_GetLocaleCountry GUICtrlComboBox_GetLocaleLang GUICtrlComboBox_GetLocalePrimLang GUICtrlComboBox_GetLocaleSubLang GUICtrlComboBox_GetMinVisible GUICtrlComboBox_GetTopIndex GUICtrlComboBox_InitStorage GUICtrlComboBox_InsertString GUICtrlComboBox_LimitText GUICtrlComboBox_ReplaceEditSel GUICtrlComboBox_ResetContent GUICtrlComboBox_SelectString GUICtrlComboBox_SetCueBanner GUICtrlComboBox_SetCurSel GUICtrlComboBox_SetDroppedWidth GUICtrlComboBox_SetEditSel GUICtrlComboBox_SetEditText GUICtrlComboBox_SetExtendedUI GUICtrlComboBox_SetHorizontalExtent GUICtrlComboBox_SetItemHeight GUICtrlComboBox_SetMinVisible GUICtrlComboBox_SetTopIndex GUICtrlComboBox_ShowDropDown GUICtrlDTP_Create GUICtrlDTP_Destroy GUICtrlDTP_GetMCColor GUICtrlDTP_GetMCFont GUICtrlDTP_GetMonthCal GUICtrlDTP_GetRange GUICtrlDTP_GetRangeEx GUICtrlDTP_GetSystemTime GUICtrlDTP_GetSystemTimeEx GUICtrlDTP_SetFormat GUICtrlDTP_SetMCColor GUICtrlDTP_SetMCFont GUICtrlDTP_SetRange GUICtrlDTP_SetRangeEx GUICtrlDTP_SetSystemTime GUICtrlDTP_SetSystemTimeEx GUICtrlEdit_AppendText GUICtrlEdit_BeginUpdate GUICtrlEdit_CanUndo GUICtrlEdit_CharFromPos GUICtrlEdit_Create GUICtrlEdit_Destroy GUICtrlEdit_EmptyUndoBuffer GUICtrlEdit_EndUpdate GUICtrlEdit_Find GUICtrlEdit_FmtLines GUICtrlEdit_GetCueBanner GUICtrlEdit_GetFirstVisibleLine GUICtrlEdit_GetLimitText GUICtrlEdit_GetLine GUICtrlEdit_GetLineCount GUICtrlEdit_GetMargins GUICtrlEdit_GetModify GUICtrlEdit_GetPasswordChar GUICtrlEdit_GetRECT GUICtrlEdit_GetRECTEx GUICtrlEdit_GetSel GUICtrlEdit_GetText GUICtrlEdit_GetTextLen GUICtrlEdit_HideBalloonTip GUICtrlEdit_InsertText GUICtrlEdit_LineFromChar GUICtrlEdit_LineIndex GUICtrlEdit_LineLength GUICtrlEdit_LineScroll GUICtrlEdit_PosFromChar GUICtrlEdit_ReplaceSel GUICtrlEdit_Scroll GUICtrlEdit_SetCueBanner GUICtrlEdit_SetLimitText GUICtrlEdit_SetMargins GUICtrlEdit_SetModify GUICtrlEdit_SetPasswordChar GUICtrlEdit_SetReadOnly GUICtrlEdit_SetRECT GUICtrlEdit_SetRECTEx GUICtrlEdit_SetRECTNP GUICtrlEdit_SetRectNPEx GUICtrlEdit_SetSel GUICtrlEdit_SetTabStops GUICtrlEdit_SetText GUICtrlEdit_ShowBalloonTip GUICtrlEdit_Undo GUICtrlHeader_AddItem GUICtrlHeader_ClearFilter GUICtrlHeader_ClearFilterAll GUICtrlHeader_Create GUICtrlHeader_CreateDragImage GUICtrlHeader_DeleteItem GUICtrlHeader_Destroy GUICtrlHeader_EditFilter GUICtrlHeader_GetBitmapMargin GUICtrlHeader_GetImageList GUICtrlHeader_GetItem GUICtrlHeader_GetItemAlign GUICtrlHeader_GetItemBitmap GUICtrlHeader_GetItemCount GUICtrlHeader_GetItemDisplay GUICtrlHeader_GetItemFlags GUICtrlHeader_GetItemFormat GUICtrlHeader_GetItemImage GUICtrlHeader_GetItemOrder GUICtrlHeader_GetItemParam GUICtrlHeader_GetItemRect GUICtrlHeader_GetItemRectEx GUICtrlHeader_GetItemText GUICtrlHeader_GetItemWidth GUICtrlHeader_GetOrderArray GUICtrlHeader_GetUnicodeFormat GUICtrlHeader_HitTest GUICtrlHeader_InsertItem GUICtrlHeader_Layout GUICtrlHeader_OrderToIndex GUICtrlHeader_SetBitmapMargin GUICtrlHeader_SetFilterChangeTimeout GUICtrlHeader_SetHotDivider GUICtrlHeader_SetImageList GUICtrlHeader_SetItem GUICtrlHeader_SetItemAlign GUICtrlHeader_SetItemBitmap GUICtrlHeader_SetItemDisplay GUICtrlHeader_SetItemFlags GUICtrlHeader_SetItemFormat GUICtrlHeader_SetItemImage GUICtrlHeader_SetItemOrder GUICtrlHeader_SetItemParam GUICtrlHeader_SetItemText GUICtrlHeader_SetItemWidth GUICtrlHeader_SetOrderArray GUICtrlHeader_SetUnicodeFormat GUICtrlIpAddress_ClearAddress GUICtrlIpAddress_Create GUICtrlIpAddress_Destroy GUICtrlIpAddress_Get GUICtrlIpAddress_GetArray GUICtrlIpAddress_GetEx GUICtrlIpAddress_IsBlank GUICtrlIpAddress_Set GUICtrlIpAddress_SetArray GUICtrlIpAddress_SetEx GUICtrlIpAddress_SetFocus GUICtrlIpAddress_SetFont GUICtrlIpAddress_SetRange GUICtrlIpAddress_ShowHide GUICtrlListBox_AddFile GUICtrlListBox_AddString GUICtrlListBox_BeginUpdate GUICtrlListBox_ClickItem GUICtrlListBox_Create GUICtrlListBox_DeleteString GUICtrlListBox_Destroy GUICtrlListBox_Dir GUICtrlListBox_EndUpdate GUICtrlListBox_FindInText GUICtrlListBox_FindString GUICtrlListBox_GetAnchorIndex GUICtrlListBox_GetCaretIndex GUICtrlListBox_GetCount GUICtrlListBox_GetCurSel GUICtrlListBox_GetHorizontalExtent GUICtrlListBox_GetItemData GUICtrlListBox_GetItemHeight GUICtrlListBox_GetItemRect GUICtrlListBox_GetItemRectEx GUICtrlListBox_GetListBoxInfo GUICtrlListBox_GetLocale GUICtrlListBox_GetLocaleCountry GUICtrlListBox_GetLocaleLang GUICtrlListBox_GetLocalePrimLang GUICtrlListBox_GetLocaleSubLang GUICtrlListBox_GetSel GUICtrlListBox_GetSelCount GUICtrlListBox_GetSelItems GUICtrlListBox_GetSelItemsText GUICtrlListBox_GetText GUICtrlListBox_GetTextLen GUICtrlListBox_GetTopIndex GUICtrlListBox_InitStorage GUICtrlListBox_InsertString GUICtrlListBox_ItemFromPoint GUICtrlListBox_ReplaceString GUICtrlListBox_ResetContent GUICtrlListBox_SelectString GUICtrlListBox_SelItemRange GUICtrlListBox_SelItemRangeEx GUICtrlListBox_SetAnchorIndex GUICtrlListBox_SetCaretIndex GUICtrlListBox_SetColumnWidth GUICtrlListBox_SetCurSel GUICtrlListBox_SetHorizontalExtent GUICtrlListBox_SetItemData GUICtrlListBox_SetItemHeight GUICtrlListBox_SetLocale GUICtrlListBox_SetSel GUICtrlListBox_SetTabStops GUICtrlListBox_SetTopIndex GUICtrlListBox_Sort GUICtrlListBox_SwapString GUICtrlListBox_UpdateHScroll GUICtrlListView_AddArray GUICtrlListView_AddColumn GUICtrlListView_AddItem GUICtrlListView_AddSubItem GUICtrlListView_ApproximateViewHeight GUICtrlListView_ApproximateViewRect GUICtrlListView_ApproximateViewWidth GUICtrlListView_Arrange GUICtrlListView_BeginUpdate GUICtrlListView_CancelEditLabel GUICtrlListView_ClickItem GUICtrlListView_CopyItems GUICtrlListView_Create GUICtrlListView_CreateDragImage GUICtrlListView_CreateSolidBitMap GUICtrlListView_DeleteAllItems GUICtrlListView_DeleteColumn GUICtrlListView_DeleteItem GUICtrlListView_DeleteItemsSelected GUICtrlListView_Destroy GUICtrlListView_DrawDragImage GUICtrlListView_EditLabel GUICtrlListView_EnableGroupView GUICtrlListView_EndUpdate GUICtrlListView_EnsureVisible GUICtrlListView_FindInText GUICtrlListView_FindItem GUICtrlListView_FindNearest GUICtrlListView_FindParam GUICtrlListView_FindText GUICtrlListView_GetBkColor GUICtrlListView_GetBkImage GUICtrlListView_GetCallbackMask GUICtrlListView_GetColumn GUICtrlListView_GetColumnCount GUICtrlListView_GetColumnOrder GUICtrlListView_GetColumnOrderArray GUICtrlListView_GetColumnWidth GUICtrlListView_GetCounterPage GUICtrlListView_GetEditControl GUICtrlListView_GetExtendedListViewStyle GUICtrlListView_GetFocusedGroup GUICtrlListView_GetGroupCount GUICtrlListView_GetGroupInfo GUICtrlListView_GetGroupInfoByIndex GUICtrlListView_GetGroupRect GUICtrlListView_GetGroupViewEnabled GUICtrlListView_GetHeader GUICtrlListView_GetHotCursor GUICtrlListView_GetHotItem GUICtrlListView_GetHoverTime GUICtrlListView_GetImageList GUICtrlListView_GetISearchString GUICtrlListView_GetItem GUICtrlListView_GetItemChecked GUICtrlListView_GetItemCount GUICtrlListView_GetItemCut GUICtrlListView_GetItemDropHilited GUICtrlListView_GetItemEx GUICtrlListView_GetItemFocused GUICtrlListView_GetItemGroupID GUICtrlListView_GetItemImage GUICtrlListView_GetItemIndent GUICtrlListView_GetItemParam GUICtrlListView_GetItemPosition GUICtrlListView_GetItemPositionX GUICtrlListView_GetItemPositionY GUICtrlListView_GetItemRect GUICtrlListView_GetItemRectEx GUICtrlListView_GetItemSelected GUICtrlListView_GetItemSpacing GUICtrlListView_GetItemSpacingX GUICtrlListView_GetItemSpacingY GUICtrlListView_GetItemState GUICtrlListView_GetItemStateImage GUICtrlListView_GetItemText GUICtrlListView_GetItemTextArray GUICtrlListView_GetItemTextString GUICtrlListView_GetNextItem GUICtrlListView_GetNumberOfWorkAreas GUICtrlListView_GetOrigin GUICtrlListView_GetOriginX GUICtrlListView_GetOriginY GUICtrlListView_GetOutlineColor GUICtrlListView_GetSelectedColumn GUICtrlListView_GetSelectedCount GUICtrlListView_GetSelectedIndices GUICtrlListView_GetSelectionMark GUICtrlListView_GetStringWidth GUICtrlListView_GetSubItemRect GUICtrlListView_GetTextBkColor GUICtrlListView_GetTextColor GUICtrlListView_GetToolTips GUICtrlListView_GetTopIndex GUICtrlListView_GetUnicodeFormat GUICtrlListView_GetView GUICtrlListView_GetViewDetails GUICtrlListView_GetViewLarge GUICtrlListView_GetViewList GUICtrlListView_GetViewRect GUICtrlListView_GetViewSmall GUICtrlListView_GetViewTile GUICtrlListView_HideColumn GUICtrlListView_HitTest GUICtrlListView_InsertColumn GUICtrlListView_InsertGroup GUICtrlListView_InsertItem GUICtrlListView_JustifyColumn GUICtrlListView_MapIDToIndex GUICtrlListView_MapIndexToID GUICtrlListView_RedrawItems GUICtrlListView_RegisterSortCallBack GUICtrlListView_RemoveAllGroups GUICtrlListView_RemoveGroup GUICtrlListView_Scroll GUICtrlListView_SetBkColor GUICtrlListView_SetBkImage GUICtrlListView_SetCallBackMask GUICtrlListView_SetColumn GUICtrlListView_SetColumnOrder GUICtrlListView_SetColumnOrderArray GUICtrlListView_SetColumnWidth GUICtrlListView_SetExtendedListViewStyle GUICtrlListView_SetGroupInfo GUICtrlListView_SetHotItem GUICtrlListView_SetHoverTime GUICtrlListView_SetIconSpacing GUICtrlListView_SetImageList GUICtrlListView_SetItem GUICtrlListView_SetItemChecked GUICtrlListView_SetItemCount GUICtrlListView_SetItemCut GUICtrlListView_SetItemDropHilited GUICtrlListView_SetItemEx GUICtrlListView_SetItemFocused GUICtrlListView_SetItemGroupID GUICtrlListView_SetItemImage GUICtrlListView_SetItemIndent GUICtrlListView_SetItemParam GUICtrlListView_SetItemPosition GUICtrlListView_SetItemPosition32 GUICtrlListView_SetItemSelected GUICtrlListView_SetItemState GUICtrlListView_SetItemStateImage GUICtrlListView_SetItemText GUICtrlListView_SetOutlineColor GUICtrlListView_SetSelectedColumn GUICtrlListView_SetSelectionMark GUICtrlListView_SetTextBkColor GUICtrlListView_SetTextColor GUICtrlListView_SetToolTips GUICtrlListView_SetUnicodeFormat GUICtrlListView_SetView GUICtrlListView_SetWorkAreas GUICtrlListView_SimpleSort GUICtrlListView_SortItems GUICtrlListView_SubItemHitTest GUICtrlListView_UnRegisterSortCallBack GUICtrlMenu_AddMenuItem GUICtrlMenu_AppendMenu GUICtrlMenu_CalculatePopupWindowPosition GUICtrlMenu_CheckMenuItem GUICtrlMenu_CheckRadioItem GUICtrlMenu_CreateMenu GUICtrlMenu_CreatePopup GUICtrlMenu_DeleteMenu GUICtrlMenu_DestroyMenu GUICtrlMenu_DrawMenuBar GUICtrlMenu_EnableMenuItem GUICtrlMenu_FindItem GUICtrlMenu_FindParent GUICtrlMenu_GetItemBmp GUICtrlMenu_GetItemBmpChecked GUICtrlMenu_GetItemBmpUnchecked GUICtrlMenu_GetItemChecked GUICtrlMenu_GetItemCount GUICtrlMenu_GetItemData GUICtrlMenu_GetItemDefault GUICtrlMenu_GetItemDisabled GUICtrlMenu_GetItemEnabled GUICtrlMenu_GetItemGrayed GUICtrlMenu_GetItemHighlighted GUICtrlMenu_GetItemID GUICtrlMenu_GetItemInfo GUICtrlMenu_GetItemRect GUICtrlMenu_GetItemRectEx GUICtrlMenu_GetItemState GUICtrlMenu_GetItemStateEx GUICtrlMenu_GetItemSubMenu GUICtrlMenu_GetItemText GUICtrlMenu_GetItemType GUICtrlMenu_GetMenu GUICtrlMenu_GetMenuBackground GUICtrlMenu_GetMenuBarInfo GUICtrlMenu_GetMenuContextHelpID GUICtrlMenu_GetMenuData GUICtrlMenu_GetMenuDefaultItem GUICtrlMenu_GetMenuHeight GUICtrlMenu_GetMenuInfo GUICtrlMenu_GetMenuStyle GUICtrlMenu_GetSystemMenu GUICtrlMenu_InsertMenuItem GUICtrlMenu_InsertMenuItemEx GUICtrlMenu_IsMenu GUICtrlMenu_LoadMenu GUICtrlMenu_MapAccelerator GUICtrlMenu_MenuItemFromPoint GUICtrlMenu_RemoveMenu GUICtrlMenu_SetItemBitmaps GUICtrlMenu_SetItemBmp GUICtrlMenu_SetItemBmpChecked GUICtrlMenu_SetItemBmpUnchecked GUICtrlMenu_SetItemChecked GUICtrlMenu_SetItemData GUICtrlMenu_SetItemDefault GUICtrlMenu_SetItemDisabled GUICtrlMenu_SetItemEnabled GUICtrlMenu_SetItemGrayed GUICtrlMenu_SetItemHighlighted GUICtrlMenu_SetItemID GUICtrlMenu_SetItemInfo GUICtrlMenu_SetItemState GUICtrlMenu_SetItemSubMenu GUICtrlMenu_SetItemText GUICtrlMenu_SetItemType GUICtrlMenu_SetMenu GUICtrlMenu_SetMenuBackground GUICtrlMenu_SetMenuContextHelpID GUICtrlMenu_SetMenuData GUICtrlMenu_SetMenuDefaultItem GUICtrlMenu_SetMenuHeight GUICtrlMenu_SetMenuInfo GUICtrlMenu_SetMenuStyle GUICtrlMenu_TrackPopupMenu GUICtrlMonthCal_Create GUICtrlMonthCal_Destroy GUICtrlMonthCal_GetCalendarBorder GUICtrlMonthCal_GetCalendarCount GUICtrlMonthCal_GetColor GUICtrlMonthCal_GetColorArray GUICtrlMonthCal_GetCurSel GUICtrlMonthCal_GetCurSelStr GUICtrlMonthCal_GetFirstDOW GUICtrlMonthCal_GetFirstDOWStr GUICtrlMonthCal_GetMaxSelCount GUICtrlMonthCal_GetMaxTodayWidth GUICtrlMonthCal_GetMinReqHeight GUICtrlMonthCal_GetMinReqRect GUICtrlMonthCal_GetMinReqRectArray GUICtrlMonthCal_GetMinReqWidth GUICtrlMonthCal_GetMonthDelta GUICtrlMonthCal_GetMonthRange GUICtrlMonthCal_GetMonthRangeMax GUICtrlMonthCal_GetMonthRangeMaxStr GUICtrlMonthCal_GetMonthRangeMin GUICtrlMonthCal_GetMonthRangeMinStr GUICtrlMonthCal_GetMonthRangeSpan GUICtrlMonthCal_GetRange GUICtrlMonthCal_GetRangeMax GUICtrlMonthCal_GetRangeMaxStr GUICtrlMonthCal_GetRangeMin GUICtrlMonthCal_GetRangeMinStr GUICtrlMonthCal_GetSelRange GUICtrlMonthCal_GetSelRangeMax GUICtrlMonthCal_GetSelRangeMaxStr GUICtrlMonthCal_GetSelRangeMin GUICtrlMonthCal_GetSelRangeMinStr GUICtrlMonthCal_GetToday GUICtrlMonthCal_GetTodayStr GUICtrlMonthCal_GetUnicodeFormat GUICtrlMonthCal_HitTest GUICtrlMonthCal_SetCalendarBorder GUICtrlMonthCal_SetColor GUICtrlMonthCal_SetCurSel GUICtrlMonthCal_SetDayState GUICtrlMonthCal_SetFirstDOW GUICtrlMonthCal_SetMaxSelCount GUICtrlMonthCal_SetMonthDelta GUICtrlMonthCal_SetRange GUICtrlMonthCal_SetSelRange GUICtrlMonthCal_SetToday GUICtrlMonthCal_SetUnicodeFormat GUICtrlRebar_AddBand GUICtrlRebar_AddToolBarBand GUICtrlRebar_BeginDrag GUICtrlRebar_Create GUICtrlRebar_DeleteBand GUICtrlRebar_Destroy GUICtrlRebar_DragMove GUICtrlRebar_EndDrag GUICtrlRebar_GetBandBackColor GUICtrlRebar_GetBandBorders GUICtrlRebar_GetBandBordersEx GUICtrlRebar_GetBandChildHandle GUICtrlRebar_GetBandChildSize GUICtrlRebar_GetBandCount GUICtrlRebar_GetBandForeColor GUICtrlRebar_GetBandHeaderSize GUICtrlRebar_GetBandID GUICtrlRebar_GetBandIdealSize GUICtrlRebar_GetBandLength GUICtrlRebar_GetBandLParam GUICtrlRebar_GetBandMargins GUICtrlRebar_GetBandMarginsEx GUICtrlRebar_GetBandRect GUICtrlRebar_GetBandRectEx GUICtrlRebar_GetBandStyle GUICtrlRebar_GetBandStyleBreak GUICtrlRebar_GetBandStyleChildEdge GUICtrlRebar_GetBandStyleFixedBMP GUICtrlRebar_GetBandStyleFixedSize GUICtrlRebar_GetBandStyleGripperAlways GUICtrlRebar_GetBandStyleHidden GUICtrlRebar_GetBandStyleHideTitle GUICtrlRebar_GetBandStyleNoGripper GUICtrlRebar_GetBandStyleTopAlign GUICtrlRebar_GetBandStyleUseChevron GUICtrlRebar_GetBandStyleVariableHeight GUICtrlRebar_GetBandText GUICtrlRebar_GetBarHeight GUICtrlRebar_GetBarInfo GUICtrlRebar_GetBKColor GUICtrlRebar_GetColorScheme GUICtrlRebar_GetRowCount GUICtrlRebar_GetRowHeight GUICtrlRebar_GetTextColor GUICtrlRebar_GetToolTips GUICtrlRebar_GetUnicodeFormat GUICtrlRebar_HitTest GUICtrlRebar_IDToIndex GUICtrlRebar_MaximizeBand GUICtrlRebar_MinimizeBand GUICtrlRebar_MoveBand GUICtrlRebar_SetBandBackColor GUICtrlRebar_SetBandForeColor GUICtrlRebar_SetBandHeaderSize GUICtrlRebar_SetBandID GUICtrlRebar_SetBandIdealSize GUICtrlRebar_SetBandLength GUICtrlRebar_SetBandLParam GUICtrlRebar_SetBandStyle GUICtrlRebar_SetBandStyleBreak GUICtrlRebar_SetBandStyleChildEdge GUICtrlRebar_SetBandStyleFixedBMP GUICtrlRebar_SetBandStyleFixedSize GUICtrlRebar_SetBandStyleGripperAlways GUICtrlRebar_SetBandStyleHidden GUICtrlRebar_SetBandStyleHideTitle GUICtrlRebar_SetBandStyleNoGripper GUICtrlRebar_SetBandStyleTopAlign GUICtrlRebar_SetBandStyleUseChevron GUICtrlRebar_SetBandStyleVariableHeight GUICtrlRebar_SetBandText GUICtrlRebar_SetBarInfo GUICtrlRebar_SetBKColor GUICtrlRebar_SetColorScheme GUICtrlRebar_SetTextColor GUICtrlRebar_SetToolTips GUICtrlRebar_SetUnicodeFormat GUICtrlRebar_ShowBand GUICtrlRichEdit_AppendText GUICtrlRichEdit_AutoDetectURL GUICtrlRichEdit_CanPaste GUICtrlRichEdit_CanPasteSpecial GUICtrlRichEdit_CanRedo GUICtrlRichEdit_CanUndo GUICtrlRichEdit_ChangeFontSize GUICtrlRichEdit_Copy GUICtrlRichEdit_Create GUICtrlRichEdit_Cut GUICtrlRichEdit_Deselect GUICtrlRichEdit_Destroy GUICtrlRichEdit_EmptyUndoBuffer GUICtrlRichEdit_FindText GUICtrlRichEdit_FindTextInRange GUICtrlRichEdit_GetBkColor GUICtrlRichEdit_GetCharAttributes GUICtrlRichEdit_GetCharBkColor GUICtrlRichEdit_GetCharColor GUICtrlRichEdit_GetCharPosFromXY GUICtrlRichEdit_GetCharPosOfNextWord GUICtrlRichEdit_GetCharPosOfPreviousWord GUICtrlRichEdit_GetCharWordBreakInfo GUICtrlRichEdit_GetFirstCharPosOnLine GUICtrlRichEdit_GetFont GUICtrlRichEdit_GetLineCount GUICtrlRichEdit_GetLineLength GUICtrlRichEdit_GetLineNumberFromCharPos GUICtrlRichEdit_GetNextRedo GUICtrlRichEdit_GetNextUndo GUICtrlRichEdit_GetNumberOfFirstVisibleLine GUICtrlRichEdit_GetParaAlignment GUICtrlRichEdit_GetParaAttributes GUICtrlRichEdit_GetParaBorder GUICtrlRichEdit_GetParaIndents GUICtrlRichEdit_GetParaNumbering GUICtrlRichEdit_GetParaShading GUICtrlRichEdit_GetParaSpacing GUICtrlRichEdit_GetParaTabStops GUICtrlRichEdit_GetPasswordChar GUICtrlRichEdit_GetRECT GUICtrlRichEdit_GetScrollPos GUICtrlRichEdit_GetSel GUICtrlRichEdit_GetSelAA GUICtrlRichEdit_GetSelText GUICtrlRichEdit_GetSpaceUnit GUICtrlRichEdit_GetText GUICtrlRichEdit_GetTextInLine GUICtrlRichEdit_GetTextInRange GUICtrlRichEdit_GetTextLength GUICtrlRichEdit_GetVersion GUICtrlRichEdit_GetXYFromCharPos GUICtrlRichEdit_GetZoom GUICtrlRichEdit_GotoCharPos GUICtrlRichEdit_HideSelection GUICtrlRichEdit_InsertText GUICtrlRichEdit_IsModified GUICtrlRichEdit_IsTextSelected GUICtrlRichEdit_Paste GUICtrlRichEdit_PasteSpecial GUICtrlRichEdit_PauseRedraw GUICtrlRichEdit_Redo GUICtrlRichEdit_ReplaceText GUICtrlRichEdit_ResumeRedraw GUICtrlRichEdit_ScrollLineOrPage GUICtrlRichEdit_ScrollLines GUICtrlRichEdit_ScrollToCaret GUICtrlRichEdit_SetBkColor GUICtrlRichEdit_SetCharAttributes GUICtrlRichEdit_SetCharBkColor GUICtrlRichEdit_SetCharColor GUICtrlRichEdit_SetEventMask GUICtrlRichEdit_SetFont GUICtrlRichEdit_SetLimitOnText GUICtrlRichEdit_SetModified GUICtrlRichEdit_SetParaAlignment GUICtrlRichEdit_SetParaAttributes GUICtrlRichEdit_SetParaBorder GUICtrlRichEdit_SetParaIndents GUICtrlRichEdit_SetParaNumbering GUICtrlRichEdit_SetParaShading GUICtrlRichEdit_SetParaSpacing GUICtrlRichEdit_SetParaTabStops GUICtrlRichEdit_SetPasswordChar GUICtrlRichEdit_SetReadOnly GUICtrlRichEdit_SetRECT GUICtrlRichEdit_SetScrollPos GUICtrlRichEdit_SetSel GUICtrlRichEdit_SetSpaceUnit GUICtrlRichEdit_SetTabStops GUICtrlRichEdit_SetText GUICtrlRichEdit_SetUndoLimit GUICtrlRichEdit_SetZoom GUICtrlRichEdit_StreamFromFile GUICtrlRichEdit_StreamFromVar GUICtrlRichEdit_StreamToFile GUICtrlRichEdit_StreamToVar GUICtrlRichEdit_Undo GUICtrlSlider_ClearSel GUICtrlSlider_ClearTics GUICtrlSlider_Create GUICtrlSlider_Destroy GUICtrlSlider_GetBuddy GUICtrlSlider_GetChannelRect GUICtrlSlider_GetChannelRectEx GUICtrlSlider_GetLineSize GUICtrlSlider_GetLogicalTics GUICtrlSlider_GetNumTics GUICtrlSlider_GetPageSize GUICtrlSlider_GetPos GUICtrlSlider_GetRange GUICtrlSlider_GetRangeMax GUICtrlSlider_GetRangeMin GUICtrlSlider_GetSel GUICtrlSlider_GetSelEnd GUICtrlSlider_GetSelStart GUICtrlSlider_GetThumbLength GUICtrlSlider_GetThumbRect GUICtrlSlider_GetThumbRectEx GUICtrlSlider_GetTic GUICtrlSlider_GetTicPos GUICtrlSlider_GetToolTips GUICtrlSlider_GetUnicodeFormat GUICtrlSlider_SetBuddy GUICtrlSlider_SetLineSize GUICtrlSlider_SetPageSize GUICtrlSlider_SetPos GUICtrlSlider_SetRange GUICtrlSlider_SetRangeMax GUICtrlSlider_SetRangeMin GUICtrlSlider_SetSel GUICtrlSlider_SetSelEnd GUICtrlSlider_SetSelStart GUICtrlSlider_SetThumbLength GUICtrlSlider_SetTic GUICtrlSlider_SetTicFreq GUICtrlSlider_SetTipSide GUICtrlSlider_SetToolTips GUICtrlSlider_SetUnicodeFormat GUICtrlStatusBar_Create GUICtrlStatusBar_Destroy GUICtrlStatusBar_EmbedControl GUICtrlStatusBar_GetBorders GUICtrlStatusBar_GetBordersHorz GUICtrlStatusBar_GetBordersRect GUICtrlStatusBar_GetBordersVert GUICtrlStatusBar_GetCount GUICtrlStatusBar_GetHeight GUICtrlStatusBar_GetIcon GUICtrlStatusBar_GetParts GUICtrlStatusBar_GetRect GUICtrlStatusBar_GetRectEx GUICtrlStatusBar_GetText GUICtrlStatusBar_GetTextFlags GUICtrlStatusBar_GetTextLength GUICtrlStatusBar_GetTextLengthEx GUICtrlStatusBar_GetTipText GUICtrlStatusBar_GetUnicodeFormat GUICtrlStatusBar_GetWidth GUICtrlStatusBar_IsSimple GUICtrlStatusBar_Resize GUICtrlStatusBar_SetBkColor GUICtrlStatusBar_SetIcon GUICtrlStatusBar_SetMinHeight GUICtrlStatusBar_SetParts GUICtrlStatusBar_SetSimple GUICtrlStatusBar_SetText GUICtrlStatusBar_SetTipText GUICtrlStatusBar_SetUnicodeFormat GUICtrlStatusBar_ShowHide GUICtrlTab_ActivateTab GUICtrlTab_ClickTab GUICtrlTab_Create GUICtrlTab_DeleteAllItems GUICtrlTab_DeleteItem GUICtrlTab_DeselectAll GUICtrlTab_Destroy GUICtrlTab_FindTab GUICtrlTab_GetCurFocus GUICtrlTab_GetCurSel GUICtrlTab_GetDisplayRect GUICtrlTab_GetDisplayRectEx GUICtrlTab_GetExtendedStyle GUICtrlTab_GetImageList GUICtrlTab_GetItem GUICtrlTab_GetItemCount GUICtrlTab_GetItemImage GUICtrlTab_GetItemParam GUICtrlTab_GetItemRect GUICtrlTab_GetItemRectEx GUICtrlTab_GetItemState GUICtrlTab_GetItemText GUICtrlTab_GetRowCount GUICtrlTab_GetToolTips GUICtrlTab_GetUnicodeFormat GUICtrlTab_HighlightItem GUICtrlTab_HitTest GUICtrlTab_InsertItem GUICtrlTab_RemoveImage GUICtrlTab_SetCurFocus GUICtrlTab_SetCurSel GUICtrlTab_SetExtendedStyle GUICtrlTab_SetImageList GUICtrlTab_SetItem GUICtrlTab_SetItemImage GUICtrlTab_SetItemParam GUICtrlTab_SetItemSize GUICtrlTab_SetItemState GUICtrlTab_SetItemText GUICtrlTab_SetMinTabWidth GUICtrlTab_SetPadding GUICtrlTab_SetToolTips GUICtrlTab_SetUnicodeFormat GUICtrlToolbar_AddBitmap GUICtrlToolbar_AddButton GUICtrlToolbar_AddButtonSep GUICtrlToolbar_AddString GUICtrlToolbar_ButtonCount GUICtrlToolbar_CheckButton GUICtrlToolbar_ClickAccel GUICtrlToolbar_ClickButton GUICtrlToolbar_ClickIndex GUICtrlToolbar_CommandToIndex GUICtrlToolbar_Create GUICtrlToolbar_Customize GUICtrlToolbar_DeleteButton GUICtrlToolbar_Destroy GUICtrlToolbar_EnableButton GUICtrlToolbar_FindToolbar GUICtrlToolbar_GetAnchorHighlight GUICtrlToolbar_GetBitmapFlags GUICtrlToolbar_GetButtonBitmap GUICtrlToolbar_GetButtonInfo GUICtrlToolbar_GetButtonInfoEx GUICtrlToolbar_GetButtonParam GUICtrlToolbar_GetButtonRect GUICtrlToolbar_GetButtonRectEx GUICtrlToolbar_GetButtonSize GUICtrlToolbar_GetButtonState GUICtrlToolbar_GetButtonStyle GUICtrlToolbar_GetButtonText GUICtrlToolbar_GetColorScheme GUICtrlToolbar_GetDisabledImageList GUICtrlToolbar_GetExtendedStyle GUICtrlToolbar_GetHotImageList GUICtrlToolbar_GetHotItem GUICtrlToolbar_GetImageList GUICtrlToolbar_GetInsertMark GUICtrlToolbar_GetInsertMarkColor GUICtrlToolbar_GetMaxSize GUICtrlToolbar_GetMetrics GUICtrlToolbar_GetPadding GUICtrlToolbar_GetRows GUICtrlToolbar_GetString GUICtrlToolbar_GetStyle GUICtrlToolbar_GetStyleAltDrag GUICtrlToolbar_GetStyleCustomErase GUICtrlToolbar_GetStyleFlat GUICtrlToolbar_GetStyleList GUICtrlToolbar_GetStyleRegisterDrop GUICtrlToolbar_GetStyleToolTips GUICtrlToolbar_GetStyleTransparent GUICtrlToolbar_GetStyleWrapable GUICtrlToolbar_GetTextRows GUICtrlToolbar_GetToolTips GUICtrlToolbar_GetUnicodeFormat GUICtrlToolbar_HideButton GUICtrlToolbar_HighlightButton GUICtrlToolbar_HitTest GUICtrlToolbar_IndexToCommand GUICtrlToolbar_InsertButton GUICtrlToolbar_InsertMarkHitTest GUICtrlToolbar_IsButtonChecked GUICtrlToolbar_IsButtonEnabled GUICtrlToolbar_IsButtonHidden GUICtrlToolbar_IsButtonHighlighted GUICtrlToolbar_IsButtonIndeterminate GUICtrlToolbar_IsButtonPressed GUICtrlToolbar_LoadBitmap GUICtrlToolbar_LoadImages GUICtrlToolbar_MapAccelerator GUICtrlToolbar_MoveButton GUICtrlToolbar_PressButton GUICtrlToolbar_SetAnchorHighlight GUICtrlToolbar_SetBitmapSize GUICtrlToolbar_SetButtonBitMap GUICtrlToolbar_SetButtonInfo GUICtrlToolbar_SetButtonInfoEx GUICtrlToolbar_SetButtonParam GUICtrlToolbar_SetButtonSize GUICtrlToolbar_SetButtonState GUICtrlToolbar_SetButtonStyle GUICtrlToolbar_SetButtonText GUICtrlToolbar_SetButtonWidth GUICtrlToolbar_SetCmdID GUICtrlToolbar_SetColorScheme GUICtrlToolbar_SetDisabledImageList GUICtrlToolbar_SetDrawTextFlags GUICtrlToolbar_SetExtendedStyle GUICtrlToolbar_SetHotImageList GUICtrlToolbar_SetHotItem GUICtrlToolbar_SetImageList GUICtrlToolbar_SetIndent GUICtrlToolbar_SetIndeterminate GUICtrlToolbar_SetInsertMark GUICtrlToolbar_SetInsertMarkColor GUICtrlToolbar_SetMaxTextRows GUICtrlToolbar_SetMetrics GUICtrlToolbar_SetPadding GUICtrlToolbar_SetParent GUICtrlToolbar_SetRows GUICtrlToolbar_SetStyle GUICtrlToolbar_SetStyleAltDrag GUICtrlToolbar_SetStyleCustomErase GUICtrlToolbar_SetStyleFlat GUICtrlToolbar_SetStyleList GUICtrlToolbar_SetStyleRegisterDrop GUICtrlToolbar_SetStyleToolTips GUICtrlToolbar_SetStyleTransparent GUICtrlToolbar_SetStyleWrapable GUICtrlToolbar_SetToolTips GUICtrlToolbar_SetUnicodeFormat GUICtrlToolbar_SetWindowTheme GUICtrlTreeView_Add GUICtrlTreeView_AddChild GUICtrlTreeView_AddChildFirst GUICtrlTreeView_AddFirst GUICtrlTreeView_BeginUpdate GUICtrlTreeView_ClickItem GUICtrlTreeView_Create GUICtrlTreeView_CreateDragImage GUICtrlTreeView_CreateSolidBitMap GUICtrlTreeView_Delete GUICtrlTreeView_DeleteAll GUICtrlTreeView_DeleteChildren GUICtrlTreeView_Destroy GUICtrlTreeView_DisplayRect GUICtrlTreeView_DisplayRectEx GUICtrlTreeView_EditText GUICtrlTreeView_EndEdit GUICtrlTreeView_EndUpdate GUICtrlTreeView_EnsureVisible GUICtrlTreeView_Expand GUICtrlTreeView_ExpandedOnce GUICtrlTreeView_FindItem GUICtrlTreeView_FindItemEx GUICtrlTreeView_GetBkColor GUICtrlTreeView_GetBold GUICtrlTreeView_GetChecked GUICtrlTreeView_GetChildCount GUICtrlTreeView_GetChildren GUICtrlTreeView_GetCount GUICtrlTreeView_GetCut GUICtrlTreeView_GetDropTarget GUICtrlTreeView_GetEditControl GUICtrlTreeView_GetExpanded GUICtrlTreeView_GetFirstChild GUICtrlTreeView_GetFirstItem GUICtrlTreeView_GetFirstVisible GUICtrlTreeView_GetFocused GUICtrlTreeView_GetHeight GUICtrlTreeView_GetImageIndex GUICtrlTreeView_GetImageListIconHandle GUICtrlTreeView_GetIndent GUICtrlTreeView_GetInsertMarkColor GUICtrlTreeView_GetISearchString GUICtrlTreeView_GetItemByIndex GUICtrlTreeView_GetItemHandle GUICtrlTreeView_GetItemParam GUICtrlTreeView_GetLastChild GUICtrlTreeView_GetLineColor GUICtrlTreeView_GetNext GUICtrlTreeView_GetNextChild GUICtrlTreeView_GetNextSibling GUICtrlTreeView_GetNextVisible GUICtrlTreeView_GetNormalImageList GUICtrlTreeView_GetParentHandle GUICtrlTreeView_GetParentParam GUICtrlTreeView_GetPrev GUICtrlTreeView_GetPrevChild GUICtrlTreeView_GetPrevSibling GUICtrlTreeView_GetPrevVisible GUICtrlTreeView_GetScrollTime GUICtrlTreeView_GetSelected GUICtrlTreeView_GetSelectedImageIndex GUICtrlTreeView_GetSelection GUICtrlTreeView_GetSiblingCount GUICtrlTreeView_GetState GUICtrlTreeView_GetStateImageIndex GUICtrlTreeView_GetStateImageList GUICtrlTreeView_GetText GUICtrlTreeView_GetTextColor GUICtrlTreeView_GetToolTips GUICtrlTreeView_GetTree GUICtrlTreeView_GetUnicodeFormat GUICtrlTreeView_GetVisible GUICtrlTreeView_GetVisibleCount GUICtrlTreeView_HitTest GUICtrlTreeView_HitTestEx GUICtrlTreeView_HitTestItem GUICtrlTreeView_Index GUICtrlTreeView_InsertItem GUICtrlTreeView_IsFirstItem GUICtrlTreeView_IsParent GUICtrlTreeView_Level GUICtrlTreeView_SelectItem GUICtrlTreeView_SelectItemByIndex GUICtrlTreeView_SetBkColor GUICtrlTreeView_SetBold GUICtrlTreeView_SetChecked GUICtrlTreeView_SetCheckedByIndex GUICtrlTreeView_SetChildren GUICtrlTreeView_SetCut GUICtrlTreeView_SetDropTarget GUICtrlTreeView_SetFocused GUICtrlTreeView_SetHeight GUICtrlTreeView_SetIcon GUICtrlTreeView_SetImageIndex GUICtrlTreeView_SetIndent GUICtrlTreeView_SetInsertMark GUICtrlTreeView_SetInsertMarkColor GUICtrlTreeView_SetItemHeight GUICtrlTreeView_SetItemParam GUICtrlTreeView_SetLineColor GUICtrlTreeView_SetNormalImageList GUICtrlTreeView_SetScrollTime GUICtrlTreeView_SetSelected GUICtrlTreeView_SetSelectedImageIndex GUICtrlTreeView_SetState GUICtrlTreeView_SetStateImageIndex GUICtrlTreeView_SetStateImageList GUICtrlTreeView_SetText GUICtrlTreeView_SetTextColor GUICtrlTreeView_SetToolTips GUICtrlTreeView_SetUnicodeFormat GUICtrlTreeView_Sort GUIImageList_Add GUIImageList_AddBitmap GUIImageList_AddIcon GUIImageList_AddMasked GUIImageList_BeginDrag GUIImageList_Copy GUIImageList_Create GUIImageList_Destroy GUIImageList_DestroyIcon GUIImageList_DragEnter GUIImageList_DragLeave GUIImageList_DragMove GUIImageList_Draw GUIImageList_DrawEx GUIImageList_Duplicate GUIImageList_EndDrag GUIImageList_GetBkColor GUIImageList_GetIcon GUIImageList_GetIconHeight GUIImageList_GetIconSize GUIImageList_GetIconSizeEx GUIImageList_GetIconWidth GUIImageList_GetImageCount GUIImageList_GetImageInfoEx GUIImageList_Remove GUIImageList_ReplaceIcon GUIImageList_SetBkColor GUIImageList_SetIconSize GUIImageList_SetImageCount GUIImageList_Swap GUIScrollBars_EnableScrollBar GUIScrollBars_GetScrollBarInfoEx GUIScrollBars_GetScrollBarRect GUIScrollBars_GetScrollBarRGState GUIScrollBars_GetScrollBarXYLineButton GUIScrollBars_GetScrollBarXYThumbBottom GUIScrollBars_GetScrollBarXYThumbTop GUIScrollBars_GetScrollInfo GUIScrollBars_GetScrollInfoEx GUIScrollBars_GetScrollInfoMax GUIScrollBars_GetScrollInfoMin GUIScrollBars_GetScrollInfoPage GUIScrollBars_GetScrollInfoPos GUIScrollBars_GetScrollInfoTrackPos GUIScrollBars_GetScrollPos GUIScrollBars_GetScrollRange GUIScrollBars_Init GUIScrollBars_ScrollWindow GUIScrollBars_SetScrollInfo GUIScrollBars_SetScrollInfoMax GUIScrollBars_SetScrollInfoMin GUIScrollBars_SetScrollInfoPage GUIScrollBars_SetScrollInfoPos GUIScrollBars_SetScrollRange GUIScrollBars_ShowScrollBar GUIToolTip_Activate GUIToolTip_AddTool GUIToolTip_AdjustRect GUIToolTip_BitsToTTF GUIToolTip_Create GUIToolTip_Deactivate GUIToolTip_DelTool GUIToolTip_Destroy GUIToolTip_EnumTools GUIToolTip_GetBubbleHeight GUIToolTip_GetBubbleSize GUIToolTip_GetBubbleWidth GUIToolTip_GetCurrentTool GUIToolTip_GetDelayTime GUIToolTip_GetMargin GUIToolTip_GetMarginEx GUIToolTip_GetMaxTipWidth GUIToolTip_GetText GUIToolTip_GetTipBkColor GUIToolTip_GetTipTextColor GUIToolTip_GetTitleBitMap GUIToolTip_GetTitleText GUIToolTip_GetToolCount GUIToolTip_GetToolInfo GUIToolTip_HitTest GUIToolTip_NewToolRect GUIToolTip_Pop GUIToolTip_PopUp GUIToolTip_SetDelayTime GUIToolTip_SetMargin GUIToolTip_SetMaxTipWidth GUIToolTip_SetTipBkColor GUIToolTip_SetTipTextColor GUIToolTip_SetTitle GUIToolTip_SetToolInfo GUIToolTip_SetWindowTheme GUIToolTip_ToolExists GUIToolTip_ToolToArray GUIToolTip_TrackActivate GUIToolTip_TrackPosition GUIToolTip_Update GUIToolTip_UpdateTipText HexToString IEAction IEAttach IEBodyReadHTML IEBodyReadText IEBodyWriteHTML IECreate IECreateEmbedded IEDocGetObj IEDocInsertHTML IEDocInsertText IEDocReadHTML IEDocWriteHTML IEErrorNotify IEFormElementCheckBoxSelect IEFormElementGetCollection IEFormElementGetObjByName IEFormElementGetValue IEFormElementOptionSelect IEFormElementRadioSelect IEFormElementSetValue IEFormGetCollection IEFormGetObjByName IEFormImageClick IEFormReset IEFormSubmit IEFrameGetCollection IEFrameGetObjByName IEGetObjById IEGetObjByName IEHeadInsertEventScript IEImgClick IEImgGetCollection IEIsFrameSet IELinkClickByIndex IELinkClickByText IELinkGetCollection IELoadWait IELoadWaitTimeout IENavigate IEPropertyGet IEPropertySet IEQuit IETableGetCollection IETableWriteToArray IETagNameAllGetCollection IETagNameGetCollection IE_Example IE_Introduction IE_VersionInfo INetExplorerCapable INetGetSource INetMail INetSmtpMail IsPressed MathCheckDiv Max MemGlobalAlloc MemGlobalFree MemGlobalLock MemGlobalSize MemGlobalUnlock MemMoveMemory MemVirtualAlloc MemVirtualAllocEx MemVirtualFree MemVirtualFreeEx Min MouseTrap NamedPipes_CallNamedPipe NamedPipes_ConnectNamedPipe NamedPipes_CreateNamedPipe NamedPipes_CreatePipe NamedPipes_DisconnectNamedPipe NamedPipes_GetNamedPipeHandleState NamedPipes_GetNamedPipeInfo NamedPipes_PeekNamedPipe NamedPipes_SetNamedPipeHandleState NamedPipes_TransactNamedPipe NamedPipes_WaitNamedPipe Net_Share_ConnectionEnum Net_Share_FileClose Net_Share_FileEnum Net_Share_FileGetInfo Net_Share_PermStr Net_Share_ResourceStr Net_Share_SessionDel Net_Share_SessionEnum Net_Share_SessionGetInfo Net_Share_ShareAdd Net_Share_ShareCheck Net_Share_ShareDel Net_Share_ShareEnum Net_Share_ShareGetInfo Net_Share_ShareSetInfo Net_Share_StatisticsGetSvr Net_Share_StatisticsGetWrk Now NowCalc NowCalcDate NowDate NowTime PathFull PathGetRelative PathMake PathSplit ProcessGetName ProcessGetPriority Radian ReplaceStringInFile RunDos ScreenCapture_Capture ScreenCapture_CaptureWnd ScreenCapture_SaveImage ScreenCapture_SetBMPFormat ScreenCapture_SetJPGQuality ScreenCapture_SetTIFColorDepth ScreenCapture_SetTIFCompression Security__AdjustTokenPrivileges Security__CreateProcessWithToken Security__DuplicateTokenEx Security__GetAccountSid Security__GetLengthSid Security__GetTokenInformation Security__ImpersonateSelf Security__IsValidSid Security__LookupAccountName Security__LookupAccountSid Security__LookupPrivilegeValue Security__OpenProcessToken Security__OpenThreadToken Security__OpenThreadTokenEx Security__SetPrivilege Security__SetTokenInformation Security__SidToStringSid Security__SidTypeStr Security__StringSidToSid SendMessage SendMessageA SetDate SetTime Singleton SoundClose SoundLength SoundOpen SoundPause SoundPlay SoundPos SoundResume SoundSeek SoundStatus SoundStop SQLite_Changes SQLite_Close SQLite_Display2DResult SQLite_Encode SQLite_ErrCode SQLite_ErrMsg SQLite_Escape SQLite_Exec SQLite_FastEncode SQLite_FastEscape SQLite_FetchData SQLite_FetchNames SQLite_GetTable SQLite_GetTable2d SQLite_LastInsertRowID SQLite_LibVersion SQLite_Open SQLite_Query SQLite_QueryFinalize SQLite_QueryReset SQLite_QuerySingleRow SQLite_SafeMode SQLite_SetTimeout SQLite_Shutdown SQLite_SQLiteExe SQLite_Startup SQLite_TotalChanges StringBetween StringExplode StringInsert StringProper StringRepeat StringTitleCase StringToHex TCPIpToName TempFile TicksToTime Timer_Diff Timer_GetIdleTime Timer_GetTimerID Timer_Init Timer_KillAllTimers Timer_KillTimer Timer_SetTimer TimeToTicks VersionCompare viClose viExecCommand viFindGpib viGpibBusReset viGTL viInteractiveControl viOpen viSetAttribute viSetTimeout WeekNumberISO WinAPI_AbortPath WinAPI_ActivateKeyboardLayout WinAPI_AddClipboardFormatListener WinAPI_AddFontMemResourceEx WinAPI_AddFontResourceEx WinAPI_AddIconOverlay WinAPI_AddIconTransparency WinAPI_AddMRUString WinAPI_AdjustBitmap WinAPI_AdjustTokenPrivileges WinAPI_AdjustWindowRectEx WinAPI_AlphaBlend WinAPI_AngleArc WinAPI_AnimateWindow WinAPI_Arc WinAPI_ArcTo WinAPI_ArrayToStruct WinAPI_AssignProcessToJobObject WinAPI_AssocGetPerceivedType WinAPI_AssocQueryString WinAPI_AttachConsole WinAPI_AttachThreadInput WinAPI_BackupRead WinAPI_BackupReadAbort WinAPI_BackupSeek WinAPI_BackupWrite WinAPI_BackupWriteAbort WinAPI_Beep WinAPI_BeginBufferedPaint WinAPI_BeginDeferWindowPos WinAPI_BeginPaint WinAPI_BeginPath WinAPI_BeginUpdateResource WinAPI_BitBlt WinAPI_BringWindowToTop WinAPI_BroadcastSystemMessage WinAPI_BrowseForFolderDlg WinAPI_BufferedPaintClear WinAPI_BufferedPaintInit WinAPI_BufferedPaintSetAlpha WinAPI_BufferedPaintUnInit WinAPI_CallNextHookEx WinAPI_CallWindowProc WinAPI_CallWindowProcW WinAPI_CascadeWindows WinAPI_ChangeWindowMessageFilterEx WinAPI_CharToOem WinAPI_ChildWindowFromPointEx WinAPI_ClientToScreen WinAPI_ClipCursor WinAPI_CloseDesktop WinAPI_CloseEnhMetaFile WinAPI_CloseFigure WinAPI_CloseHandle WinAPI_CloseThemeData WinAPI_CloseWindow WinAPI_CloseWindowStation WinAPI_CLSIDFromProgID WinAPI_CoInitialize WinAPI_ColorAdjustLuma WinAPI_ColorHLSToRGB WinAPI_ColorRGBToHLS WinAPI_CombineRgn WinAPI_CombineTransform WinAPI_CommandLineToArgv WinAPI_CommDlgExtendedError WinAPI_CommDlgExtendedErrorEx WinAPI_CompareString WinAPI_CompressBitmapBits WinAPI_CompressBuffer WinAPI_ComputeCrc32 WinAPI_ConfirmCredentials WinAPI_CopyBitmap WinAPI_CopyCursor WinAPI_CopyEnhMetaFile WinAPI_CopyFileEx WinAPI_CopyIcon WinAPI_CopyImage WinAPI_CopyRect WinAPI_CopyStruct WinAPI_CoTaskMemAlloc WinAPI_CoTaskMemFree WinAPI_CoTaskMemRealloc WinAPI_CoUninitialize WinAPI_Create32BitHBITMAP WinAPI_Create32BitHICON WinAPI_CreateANDBitmap WinAPI_CreateBitmap WinAPI_CreateBitmapIndirect WinAPI_CreateBrushIndirect WinAPI_CreateBuffer WinAPI_CreateBufferFromStruct WinAPI_CreateCaret WinAPI_CreateColorAdjustment WinAPI_CreateCompatibleBitmap WinAPI_CreateCompatibleBitmapEx WinAPI_CreateCompatibleDC WinAPI_CreateDesktop WinAPI_CreateDIB WinAPI_CreateDIBColorTable WinAPI_CreateDIBitmap WinAPI_CreateDIBSection WinAPI_CreateDirectory WinAPI_CreateDirectoryEx WinAPI_CreateEllipticRgn WinAPI_CreateEmptyIcon WinAPI_CreateEnhMetaFile WinAPI_CreateEvent WinAPI_CreateFile WinAPI_CreateFileEx WinAPI_CreateFileMapping WinAPI_CreateFont WinAPI_CreateFontEx WinAPI_CreateFontIndirect WinAPI_CreateGUID WinAPI_CreateHardLink WinAPI_CreateIcon WinAPI_CreateIconFromResourceEx WinAPI_CreateIconIndirect WinAPI_CreateJobObject WinAPI_CreateMargins WinAPI_CreateMRUList WinAPI_CreateMutex WinAPI_CreateNullRgn WinAPI_CreateNumberFormatInfo WinAPI_CreateObjectID WinAPI_CreatePen WinAPI_CreatePoint WinAPI_CreatePolygonRgn WinAPI_CreateProcess WinAPI_CreateProcessWithToken WinAPI_CreateRect WinAPI_CreateRectEx WinAPI_CreateRectRgn WinAPI_CreateRectRgnIndirect WinAPI_CreateRoundRectRgn WinAPI_CreateSemaphore WinAPI_CreateSize WinAPI_CreateSolidBitmap WinAPI_CreateSolidBrush WinAPI_CreateStreamOnHGlobal WinAPI_CreateString WinAPI_CreateSymbolicLink WinAPI_CreateTransform WinAPI_CreateWindowEx WinAPI_CreateWindowStation WinAPI_DecompressBuffer WinAPI_DecryptFile WinAPI_DeferWindowPos WinAPI_DefineDosDevice WinAPI_DefRawInputProc WinAPI_DefSubclassProc WinAPI_DefWindowProc WinAPI_DefWindowProcW WinAPI_DeleteDC WinAPI_DeleteEnhMetaFile WinAPI_DeleteFile WinAPI_DeleteObject WinAPI_DeleteObjectID WinAPI_DeleteVolumeMountPoint WinAPI_DeregisterShellHookWindow WinAPI_DestroyCaret WinAPI_DestroyCursor WinAPI_DestroyIcon WinAPI_DestroyWindow WinAPI_DeviceIoControl WinAPI_DisplayStruct WinAPI_DllGetVersion WinAPI_DllInstall WinAPI_DllUninstall WinAPI_DPtoLP WinAPI_DragAcceptFiles WinAPI_DragFinish WinAPI_DragQueryFileEx WinAPI_DragQueryPoint WinAPI_DrawAnimatedRects WinAPI_DrawBitmap WinAPI_DrawEdge WinAPI_DrawFocusRect WinAPI_DrawFrameControl WinAPI_DrawIcon WinAPI_DrawIconEx WinAPI_DrawLine WinAPI_DrawShadowText WinAPI_DrawText WinAPI_DrawThemeBackground WinAPI_DrawThemeEdge WinAPI_DrawThemeIcon WinAPI_DrawThemeParentBackground WinAPI_DrawThemeText WinAPI_DrawThemeTextEx WinAPI_DuplicateEncryptionInfoFile WinAPI_DuplicateHandle WinAPI_DuplicateTokenEx WinAPI_DwmDefWindowProc WinAPI_DwmEnableBlurBehindWindow WinAPI_DwmEnableComposition WinAPI_DwmExtendFrameIntoClientArea WinAPI_DwmGetColorizationColor WinAPI_DwmGetColorizationParameters WinAPI_DwmGetWindowAttribute WinAPI_DwmInvalidateIconicBitmaps WinAPI_DwmIsCompositionEnabled WinAPI_DwmQueryThumbnailSourceSize WinAPI_DwmRegisterThumbnail WinAPI_DwmSetColorizationParameters WinAPI_DwmSetIconicLivePreviewBitmap WinAPI_DwmSetIconicThumbnail WinAPI_DwmSetWindowAttribute WinAPI_DwmUnregisterThumbnail WinAPI_DwmUpdateThumbnailProperties WinAPI_DWordToFloat WinAPI_DWordToInt WinAPI_EjectMedia WinAPI_Ellipse WinAPI_EmptyWorkingSet WinAPI_EnableWindow WinAPI_EncryptFile WinAPI_EncryptionDisable WinAPI_EndBufferedPaint WinAPI_EndDeferWindowPos WinAPI_EndPaint WinAPI_EndPath WinAPI_EndUpdateResource WinAPI_EnumChildProcess WinAPI_EnumChildWindows WinAPI_EnumDesktops WinAPI_EnumDesktopWindows WinAPI_EnumDeviceDrivers WinAPI_EnumDisplayDevices WinAPI_EnumDisplayMonitors WinAPI_EnumDisplaySettings WinAPI_EnumDllProc WinAPI_EnumFiles WinAPI_EnumFileStreams WinAPI_EnumFontFamilies WinAPI_EnumHardLinks WinAPI_EnumMRUList WinAPI_EnumPageFiles WinAPI_EnumProcessHandles WinAPI_EnumProcessModules WinAPI_EnumProcessThreads WinAPI_EnumProcessWindows WinAPI_EnumRawInputDevices WinAPI_EnumResourceLanguages WinAPI_EnumResourceNames WinAPI_EnumResourceTypes WinAPI_EnumSystemGeoID WinAPI_EnumSystemLocales WinAPI_EnumUILanguages WinAPI_EnumWindows WinAPI_EnumWindowsPopup WinAPI_EnumWindowStations WinAPI_EnumWindowsTop WinAPI_EqualMemory WinAPI_EqualRect WinAPI_EqualRgn WinAPI_ExcludeClipRect WinAPI_ExpandEnvironmentStrings WinAPI_ExtCreatePen WinAPI_ExtCreateRegion WinAPI_ExtFloodFill WinAPI_ExtractIcon WinAPI_ExtractIconEx WinAPI_ExtSelectClipRgn WinAPI_FatalAppExit WinAPI_FatalExit WinAPI_FileEncryptionStatus WinAPI_FileExists WinAPI_FileIconInit WinAPI_FileInUse WinAPI_FillMemory WinAPI_FillPath WinAPI_FillRect WinAPI_FillRgn WinAPI_FindClose WinAPI_FindCloseChangeNotification WinAPI_FindExecutable WinAPI_FindFirstChangeNotification WinAPI_FindFirstFile WinAPI_FindFirstFileName WinAPI_FindFirstStream WinAPI_FindNextChangeNotification WinAPI_FindNextFile WinAPI_FindNextFileName WinAPI_FindNextStream WinAPI_FindResource WinAPI_FindResourceEx WinAPI_FindTextDlg WinAPI_FindWindow WinAPI_FlashWindow WinAPI_FlashWindowEx WinAPI_FlattenPath WinAPI_FloatToDWord WinAPI_FloatToInt WinAPI_FlushFileBuffers WinAPI_FlushFRBuffer WinAPI_FlushViewOfFile WinAPI_FormatDriveDlg WinAPI_FormatMessage WinAPI_FrameRect WinAPI_FrameRgn WinAPI_FreeLibrary WinAPI_FreeMemory WinAPI_FreeMRUList WinAPI_FreeResource WinAPI_GdiComment WinAPI_GetActiveWindow WinAPI_GetAllUsersProfileDirectory WinAPI_GetAncestor WinAPI_GetApplicationRestartSettings WinAPI_GetArcDirection WinAPI_GetAsyncKeyState WinAPI_GetBinaryType WinAPI_GetBitmapBits WinAPI_GetBitmapDimension WinAPI_GetBitmapDimensionEx WinAPI_GetBkColor WinAPI_GetBkMode WinAPI_GetBoundsRect WinAPI_GetBrushOrg WinAPI_GetBufferedPaintBits WinAPI_GetBufferedPaintDC WinAPI_GetBufferedPaintTargetDC WinAPI_GetBufferedPaintTargetRect WinAPI_GetBValue WinAPI_GetCaretBlinkTime WinAPI_GetCaretPos WinAPI_GetCDType WinAPI_GetClassInfoEx WinAPI_GetClassLongEx WinAPI_GetClassName WinAPI_GetClientHeight WinAPI_GetClientRect WinAPI_GetClientWidth WinAPI_GetClipboardSequenceNumber WinAPI_GetClipBox WinAPI_GetClipCursor WinAPI_GetClipRgn WinAPI_GetColorAdjustment WinAPI_GetCompressedFileSize WinAPI_GetCompression WinAPI_GetConnectedDlg WinAPI_GetCurrentDirectory WinAPI_GetCurrentHwProfile WinAPI_GetCurrentObject WinAPI_GetCurrentPosition WinAPI_GetCurrentProcess WinAPI_GetCurrentProcessExplicitAppUserModelID WinAPI_GetCurrentProcessID WinAPI_GetCurrentThemeName WinAPI_GetCurrentThread WinAPI_GetCurrentThreadId WinAPI_GetCursor WinAPI_GetCursorInfo WinAPI_GetDateFormat WinAPI_GetDC WinAPI_GetDCEx WinAPI_GetDefaultPrinter WinAPI_GetDefaultUserProfileDirectory WinAPI_GetDesktopWindow WinAPI_GetDeviceCaps WinAPI_GetDeviceDriverBaseName WinAPI_GetDeviceDriverFileName WinAPI_GetDeviceGammaRamp WinAPI_GetDIBColorTable WinAPI_GetDIBits WinAPI_GetDiskFreeSpaceEx WinAPI_GetDlgCtrlID WinAPI_GetDlgItem WinAPI_GetDllDirectory WinAPI_GetDriveBusType WinAPI_GetDriveGeometryEx WinAPI_GetDriveNumber WinAPI_GetDriveType WinAPI_GetDurationFormat WinAPI_GetEffectiveClientRect WinAPI_GetEnhMetaFile WinAPI_GetEnhMetaFileBits WinAPI_GetEnhMetaFileDescription WinAPI_GetEnhMetaFileDimension WinAPI_GetEnhMetaFileHeader WinAPI_GetErrorMessage WinAPI_GetErrorMode WinAPI_GetExitCodeProcess WinAPI_GetExtended WinAPI_GetFileAttributes WinAPI_GetFileID WinAPI_GetFileInformationByHandle WinAPI_GetFileInformationByHandleEx WinAPI_GetFilePointerEx WinAPI_GetFileSizeEx WinAPI_GetFileSizeOnDisk WinAPI_GetFileTitle WinAPI_GetFileType WinAPI_GetFileVersionInfo WinAPI_GetFinalPathNameByHandle WinAPI_GetFinalPathNameByHandleEx WinAPI_GetFocus WinAPI_GetFontMemoryResourceInfo WinAPI_GetFontName WinAPI_GetFontResourceInfo WinAPI_GetForegroundWindow WinAPI_GetFRBuffer WinAPI_GetFullPathName WinAPI_GetGeoInfo WinAPI_GetGlyphOutline WinAPI_GetGraphicsMode WinAPI_GetGuiResources WinAPI_GetGUIThreadInfo WinAPI_GetGValue WinAPI_GetHandleInformation WinAPI_GetHGlobalFromStream WinAPI_GetIconDimension WinAPI_GetIconInfo WinAPI_GetIconInfoEx WinAPI_GetIdleTime WinAPI_GetKeyboardLayout WinAPI_GetKeyboardLayoutList WinAPI_GetKeyboardState WinAPI_GetKeyboardType WinAPI_GetKeyNameText WinAPI_GetKeyState WinAPI_GetLastActivePopup WinAPI_GetLastError WinAPI_GetLastErrorMessage WinAPI_GetLayeredWindowAttributes WinAPI_GetLocaleInfo WinAPI_GetLogicalDrives WinAPI_GetMapMode WinAPI_GetMemorySize WinAPI_GetMessageExtraInfo WinAPI_GetModuleFileNameEx WinAPI_GetModuleHandle WinAPI_GetModuleHandleEx WinAPI_GetModuleInformation WinAPI_GetMonitorInfo WinAPI_GetMousePos WinAPI_GetMousePosX WinAPI_GetMousePosY WinAPI_GetMUILanguage WinAPI_GetNumberFormat WinAPI_GetObject WinAPI_GetObjectID WinAPI_GetObjectInfoByHandle WinAPI_GetObjectNameByHandle WinAPI_GetObjectType WinAPI_GetOpenFileName WinAPI_GetOutlineTextMetrics WinAPI_GetOverlappedResult WinAPI_GetParent WinAPI_GetParentProcess WinAPI_GetPerformanceInfo WinAPI_GetPEType WinAPI_GetPhysicallyInstalledSystemMemory WinAPI_GetPixel WinAPI_GetPolyFillMode WinAPI_GetPosFromRect WinAPI_GetPriorityClass WinAPI_GetProcAddress WinAPI_GetProcessAffinityMask WinAPI_GetProcessCommandLine WinAPI_GetProcessFileName WinAPI_GetProcessHandleCount WinAPI_GetProcessID WinAPI_GetProcessIoCounters WinAPI_GetProcessMemoryInfo WinAPI_GetProcessName WinAPI_GetProcessShutdownParameters WinAPI_GetProcessTimes WinAPI_GetProcessUser WinAPI_GetProcessWindowStation WinAPI_GetProcessWorkingDirectory WinAPI_GetProfilesDirectory WinAPI_GetPwrCapabilities WinAPI_GetRawInputBuffer WinAPI_GetRawInputBufferLength WinAPI_GetRawInputData WinAPI_GetRawInputDeviceInfo WinAPI_GetRegionData WinAPI_GetRegisteredRawInputDevices WinAPI_GetRegKeyNameByHandle WinAPI_GetRgnBox WinAPI_GetROP2 WinAPI_GetRValue WinAPI_GetSaveFileName WinAPI_GetShellWindow WinAPI_GetStartupInfo WinAPI_GetStdHandle WinAPI_GetStockObject WinAPI_GetStretchBltMode WinAPI_GetString WinAPI_GetSysColor WinAPI_GetSysColorBrush WinAPI_GetSystemDefaultLangID WinAPI_GetSystemDefaultLCID WinAPI_GetSystemDefaultUILanguage WinAPI_GetSystemDEPPolicy WinAPI_GetSystemInfo WinAPI_GetSystemMetrics WinAPI_GetSystemPowerStatus WinAPI_GetSystemTimes WinAPI_GetSystemWow64Directory WinAPI_GetTabbedTextExtent WinAPI_GetTempFileName WinAPI_GetTextAlign WinAPI_GetTextCharacterExtra WinAPI_GetTextColor WinAPI_GetTextExtentPoint32 WinAPI_GetTextFace WinAPI_GetTextMetrics WinAPI_GetThemeAppProperties WinAPI_GetThemeBackgroundContentRect WinAPI_GetThemeBackgroundExtent WinAPI_GetThemeBackgroundRegion WinAPI_GetThemeBitmap WinAPI_GetThemeBool WinAPI_GetThemeColor WinAPI_GetThemeDocumentationProperty WinAPI_GetThemeEnumValue WinAPI_GetThemeFilename WinAPI_GetThemeFont WinAPI_GetThemeInt WinAPI_GetThemeMargins WinAPI_GetThemeMetric WinAPI_GetThemePartSize WinAPI_GetThemePosition WinAPI_GetThemePropertyOrigin WinAPI_GetThemeRect WinAPI_GetThemeString WinAPI_GetThemeSysBool WinAPI_GetThemeSysColor WinAPI_GetThemeSysColorBrush WinAPI_GetThemeSysFont WinAPI_GetThemeSysInt WinAPI_GetThemeSysSize WinAPI_GetThemeSysString WinAPI_GetThemeTextExtent WinAPI_GetThemeTextMetrics WinAPI_GetThemeTransitionDuration WinAPI_GetThreadDesktop WinAPI_GetThreadErrorMode WinAPI_GetThreadLocale WinAPI_GetThreadUILanguage WinAPI_GetTickCount WinAPI_GetTickCount64 WinAPI_GetTimeFormat WinAPI_GetTopWindow WinAPI_GetUDFColorMode WinAPI_GetUpdateRect WinAPI_GetUpdateRgn WinAPI_GetUserDefaultLangID WinAPI_GetUserDefaultLCID WinAPI_GetUserDefaultUILanguage WinAPI_GetUserGeoID WinAPI_GetUserObjectInformation WinAPI_GetVersion WinAPI_GetVersionEx WinAPI_GetVolumeInformation WinAPI_GetVolumeInformationByHandle WinAPI_GetVolumeNameForVolumeMountPoint WinAPI_GetWindow WinAPI_GetWindowDC WinAPI_GetWindowDisplayAffinity WinAPI_GetWindowExt WinAPI_GetWindowFileName WinAPI_GetWindowHeight WinAPI_GetWindowInfo WinAPI_GetWindowLong WinAPI_GetWindowOrg WinAPI_GetWindowPlacement WinAPI_GetWindowRect WinAPI_GetWindowRgn WinAPI_GetWindowRgnBox WinAPI_GetWindowSubclass WinAPI_GetWindowText WinAPI_GetWindowTheme WinAPI_GetWindowThreadProcessId WinAPI_GetWindowWidth WinAPI_GetWorkArea WinAPI_GetWorldTransform WinAPI_GetXYFromPoint WinAPI_GlobalMemoryStatus WinAPI_GradientFill WinAPI_GUIDFromString WinAPI_GUIDFromStringEx WinAPI_HashData WinAPI_HashString WinAPI_HiByte WinAPI_HideCaret WinAPI_HiDWord WinAPI_HiWord WinAPI_InflateRect WinAPI_InitMUILanguage WinAPI_InProcess WinAPI_IntersectClipRect WinAPI_IntersectRect WinAPI_IntToDWord WinAPI_IntToFloat WinAPI_InvalidateRect WinAPI_InvalidateRgn WinAPI_InvertANDBitmap WinAPI_InvertColor WinAPI_InvertRect WinAPI_InvertRgn WinAPI_IOCTL WinAPI_IsAlphaBitmap WinAPI_IsBadCodePtr WinAPI_IsBadReadPtr WinAPI_IsBadStringPtr WinAPI_IsBadWritePtr WinAPI_IsChild WinAPI_IsClassName WinAPI_IsDoorOpen WinAPI_IsElevated WinAPI_IsHungAppWindow WinAPI_IsIconic WinAPI_IsInternetConnected WinAPI_IsLoadKBLayout WinAPI_IsMemory WinAPI_IsNameInExpression WinAPI_IsNetworkAlive WinAPI_IsPathShared WinAPI_IsProcessInJob WinAPI_IsProcessorFeaturePresent WinAPI_IsRectEmpty WinAPI_IsThemeActive WinAPI_IsThemeBackgroundPartiallyTransparent WinAPI_IsThemePartDefined WinAPI_IsValidLocale WinAPI_IsWindow WinAPI_IsWindowEnabled WinAPI_IsWindowUnicode WinAPI_IsWindowVisible WinAPI_IsWow64Process WinAPI_IsWritable WinAPI_IsZoomed WinAPI_Keybd_Event WinAPI_KillTimer WinAPI_LineDDA WinAPI_LineTo WinAPI_LoadBitmap WinAPI_LoadCursor WinAPI_LoadCursorFromFile WinAPI_LoadIcon WinAPI_LoadIconMetric WinAPI_LoadIconWithScaleDown WinAPI_LoadImage WinAPI_LoadIndirectString WinAPI_LoadKeyboardLayout WinAPI_LoadLibrary WinAPI_LoadLibraryEx WinAPI_LoadMedia WinAPI_LoadResource WinAPI_LoadShell32Icon WinAPI_LoadString WinAPI_LoadStringEx WinAPI_LoByte WinAPI_LocalFree WinAPI_LockDevice WinAPI_LockFile WinAPI_LockResource WinAPI_LockWindowUpdate WinAPI_LockWorkStation WinAPI_LoDWord WinAPI_LongMid WinAPI_LookupIconIdFromDirectoryEx WinAPI_LoWord WinAPI_LPtoDP WinAPI_MAKELANGID WinAPI_MAKELCID WinAPI_MakeLong WinAPI_MakeQWord WinAPI_MakeWord WinAPI_MapViewOfFile WinAPI_MapVirtualKey WinAPI_MaskBlt WinAPI_MessageBeep WinAPI_MessageBoxCheck WinAPI_MessageBoxIndirect WinAPI_MirrorIcon WinAPI_ModifyWorldTransform WinAPI_MonitorFromPoint WinAPI_MonitorFromRect WinAPI_MonitorFromWindow WinAPI_Mouse_Event WinAPI_MoveFileEx WinAPI_MoveMemory WinAPI_MoveTo WinAPI_MoveToEx WinAPI_MoveWindow WinAPI_MsgBox WinAPI_MulDiv WinAPI_MultiByteToWideChar WinAPI_MultiByteToWideCharEx WinAPI_NtStatusToDosError WinAPI_OemToChar WinAPI_OffsetClipRgn WinAPI_OffsetPoints WinAPI_OffsetRect WinAPI_OffsetRgn WinAPI_OffsetWindowOrg WinAPI_OpenDesktop WinAPI_OpenFileById WinAPI_OpenFileDlg WinAPI_OpenFileMapping WinAPI_OpenIcon WinAPI_OpenInputDesktop WinAPI_OpenJobObject WinAPI_OpenMutex WinAPI_OpenProcess WinAPI_OpenProcessToken WinAPI_OpenSemaphore WinAPI_OpenThemeData WinAPI_OpenWindowStation WinAPI_PageSetupDlg WinAPI_PaintDesktop WinAPI_PaintRgn WinAPI_ParseURL WinAPI_ParseUserName WinAPI_PatBlt WinAPI_PathAddBackslash WinAPI_PathAddExtension WinAPI_PathAppend WinAPI_PathBuildRoot WinAPI_PathCanonicalize WinAPI_PathCommonPrefix WinAPI_PathCompactPath WinAPI_PathCompactPathEx WinAPI_PathCreateFromUrl WinAPI_PathFindExtension WinAPI_PathFindFileName WinAPI_PathFindNextComponent WinAPI_PathFindOnPath WinAPI_PathGetArgs WinAPI_PathGetCharType WinAPI_PathGetDriveNumber WinAPI_PathIsContentType WinAPI_PathIsDirectory WinAPI_PathIsDirectoryEmpty WinAPI_PathIsExe WinAPI_PathIsFileSpec WinAPI_PathIsLFNFileSpec WinAPI_PathIsRelative WinAPI_PathIsRoot WinAPI_PathIsSameRoot WinAPI_PathIsSystemFolder WinAPI_PathIsUNC WinAPI_PathIsUNCServer WinAPI_PathIsUNCServerShare WinAPI_PathMakeSystemFolder WinAPI_PathMatchSpec WinAPI_PathParseIconLocation WinAPI_PathRelativePathTo WinAPI_PathRemoveArgs WinAPI_PathRemoveBackslash WinAPI_PathRemoveExtension WinAPI_PathRemoveFileSpec WinAPI_PathRenameExtension WinAPI_PathSearchAndQualify WinAPI_PathSkipRoot WinAPI_PathStripPath WinAPI_PathStripToRoot WinAPI_PathToRegion WinAPI_PathUndecorate WinAPI_PathUnExpandEnvStrings WinAPI_PathUnmakeSystemFolder WinAPI_PathUnquoteSpaces WinAPI_PathYetAnotherMakeUniqueName WinAPI_PickIconDlg WinAPI_PlayEnhMetaFile WinAPI_PlaySound WinAPI_PlgBlt WinAPI_PointFromRect WinAPI_PolyBezier WinAPI_PolyBezierTo WinAPI_PolyDraw WinAPI_Polygon WinAPI_PostMessage WinAPI_PrimaryLangId WinAPI_PrintDlg WinAPI_PrintDlgEx WinAPI_PrintWindow WinAPI_ProgIDFromCLSID WinAPI_PtInRect WinAPI_PtInRectEx WinAPI_PtInRegion WinAPI_PtVisible WinAPI_QueryDosDevice WinAPI_QueryInformationJobObject WinAPI_QueryPerformanceCounter WinAPI_QueryPerformanceFrequency WinAPI_RadialGradientFill WinAPI_ReadDirectoryChanges WinAPI_ReadFile WinAPI_ReadProcessMemory WinAPI_Rectangle WinAPI_RectInRegion WinAPI_RectIsEmpty WinAPI_RectVisible WinAPI_RedrawWindow WinAPI_RegCloseKey WinAPI_RegConnectRegistry WinAPI_RegCopyTree WinAPI_RegCopyTreeEx WinAPI_RegCreateKey WinAPI_RegDeleteEmptyKey WinAPI_RegDeleteKey WinAPI_RegDeleteKeyValue WinAPI_RegDeleteTree WinAPI_RegDeleteTreeEx WinAPI_RegDeleteValue WinAPI_RegDisableReflectionKey WinAPI_RegDuplicateHKey WinAPI_RegEnableReflectionKey WinAPI_RegEnumKey WinAPI_RegEnumValue WinAPI_RegFlushKey WinAPI_RegisterApplicationRestart WinAPI_RegisterClass WinAPI_RegisterClassEx WinAPI_RegisterHotKey WinAPI_RegisterPowerSettingNotification WinAPI_RegisterRawInputDevices WinAPI_RegisterShellHookWindow WinAPI_RegisterWindowMessage WinAPI_RegLoadMUIString WinAPI_RegNotifyChangeKeyValue WinAPI_RegOpenKey WinAPI_RegQueryInfoKey WinAPI_RegQueryLastWriteTime WinAPI_RegQueryMultipleValues WinAPI_RegQueryReflectionKey WinAPI_RegQueryValue WinAPI_RegRestoreKey WinAPI_RegSaveKey WinAPI_RegSetValue WinAPI_ReleaseCapture WinAPI_ReleaseDC WinAPI_ReleaseMutex WinAPI_ReleaseSemaphore WinAPI_ReleaseStream WinAPI_RemoveClipboardFormatListener WinAPI_RemoveDirectory WinAPI_RemoveFontMemResourceEx WinAPI_RemoveFontResourceEx WinAPI_RemoveWindowSubclass WinAPI_ReOpenFile WinAPI_ReplaceFile WinAPI_ReplaceTextDlg WinAPI_ResetEvent WinAPI_RestartDlg WinAPI_RestoreDC WinAPI_RGB WinAPI_RotatePoints WinAPI_RoundRect WinAPI_SaveDC WinAPI_SaveFileDlg WinAPI_SaveHBITMAPToFile WinAPI_SaveHICONToFile WinAPI_ScaleWindowExt WinAPI_ScreenToClient WinAPI_SearchPath WinAPI_SelectClipPath WinAPI_SelectClipRgn WinAPI_SelectObject WinAPI_SendMessageTimeout WinAPI_SetActiveWindow WinAPI_SetArcDirection WinAPI_SetBitmapBits WinAPI_SetBitmapDimensionEx WinAPI_SetBkColor WinAPI_SetBkMode WinAPI_SetBoundsRect WinAPI_SetBrushOrg WinAPI_SetCapture WinAPI_SetCaretBlinkTime WinAPI_SetCaretPos WinAPI_SetClassLongEx WinAPI_SetColorAdjustment WinAPI_SetCompression WinAPI_SetCurrentDirectory WinAPI_SetCurrentProcessExplicitAppUserModelID WinAPI_SetCursor WinAPI_SetDCBrushColor WinAPI_SetDCPenColor WinAPI_SetDefaultPrinter WinAPI_SetDeviceGammaRamp WinAPI_SetDIBColorTable WinAPI_SetDIBits WinAPI_SetDIBitsToDevice WinAPI_SetDllDirectory WinAPI_SetEndOfFile WinAPI_SetEnhMetaFileBits WinAPI_SetErrorMode WinAPI_SetEvent WinAPI_SetFileAttributes WinAPI_SetFileInformationByHandleEx WinAPI_SetFilePointer WinAPI_SetFilePointerEx WinAPI_SetFileShortName WinAPI_SetFileValidData WinAPI_SetFocus WinAPI_SetFont WinAPI_SetForegroundWindow WinAPI_SetFRBuffer WinAPI_SetGraphicsMode WinAPI_SetHandleInformation WinAPI_SetInformationJobObject WinAPI_SetKeyboardLayout WinAPI_SetKeyboardState WinAPI_SetLastError WinAPI_SetLayeredWindowAttributes WinAPI_SetLocaleInfo WinAPI_SetMapMode WinAPI_SetMessageExtraInfo WinAPI_SetParent WinAPI_SetPixel WinAPI_SetPolyFillMode WinAPI_SetPriorityClass WinAPI_SetProcessAffinityMask WinAPI_SetProcessShutdownParameters WinAPI_SetProcessWindowStation WinAPI_SetRectRgn WinAPI_SetROP2 WinAPI_SetSearchPathMode WinAPI_SetStretchBltMode WinAPI_SetSysColors WinAPI_SetSystemCursor WinAPI_SetTextAlign WinAPI_SetTextCharacterExtra WinAPI_SetTextColor WinAPI_SetTextJustification WinAPI_SetThemeAppProperties WinAPI_SetThreadDesktop WinAPI_SetThreadErrorMode WinAPI_SetThreadExecutionState WinAPI_SetThreadLocale WinAPI_SetThreadUILanguage WinAPI_SetTimer WinAPI_SetUDFColorMode WinAPI_SetUserGeoID WinAPI_SetUserObjectInformation WinAPI_SetVolumeMountPoint WinAPI_SetWindowDisplayAffinity WinAPI_SetWindowExt WinAPI_SetWindowLong WinAPI_SetWindowOrg WinAPI_SetWindowPlacement WinAPI_SetWindowPos WinAPI_SetWindowRgn WinAPI_SetWindowsHookEx WinAPI_SetWindowSubclass WinAPI_SetWindowText WinAPI_SetWindowTheme WinAPI_SetWinEventHook WinAPI_SetWorldTransform WinAPI_SfcIsFileProtected WinAPI_SfcIsKeyProtected WinAPI_ShellAboutDlg WinAPI_ShellAddToRecentDocs WinAPI_ShellChangeNotify WinAPI_ShellChangeNotifyDeregister WinAPI_ShellChangeNotifyRegister WinAPI_ShellCreateDirectory WinAPI_ShellEmptyRecycleBin WinAPI_ShellExecute WinAPI_ShellExecuteEx WinAPI_ShellExtractAssociatedIcon WinAPI_ShellExtractIcon WinAPI_ShellFileOperation WinAPI_ShellFlushSFCache WinAPI_ShellGetFileInfo WinAPI_ShellGetIconOverlayIndex WinAPI_ShellGetImageList WinAPI_ShellGetKnownFolderIDList WinAPI_ShellGetKnownFolderPath WinAPI_ShellGetLocalizedName WinAPI_ShellGetPathFromIDList WinAPI_ShellGetSetFolderCustomSettings WinAPI_ShellGetSettings WinAPI_ShellGetSpecialFolderLocation WinAPI_ShellGetSpecialFolderPath WinAPI_ShellGetStockIconInfo WinAPI_ShellILCreateFromPath WinAPI_ShellNotifyIcon WinAPI_ShellNotifyIconGetRect WinAPI_ShellObjectProperties WinAPI_ShellOpenFolderAndSelectItems WinAPI_ShellOpenWithDlg WinAPI_ShellQueryRecycleBin WinAPI_ShellQueryUserNotificationState WinAPI_ShellRemoveLocalizedName WinAPI_ShellRestricted WinAPI_ShellSetKnownFolderPath WinAPI_ShellSetLocalizedName WinAPI_ShellSetSettings WinAPI_ShellStartNetConnectionDlg WinAPI_ShellUpdateImage WinAPI_ShellUserAuthenticationDlg WinAPI_ShellUserAuthenticationDlgEx WinAPI_ShortToWord WinAPI_ShowCaret WinAPI_ShowCursor WinAPI_ShowError WinAPI_ShowLastError WinAPI_ShowMsg WinAPI_ShowOwnedPopups WinAPI_ShowWindow WinAPI_ShutdownBlockReasonCreate WinAPI_ShutdownBlockReasonDestroy WinAPI_ShutdownBlockReasonQuery WinAPI_SizeOfResource WinAPI_StretchBlt WinAPI_StretchDIBits WinAPI_StrFormatByteSize WinAPI_StrFormatByteSizeEx WinAPI_StrFormatKBSize WinAPI_StrFromTimeInterval WinAPI_StringFromGUID WinAPI_StringLenA WinAPI_StringLenW WinAPI_StrLen WinAPI_StrokeAndFillPath WinAPI_StrokePath WinAPI_StructToArray WinAPI_SubLangId WinAPI_SubtractRect WinAPI_SwapDWord WinAPI_SwapQWord WinAPI_SwapWord WinAPI_SwitchColor WinAPI_SwitchDesktop WinAPI_SwitchToThisWindow WinAPI_SystemParametersInfo WinAPI_TabbedTextOut WinAPI_TerminateJobObject WinAPI_TerminateProcess WinAPI_TextOut WinAPI_TileWindows WinAPI_TrackMouseEvent WinAPI_TransparentBlt WinAPI_TwipsPerPixelX WinAPI_TwipsPerPixelY WinAPI_UnhookWindowsHookEx WinAPI_UnhookWinEvent WinAPI_UnionRect WinAPI_UnionStruct WinAPI_UniqueHardwareID WinAPI_UnloadKeyboardLayout WinAPI_UnlockFile WinAPI_UnmapViewOfFile WinAPI_UnregisterApplicationRestart WinAPI_UnregisterClass WinAPI_UnregisterHotKey WinAPI_UnregisterPowerSettingNotification WinAPI_UpdateLayeredWindow WinAPI_UpdateLayeredWindowEx WinAPI_UpdateLayeredWindowIndirect WinAPI_UpdateResource WinAPI_UpdateWindow WinAPI_UrlApplyScheme WinAPI_UrlCanonicalize WinAPI_UrlCombine WinAPI_UrlCompare WinAPI_UrlCreateFromPath WinAPI_UrlFixup WinAPI_UrlGetPart WinAPI_UrlHash WinAPI_UrlIs WinAPI_UserHandleGrantAccess WinAPI_ValidateRect WinAPI_ValidateRgn WinAPI_VerQueryRoot WinAPI_VerQueryValue WinAPI_VerQueryValueEx WinAPI_WaitForInputIdle WinAPI_WaitForMultipleObjects WinAPI_WaitForSingleObject WinAPI_WideCharToMultiByte WinAPI_WidenPath WinAPI_WindowFromDC WinAPI_WindowFromPoint WinAPI_WordToShort WinAPI_Wow64EnableWow64FsRedirection WinAPI_WriteConsole WinAPI_WriteFile WinAPI_WriteProcessMemory WinAPI_ZeroMemory WinNet_AddConnection WinNet_AddConnection2 WinNet_AddConnection3 WinNet_CancelConnection WinNet_CancelConnection2 WinNet_CloseEnum WinNet_ConnectionDialog WinNet_ConnectionDialog1 WinNet_DisconnectDialog WinNet_DisconnectDialog1 WinNet_EnumResource WinNet_GetConnection WinNet_GetConnectionPerformance WinNet_GetLastError WinNet_GetNetworkInformation WinNet_GetProviderName WinNet_GetResourceInformation WinNet_GetResourceParent WinNet_GetUniversalName WinNet_GetUser WinNet_OpenEnum WinNet_RestoreConnection WinNet_UseConnection Word_Create Word_DocAdd Word_DocAttach Word_DocClose Word_DocExport Word_DocFind Word_DocFindReplace Word_DocGet Word_DocLinkAdd Word_DocLinkGet Word_DocOpen Word_DocPictureAdd Word_DocPrint Word_DocRangeSet Word_DocSave Word_DocSaveAs Word_DocTableRead Word_DocTableWrite Word_Quit\",I={\nv:[e.C(\";\",\"$\",{r:0}),e.C(\"#cs\",\"#ce\"),e.C(\"#comments-start\",\"#comments-end\")]},n={cN:\"variable\",b:\"\\\\$[A-z0-9_]+\"},l={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},o={v:[e.BNM,e.CNM]},a={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"include include-once NoTrayIcon OnAutoItStartRegister RequireAdmin pragma Au3Stripper_Ignore_Funcs Au3Stripper_Ignore_Variables Au3Stripper_Off Au3Stripper_On Au3Stripper_Parameters AutoIt3Wrapper_Add_Constants AutoIt3Wrapper_Au3Check_Parameters AutoIt3Wrapper_Au3Check_Stop_OnWarning AutoIt3Wrapper_Aut2Exe AutoIt3Wrapper_AutoIt3 AutoIt3Wrapper_AutoIt3Dir AutoIt3Wrapper_Change2CUI AutoIt3Wrapper_Compile_Both AutoIt3Wrapper_Compression AutoIt3Wrapper_EndIf AutoIt3Wrapper_Icon AutoIt3Wrapper_If_Compile AutoIt3Wrapper_If_Run AutoIt3Wrapper_Jump_To_First_Error AutoIt3Wrapper_OutFile AutoIt3Wrapper_OutFile_Type AutoIt3Wrapper_OutFile_X64 AutoIt3Wrapper_PlugIn_Funcs AutoIt3Wrapper_Res_Comment Autoit3Wrapper_Res_Compatibility AutoIt3Wrapper_Res_Description AutoIt3Wrapper_Res_Field AutoIt3Wrapper_Res_File_Add AutoIt3Wrapper_Res_FileVersion AutoIt3Wrapper_Res_FileVersion_AutoIncrement AutoIt3Wrapper_Res_Icon_Add AutoIt3Wrapper_Res_Language AutoIt3Wrapper_Res_LegalCopyright AutoIt3Wrapper_Res_ProductVersion AutoIt3Wrapper_Res_requestedExecutionLevel AutoIt3Wrapper_Res_SaveSource AutoIt3Wrapper_Run_After AutoIt3Wrapper_Run_Au3Check AutoIt3Wrapper_Run_Au3Stripper AutoIt3Wrapper_Run_Before AutoIt3Wrapper_Run_Debug_Mode AutoIt3Wrapper_Run_SciTE_Minimized AutoIt3Wrapper_Run_SciTE_OutputPane_Minimized AutoIt3Wrapper_Run_Tidy AutoIt3Wrapper_ShowProgress AutoIt3Wrapper_Testing AutoIt3Wrapper_Tidy_Stop_OnError AutoIt3Wrapper_UPX_Parameters AutoIt3Wrapper_UseUPX AutoIt3Wrapper_UseX64 AutoIt3Wrapper_Version AutoIt3Wrapper_Versioning AutoIt3Wrapper_Versioning_Parameters Tidy_Off Tidy_On Tidy_Parameters EndRegion Region\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[l,{cN:\"string\",v:[{b:\"<\",e:\">\"},{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]}]},l,I]},_={cN:\"constant\",b:\"@[A-z0-9_]+\"},G={cN:\"function\",bK:\"Func\",e:\"$\",eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[n,l,o]}]};return{cI:!0,i:/\\/\\*/,k:{keyword:t,built_in:i,literal:r},c:[I,n,l,o,a,_,G]}});hljs.registerLanguage(\"gams\",function(e){var s=\"abort acronym acronyms alias all and assign binary card diag display else1 eps eq equation equations file files for1 free ge gt if inf integer le loop lt maximizing minimizing model models na ne negative no not option options or ord parameter parameters positive prod putpage puttl repeat sameas scalar scalars semicont semiint set1 sets smax smin solve sos1 sos2 sum system table then until using variable variables while1 xor yes\";return{aliases:[\"gms\"],cI:!0,k:s,c:[{cN:\"section\",bK:\"sets parameters variables equations\",e:\";\",c:[{b:\"/\",e:\"/\",c:[e.NM]}]},{cN:\"string\",b:\"\\\\*{3}\",e:\"\\\\*{3}\"},e.NM,{cN:\"number\",b:\"\\\\$[a-zA-Z0-9]+\"}]}});hljs.registerLanguage(\"matlab\",function(e){var a=[e.CNM,{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]}],s={r:0,c:[{cN:\"operator\",b:/'['\\.]*/}]};return{k:{keyword:\"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson\"},i:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function\",e:\"$\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},{cN:\"params\",b:\"\\\\[\",e:\"\\\\]\"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]\",c:a,r:0,starts:s},{cN:\"cell\",b:\"\\\\{\",e:/}/,c:a,r:0,starts:s},{b:/\\)/,r:0,starts:s},e.C(\"^\\\\s*\\\\%\\\\{\\\\s*$\",\"^\\\\s*\\\\%\\\\}\\\\s*$\"),e.C(\"\\\\%\",\"$\")].concat(a)}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"prompt\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},a={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},l={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,a,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,a,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,l]},{cN:\"decorator\",b:/^[\\t ]*@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"lisp\",function(b){var e=\"[a-zA-Z_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#][a-zA-Z0-9_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#!]*\",c=\"\\\\|[^]*?\\\\|\",r=\"(\\\\-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|\\\\-)?\\\\d+)?\",a={cN:\"shebang\",b:\"^#!\",e:\"$\"},i={cN:\"literal\",b:\"\\\\b(t{1}|nil)\\\\b\"},l={cN:\"number\",v:[{b:r,r:0},{b:\"#(b|B)[0-1]+(/[0-1]+)?\"},{b:\"#(o|O)[0-7]+(/[0-7]+)?\"},{b:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{b:\"#(c|C)\\\\(\"+r+\" +\"+r,e:\"\\\\)\"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(\";\",\"$\",{r:0}),n={cN:\"variable\",b:\"\\\\*\",e:\"\\\\*\"},u={cN:\"keyword\",b:\"[:&]\"+e},N={b:e,r:0},o={b:c},s={b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,t,l,N]},v={cN:\"quoted\",c:[l,t,n,u,s,N],v:[{b:\"['`]\\\\(\",e:\"\\\\)\"},{b:\"\\\\(quote \",e:\"\\\\)\",k:\"quote\"},{b:\"'\"+c}]},f={cN:\"quoted\",v:[{b:\"'\"+e},{b:\"#'\"+e+\"(::\"+e+\")*\"}]},g={cN:\"list\",b:\"\\\\(\\\\s*\",e:\"\\\\)\"},q={eW:!0,r:0};return g.c=[{cN:\"keyword\",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage(\"golo\",function(e){return{k:{keyword:\"println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull\",typename:\"DynamicObject|10 DynamicVariable struct Observable map set vector list array\",literal:\"true false null\"},c:[e.HCM,e.QSM,e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"lua\",function(e){var t=\"\\\\[=*\\\\[\",a=\"\\\\]=*\\\\]\",r={b:t,e:a,c:[\"self\"]},n=[e.C(\"--(?!\"+t+\")\",\"$\"),e.C(\"--\"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:\"and break do else elseif end false for if in local nil not or repeat return then true until while\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},c:n.concat([{cN:\"function\",bK:\"function\",e:\"\\\\)\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{cN:\"params\",b:\"\\\\(\",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:\"string\",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage(\"dos\",function(e){var r=e.C(/@?rem\\b/,/$/,{r:10}),t={cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0};return{aliases:[\"bat\",\"cmd\"],cI:!0,i:/\\/\\*/,k:{flow:\"if else goto for in do call exit not exist errorlevel defined\",operator:\"equ neq lss leq gtr geq\",keyword:\"shift cd dir echo setlocal endlocal set pause copy\",stream:\"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux\",winutils:\"ping net ipconfig taskkill xcopy ren del\",built_in:\"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol\"},c:[{cN:\"envvar\",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:\"function\",b:t.b,e:\"goto:eof\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),r]},{cN:\"number\",b:\"\\\\b\\\\d+\",r:0},r]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={cN:\"variable\",v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},o=[e.BE,r,n],i=[n,e.HCM,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:o,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"sub\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",r:5},{cN:\"operator\",b:\"-\\\\w\\\\b\",r:0},{b:\"^__DATA__$\",e:\"^__END__$\",sL:\"mojolicious\",c:[{b:\"^@@.*\",e:\"$\",cN:\"comment\"}]}];return r.c=i,s.c=i,{aliases:[\"pl\"],k:t,c:i}});hljs.registerLanguage(\"protobuf\",function(e){return{k:{keyword:\"package import option optional required repeated group\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,{cN:\"class\",bK:\"message enum service\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"function\",bK:\"rpc\",e:/;/,eE:!0,k:\"rpc returns\"},{cN:\"constant\",b:/^\\s*[A-Z_]+/,e:/\\s*=/,eE:!0}]}});hljs.registerLanguage(\"accesslog\",function(T){return{c:[{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+\\\\b\",r:0},{cN:\"string\",b:'\"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',e:'\"',k:\"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE\",i:\"\\\\n\",r:10},{cN:\"string\",b:/\\[/,e:/\\]/,i:\"\\\\n\"},{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"}]}});hljs.registerLanguage(\"java\",function(e){var a=e.UIR+\"(<\"+e.UIR+\">)?\",t=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",c=\"\\\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+)(\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))?|\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))([eE][-+]?\\\\d+)?)[lLfF]?\",r={cN:\"number\",b:c,r:0};return{aliases:[\"jsp\"],k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+a+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"vala\",function(e){return{k:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object\",literal:\"false true null\"},c:[{cN:\"class\",bK:\"class interface delegate namespace\",e:\"{\",eE:!0,i:\"[^,:\\\\n\\\\s\\\\.]\",c:[e.UTM]},e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:5},e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"^#\",e:\"$\",r:2},{cN:\"constant\",b:\" [A-Z_]+ \",r:0}]}});hljs.registerLanguage(\"tcl\",function(e){return{aliases:[\"tk\"],k:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",c:[e.C(\";[ \\\\t]*#\",\"$\"),e.C(\"^[ \\\\t]*#\",\"$\"),{bK:\"proc\",e:\"[\\\\{]\",eE:!0,c:[{cN:\"symbol\",b:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"[ \\\\t\\\\n\\\\r]\",eW:!0,eE:!0}]},{cN:\"variable\",eE:!0,v:[{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\\\(([a-zA-Z0-9_])*\\\\)\",e:\"[^a-zA-Z0-9_\\\\}\\\\$]\"},{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"(\\\\))?[^a-zA-Z0-9_\\\\}\\\\$]\"}]},{cN:\"string\",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:\"number\",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage(\"haml\",function(s){return{cI:!0,c:[{cN:\"doctype\",b:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",r:10},s.C(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{r:0}),{b:\"^\\\\s*(-|=|!=)(?!#)\",starts:{e:\"\\\\n\",sL:\"ruby\"}},{cN:\"tag\",b:\"^\\\\s*%\",c:[{cN:\"title\",b:\"\\\\w+\"},{cN:\"value\",b:\"[#\\\\.][\\\\w-]+\"},{b:\"{\\\\s*\",e:\"\\\\s*}\",eE:!0,c:[{b:\":\\\\w+\\\\s*=>\",e:\",\\\\s+\",rB:!0,eW:!0,c:[{cN:\"symbol\",b:\":\\\\w+\"},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]},{b:\"\\\\(\\\\s*\",e:\"\\\\s*\\\\)\",eE:!0,c:[{b:\"\\\\w+\\\\s*=\",e:\"\\\\s+\",rB:!0,eW:!0,c:[{cN:\"attribute\",b:\"\\\\w+\",r:0},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]}]},{cN:\"bullet\",b:\"^\\\\s*[=~]\\\\s*\",r:0},{b:\"#{\",starts:{e:\"}\",sL:\"ruby\"}}]}});hljs.registerLanguage(\"autohotkey\",function(e){var r={cN:\"escape\",b:\"`[\\\\s\\\\S]\"},c=e.C(\";\",\"$\",{r:0}),n=[{cN:\"built_in\",b:\"A_[a-zA-Z0-9]+\"},{cN:\"built_in\",bK:\"ComSpec Clipboard ClipboardAll ErrorLevel\"}];return{cI:!0,k:{keyword:\"Break Continue Else Gosub If Loop Return While\",literal:\"A true false NOT AND OR\"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:\"number\",b:e.NR,r:0},{cN:\"var_expand\",b:\"%\",e:\"%\",i:\"\\\\n\",c:[r]},{cN:\"label\",c:[r],v:[{b:'^[^\\\\n\";]+::(?!=)'},{b:'^[^\\\\n\";]+:(?!=)',r:0}]},{b:\",\\\\s*,\",r:10}])}});hljs.registerLanguage(\"nimrod\",function(t){return{aliases:[\"nim\"],k:{keyword:\"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield\",literal:\"shared guarded stdin stdout stderr result|10 true false\"},c:[{cN:\"decorator\",b:/{\\./,e:/\\.}/,r:10},{cN:\"string\",b:/[a-zA-Z]\\w*\"/,e:/\"/,c:[{b:/\"\"/}]},{cN:\"string\",b:/([a-zA-Z]\\w*)?\"\"\"/,e:/\"\"\"/},t.QSM,{cN:\"type\",b:/\\b[A-Z]\\w+\\b/,r:0},{cN:\"type\",b:/\\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\\b/},{cN:\"number\",b:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage(\"mizar\",function(e){return{k:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",c:[e.C(\"::\",\"$\")]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"header\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"blockquote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{cN:\"horizontal_rule\",b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link_url\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"link_reference\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:\"^\\\\[.+\\\\]:\",rB:!0,c:[{cN:\"link_reference\",b:\"\\\\[\",e:\"\\\\]:\",eB:!0,eE:!0,starts:{cN:\"link_url\",e:\"$\"}}]}]}});hljs.registerLanguage(\"aspectj\",function(e){var t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",i=\"get set args call\";return{k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"aspect\",bK:\"aspect\",e:/[{;=]/,eE:!0,i:/[:;\"\\[\\]]/,c:[{bK:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UTM,{b:/\\([^\\)]*/,e:/[)]+/,k:t+\" \"+i,eE:!1}]},{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,r:0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"pointcut after before around throwing returning\",e:/[)]/,eE:!1,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",k:t+\" \"+i},e.QSM]},{bK:\"new throw\",r:0},{cN:\"function\",b:/\\w+ +\\w+(\\.)?\\w+\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"dns\",function(d){return{aliases:[\"bind\",\"zone\"],k:{keyword:\"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT\"},c:[d.C(\";\",\"$\"),{cN:\"operator\",bK:\"$TTL $GENERATE $INCLUDE $ORIGIN\"},{cN:\"number\",b:\"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:)))\"},{cN:\"number\",b:\"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\"}]}});hljs.registerLanguage(\"django\",function(e){var t={cN:\"filter\",b:/\\|[A-Za-z]+:?/,k:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\",c:[{cN:\"argument\",b:/\"/,e:/\"/},{cN:\"argument\",b:/'/,e:/'/}]};return{aliases:[\"jinja\"],cI:!0,sL:\"xml\",c:[e.C(/\\{%\\s*comment\\s*%}/,/\\{%\\s*endcomment\\s*%}/),e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\",c:[t]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage(\"step21\",function(e){var r=\"[A-Z_][A-Z0-9_.]*\",i=\"END-ISO-10303-21;\",l={literal:\"\",built_in:\"\",keyword:\"HEADER ENDSEC DATA\"},s={cN:\"preprocessor\",b:\"ISO-10303-21;\",r:10},t=[e.CLCM,e.CBCM,e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"label\",v:[{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"p21\",\"step\",\"stp\"],cI:!0,l:r,k:l,c:[{cN:\"preprocessor\",b:i,r:10},s].concat(t)}});hljs.registerLanguage(\"roboconf\",function(e){var n=\"[a-zA-Z-_][^\\n{\\r\\n]+\\\\{\";return{aliases:[\"graph\",\"instances\"],cI:!0,k:\"import\",c:[{cN:\"facet\",b:\"^facet \"+n,e:\"}\",k:\"facet installer exports children extends\",c:[e.HCM]},{cN:\"instance-of\",b:\"^instance of \"+n,e:\"}\",k:\"name count channels instance-data instance-state instance of\",c:[{cN:\"keyword\",b:\"[a-zA-Z-_]+( |\t)*:\"},e.HCM]},{cN:\"component\",b:\"^\"+n,e:\"}\",l:\"\\\\(?[a-zA-Z]+\\\\)?\",k:\"installer exports children extends imports facets alias (optional)\",c:[{cN:\"string\",b:\"\\\\.[a-zA-Z-_]+\",e:\"\\\\s|,|;\",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage(\"capnproto\",function(t){return{aliases:[\"capnp\"],k:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},c:[t.QSM,t.NM,t.HCM,{cN:\"shebang\",b:/@0x[\\w\\d]{16};/,i:/\\n/},{cN:\"number\",b:/@\\d+\\b/},{cN:\"class\",bK:\"struct enum\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"class\",bK:\"interface\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage(\"livescript\",function(e){var t={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf\",literal:\"true false null undefined yes no on off it that void\",built_in:\"npm require console print module global window document\"},s=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",i=e.inherit(e.TM,{b:s}),n={cN:\"subst\",b:/#\\{/,e:/}/,k:t},r={cN:\"subst\",b:/#[A-Za-z$_]/,e:/(?:\\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:\"number\",b:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",r:0,starts:{e:\"(\\\\s*/)?\",r:0}},{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,n,r]},{b:/\"/,e:/\"/,c:[e.BE,n,r]},{b:/\\\\/,e:/(\\s|$)/,eE:!0}]},{cN:\"pi\",v:[{b:\"//\",e:\"//[gim]*\",c:[n,e.HCM]},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+s},{b:\"``\",e:\"``\",eB:!0,eE:!0,sL:\"javascript\"}];n.c=c;var a={cN:\"params\",b:\"\\\\(\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:t,c:[\"self\"].concat(c)}]};return{aliases:[\"ls\"],k:t,i:/\\/\\*/,c:c.concat([e.C(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HCM,{cN:\"function\",c:[i,a],rB:!0,v:[{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B\\\\->\\\\*?\",e:\"\\\\->\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\))?\\\\s*\\\\B[-~]{1,2}>\\\\*?\",e:\"[-~]{1,2}>\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B!?[-~]{1,2}>\\\\*?\",e:\"!?[-~]{1,2}>\\\\*?\"}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:s+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"crystal\",function(e){function b(e,b){var r=[{b:e,e:b}];return r[0].c=r,r}var r=\"(_[uif](8|16|32|64))?\",c=\"[a-zA-Z_]\\\\w*[!?=]?\",n=\"!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",i=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\][=?]?\",s={keyword:\"abstract alias as asm begin break case class def do else elsif end ensure enum extend for fun if ifdef include instance_sizeof is_a? lib macro module next of out pointerof private protected rescue responds_to? return require self sizeof struct super then type typeof union unless until when while with yield __DIR__ __FILE__ __LINE__\",literal:\"false nil true\"},t={cN:\"subst\",b:\"#{\",e:\"}\",k:s},a={cN:\"expansion\",v:[{b:\"\\\\{\\\\{\",e:\"\\\\}\\\\}\"},{b:\"\\\\{%\",e:\"%\\\\}\"}],k:s,r:10},o={cN:\"string\",c:[e.BE,t],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%w?\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%w?\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%w?{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%w?<\",e:\">\",c:b(\"<\",\">\")},{b:\"%w?/\",e:\"/\"},{b:\"%w?%\",e:\"%\"},{b:\"%w?-\",e:\"-\"},{b:\"%w?\\\\|\",e:\"\\\\|\"}],r:0},u={b:\"(\"+n+\")\\\\s*\",c:[{cN:\"regexp\",c:[e.BE,t],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}]}],r:0},l={cN:\"regexp\",c:[e.BE,t],v:[{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}],r:0},_={cN:\"annotation\",b:\"@\\\\[\",e:\"\\\\]\",r:5},f=[a,o,u,l,_,e.HCM,{cN:\"class\",bK:\"class module struct\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}]},{cN:\"class\",bK:\"lib enum union\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"})],r:10},{cN:\"function\",bK:\"def\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})]},{cN:\"function\",bK:\"fun macro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})],r:5},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[o,{b:i}],r:0},{cN:\"number\",v:[{b:\"\\\\b0b([01_]*[01])\"+r},{b:\"\\\\b0o([0-7_]*[0-7])\"+r},{b:\"\\\\b0x([A-Fa-f0-9_]*[A-Fa-f0-9])\"+r},{b:\"\\\\b(([0-9][0-9_]*[0-9]|[0-9])(\\\\.[0-9_]*[0-9])?([eE][+-]?[0-9_]*[0-9])?)\"+r}],r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?|%)(\\\\w+))\"}];return t.c=f,_.c=f,a.c=f.slice(1),{aliases:[\"cr\"],l:c,k:s,c:f}});hljs.registerLanguage(\"powershell\",function(e){var t={b:\"`[\\\\s\\\\S]\",r:0},r={cN:\"variable\",v:[{b:/\\$[\\w\\d][\\w\\d_:]*/}]},o={cN:\"string\",b:/\"/,e:/\"/,c:[t,r,{cN:\"variable\",b:/\\$[A-z]/,e:/[^A-z]/}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"ps\"],l:/-?[A-z\\.\\-]+/,cI:!0,k:{keyword:\"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch\",literal:\"$null $true $false\",built_in:\"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning\",operator:\"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace\"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage(\"ruby\",function(e){var c=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r=\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",b={cN:\"doctag\",b:\"@[A-Za-z]+\"},a={cN:\"value\",b:\"#<\",e:\">\"},n=[e.C(\"#\",\"$\",{c:[b]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[b],r:10}),e.C(\"^__END__\",\"\\\\n$\")],s={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(n)},{cN:\"function\",bK:\"def\",e:\"$|;\",c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[t,{b:c}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,s],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o=\"[>?]>\",l=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",N=[{b:/^\\s*=>/,cN:\"status\",starts:{e:\"$\",c:d}},{cN:\"prompt\",b:\"^(\"+o+\"|\"+l+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,i:/\\/\\*/,c:n.concat(N).concat(d)}});hljs.registerLanguage(\"brainfuck\",function(r){var n={cN:\"literal\",b:\"[\\\\+\\\\-]\",r:0};return{aliases:[\"bf\"],c:[r.C(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{rE:!0,r:0}),{cN:\"title\",b:\"[\\\\[\\\\]]\",r:0},{cN:\"string\",b:\"[\\\\.,]\",r:0},{b:/\\+\\+|\\-\\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage(\"thrift\",function(e){var t=\"bool byte i16 i32 i64 double string binary\";return{k:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:\"class\",bK:\"struct enum service exception\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:\"\\\\b(set|list|map)\\\\s*<\",e:\">\",k:t,c:[\"self\"]}]}});hljs.registerLanguage(\"less\",function(e){var r=\"[\\\\w-]+\",t=\"(\"+r+\"|@{\"+r+\"})\",a=[],c=[],n=function(e){return{cN:\"string\",b:\"~?\"+e+\".*?\"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+\"\\\\(\",e:\"\\\\(\",rB:!0,eE:!0,r:0},a)},b={b:\"\\\\(\",e:\"\\\\)\",c:c,r:0};c.push(e.CLCM,e.CBCM,n(\"'\"),n('\"'),e.CSSNM,i(\"hexcolor\",\"#[0-9A-Fa-f]+\\\\b\"),s(\"function\",\"(url|data-uri)\",{starts:{cN:\"string\",e:\"[\\\\)\\\\n]\",eE:!0}}),s(\"function\",r),b,i(\"variable\",\"@@?\"+r,10),i(\"variable\",\"@{\"+r+\"}\"),i(\"built_in\",\"~?`[^`]*?`\"),{cN:\"attribute\",b:r+\"\\\\s*:\",e:\":\",rB:!0,eE:!0});var o=c.concat({b:\"{\",e:\"}\",c:a}),u={bK:\"when\",eW:!0,c:[{bK:\"and not\"}].concat(c)},C={cN:\"attribute\",b:t,e:\":\",eE:!0,c:[e.CLCM,e.CBCM],i:/\\S/,starts:{e:\"[;}]\",rE:!0,c:c,i:\"[<=$]\"}},l={cN:\"at_rule\",b:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{e:\"[;{}]\",rE:!0,c:c,r:0}},d={cN:\"variable\",v:[{b:\"@\"+r+\"\\\\s*:\",r:15},{b:\"@\"+r}],starts:{e:\"[;}]\",rE:!0,c:o}},p={v:[{b:\"[\\\\.#:&\\\\[]\",e:\"[;{}]\"},{b:t+\"[^;]*{\",e:\"{\"}],rB:!0,rE:!0,i:\"[<='$\\\"]\",c:[e.CLCM,e.CBCM,u,i(\"keyword\",\"all\\\\b\"),i(\"variable\",\"@{\"+r+\"}\"),i(\"tag\",t+\"%?\",0),i(\"id\",\"#\"+t),i(\"class\",\"\\\\.\"+t,0),i(\"keyword\",\"&\",0),s(\"pseudo\",\":not\"),s(\"keyword\",\":extend\"),i(\"pseudo\",\"::?\"+t),{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\"},{b:\"\\\\(\",e:\"\\\\)\",c:o},{b:\"!important\"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:\"[=>'/<($\\\"]\",c:a}});hljs.registerLanguage(\"scilab\",function(e){var n=[e.CNM,{cN:\"string\",b:\"'|\\\"\",e:\"'|\\\"\",c:[e.BE,{b:\"''\"}]}];return{aliases:[\"sci\"],k:{keyword:\"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix\"},i:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function endfunction\",e:\"$\",k:\"function endfunction|10\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]},{cN:\"transposed_variable\",b:\"[a-zA-Z_][a-zA-Z_0-9]*('+[\\\\.']*|[\\\\.']+)\",e:\"\",r:0},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]'*[\\\\.']*\",r:0,c:n},e.C(\"//\",\"$\")].concat(n)}});hljs.registerLanguage(\"oxygene\",function(e){var r=\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\",t=e.C(\"{\",\"}\",{r:0}),a=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{r:10}),n={cN:\"string\",b:\"'\",e:\"'\",c:[{b:\"''\"}]},o={cN:\"string\",b:\"(#\\\\d+)+\"},i={cN:\"function\",bK:\"function constructor destructor procedure method\",e:\"[:;]\",k:\"function constructor|10 destructor|10 procedure|10 method|10\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*|</|=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:\"class\",b:\"=\\\\bclass\\\\b\",e:\"end;\",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage(\"lasso\",function(e){var r=\"[a-zA-Z_][a-zA-Z0-9_.]*\",a=\"<\\\\?(lasso(script)?|=)\",t=\"\\\\]|\\\\?>\",s={literal:\"true false none minimal full all void bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock\",keyword:\"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},n=e.C(\"<!--\",\"-->\",{r:0}),i={cN:\"preprocessor\",b:\"\\\\[noprocess\\\\]\",starts:{cN:\"markup\",e:\"\\\\[/noprocess\\\\]\",rE:!0,c:[n]}},o={cN:\"preprocessor\",b:\"\\\\[/noprocess|\"+a},l={cN:\"variable\",b:\"'\"+r+\"'\"},c=[e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CLCM,e.CBCM,e.inherit(e.CNM,{b:e.CNR+\"|(infinity|nan)\\\\b\"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"variable\",v:[{b:\"[#$]\"+r},{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]},{cN:\"tag\",b:\"::\\\\s*\",e:r,i:\"\\\\W\"},{cN:\"attribute\",v:[{b:\"-(?!infinity)\"+e.UIR,r:0},{b:\"(\\\\.\\\\.\\\\.)\"}]},{cN:\"subst\",v:[{b:\"->\\\\s*\",c:[l]},{b:\"->|\\\\\\\\|&&?|\\\\|\\\\||!(?!=|>)|(and|or|not)\\\\b\",r:0}]},{cN:\"built_in\",b:\"\\\\.\\\\.?\\\\s*\",r:0,c:[l]},{cN:\"class\",bK:\"define\",rE:!0,e:\"\\\\(|=>\",c:[e.inherit(e.TM,{b:e.UIR+\"(=(?!>))?\"})]}];return{aliases:[\"ls\",\"lassoscript\"],cI:!0,l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[|\"+a,rE:!0,r:0,c:[n]}},i,o,{cN:\"preprocessor\",b:\"\\\\[no_square_brackets\",starts:{e:\"\\\\[/no_square_brackets\\\\]\",l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[noprocess\\\\]|\"+a,rE:!0,c:[n]}},i,o].concat(c)}},{cN:\"preprocessor\",b:\"\\\\[\",r:0},{cN:\"shebang\",b:\"^#!.+lasso9\\\\b\",r:10}].concat(c)}});hljs.registerLanguage(\"gcode\",function(e){var N=\"[A-Z_][A-Z0-9_.]*\",i=\"\\\\%\",c={literal:\"\",built_in:\"\",keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},r={cN:\"preprocessor\",b:\"([O])([0-9]+)\"},l=[e.CLCM,e.CBCM,e.C(/\\(/,/\\)/),e.inherit(e.CNM,{b:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))|\"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"keyword\",b:\"([G])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"([M])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"(VC|VS|#)\",e:\"(\\\\d+)\"},{cN:\"title\",b:\"(VZOFX|VZOFY|VZOFZ)\"},{cN:\"built_in\",b:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",e:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))(\\\\])\"},{cN:\"label\",v:[{b:\"N\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"nc\"],cI:!0,l:N,k:c,c:[{cN:\"preprocessor\",b:i},r].concat(l)}});hljs.registerLanguage(\"scala\",function(e){var t={cN:\"annotation\",b:\"@[A-Za-z]+\"},r={cN:\"string\",b:'u?r?\"\"\"',e:'\"\"\"',r:10},a={cN:\"symbol\",b:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},c={cN:\"type\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},i={cN:\"title\",b:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,r:0},n={cN:\"class\",bK:\"class object trait type\",e:/[:={\\[(\\n;]/,c:[{cN:\"keyword\",bK:\"extends with\",r:10},i]},l={cN:\"function\",bK:\"def\",e:/[:={\\[(\\n;]/,c:[i]};return{k:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},c:[e.CLCM,e.CBCM,r,e.QSM,a,c,l,n,e.CNM,t]}});hljs.registerLanguage(\"armasm\",function(s){return{cI:!0,aliases:[\"arm\"],l:\"\\\\.?\"+s.IR,k:{literal:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 \",preprocessor:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND \",built_in:\"{PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @ \"},c:[{cN:\"keyword\",b:\"\\\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?\",e:\"\\\\s\"},s.C(\"[;@]\",\"$\",{r:0}),s.CBCM,s.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",r:0},{cN:\"title\",b:\"\\\\|\",e:\"\\\\|\",i:\"\\\\n\",r:0},{cN:\"number\",v:[{b:\"[#$=]?0x[0-9a-f]+\"},{b:\"[#$=]?0b[01]+\"},{b:\"[#$=]\\\\d+\"},{b:\"\\\\b\\\\d+\"}],r:0},{cN:\"label\",v:[{b:\"^[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+\"},{b:\"^\\\\s*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{b:\"[=#]\\\\w+\"}],r:0}]}});hljs.registerLanguage(\"avrasm\",function(r){return{cI:!0,l:\"\\\\.?\"+r.IR,k:{keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",preprocessor:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},c:[r.CBCM,r.C(\";\",\"$\",{r:0}),r.CNM,r.BNM,{cN:\"number\",b:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},r.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"},{cN:\"label\",b:\"^[A-Za-z0-9_.$]+:\"},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"localvars\",b:\"@[0-9]+\"}]}});hljs.registerLanguage(\"profile\",function(e){return{c:[e.CNM,{cN:\"built_in\",b:\"{\",e:\"}$\",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:\"filename\",b:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",e:\":\",eE:!0},{cN:\"header\",b:\"(ncalls|tottime|cumtime)\",e:\"$\",k:\"ncalls tottime|10 cumtime|10 filename\",r:10},{cN:\"summary\",b:\"function calls\",e:\"$\",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:\"function\",b:\"\\\\(\",e:\"\\\\)$\",c:[e.UTM],r:0}]}});hljs.registerLanguage(\"mercury\",function(e){var i={keyword:\"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure\",pragma:\"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses\",preprocessor:\"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing\",built_in:\"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure\"},r={cN:\"label\",b:\"XXX\",e:\"$\",eW:!0,r:0},t=e.inherit(e.CLCM,{b:\"%\"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:\"number\",b:\"0'.\\\\|0[box][0-9a-fA-F]*\"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:\"constant\",b:\"\\\\\\\\[abfnrtv]\\\\|\\\\\\\\x[0-9a-fA-F]*\\\\\\\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]\",r:0};o.c.push(l);var s={cN:\"built_in\",v:[{b:\"<=>\"},{b:\"<=\",r:0},{b:\"=>\",r:0},{b:\"/\\\\\\\\\"},{b:\"\\\\\\\\/\"}]},c={cN:\"built_in\",v:[{b:\":-\\\\|-->\"},{b:\"=\",r:0}]};return{aliases:[\"m\",\"moo\"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage(\"crmsh\",function(e){var t=\"primitive rsc_template\",r=\"group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml\",a=\"property rsc_defaults op_defaults\",s=\"params meta operations op rule attributes utilization\",i=\"read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\\\\",o=\"number string\",n=\"Master Started Slave Stopped start promote demote stop monitor true false\";return{aliases:[\"crm\",\"pcmk\"],cI:!0,k:{keyword:s,operator:i,type:o,literal:n},c:[e.HCM,{bK:\"node\",starts:{cN:\"identifier\",e:\"\\\\s*([\\\\w_-]+:)?\",starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\"}}},{bK:t,starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\",starts:{cN:\"pragma\",e:\"\\\\s*@?[\\\\w_][\\\\w_\\\\.:-]*\"}}},{b:\"\\\\b(\"+r.split(\" \").join(\"|\")+\")\\\\s+\",k:r,starts:{cN:\"title\",e:\"[\\\\$\\\\w_][\\\\w_-]*\"}},{bK:a,starts:{cN:\"title\",e:\"\\\\s*([\\\\w_-]+:)?\"}},e.QSM,{cN:\"pragma\",b:\"(ocf|systemd|service|lsb):[\\\\w_:-]+\",r:0},{cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(ms|s|h|m)?\",r:0},{cN:\"number\",b:\"[-]?(infinity|inf)\",r:0},{cN:\"variable\",b:/([A-Za-z\\$_\\#][\\w_-]+)=/,r:0},{cN:\"tag\",b:\"</?\",e:\"/?>\",r:0}]}});hljs.registerLanguage(\"erlang\",function(e){var r=\"[a-z'][a-zA-Z0-9_']*\",c=\"(\"+r+\":\"+r+\"|\"+r+\")\",a={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},n=e.C(\"%\",\"$\"),i={cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},b={b:\"fun\\\\s+\"+r+\"/\\\\d+\"},d={b:c+\"\\\\(\",e:\"\\\\)\",rB:!0,r:0,c:[{cN:\"function_name\",b:c,r:0},{b:\"\\\\(\",e:\"\\\\)\",eW:!0,rE:!0,r:0}]},o={cN:\"tuple\",b:\"{\",e:\"}\",r:0},t={cN:\"variable\",b:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",r:0},l={cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_]*\",r:0},f={b:\"#\"+e.UIR,r:0,rB:!0,c:[{cN:\"record_name\",b:\"#\"+e.UIR,r:0},{b:\"{\",e:\"}\",r:0}]},s={bK:\"fun receive if try case\",e:\"end\",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:\"\"}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:u};return{aliases:[\"erl\"],k:a,i:\"(</|\\\\*=|\\\\+=|-=|/\\\\*|\\\\*/|\\\\(\\\\*|\\\\*\\\\))\",c:[{cN:\"function\",b:\"^\"+r+\"\\\\s*\\\\(\",e:\"->\",rB:!0,i:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",c:[v,e.inherit(e.TM,{b:r})],starts:{e:\";|\\\\.\",k:a,c:u}},n,{cN:\"pp\",b:\"^-\",e:\"\\\\.\",r:0,eE:!0,rB:!0,l:\"-\"+e.IR,k:\"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec\",c:[v]},i,e.QSM,f,t,l,o,{b:/\\.$/}]}});hljs.registerLanguage(\"cpp\",function(t){var e={cN:\"keyword\",b:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},r={cN:\"string\",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?\"'}),{b:'(u8?|U)?R\"',e:'\"',c:[t.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},s={cN:\"number\",v:[{b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},{b:t.CNR}]},i={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[r,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},r,s,t.CLCM,t.CBCM]},a=t.IR+\"\\\\s*\\\\(\",c={keyword:\"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong\",built_in:\"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf\",literal:\"true false nullptr NULL\"};return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:c,i:\"</\",c:[e,t.CLCM,t.CBCM,s,r,i,{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:c,c:[\"self\",e]},{b:t.IR+\"::\",k:c},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t.IR+\"[\\\\*&\\\\s]+)+\"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\\w\\s\\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s]},t.CLCM,t.CBCM,i]}]}});hljs.registerLanguage(\"xquery\",function(e){var t=\"for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update\",a=\"false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute\",r={cN:\"variable\",b:/\\$[a-zA-Z0-9\\-]+/,r:5},s={cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},n={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},i={cN:\"decorator\",b:\"%\\\\w+\"},c={cN:\"comment\",b:\"\\\\(:\",e:\":\\\\)\",r:10,c:[{cN:\"doc\",b:\"@\\\\w+\"}]},o={b:\"{\",e:\"}\"},l=[r,n,s,c,i,o];return o.c=l,{aliases:[\"xpath\",\"xq\"],cI:!1,l:/[a-zA-Z\\$][a-zA-Z0-9_:\\-]*/,i:/(proc)|(abstract)|(extends)|(until)|(#)/,k:{keyword:t,literal:a},c:l}});hljs.registerLanguage(\"dockerfile\",function(e){return{aliases:[\"docker\"],cI:!0,k:{built_ins:\"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env label\"},c:[e.HCM,{k:{built_in:\"run cmd entrypoint volume add copy workdir onbuild label\"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir|label) +/,starts:{e:/[^\\\\]\\n/,sL:\"bash\"}},{k:{built_in:\"from maintainer expose env user onbuild\"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\\\]\\n/,c:[e.ASM,e.QSM,e.NM,e.HCM]}]}});hljs.registerLanguage(\"scss\",function(e){var t=\"[a-zA-Z-][a-zA-Z0-9_-]*\",i={cN:\"variable\",b:\"(\\\\$\"+t+\")\\\\b\"},r={cN:\"function\",b:t+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},o={cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"};({cN:\"attribute\",b:\"[A-Z\\\\_\\\\.\\\\-]+\",e:\":\",eE:!0,i:\"[^\\\\s]\",starts:{cN:\"value\",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"important\",b:\"!important\"}]}});return{cI:!0,i:\"[=/|']\",c:[e.CLCM,e.CBCM,r,{cN:\"id\",b:\"\\\\#[A-Za-z0-9_-]+\",r:0},{cN:\"class\",b:\"\\\\.[A-Za-z0-9_-]+\",r:0},{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\",i:\"$\"},{cN:\"tag\",b:\"\\\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\\\b\",r:0},{cN:\"pseudo\",b:\":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)\"},{cN:\"pseudo\",b:\"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)\"},i,{cN:\"attribute\",b:\"\\\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\\\b\",i:\"[^\\\\s]\"},{cN:\"value\",b:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{cN:\"value\",b:\":\",e:\";\",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:\"important\",b:\"!important\"}]},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",k:\"mixin include extend for if else each while charset import debug media page content font-face namespace warn\",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:\"preprocessor\",b:\"\\\\s[A-Za-z0-9_.-]+\",r:0}]}]}});hljs.registerLanguage(\"cmake\",function(e){return{aliases:[\"cmake.in\"],cI:!0,k:{keyword:\"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or\",operator:\"equal less greater strless strgreater strequal matches\"},c:[{cN:\"envvar\",b:\"\\\\${\",e:\"}\"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage(\"nix\",function(e){var t={keyword:\"rec with let in inherit assert if else then\",constant:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},i={cN:\"subst\",b:/\\$\\{/,e:/}/,k:t},r={cN:\"variable\",b:/[a-zA-Z0-9-_]+(\\s*=)/,r:0},n={cN:\"string\",b:\"''\",e:\"''\",c:[i]},s={cN:\"string\",b:'\"',e:'\"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:[\"nixos\"],k:t,c:a}});hljs.registerLanguage(\"mathematica\",function(e){return{aliases:[\"mma\"],l:\"(\\\\$|\\\\b)\"+e.IR+\"\\\\b\",k:\"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber\",\nc:[{cN:\"comment\",b:/\\(\\*/,e:/\\*\\)/},e.ASM,e.QSM,e.CNM,{cN:\"list\",b:/\\{/,e:/\\}/,i:/:/}]}});hljs.registerLanguage(\"julia\",function(r){var e={keyword:\"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while\",literal:\"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e|0 eu|0 eulergamma golden im nothing pi γ π φ\",built_in:\"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip\"},t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",o={l:t,k:e},n={cN:\"type-annotation\",b:/::/},a={cN:\"subtype\",b:/<:/},i={cN:\"number\",b:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,r:0},l={cN:\"char\",b:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},c={cN:\"subst\",b:/\\$\\(/,e:/\\)/,k:e},u={cN:\"variable\",b:\"\\\\$\"+t},d={cN:\"string\",c:[r.BE,c,u],v:[{b:/\\w*\"/,e:/\"\\w*/},{b:/\\w*\"\"\"/,e:/\"\"\"\\w*/}]},g={cN:\"string\",c:[r.BE,c,u],b:\"`\",e:\"`\"},s={cN:\"macrocall\",b:\"@\"+t},S={cN:\"comment\",v:[{b:\"#=\",e:\"=#\",r:10},{b:\"#\",e:\"$\"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage(\"rib\",function(e){return{k:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",i:\"</\",c:[e.HCM,e.CNM,e.ASM,e.QSM]}});hljs.registerLanguage(\"vim\",function(e){return{l:/[!#@\\w]+/,k:{keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor\"},i:/[{:]/,c:[e.NM,e.ASM,{cN:\"string\",b:/\"((\\\\\")|[^\"\\n])*(\"|\\n)/},{cN:\"variable\",b:/[bwtglsav]:[\\w\\d_]*/},{cN:\"function\",bK:\"function function!\",e:\"$\",r:0,c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]}]}});hljs.registerLanguage(\"prolog\",function(c){var r={cN:\"atom\",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:\"name\",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\\(/,e:/\\)/,r:0},e={b:/\\[/,e:/\\]/},n={cN:\"comment\",b:/%/,e:/$/,c:[c.PWM]},t={cN:\"string\",b:/`/,e:/`/,c:[c.BE]},g={cN:\"string\",b:/0\\'(\\\\\\'|.)/},N={cN:\"string\",b:/0\\'\\\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\\.$/}])}});hljs.registerLanguage(\"parser3\",function(r){var e=r.C(\"{\",\"}\",{c:[\"self\"]});return{sL:\"xml\",r:0,c:[r.C(\"^#\",\"$\"),r.C(\"\\\\^rem{\",\"}\",{r:10,c:[e]}),{cN:\"preprocessor\",b:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",r:10},{cN:\"title\",b:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{cN:\"variable\",b:\"\\\\$\\\\{?[\\\\w\\\\-\\\\.\\\\:]+\\\\}?\"},{cN:\"keyword\",b:\"\\\\^[\\\\w\\\\-\\\\.\\\\:]+\"},{cN:\"number\",b:\"\\\\^#[0-9a-fA-F]+\"},r.CNM]}});hljs.registerLanguage(\"openscad\",function(e){var r={cN:\"keyword\",b:\"\\\\$(f[asn]|t|vp[rtd]|children)\"},n={cN:\"literal\",b:\"false|true|PI|undef\"},i={cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(e-?\\\\d+)?\",r:0},o=e.inherit(e.QSM,{i:null}),s={cN:\"preprocessor\",k:\"include use\",b:\"include|use <\",e:\">\"},t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,o,r,n]},c={cN:\"built_in\",b:\"[*!#%]\",r:0},l={cN:\"function\",bK:\"module function\",e:\"\\\\=|\\\\{\",c:[t,e.UTM]};return{aliases:[\"scad\"],k:{keyword:\"function module include use for intersection_for if else \\\\%\",literal:\"false true PI undef\",built_in:\"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign\"},c:[e.CLCM,e.CBCM,i,s,o,r,c,l]}});hljs.registerLanguage(\"ceylon\",function(e){var a=\"assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty\",t=\"shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small\",s=\"doc by license see throws tagged\",n=t+\" \"+s,i={cN:\"subst\",eB:!0,eE:!0,b:/``/,e:/``/,k:a,r:10},r=[{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:10},{cN:\"string\",b:'\"',e:'\"',c:[i]},{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"number\",b:\"#[0-9a-fA-F_]+|\\\\$[01_]+|[0-9_]+(?:\\\\.[0-9_](?:[eE][+-]?\\\\d+)?)?[kMGTPmunpf]?\",r:0}];return i.c=r,{k:{keyword:a,annotation:n},i:\"\\\\$[^01]|#[^0-9a-fA-F]\",c:[e.CLCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),{cN:\"annotation\",b:'@[a-z]\\\\w*(?:\\\\:\"[^\"]*\")?'}].concat(r)}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{built_in:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{cN:\"url\",b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"title\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"sml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"gherkin\",function(e){return{aliases:[\"feature\"],k:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",c:[{cN:\"keyword\",b:\"\\\\*\"},e.C(\"@[^@\\r\\n\t ]+\",\"$\"),{b:\"\\\\|\",e:\"\\\\|\\\\w*$\",c:[{cN:\"string\",b:\"[^|]+\"}]},{cN:\"variable\",b:\"<\",e:\">\"},e.HCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.QSM]}});hljs.registerLanguage(\"vbnet\",function(e){return{aliases:[\"vb\"],cI:!0,k:{keyword:\"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor\",built_in:\"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort\",literal:\"true false nothing\"},i:\"//|{|}|endif|gosub|variant|wend\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(\"'\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",b:\"'''|<!--|-->\",c:[e.PWM]},{cN:\"xmlDocTag\",b:\"</?\",e:\">\",c:[e.PWM]}]}),e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end region externalsource\"}]}});hljs.registerLanguage(\"pf\",function(t){var o={cN:\"variable\",b:/\\$[\\w\\d#@][\\w\\d_]*/},e={cN:\"variable\",b:/</,e:/>/};return{aliases:[\"pf.conf\"],l:/[a-z0-9_<>-]+/,k:{built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage(\"r\",function(e){var r=\"([a-zA-Z]|\\\\.[a-zA-Z.])[a-zA-Z0-9._]*\";return{c:[e.HCM,{b:r,l:r,k:{keyword:\"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...\",literal:\"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{b:\"`\",e:\"`\",r:0},{cN:\"string\",c:[e.BE],v:[{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]}]}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>{}*]/,c:[{cN:\"operator\",bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke\",e:/;/,eW:!0,k:{keyword:\"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes c cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle d data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration e each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract f failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function g general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http i id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists k keep keep_duplicates key keys kill l language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim m main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex n name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding p package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime t table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"kotlin\",function(e){var r=\"val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native\";return{k:{typename:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\",keyword:r},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"type\",b:/</,e:/>/,rB:!0,eE:!1,r:0},{cN:\"function\",bK:\"fun\",e:\"[(]|$\",rB:!0,eE:!0,k:r,i:/fun\\s+(<.*>)?[^\\s\\(]+(\\s+[^\\s\\(]+)\\s*=/,r:5,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"type\",b:/</,e:/>/,k:\"reified\",r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:r,r:0,i:/\\([^\\(,\\s:]+,/,c:[{cN:\"typename\",b:/:\\s*/,e:/\\s*[=\\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:\"class\",bK:\"class trait\",e:/[:\\{(]|$/,eE:!0,i:\"extends implements\",c:[e.UTM,{cN:\"type\",b:/</,e:/>/,eB:!0,eE:!0,r:0},{cN:\"typename\",b:/[,:]\\s*/,e:/[<\\(,]|$/,eB:!0,rE:!0}]},{cN:\"variable\",bK:\"var val\",e:/\\s*[=:$]/,eE:!0},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.CNM]}});hljs.registerLanguage(\"clojure-repl\",function(r){return{c:[{cN:\"prompt\",b:/^([\\w.-]+|\\s*#_)=>/,starts:{e:/$/,sL:\"clojure\"}}]}});hljs.registerLanguage(\"twig\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},a=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",r={cN:\"function\",bK:a,r:0,c:[t]},c={cN:\"filter\",b:/\\|[A-Za-z_]+:?/,k:\"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode\",c:[r]},n=\"autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim\";return n=n+\" \"+n.split(\" \").map(function(e){return\"end\"+e}).join(\" \"),{aliases:[\"craftcms\"],cI:!0,sL:\"xml\",c:[e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:n,c:[c,r]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage(\"vbscript\",function(e){return{aliases:[\"vbs\"],cI:!0,k:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err\",literal:\"true false null nothing empty\"},i:\"//\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",a={cN:\"function\",b:c+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},r={cN:\"rule\",b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{cN:\"value\",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"},{cN:\"important\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|'\\$]/,c:[e.CBCM,{cN:\"id\",b:/\\#[A-Za-z0-9_-]+/},{cN:\"class\",b:/\\.[A-Za-z0-9_-]+/},{cN:\"attr_selector\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"']+/},{cN:\"at_rule\",b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",c:[{cN:\"keyword\",b:/\\S+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:\"tag\",b:c,r:0},{cN:\"rules\",b:\"{\",e:\"}\",i:/\\S/,c:[e.CBCM,r]}]}});hljs.registerLanguage(\"mel\",function(e){return{k:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",i:\"</\",c:[e.CNM,e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},{cN:\"variable\",v:[{b:\"\\\\$\\\\d\"},{b:\"[\\\\$\\\\%\\\\@](\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\"},{b:\"\\\\*(\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\",r:0}]},e.CLCM,e.CBCM]}});hljs.registerLanguage(\"monkey\",function(e){var n={cN:\"number\",r:0,v:[{b:\"[$][a-fA-F0-9]+\"},e.NM]};return{cI:!0,k:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},i:/\\/\\*/,c:[e.C(\"#rem\",\"#end\"),e.C(\"'\",\"$\",{r:0}),{cN:\"function\",bK:\"function method\",e:\"[(=:]|$\",i:/\\n/,c:[e.UTM]},{cN:\"class\",bK:\"class interface\",e:\"$\",c:[{bK:\"extends implements\"},e.UTM]},{cN:\"variable\",b:\"\\\\b(self|super)\\\\b\"},{cN:\"preprocessor\",bK:\"import\",e:\"$\"},{cN:\"preprocessor\",b:\"\\\\s*#\",e:\"$\",k:\"if else elseif endif end then\"},{cN:\"pi\",b:\"^\\\\s*strict\\\\b\"},{bK:\"alias\",e:\"=\",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage(\"smali\",function(r){var t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"],n=[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"],s=[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"];return{aliases:[\"smali\"],c:[{cN:\"string\",b:'\"',e:'\"',r:0},r.C(\"#\",\"$\",{r:0}),{cN:\"keyword\",b:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\",r:1},{cN:\"keyword\",b:\"^[ ]*\\\\.[a-zA-Z]*\",r:0},{cN:\"keyword\",b:\"\\\\s:[a-zA-Z_0-9]*\",r:0},{cN:\"keyword\",b:\"\\\\s(\"+s.join(\"|\")+\")\",r:1},{cN:\"keyword\",b:\"\\\\[\",r:0},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\",r:1},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)+\\\\s\",r:10},{cN:\"instruction\",b:\"\\\\s(\"+n.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)*\\\\s\",r:10},{cN:\"class\",b:\"L[^(;:\\n]*;\",r:0},{cN:\"function\",b:'( |->)[^(\\n ;\"]*\\\\(',r:0},{cN:\"function\",b:\"\\\\)\",r:0},{cN:\"variable\",b:\"[vp][0-9]+\",r:0}]}});hljs.registerLanguage(\"livecodeserver\",function(e){var r={cN:\"variable\",b:\"\\\\b[gtps][A-Z]+[A-Za-z0-9_\\\\-]*\\\\b|\\\\$_[A-Z]+\",r:0},t=[e.CBCM,e.HCM,e.C(\"--\",\"$\"),e.C(\"[^:]//\",\"$\")],a=e.inherit(e.TM,{v:[{b:\"\\\\b_*rig[A-Z]+[A-Za-z0-9_\\\\-]*\"},{b:\"\\\\b_[a-z0-9\\\\-]+\"}]}),o=e.inherit(e.TM,{b:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{cI:!1,k:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if\",constant:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",operator:\"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write\"},c:[r,{cN:\"keyword\",b:\"\\\\bend\\\\sif\\\\b\"},{cN:\"function\",bK:\"function\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"function\",b:\"\\\\bend\\\\s+\",e:\"$\",k:\"end\",c:[o,a]},{cN:\"command\",bK:\"command on\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"preprocessor\",v:[{b:\"<\\\\?(rev|lc|livecode)\",r:10},{b:\"<\\\\?\"},{b:\"\\\\?>\"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:\";$|^\\\\[|^=\"}});hljs.registerLanguage(\"smalltalk\",function(a){var r=\"[a-z][a-zA-Z0-9_]*\",s={cN:\"char\",b:\"\\\\$.{1}\"},c={cN:\"symbol\",b:\"#\"+a.UIR};return{aliases:[\"st\"],k:\"self super nil true false thisContext\",c:[a.C('\"','\"'),a.ASM,{cN:\"class\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},{cN:\"method\",b:r+\":\",r:0},a.CNM,c,s,{cN:\"localvars\",b:\"\\\\|[ ]*\"+r+\"([ ]+\"+r+\")*[ ]*\\\\|\",rB:!0,e:/\\|/,i:/\\S/,c:[{b:\"(\\\\|[ ]*)?\"+r}]},{cN:\"array\",b:\"\\\\#\\\\(\",e:\"\\\\)\",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage(\"rust\",function(e){var t=\"([uif](8|16|32|64|size))?\",r=e.inherit(e.CBCM);return r.c.push(\"self\"),{aliases:[\"rs\"],k:{keyword:\"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool\",built_in:\"Copy Send Sized Sync Drop Fn FnMut FnOnce drop Box ToOwned Clone PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator Option Some None Result Ok Err SliceConcatExt String ToString Vec assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!\"},l:e.IR+\"!?\",i:\"</\",c:[e.CLCM,r,e.inherit(e.QSM,{i:null}),{cN:\"string\",v:[{b:/r(#*)\".*?\"\\1(?!#)/},{b:/'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/}]},{cN:\"number\",v:[{b:\"\\\\b0b([01_]+)\"+t},{b:\"\\\\b0o([0-7_]+)\"+t},{b:\"\\\\b0x([A-Fa-f0-9_]+)\"+t},{b:\"\\\\b(\\\\d[\\\\d_]*(\\\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)\"+t}],r:0},{cN:\"function\",bK:\"fn\",e:\"(\\\\(|<)\",eE:!0,c:[e.UTM]},{cN:\"preprocessor\",b:\"#\\\\!?\\\\[\",e:\"\\\\]\"},{bK:\"type\",e:\"(=|<)\",c:[e.UTM],i:\"\\\\S\"},{bK:\"trait enum\",e:\"{\",c:[e.inherit(e.UTM,{endsParent:!0})],i:\"[\\\\w\\\\d]\"},{b:e.IR+\"::\"},{b:\"->\"}]}});hljs.registerLanguage(\"fix\",function(u){return{c:[{b:/[^\\u2401\\u0001]+/,e:/[\\u2401\\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\\u2401\\u0001=]+)/,e:/=([^\\u2401\\u0001=]+)/,rE:!0,rB:!1,cN:\"attribute\"},{b:/=/,e:/([\\u2401\\u0001])/,eE:!0,eB:!0,cN:\"string\"}]}],cI:!0}});hljs.registerLanguage(\"gradle\",function(e){return{cI:!0,k:{keyword:\"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage(\"xl\",function(e){var t=\"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\",o={keyword:\"if then else do while until for loop import with is as where when by data constant\",literal:\"true false nil\",type:\"integer real text name boolean symbol infix prefix postfix block tree\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at\",module:t,id:\"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons\"},a={cN:\"constant\",b:\"[A-Z][A-Z_0-9]+\",r:0},r={cN:\"variable\",b:\"([A-Z][a-z_0-9]+)+\",r:0},i={cN:\"id\",b:\"[a-z][a-z_0-9]+\",r:0},l={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"},n={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\"},s={cN:\"string\",b:\"<<\",e:\">>\"},c={cN:\"number\",b:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\",r:10},_={cN:\"import\",bK:\"import\",e:\"$\",k:{keyword:\"import\",module:t},r:0,c:[l]},d={cN:\"function\",b:\"[a-z].*->\"};return{aliases:[\"tao\"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage(\"ocaml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\",r:0},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"scheme\",function(e){var t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",r=\"(\\\\-|\\\\+)?\\\\d+([./]\\\\d+)?\",i=r+\"[+\\\\-]\"+r+\"i\",a={built_in:\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},n={cN:\"shebang\",b:\"^#!\",e:\"$\"},c={cN:\"literal\",b:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},l={cN:\"number\",v:[{b:r,r:0},{b:i,r:0},{b:\"#b[0-1]+(/[0-1]+)?\"},{b:\"#o[0-7]+(/[0-7]+)?\"},{b:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QSM,o=[e.C(\";\",\"$\",{r:0}),e.C(\"#\\\\|\",\"\\\\|#\")],u={b:t,r:0},p={cN:\"variable\",b:\"'\"+t},d={eW:!0,r:0},g={cN:\"list\",v:[{b:\"\\\\(\",e:\"\\\\)\"},{b:\"\\\\[\",e:\"\\\\]\"}],c:[{cN:\"keyword\",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage(\"http\",function(t){return{aliases:[\"https\"],i:\"\\\\S\",c:[{cN:\"status\",b:\"^HTTP/[0-9\\\\.]+\",e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{cN:\"request\",b:\"^[A-Z]+ (.*?) HTTP/[0-9\\\\.]+$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{cN:\"string\",e:\"$\"}},{b:\"\\\\n\\\\n\",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage(\"verilog\",function(e){return{aliases:[\"v\"],cI:!0,k:{keyword:\"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor\",typename:\"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor\"},c:[e.CBCM,e.CLCM,e.QSM,{cN:\"number\",b:\"\\\\b(\\\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+\",c:[e.BE],r:0},{cN:\"typename\",b:\"\\\\.\\\\w+\",r:0},{cN:\"value\",b:\"#\\\\((?!parameter).+\\\\)\"},{cN:\"keyword\",b:\"\\\\+|-|\\\\*|/|%|<|>|=|#|`|\\\\!|&|\\\\||@|:|\\\\^|~|\\\\{|\\\\}\",r:0}]}});hljs.registerLanguage(\"actionscript\",function(e){var a=\"[a-zA-Z_$][a-zA-Z0-9_$]*\",c=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\",t={cN:\"rest_arg\",b:\"[.]{3}\",e:a,r:10};return{aliases:[\"as\"],k:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"package\",bK:\"package\",e:\"{\",c:[e.TM]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",bK:\"import include\",e:\";\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:\"type\",b:\":\",e:c,r:10}]}],i:/#/}});hljs.registerLanguage(\"zephir\",function(e){var i={cN:\"string\",c:[e.BE],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:[\"zep\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[e.BE]},{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CBCM,i,n]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,n]}});hljs.registerLanguage(\"json\",function(e){var t={literal:\"true false null\"},i=[e.QSM,e.CNM],l={cN:\"value\",e:\",\",eW:!0,eE:!0,c:i,k:t},c={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:!0,eE:!0,c:[e.BE],i:\"\\\\n\",starts:l}],i:\"\\\\S\"},n={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(l,{cN:null})],i:\"\\\\S\"};return i.splice(i.length,0,c,n),{c:i,k:t,i:\"\\\\S\"}});hljs.registerLanguage(\"q\",function(e){var s={keyword:\"do while select delete by update from\",constant:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",typename:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"};return{aliases:[\"k\",\"kdb\"],k:s,l:/\\b(`?)[A-Za-z0-9_]+\\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage(\"processing\",function(e){return{k:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",constant:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",variable:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width\",title:\"setup draw\",built_in:\"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage(\"d\",function(e){var r={keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},t=\"(0|[1-9][\\\\d_]*)\",a=\"(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)\",i=\"0[bB][01_]+\",n=\"([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\",c=\"0[xX]\"+n,_=\"([eE][+-]?\"+a+\")\",d=\"(\"+a+\"(\\\\.\\\\d*|\"+_+\")|\\\\d+\\\\.\"+a+a+\"|\\\\.\"+t+_+\"?)\",o=\"(0[xX](\"+n+\"\\\\.\"+n+\"|\\\\.?\"+n+\")[pP][+-]?\"+a+\")\",s=\"(\"+t+\"|\"+i+\"|\"+c+\")\",l=\"(\"+o+\"|\"+d+\")\",u=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",b={cN:\"number\",b:\"\\\\b\"+s+\"(L|u|U|Lu|LU|uL|UL)?\",r:0},f={cN:\"number\",b:\"\\\\b(\"+l+\"([fF]|L|i|[fF]i|Li)?|\"+s+\"(i|[fF]i|Li))\",r:0},g={cN:\"string\",b:\"'(\"+u+\"|.)\",e:\"'\",i:\".\"},h={b:u,r:0},p={cN:\"string\",b:'\"',c:[h],e:'\"[cwd]?'},w={cN:\"string\",b:'[rq]\"',e:'\"[cwd]?',r:5},N={cN:\"string\",b:\"`\",e:\"`[cwd]?\"},A={cN:\"string\",b:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',r:10},F={cN:\"string\",b:'q\"\\\\{',e:'\\\\}\"'},m={cN:\"shebang\",b:\"^#!\",e:\"$\",r:5},y={cN:\"preprocessor\",b:\"#(line)\",e:\"$\",r:5},L={cN:\"keyword\",b:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"},v=e.C(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{c:[\"self\"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage(\"asciidoc\",function(e){return{aliases:[\"adoc\"],c:[e.C(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{r:10}),e.C(\"^//\",\"$\",{r:0}),{cN:\"title\",b:\"^\\\\.\\\\w.*$\"},{b:\"^[=\\\\*]{4,}\\\\n\",e:\"\\\\n^[=\\\\*]{4,}$\",r:10},{cN:\"header\",b:\"^(={1,5}) .+?( \\\\1)?$\",r:10},{cN:\"header\",b:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\",r:10},{cN:\"attribute\",b:\"^:.+?:\",e:\"\\\\s\",eE:!0,r:10},{cN:\"attribute\",b:\"^\\\\[.+?\\\\]$\",r:0},{cN:\"blockquote\",b:\"^_{4,}\\\\n\",e:\"\\\\n_{4,}$\",r:10},{cN:\"code\",b:\"^[\\\\-\\\\.]{4,}\\\\n\",e:\"\\\\n[\\\\-\\\\.]{4,}$\",r:10},{b:\"^\\\\+{4,}\\\\n\",e:\"\\\\n\\\\+{4,}$\",c:[{b:\"<\",e:\">\",sL:\"xml\",r:0}],r:10},{cN:\"bullet\",b:\"^(\\\\*+|\\\\-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"},{cN:\"label\",b:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",r:10},{cN:\"strong\",b:\"\\\\B\\\\*(?![\\\\*\\\\s])\",e:\"(\\\\n{2}|\\\\*)\",c:[{b:\"\\\\\\\\*\\\\w\",r:0}]},{cN:\"emphasis\",b:\"\\\\B'(?!['\\\\s])\",e:\"(\\\\n{2}|')\",c:[{b:\"\\\\\\\\'\\\\w\",r:0}],r:0},{cN:\"emphasis\",b:\"_(?![_\\\\s])\",e:\"(\\\\n{2}|_)\",r:0},{cN:\"smartquote\",v:[{b:\"``.+?''\"},{b:\"`.+?'\"}]},{cN:\"code\",b:\"(`.+?`|\\\\+.+?\\\\+)\",r:0},{cN:\"code\",b:\"^[ \\\\t]\",e:\"$\",r:0},{cN:\"horizontal_rule\",b:\"^'{3,}[ \\\\t]*$\",r:10},{b:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+\\\\[.*?\\\\]\",rB:!0,c:[{b:\"(link|image:?):\",r:0},{cN:\"link_url\",b:\"\\\\w\",e:\"[^\\\\[]+\",r:0},{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage(\"rsl\",function(e){return{k:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"shader\",bK:\"surface displacement light volume imager\",e:\"\\\\(\"},{cN:\"shading\",bK:\"illuminate illuminance gather\",e:\"\\\\(\"}]}});hljs.registerLanguage(\"fsharp\",function(e){var t={b:\"<\",e:\">\",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:[\"fs\"],k:\"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",i:/\\/\\*/,c:[{cN:\"keyword\",b:/\\b(yield|return|let|do)!/},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),{cN:\"class\",bK:\"type\",e:\"\\\\(|=|$\",eE:!0,c:[e.UTM,t]},{cN:\"annotation\",b:\"\\\\[<\",e:\">\\\\]\",r:10},{cN:\"attribute\",b:\"\\\\B('[A-Za-z])\\\\b\",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});"
  },
  {
    "path": "doc/cppnow-2016/plugin/markdown/example.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Markdown Demo</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\n        <link rel=\"stylesheet\" href=\"../../lib/css/zenburn.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n                <!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->\n                <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section>\n\n                <!-- Slides are separated by three dashes (quick 'n dirty regular expression) -->\n                <section data-markdown data-separator=\"---\">\n                    <script type=\"text/template\">\n                        ## Demo 1\n                        Slide 1\n                        ---\n                        ## Demo 1\n                        Slide 2\n                        ---\n                        ## Demo 1\n                        Slide 3\n                    </script>\n                </section>\n\n                <!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n                <section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n                    <script type=\"text/template\">\n                        ## Demo 2\n                        Slide 1.1\n\n                        --\n\n                        ## Demo 2\n                        Slide 1.2\n\n                        ---\n\n                        ## Demo 2\n                        Slide 2\n                    </script>\n                </section>\n\n                <!-- No \"extra\" slides, since there are no separators defined (so they'll become horizontal rulers) -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        A\n\n                        ---\n\n                        B\n\n                        ---\n\n                        C\n                    </script>\n                </section>\n\n                <!-- Slide attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        <!-- .slide: data-background=\"#000000\" -->\n                        ## Slide attributes\n                    </script>\n                </section>\n\n                <!-- Element attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ## Element attributes\n                        - Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n                        - Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n                    </script>\n                </section>\n\n                <!-- Code -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ```php\n                        public function foo()\n                        {\n                            $foo = array(\n                                'bar' => 'bar'\n                            )\n                        }\n                        ```\n                    </script>\n                </section>\n\n            </div>\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcontrols: true,\n\t\t\t\tprogress: true,\n\t\t\t\thistory: true,\n\t\t\t\tcenter: true,\n\n\t\t\t\t// Optional libraries used to extend on reveal.js\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: '../highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: '../notes/notes.js' }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/markdown/example.md",
    "content": "# Markdown Demo\n\n\n\n## External 1.1\n\nContent 1.1\n\nNote: This will only appear in the speaker notes window.\n\n\n## External 1.2\n\nContent 1.2\n\n\n\n## External 2\n\nContent 2.1\n\n\n\n## External 3.1\n\nContent 3.1\n\n\n## External 3.2\n\nContent 3.2\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/markdown/markdown.js",
    "content": "/**\n * The reveal.js markdown plugin. Handles parsing of\n * markdown inside of presentations as well as loading\n * of external markdown documents.\n */\n(function( root, factory ) {\n\tif( typeof exports === 'object' ) {\n\t\tmodule.exports = factory( require( './marked' ) );\n\t}\n\telse {\n\t\t// Browser globals (root is window)\n\t\troot.RevealMarkdown = factory( root.marked );\n\t\troot.RevealMarkdown.initialize();\n\t}\n}( this, function( marked ) {\n\n\tif( typeof marked === 'undefined' ) {\n\t\tthrow 'The reveal.js Markdown plugin requires marked to be loaded';\n\t}\n\n\tif( typeof hljs !== 'undefined' ) {\n\t\tmarked.setOptions({\n\t\t\thighlight: function( lang, code ) {\n\t\t\t\treturn hljs.highlightAuto( lang, code ).value;\n\t\t\t}\n\t\t});\n\t}\n\n\tvar DEFAULT_SLIDE_SEPARATOR = '^\\r?\\n---\\r?\\n$',\n\t\tDEFAULT_NOTES_SEPARATOR = 'note:',\n\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR = '\\\\\\.element\\\\\\s*?(.+?)$',\n\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR = '\\\\\\.slide:\\\\\\s*?(\\\\\\S.+?)$';\n\n\tvar SCRIPT_END_PLACEHOLDER = '__SCRIPT_END__';\n\n\n\t/**\n\t * Retrieves the markdown contents of a slide section\n\t * element. Normalizes leading tabs/whitespace.\n\t */\n\tfunction getMarkdownFromSlide( section ) {\n\n\t\tvar template = section.querySelector( 'script' );\n\n\t\t// strip leading whitespace so it isn't evaluated as code\n\t\tvar text = ( template || section ).textContent;\n\n\t\t// restore script end tags\n\t\ttext = text.replace( new RegExp( SCRIPT_END_PLACEHOLDER, 'g' ), '</script>' );\n\n\t\tvar leadingWs = text.match( /^\\n?(\\s*)/ )[1].length,\n\t\t\tleadingTabs = text.match( /^\\n?(\\t*)/ )[1].length;\n\n\t\tif( leadingTabs > 0 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n?\\\\t{' + leadingTabs + '}','g'), '\\n' );\n\t\t}\n\t\telse if( leadingWs > 1 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n? {' + leadingWs + '}', 'g'), '\\n' );\n\t\t}\n\n\t\treturn text;\n\n\t}\n\n\t/**\n\t * Given a markdown slide section element, this will\n\t * return all arguments that aren't related to markdown\n\t * parsing. Used to forward any other user-defined arguments\n\t * to the output markdown slide.\n\t */\n\tfunction getForwardedAttributes( section ) {\n\n\t\tvar attributes = section.attributes;\n\t\tvar result = [];\n\n\t\tfor( var i = 0, len = attributes.length; i < len; i++ ) {\n\t\t\tvar name = attributes[i].name,\n\t\t\t\tvalue = attributes[i].value;\n\n\t\t\t// disregard attributes that are used for markdown loading/parsing\n\t\t\tif( /data\\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue;\n\n\t\t\tif( value ) {\n\t\t\t\tresult.push( name + '=\"' + value + '\"' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tresult.push( name );\n\t\t\t}\n\t\t}\n\n\t\treturn result.join( ' ' );\n\n\t}\n\n\t/**\n\t * Inspects the given options and fills out default\n\t * values for what's not defined.\n\t */\n\tfunction getSlidifyOptions( options ) {\n\n\t\toptions = options || {};\n\t\toptions.separator = options.separator || DEFAULT_SLIDE_SEPARATOR;\n\t\toptions.notesSeparator = options.notesSeparator || DEFAULT_NOTES_SEPARATOR;\n\t\toptions.attributes = options.attributes || '';\n\n\t\treturn options;\n\n\t}\n\n\t/**\n\t * Helper function for constructing a markdown slide.\n\t */\n\tfunction createMarkdownSlide( content, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar notesMatch = content.split( new RegExp( options.notesSeparator, 'mgi' ) );\n\n\t\tif( notesMatch.length === 2 ) {\n\t\t\tcontent = notesMatch[0] + '<aside class=\"notes\" data-markdown>' + notesMatch[1].trim() + '</aside>';\n\t\t}\n\n\t\t// prevent script end tags in the content from interfering\n\t\t// with parsing\n\t\tcontent = content.replace( /<\\/script>/g, SCRIPT_END_PLACEHOLDER );\n\n\t\treturn '<script type=\"text/template\">' + content + '</script>';\n\n\t}\n\n\t/**\n\t * Parses a data string into multiple slides based\n\t * on the passed in separator arguments.\n\t */\n\tfunction slidify( markdown, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ),\n\t\t\thorizontalSeparatorRegex = new RegExp( options.separator );\n\n\t\tvar matches,\n\t\t\tlastIndex = 0,\n\t\t\tisHorizontal,\n\t\t\twasHorizontal = true,\n\t\t\tcontent,\n\t\t\tsectionStack = [];\n\n\t\t// iterate until all blocks between separators are stacked up\n\t\twhile( matches = separatorRegex.exec( markdown ) ) {\n\t\t\tnotes = null;\n\n\t\t\t// determine direction (horizontal by default)\n\t\t\tisHorizontal = horizontalSeparatorRegex.test( matches[0] );\n\n\t\t\tif( !isHorizontal && wasHorizontal ) {\n\t\t\t\t// create vertical stack\n\t\t\t\tsectionStack.push( [] );\n\t\t\t}\n\n\t\t\t// pluck slide content from markdown input\n\t\t\tcontent = markdown.substring( lastIndex, matches.index );\n\n\t\t\tif( isHorizontal && wasHorizontal ) {\n\t\t\t\t// add to horizontal stack\n\t\t\t\tsectionStack.push( content );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// add to vertical stack\n\t\t\t\tsectionStack[sectionStack.length-1].push( content );\n\t\t\t}\n\n\t\t\tlastIndex = separatorRegex.lastIndex;\n\t\t\twasHorizontal = isHorizontal;\n\t\t}\n\n\t\t// add the remaining slide\n\t\t( wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1] ).push( markdown.substring( lastIndex ) );\n\n\t\tvar markdownSections = '';\n\n\t\t// flatten the hierarchical stack, and insert <section data-markdown> tags\n\t\tfor( var i = 0, len = sectionStack.length; i < len; i++ ) {\n\t\t\t// vertical\n\t\t\tif( sectionStack[i] instanceof Array ) {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +'>';\n\n\t\t\t\tsectionStack[i].forEach( function( child ) {\n\t\t\t\t\tmarkdownSections += '<section data-markdown>' +  createMarkdownSlide( child, options ) + '</section>';\n\t\t\t\t} );\n\n\t\t\t\tmarkdownSections += '</section>';\n\t\t\t}\n\t\t\telse {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +' data-markdown>' + createMarkdownSlide( sectionStack[i], options ) + '</section>';\n\t\t\t}\n\t\t}\n\n\t\treturn markdownSections;\n\n\t}\n\n\t/**\n\t * Parses any current data-markdown slides, splits\n\t * multi-slide markdown into separate sections and\n\t * handles loading of external markdown.\n\t */\n\tfunction processSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]'),\n\t\t\tsection;\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tsection = sections[i];\n\n\t\t\tif( section.getAttribute( 'data-markdown' ).length ) {\n\n\t\t\t\tvar xhr = new XMLHttpRequest(),\n\t\t\t\t\turl = section.getAttribute( 'data-markdown' );\n\n\t\t\t\tdatacharset = section.getAttribute( 'data-charset' );\n\n\t\t\t\t// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes\n\t\t\t\tif( datacharset != null && datacharset != '' ) {\n\t\t\t\t\txhr.overrideMimeType( 'text/html; charset=' + datacharset );\n\t\t\t\t}\n\n\t\t\t\txhr.onreadystatechange = function() {\n\t\t\t\t\tif( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// file protocol yields status code 0 (useful for local debug, mobile applications etc.)\n\t\t\t\t\t\tif ( ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status === 0 ) {\n\n\t\t\t\t\t\t\tsection.outerHTML = slidify( xhr.responseText, {\n\t\t\t\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\tsection.outerHTML = '<section data-state=\"alert\">' +\n\t\t\t\t\t\t\t\t'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' +\n\t\t\t\t\t\t\t\t'Check your browser\\'s JavaScript console for more details.' +\n\t\t\t\t\t\t\t\t'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' +\n\t\t\t\t\t\t\t\t'</section>';\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\txhr.open( 'GET', url, false );\n\n\t\t\t\ttry {\n\t\t\t\t\txhr.send();\n\t\t\t\t}\n\t\t\t\tcatch ( e ) {\n\t\t\t\t\talert( 'Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e );\n\t\t\t\t}\n\n\t\t\t}\n\t\t\telse if( section.getAttribute( 'data-separator' ) || section.getAttribute( 'data-separator-vertical' ) || section.getAttribute( 'data-separator-notes' ) ) {\n\n\t\t\t\tsection.outerHTML = slidify( getMarkdownFromSlide( section ), {\n\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t});\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\tsection.innerHTML = createMarkdownSlide( getMarkdownFromSlide( section ) );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Check if a node value has the attributes pattern.\n\t * If yes, extract it and add that value as one or several attributes\n\t * the the terget element.\n\t *\n\t * You need Cache Killer on Chrome to see the effect on any FOM transformation\n\t * directly on refresh (F5)\n\t * http://stackoverflow.com/questions/5690269/disabling-chrome-cache-for-website-development/7000899#answer-11786277\n\t */\n\tfunction addAttributeInElement( node, elementTarget, separator ) {\n\n\t\tvar mardownClassesInElementsRegex = new RegExp( separator, 'mg' );\n\t\tvar mardownClassRegex = new RegExp( \"([^\\\"= ]+?)=\\\"([^\\\"=]+?)\\\"\", 'mg' );\n\t\tvar nodeValue = node.nodeValue;\n\t\tif( matches = mardownClassesInElementsRegex.exec( nodeValue ) ) {\n\n\t\t\tvar classes = matches[1];\n\t\t\tnodeValue = nodeValue.substring( 0, matches.index ) + nodeValue.substring( mardownClassesInElementsRegex.lastIndex );\n\t\t\tnode.nodeValue = nodeValue;\n\t\t\twhile( matchesClass = mardownClassRegex.exec( classes ) ) {\n\t\t\t\telementTarget.setAttribute( matchesClass[1], matchesClass[2] );\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Add attributes to the parent element of a text node,\n\t * or the element of an attribute node.\n\t */\n\tfunction addAttributes( section, element, previousElement, separatorElementAttributes, separatorSectionAttributes ) {\n\n\t\tif ( element != null && element.childNodes != undefined && element.childNodes.length > 0 ) {\n\t\t\tpreviousParentElement = element;\n\t\t\tfor( var i = 0; i < element.childNodes.length; i++ ) {\n\t\t\t\tchildElement = element.childNodes[i];\n\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\tj = i - 1;\n\t\t\t\t\twhile ( j >= 0 ) {\n\t\t\t\t\t\taPreviousChildElement = element.childNodes[j];\n\t\t\t\t\t\tif ( typeof aPreviousChildElement.setAttribute == 'function' && aPreviousChildElement.tagName != \"BR\" ) {\n\t\t\t\t\t\t\tpreviousParentElement = aPreviousChildElement;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tj = j - 1;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tparentSection = section;\n\t\t\t\tif( childElement.nodeName ==  \"section\" ) {\n\t\t\t\t\tparentSection = childElement ;\n\t\t\t\t\tpreviousParentElement = childElement ;\n\t\t\t\t}\n\t\t\t\tif ( typeof childElement.setAttribute == 'function' || childElement.nodeType == Node.COMMENT_NODE ) {\n\t\t\t\t\taddAttributes( parentSection, childElement, previousParentElement, separatorElementAttributes, separatorSectionAttributes );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( element.nodeType == Node.COMMENT_NODE ) {\n\t\t\tif ( addAttributeInElement( element, previousElement, separatorElementAttributes ) == false ) {\n\t\t\t\taddAttributeInElement( element, section, separatorSectionAttributes );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Converts any current data-markdown slides in the\n\t * DOM to HTML.\n\t */\n\tfunction convertSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]');\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tvar section = sections[i];\n\n\t\t\t// Only parse the same slide once\n\t\t\tif( !section.getAttribute( 'data-markdown-parsed' ) ) {\n\n\t\t\t\tsection.setAttribute( 'data-markdown-parsed', true )\n\n\t\t\t\tvar notes = section.querySelector( 'aside.notes' );\n\t\t\t\tvar markdown = getMarkdownFromSlide( section );\n\n\t\t\t\tsection.innerHTML = marked( markdown );\n\t\t\t\taddAttributes( \tsection, section, null, section.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR,\n\t\t\t\t\t\t\t\tsection.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR);\n\n\t\t\t\t// If there were notes, we need to re-add them after\n\t\t\t\t// having overwritten the section's HTML\n\t\t\t\tif( notes ) {\n\t\t\t\t\tsection.appendChild( notes );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t// API\n\treturn {\n\n\t\tinitialize: function() {\n\t\t\tprocessSlides();\n\t\t\tconvertSlides();\n\t\t},\n\n\t\t// TODO: Do these belong in the API?\n\t\tprocessSlides: processSlides,\n\t\tconvertSlides: convertSlides,\n\t\tslidify: slidify\n\n\t};\n\n}));\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/markdown/marked.js",
    "content": "/**\n * marked - a markdown parser\n * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)\n * https://github.com/chjj/marked\n */\n(function(){function e(e){this.tokens=[],this.tokens.links={},this.options=e||a.defaults,this.rules=p.normal,this.options.gfm&&(this.rules=this.options.tables?p.tables:p.gfm)}function t(e,t){if(this.options=t||a.defaults,this.links=e,this.rules=u.normal,this.renderer=this.options.renderer||new n,this.renderer.options=this.options,!this.links)throw new Error(\"Tokens array requires a `links` property.\");this.options.gfm?this.rules=this.options.breaks?u.breaks:u.gfm:this.options.pedantic&&(this.rules=u.pedantic)}function n(e){this.options=e||{}}function r(e){this.tokens=[],this.token=null,this.options=e||a.defaults,this.options.renderer=this.options.renderer||new n,this.renderer=this.options.renderer,this.renderer.options=this.options}function s(e,t){return e.replace(t?/&/g:/&(?!#?\\w+;)/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\").replace(/'/g,\"&#39;\")}function i(e){return e.replace(/&([#\\w]+);/g,function(e,t){return t=t.toLowerCase(),\"colon\"===t?\":\":\"#\"===t.charAt(0)?String.fromCharCode(\"x\"===t.charAt(1)?parseInt(t.substring(2),16):+t.substring(1)):\"\"})}function l(e,t){return e=e.source,t=t||\"\",function n(r,s){return r?(s=s.source||s,s=s.replace(/(^|[^\\[])\\^/g,\"$1\"),e=e.replace(r,s),n):new RegExp(e,t)}}function o(){}function h(e){for(var t,n,r=1;r<arguments.length;r++){t=arguments[r];for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e}function a(t,n,i){if(i||\"function\"==typeof n){i||(i=n,n=null),n=h({},a.defaults,n||{});var l,o,p=n.highlight,u=0;try{l=e.lex(t,n)}catch(c){return i(c)}o=l.length;var g=function(e){if(e)return n.highlight=p,i(e);var t;try{t=r.parse(l,n)}catch(s){e=s}return n.highlight=p,e?i(e):i(null,t)};if(!p||p.length<3)return g();if(delete n.highlight,!o)return g();for(;u<l.length;u++)!function(e){return\"code\"!==e.type?--o||g():p(e.text,e.lang,function(t,n){return t?g(t):null==n||n===e.text?--o||g():(e.text=n,e.escaped=!0,void(--o||g()))})}(l[u])}else try{return n&&(n=h({},a.defaults,n)),r.parse(e.lex(t,n),n)}catch(c){if(c.message+=\"\\nPlease report this to https://github.com/chjj/marked.\",(n||a.defaults).silent)return\"<p>An error occured:</p><pre>\"+s(c.message+\"\",!0)+\"</pre>\";throw c}}var p={newline:/^\\n+/,code:/^( {4}[^\\n]+\\n*)+/,fences:o,hr:/^( *[-*_]){3,} *(?:\\n+|$)/,heading:/^ *(#{1,6}) *([^\\n]+?) *#* *(?:\\n+|$)/,nptable:o,lheading:/^([^\\n]+)\\n *(=|-){2,} *(?:\\n+|$)/,blockquote:/^( *>[^\\n]+(\\n(?!def)[^\\n]+)*\\n*)+/,list:/^( *)(bull) [\\s\\S]+?(?:hr|def|\\n{2,}(?! )(?!\\1bull )\\n*|\\s*$)/,html:/^ *(?:comment *(?:\\n|\\s*$)|closed *(?:\\n{2,}|\\s*$)|closing *(?:\\n{2,}|\\s*$))/,def:/^ *\\[([^\\]]+)\\]: *<?([^\\s>]+)>?(?: +[\"(]([^\\n]+)[\")])? *(?:\\n+|$)/,table:o,paragraph:/^((?:[^\\n]+\\n?(?!hr|heading|lheading|blockquote|tag|def))+)\\n*/,text:/^[^\\n]+/};p.bullet=/(?:[*+-]|\\d+\\.)/,p.item=/^( *)(bull) [^\\n]*(?:\\n(?!\\1bull )[^\\n]*)*/,p.item=l(p.item,\"gm\")(/bull/g,p.bullet)(),p.list=l(p.list)(/bull/g,p.bullet)(\"hr\",\"\\\\n+(?=\\\\1?(?:[-*_] *){3,}(?:\\\\n+|$))\")(\"def\",\"\\\\n+(?=\"+p.def.source+\")\")(),p.blockquote=l(p.blockquote)(\"def\",p.def)(),p._tag=\"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\\\b)\\\\w+(?!:/|[^\\\\w\\\\s@]*@)\\\\b\",p.html=l(p.html)(\"comment\",/<!--[\\s\\S]*?-->/)(\"closed\",/<(tag)[\\s\\S]+?<\\/\\1>/)(\"closing\",/<tag(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/)(/tag/g,p._tag)(),p.paragraph=l(p.paragraph)(\"hr\",p.hr)(\"heading\",p.heading)(\"lheading\",p.lheading)(\"blockquote\",p.blockquote)(\"tag\",\"<\"+p._tag)(\"def\",p.def)(),p.normal=h({},p),p.gfm=h({},p.normal,{fences:/^ *(`{3,}|~{3,}) *(\\S+)? *\\n([\\s\\S]+?)\\s*\\1 *(?:\\n+|$)/,paragraph:/^/}),p.gfm.paragraph=l(p.paragraph)(\"(?!\",\"(?!\"+p.gfm.fences.source.replace(\"\\\\1\",\"\\\\2\")+\"|\"+p.list.source.replace(\"\\\\1\",\"\\\\3\")+\"|\")(),p.tables=h({},p.gfm,{nptable:/^ *(\\S.*\\|.*)\\n *([-:]+ *\\|[-| :]*)\\n((?:.*\\|.*(?:\\n|$))*)\\n*/,table:/^ *\\|(.+)\\n *\\|( *[-:]+[-| :]*)\\n((?: *\\|.*(?:\\n|$))*)\\n*/}),e.rules=p,e.lex=function(t,n){var r=new e(n);return r.lex(t)},e.prototype.lex=function(e){return e=e.replace(/\\r\\n|\\r/g,\"\\n\").replace(/\\t/g,\"    \").replace(/\\u00a0/g,\" \").replace(/\\u2424/g,\"\\n\"),this.token(e,!0)},e.prototype.token=function(e,t,n){for(var r,s,i,l,o,h,a,u,c,e=e.replace(/^ +$/gm,\"\");e;)if((i=this.rules.newline.exec(e))&&(e=e.substring(i[0].length),i[0].length>1&&this.tokens.push({type:\"space\"})),i=this.rules.code.exec(e))e=e.substring(i[0].length),i=i[0].replace(/^ {4}/gm,\"\"),this.tokens.push({type:\"code\",text:this.options.pedantic?i:i.replace(/\\n+$/,\"\")});else if(i=this.rules.fences.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"code\",lang:i[2],text:i[3]});else if(i=this.rules.heading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:i[1].length,text:i[2]});else if(t&&(i=this.rules.nptable.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].split(/ *\\| */);this.tokens.push(h)}else if(i=this.rules.lheading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:\"=\"===i[2]?1:2,text:i[1]});else if(i=this.rules.hr.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"hr\"});else if(i=this.rules.blockquote.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"blockquote_start\"}),i=i[0].replace(/^ *> ?/gm,\"\"),this.token(i,t,!0),this.tokens.push({type:\"blockquote_end\"});else if(i=this.rules.list.exec(e)){for(e=e.substring(i[0].length),l=i[2],this.tokens.push({type:\"list_start\",ordered:l.length>1}),i=i[0].match(this.rules.item),r=!1,c=i.length,u=0;c>u;u++)h=i[u],a=h.length,h=h.replace(/^ *([*+-]|\\d+\\.) +/,\"\"),~h.indexOf(\"\\n \")&&(a-=h.length,h=this.options.pedantic?h.replace(/^ {1,4}/gm,\"\"):h.replace(new RegExp(\"^ {1,\"+a+\"}\",\"gm\"),\"\")),this.options.smartLists&&u!==c-1&&(o=p.bullet.exec(i[u+1])[0],l===o||l.length>1&&o.length>1||(e=i.slice(u+1).join(\"\\n\")+e,u=c-1)),s=r||/\\n\\n(?!\\s*$)/.test(h),u!==c-1&&(r=\"\\n\"===h.charAt(h.length-1),s||(s=r)),this.tokens.push({type:s?\"loose_item_start\":\"list_item_start\"}),this.token(h,!1,n),this.tokens.push({type:\"list_item_end\"});this.tokens.push({type:\"list_end\"})}else if(i=this.rules.html.exec(e))e=e.substring(i[0].length),this.tokens.push({type:this.options.sanitize?\"paragraph\":\"html\",pre:\"pre\"===i[1]||\"script\"===i[1]||\"style\"===i[1],text:i[0]});else if(!n&&t&&(i=this.rules.def.exec(e)))e=e.substring(i[0].length),this.tokens.links[i[1].toLowerCase()]={href:i[2],title:i[3]};else if(t&&(i=this.rules.table.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/(?: *\\| *)?\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].replace(/^ *\\| *| *\\| *$/g,\"\").split(/ *\\| */);this.tokens.push(h)}else if(t&&(i=this.rules.paragraph.exec(e)))e=e.substring(i[0].length),this.tokens.push({type:\"paragraph\",text:\"\\n\"===i[1].charAt(i[1].length-1)?i[1].slice(0,-1):i[1]});else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"text\",text:i[0]});else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0));return this.tokens};var u={escape:/^\\\\([\\\\`*{}\\[\\]()#+\\-.!_>])/,autolink:/^<([^ >]+(@|:\\/)[^ >]+)>/,url:o,tag:/^<!--[\\s\\S]*?-->|^<\\/?\\w+(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/,link:/^!?\\[(inside)\\]\\(href\\)/,reflink:/^!?\\[(inside)\\]\\s*\\[([^\\]]*)\\]/,nolink:/^!?\\[((?:\\[[^\\]]*\\]|[^\\[\\]])*)\\]/,strong:/^__([\\s\\S]+?)__(?!_)|^\\*\\*([\\s\\S]+?)\\*\\*(?!\\*)/,em:/^\\b_((?:__|[\\s\\S])+?)_\\b|^\\*((?:\\*\\*|[\\s\\S])+?)\\*(?!\\*)/,code:/^(`+)\\s*([\\s\\S]*?[^`])\\s*\\1(?!`)/,br:/^ {2,}\\n(?!\\s*$)/,del:o,text:/^[\\s\\S]+?(?=[\\\\<!\\[_*`]| {2,}\\n|$)/};u._inside=/(?:\\[[^\\]]*\\]|[^\\[\\]]|\\](?=[^\\[]*\\]))*/,u._href=/\\s*<?([\\s\\S]*?)>?(?:\\s+['\"]([\\s\\S]*?)['\"])?\\s*/,u.link=l(u.link)(\"inside\",u._inside)(\"href\",u._href)(),u.reflink=l(u.reflink)(\"inside\",u._inside)(),u.normal=h({},u),u.pedantic=h({},u.normal,{strong:/^__(?=\\S)([\\s\\S]*?\\S)__(?!_)|^\\*\\*(?=\\S)([\\s\\S]*?\\S)\\*\\*(?!\\*)/,em:/^_(?=\\S)([\\s\\S]*?\\S)_(?!_)|^\\*(?=\\S)([\\s\\S]*?\\S)\\*(?!\\*)/}),u.gfm=h({},u.normal,{escape:l(u.escape)(\"])\",\"~|])\")(),url:/^(https?:\\/\\/[^\\s<]+[^<.,:;\"')\\]\\s])/,del:/^~~(?=\\S)([\\s\\S]*?\\S)~~/,text:l(u.text)(\"]|\",\"~]|\")(\"|\",\"|https?://|\")()}),u.breaks=h({},u.gfm,{br:l(u.br)(\"{2,}\",\"*\")(),text:l(u.gfm.text)(\"{2,}\",\"*\")()}),t.rules=u,t.output=function(e,n,r){var s=new t(n,r);return s.output(e)},t.prototype.output=function(e){for(var t,n,r,i,l=\"\";e;)if(i=this.rules.escape.exec(e))e=e.substring(i[0].length),l+=i[1];else if(i=this.rules.autolink.exec(e))e=e.substring(i[0].length),\"@\"===i[2]?(n=this.mangle(\":\"===i[1].charAt(6)?i[1].substring(7):i[1]),r=this.mangle(\"mailto:\")+n):(n=s(i[1]),r=n),l+=this.renderer.link(r,null,n);else if(this.inLink||!(i=this.rules.url.exec(e))){if(i=this.rules.tag.exec(e))!this.inLink&&/^<a /i.test(i[0])?this.inLink=!0:this.inLink&&/^<\\/a>/i.test(i[0])&&(this.inLink=!1),e=e.substring(i[0].length),l+=this.options.sanitize?s(i[0]):i[0];else if(i=this.rules.link.exec(e))e=e.substring(i[0].length),this.inLink=!0,l+=this.outputLink(i,{href:i[2],title:i[3]}),this.inLink=!1;else if((i=this.rules.reflink.exec(e))||(i=this.rules.nolink.exec(e))){if(e=e.substring(i[0].length),t=(i[2]||i[1]).replace(/\\s+/g,\" \"),t=this.links[t.toLowerCase()],!t||!t.href){l+=i[0].charAt(0),e=i[0].substring(1)+e;continue}this.inLink=!0,l+=this.outputLink(i,t),this.inLink=!1}else if(i=this.rules.strong.exec(e))e=e.substring(i[0].length),l+=this.renderer.strong(this.output(i[2]||i[1]));else if(i=this.rules.em.exec(e))e=e.substring(i[0].length),l+=this.renderer.em(this.output(i[2]||i[1]));else if(i=this.rules.code.exec(e))e=e.substring(i[0].length),l+=this.renderer.codespan(s(i[2],!0));else if(i=this.rules.br.exec(e))e=e.substring(i[0].length),l+=this.renderer.br();else if(i=this.rules.del.exec(e))e=e.substring(i[0].length),l+=this.renderer.del(this.output(i[1]));else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),l+=s(this.smartypants(i[0]));else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0))}else e=e.substring(i[0].length),n=s(i[1]),r=n,l+=this.renderer.link(r,null,n);return l},t.prototype.outputLink=function(e,t){var n=s(t.href),r=t.title?s(t.title):null;return\"!\"!==e[0].charAt(0)?this.renderer.link(n,r,this.output(e[1])):this.renderer.image(n,r,s(e[1]))},t.prototype.smartypants=function(e){return this.options.smartypants?e.replace(/--/g,\"—\").replace(/(^|[-\\u2014/(\\[{\"\\s])'/g,\"$1‘\").replace(/'/g,\"’\").replace(/(^|[-\\u2014/(\\[{\\u2018\\s])\"/g,\"$1“\").replace(/\"/g,\"”\").replace(/\\.{3}/g,\"…\"):e},t.prototype.mangle=function(e){for(var t,n=\"\",r=e.length,s=0;r>s;s++)t=e.charCodeAt(s),Math.random()>.5&&(t=\"x\"+t.toString(16)),n+=\"&#\"+t+\";\";return n},n.prototype.code=function(e,t,n){if(this.options.highlight){var r=this.options.highlight(e,t);null!=r&&r!==e&&(n=!0,e=r)}return t?'<pre><code class=\"'+this.options.langPrefix+s(t,!0)+'\">'+(n?e:s(e,!0))+\"\\n</code></pre>\\n\":\"<pre><code>\"+(n?e:s(e,!0))+\"\\n</code></pre>\"},n.prototype.blockquote=function(e){return\"<blockquote>\\n\"+e+\"</blockquote>\\n\"},n.prototype.html=function(e){return e},n.prototype.heading=function(e,t,n){return\"<h\"+t+' id=\"'+this.options.headerPrefix+n.toLowerCase().replace(/[^\\w]+/g,\"-\")+'\">'+e+\"</h\"+t+\">\\n\"},n.prototype.hr=function(){return this.options.xhtml?\"<hr/>\\n\":\"<hr>\\n\"},n.prototype.list=function(e,t){var n=t?\"ol\":\"ul\";return\"<\"+n+\">\\n\"+e+\"</\"+n+\">\\n\"},n.prototype.listitem=function(e){return\"<li>\"+e+\"</li>\\n\"},n.prototype.paragraph=function(e){return\"<p>\"+e+\"</p>\\n\"},n.prototype.table=function(e,t){return\"<table>\\n<thead>\\n\"+e+\"</thead>\\n<tbody>\\n\"+t+\"</tbody>\\n</table>\\n\"},n.prototype.tablerow=function(e){return\"<tr>\\n\"+e+\"</tr>\\n\"},n.prototype.tablecell=function(e,t){var n=t.header?\"th\":\"td\",r=t.align?\"<\"+n+' style=\"text-align:'+t.align+'\">':\"<\"+n+\">\";return r+e+\"</\"+n+\">\\n\"},n.prototype.strong=function(e){return\"<strong>\"+e+\"</strong>\"},n.prototype.em=function(e){return\"<em>\"+e+\"</em>\"},n.prototype.codespan=function(e){return\"<code>\"+e+\"</code>\"},n.prototype.br=function(){return this.options.xhtml?\"<br/>\":\"<br>\"},n.prototype.del=function(e){return\"<del>\"+e+\"</del>\"},n.prototype.link=function(e,t,n){if(this.options.sanitize){try{var r=decodeURIComponent(i(e)).replace(/[^\\w:]/g,\"\").toLowerCase()}catch(s){return\"\"}if(0===r.indexOf(\"javascript:\")||0===r.indexOf(\"vbscript:\"))return\"\"}var l='<a href=\"'+e+'\"';return t&&(l+=' title=\"'+t+'\"'),l+=\">\"+n+\"</a>\"},n.prototype.image=function(e,t,n){var r='<img src=\"'+e+'\" alt=\"'+n+'\"';return t&&(r+=' title=\"'+t+'\"'),r+=this.options.xhtml?\"/>\":\">\"},r.parse=function(e,t,n){var s=new r(t,n);return s.parse(e)},r.prototype.parse=function(e){this.inline=new t(e.links,this.options,this.renderer),this.tokens=e.reverse();for(var n=\"\";this.next();)n+=this.tok();return n},r.prototype.next=function(){return this.token=this.tokens.pop()},r.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},r.prototype.parseText=function(){for(var e=this.token.text;\"text\"===this.peek().type;)e+=\"\\n\"+this.next().text;return this.inline.output(e)},r.prototype.tok=function(){switch(this.token.type){case\"space\":return\"\";case\"hr\":return this.renderer.hr();case\"heading\":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text);case\"code\":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case\"table\":var e,t,n,r,s,i=\"\",l=\"\";for(n=\"\",e=0;e<this.token.header.length;e++)r={header:!0,align:this.token.align[e]},n+=this.renderer.tablecell(this.inline.output(this.token.header[e]),{header:!0,align:this.token.align[e]});for(i+=this.renderer.tablerow(n),e=0;e<this.token.cells.length;e++){for(t=this.token.cells[e],n=\"\",s=0;s<t.length;s++)n+=this.renderer.tablecell(this.inline.output(t[s]),{header:!1,align:this.token.align[s]});l+=this.renderer.tablerow(n)}return this.renderer.table(i,l);case\"blockquote_start\":for(var l=\"\";\"blockquote_end\"!==this.next().type;)l+=this.tok();return this.renderer.blockquote(l);case\"list_start\":for(var l=\"\",o=this.token.ordered;\"list_end\"!==this.next().type;)l+=this.tok();return this.renderer.list(l,o);case\"list_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=\"text\"===this.token.type?this.parseText():this.tok();return this.renderer.listitem(l);case\"loose_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=this.tok();return this.renderer.listitem(l);case\"html\":var h=this.token.pre||this.options.pedantic?this.token.text:this.inline.output(this.token.text);return this.renderer.html(h);case\"paragraph\":return this.renderer.paragraph(this.inline.output(this.token.text));case\"text\":return this.renderer.paragraph(this.parseText())}},o.exec=o,a.options=a.setOptions=function(e){return h(a.defaults,e),a},a.defaults={gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,smartLists:!1,silent:!1,highlight:null,langPrefix:\"lang-\",smartypants:!1,headerPrefix:\"\",renderer:new n,xhtml:!1},a.Parser=r,a.parser=r.parse,a.Renderer=n,a.Lexer=e,a.lexer=e.lex,a.InlineLexer=t,a.inlineLexer=t.output,a.parse=a,\"undefined\"!=typeof module&&\"object\"==typeof exports?module.exports=a:\"function\"==typeof define&&define.amd?define(function(){return a}):this.marked=a}).call(function(){return this||(\"undefined\"!=typeof window?window:global)}());"
  },
  {
    "path": "doc/cppnow-2016/plugin/math/math.js",
    "content": "/**\n * A plugin which enables rendering of math equations inside\n * of reveal.js slides. Essentially a thin wrapper for MathJax.\n *\n * @author Hakim El Hattab\n */\nvar RevealMath = window.RevealMath || (function(){\n\n\tvar options = Reveal.getConfig().math || {};\n\toptions.mathjax = options.mathjax || 'https://cdn.mathjax.org/mathjax/latest/MathJax.js';\n\toptions.config = options.config || 'TeX-AMS_HTML-full';\n\n\tloadScript( options.mathjax + '?config=' + options.config, function() {\n\n\t\tMathJax.Hub.Config({\n\t\t\tmessageStyle: 'none',\n\t\t\ttex2jax: {\n\t\t\t\tinlineMath: [['$','$'],['\\\\(','\\\\)']] ,\n\t\t\t\tskipTags: ['script','noscript','style','textarea','pre']\n\t\t\t},\n\t\t\tskipStartupTypeset: true\n\t\t});\n\n\t\t// Typeset followed by an immediate reveal.js layout since\n\t\t// the typesetting process could affect slide height\n\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] );\n\t\tMathJax.Hub.Queue( Reveal.layout );\n\n\t\t// Reprocess equations in slides when they turn visible\n\t\tReveal.addEventListener( 'slidechanged', function( event ) {\n\n\t\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] );\n\n\t\t} );\n\n\t} );\n\n\tfunction loadScript( url, callback ) {\n\n\t\tvar head = document.querySelector( 'head' );\n\t\tvar script = document.createElement( 'script' );\n\t\tscript.type = 'text/javascript';\n\t\tscript.src = url;\n\n\t\t// Wrapper for callback to make sure it only fires once\n\t\tvar finish = function() {\n\t\t\tif( typeof callback === 'function' ) {\n\t\t\t\tcallback.call();\n\t\t\t\tcallback = null;\n\t\t\t}\n\t\t}\n\n\t\tscript.onload = finish;\n\n\t\t// IE\n\t\tscript.onreadystatechange = function() {\n\t\t\tif ( this.readyState === 'loaded' ) {\n\t\t\t\tfinish();\n\t\t\t}\n\t\t}\n\n\t\t// Normal browsers\n\t\thead.appendChild( script );\n\n\t}\n\n})();\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/multiplex/client.js",
    "content": "(function() {\n\tvar multiplex = Reveal.getConfig().multiplex;\n\tvar socketId = multiplex.id;\n\tvar socket = io.connect(multiplex.url);\n\n\tsocket.on(multiplex.id, function(data) {\n\t\t// ignore data from sockets that aren't ours\n\t\tif (data.socketId !== socketId) { return; }\n\t\tif( window.location.host === 'localhost:1947' ) return;\n\n\t\tReveal.setState(data.state);\n\t});\n}());\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/multiplex/index.js",
    "content": "var http        = require('http');\nvar express\t\t= require('express');\nvar fs\t\t\t= require('fs');\nvar io\t\t\t= require('socket.io');\nvar crypto\t\t= require('crypto');\n\nvar app       \t= express();\nvar staticDir \t= express.static;\nvar server    \t= http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport: process.env.PORT || 1948,\n\tbaseDir : __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\tsocket.on('multiplex-statechanged', function(data) {\n\t\tif (typeof data.secret == 'undefined' || data.secret == null || data.secret === '') return;\n\t\tif (createHash(data.secret) === data.socketId) {\n\t\t\tdata.secret = null;\n\t\t\tsocket.broadcast.emit(data.socketId, data);\n\t\t};\n\t});\n});\n\n[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {\n\tapp.use('/' + dir, staticDir(opts.baseDir + dir));\n});\n\napp.get(\"/\", function(req, res) {\n\tres.writeHead(200, {'Content-Type': 'text/html'});\n\tfs.createReadStream(opts.baseDir + '/index.html').pipe(res);\n});\n\napp.get(\"/token\", function(req,res) {\n\tvar ts = new Date().getTime();\n\tvar rand = Math.floor(Math.random()*9999999);\n\tvar secret = ts.toString() + rand.toString();\n\tres.send({secret: secret, socketId: createHash(secret)});\n});\n\nvar createHash = function(secret) {\n\tvar cipher = crypto.createCipher('blowfish', secret);\n\treturn(cipher.final('hex'));\n};\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nconsole.log( brown + \"reveal.js:\" + reset + \" Multiplex running on port \" + green + opts.port + reset );"
  },
  {
    "path": "doc/cppnow-2016/plugin/multiplex/master.js",
    "content": "(function() {\n\n\t// Don't emit events from inside of notes windows\n\tif ( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar multiplex = Reveal.getConfig().multiplex;\n\n\tvar socket = io.connect( multiplex.url );\n\n\tfunction post() {\n\n\t\tvar messageData = {\n\t\t\tstate: Reveal.getState(),\n\t\t\tsecret: multiplex.secret,\n\t\t\tsocketId: multiplex.id\n\t\t};\n\n\t\tsocket.emit( 'multiplex-statechanged', messageData );\n\n\t};\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n}());"
  },
  {
    "path": "doc/cppnow-2016/plugin/notes/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\t\t\t\toverflow: auto;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"../../plugin/markdown/marked.js\"></script>\n\t\t<script>\n\n\t\t\t(function() {\n\n\t\t\t\tvar notes,\n\t\t\t\t\tnotesValue,\n\t\t\t\t\tcurrentState,\n\t\t\t\t\tcurrentSlide,\n\t\t\t\t\tupcomingSlide,\n\t\t\t\t\tconnected = false;\n\n\t\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\t\t// Messages sent by the notes plugin inside of the main window\n\t\t\t\t\tif( data && data.namespace === 'reveal-notes' ) {\n\t\t\t\t\t\tif( data.type === 'connect' ) {\n\t\t\t\t\t\t\thandleConnectMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( data.type === 'state' ) {\n\t\t\t\t\t\t\thandleStateMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Messages sent by the reveal.js inside of the current slide preview\n\t\t\t\t\telse if( data && data.namespace === 'reveal' ) {\n\t\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\t\t// Send a message back to notify that the handshake is complete\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ namespace: 'reveal-notes', type: 'connected'} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ]} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window is trying to establish a\n\t\t\t\t * connection.\n\t\t\t\t */\n\t\t\t\tfunction handleConnectMessage( data ) {\n\n\t\t\t\t\tif( connected === false ) {\n\t\t\t\t\t\tconnected = true;\n\n\t\t\t\t\t\tsetupIframes( data );\n\t\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\t\tsetupNotes();\n\t\t\t\t\t\tsetupTimer();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window sends an updated state.\n\t\t\t\t */\n\t\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t\t// applying the same state\n\t\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\t\tif ( data.notes ) {\n\t\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\t\tnotesValue.style.whiteSpace = data.whitespace;\n\t\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update the note slides\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t\t}\n\n\t\t\t\t// Limit to max one state update per X ms\n\t\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t\t/**\n\t\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t\t * This enables keyboard events to work even if focus\n\t\t\t\t * isn't set on the current slide iframe.\n\t\t\t\t */\n\t\t\t\tfunction setupKeyboard() {\n\n\t\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Creates the preview iframes.\n\t\t\t\t */\n\t\t\t\tfunction setupIframes( data ) {\n\n\t\t\t\t\tvar params = [\n\t\t\t\t\t\t'receiver',\n\t\t\t\t\t\t'progress=false',\n\t\t\t\t\t\t'history=false',\n\t\t\t\t\t\t'transition=none',\n\t\t\t\t\t\t'autoSlide=0',\n\t\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t\t].join( '&' );\n\n\t\t\t\t\tvar hash = '#/' + data.state.indexh + '/' + data.state.indexv;\n\t\t\t\t\tvar currentURL = data.url + '?' + params + '&postMessageEvents=true' + hash;\n\t\t\t\t\tvar upcomingURL = data.url + '?' + params + '&controls=false' + hash;\n\n\t\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Setup the notes UI.\n\t\t\t\t */\n\t\t\t\tfunction setupNotes() {\n\n\t\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Create the timer and clock and start updating them\n\t\t\t\t * at an interval.\n\t\t\t\t */\n\t\t\t\tfunction setupTimer() {\n\n\t\t\t\t\tvar start = new Date(),\n\t\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update once directly\n\t\t\t\t\t_updateTimer();\n\n\t\t\t\t\t// Then update every second\n\t\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\t\tstart = new Date();\n\t\t\t\t\t\t_updateTimer();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t\t */\n\t\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\t\tvar lastTime = 0,\n\t\t\t\t\t\ttimeout;\n\n\t\t\t\t\treturn function() {\n\n\t\t\t\t\t\tvar args = arguments;\n\t\t\t\t\t\tvar context = this;\n\n\t\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t})();\n\n\t\t</script>\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/notes/notes.js",
    "content": "/**\n * Handles opening of and synchronization with the reveal.js\n * notes window.\n *\n * Handshake process:\n * 1. This window posts 'connect' to notes window\n *    - Includes URL of presentation to show\n * 2. Notes window responds with 'connected' when it is available\n * 3. This window proceeds to send the current presentation state\n *    to the notes window\n */\nvar RevealNotes = (function() {\n\n\tfunction openNotes() {\n\t\tvar jsFileLocation = document.querySelector('script[src$=\"notes.js\"]').src;  // this js file path\n\t\tjsFileLocation = jsFileLocation.replace(/notes\\.js(\\?.*)?$/, '');   // the js folder path\n\t\tvar notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1100,height=700' );\n\n\t\t/**\n\t\t * Connect to the notes window through a postmessage handshake.\n\t\t * Using postmessage enables us to work in situations where the\n\t\t * origins differ, such as a presentation being opened from the\n\t\t * file system.\n\t\t */\n\t\tfunction connect() {\n\t\t\t// Keep trying to connect until we get a 'connected' message back\n\t\t\tvar connectInterval = setInterval( function() {\n\t\t\t\tnotesPopup.postMessage( JSON.stringify( {\n\t\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\t\ttype: 'connect',\n\t\t\t\t\turl: window.location.protocol + '//' + window.location.host + window.location.pathname + window.location.search,\n\t\t\t\t\tstate: Reveal.getState()\n\t\t\t\t} ), '*' );\n\t\t\t}, 500 );\n\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\t\t\t\tvar data = JSON.parse( event.data );\n\t\t\t\tif( data && data.namespace === 'reveal-notes' && data.type === 'connected' ) {\n\t\t\t\t\tclearInterval( connectInterval );\n\t\t\t\t\tonConnected();\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t/**\n\t\t * Posts the current slide data to the notes window\n\t\t */\n\t\tfunction post() {\n\n\t\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\t\tvar messageData = {\n\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\ttype: 'state',\n\t\t\t\tnotes: '',\n\t\t\t\tmarkdown: false,\n\t\t\t\twhitespace: 'normal',\n\t\t\t\tstate: Reveal.getState()\n\t\t\t};\n\n\t\t\t// Look for notes defined in a slide attribute\n\t\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t\t\tmessageData.whitespace = 'pre-wrap';\n\t\t\t}\n\n\t\t\t// Look for notes defined in an aside element\n\t\t\tif( notesElement ) {\n\t\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t\t}\n\n\t\t\tnotesPopup.postMessage( JSON.stringify( messageData ), '*' );\n\n\t\t}\n\n\t\t/**\n\t\t * Called once we have established a connection to the notes\n\t\t * window.\n\t\t */\n\t\tfunction onConnected() {\n\n\t\t\t// Monitor events that trigger a change in state\n\t\t\tReveal.addEventListener( 'slidechanged', post );\n\t\t\tReveal.addEventListener( 'fragmentshown', post );\n\t\t\tReveal.addEventListener( 'fragmenthidden', post );\n\t\t\tReveal.addEventListener( 'overviewhidden', post );\n\t\t\tReveal.addEventListener( 'overviewshown', post );\n\t\t\tReveal.addEventListener( 'paused', post );\n\t\t\tReveal.addEventListener( 'resumed', post );\n\n\t\t\t// Post the initial state\n\t\t\tpost();\n\n\t\t}\n\n\t\tconnect();\n\t}\n\n\tif( !/receiver/i.test( window.location.search ) ) {\n\n\t\t// If the there's a 'notes' query set, open directly\n\t\tif( window.location.search.match( /(\\?|\\&)notes/gi ) !== null ) {\n\t\t\topenNotes();\n\t\t}\n\n\t\t// Open the notes when the 's' key is hit\n\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t// Disregard the event if the target is editable or a\n\t\t\t// modifier is present\n\t\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t\t// Disregard the event if keyboard is disabled\n\t\t\tif ( Reveal.getConfig().keyboard === false ) return;\n\n\t\t\tif( event.keyCode === 83 ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\topenNotes();\n\t\t\t}\n\t\t}, false );\n\n\t}\n\n\treturn { open: openNotes };\n\n})();\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/notes-server/client.js",
    "content": "(function() {\n\n\t// don't emit events from inside the previews themselves\n\tif( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar socket = io.connect( window.location.origin ),\n\t\tsocketId = Math.random().toString().slice( 2 );\n\n\tconsole.log( 'View slide notes at ' + window.location.origin + '/notes/' + socketId );\n\n\twindow.open( window.location.origin + '/notes/' + socketId, 'notes-' + socketId );\n\n\t/**\n\t * Posts the current slide data to the notes window\n\t */\n\tfunction post() {\n\n\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\tvar messageData = {\n\t\t\tnotes: '',\n\t\t\tmarkdown: false,\n\t\t\tsocketId: socketId,\n\t\t\tstate: Reveal.getState()\n\t\t};\n\n\t\t// Look for notes defined in a slide attribute\n\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// Look for notes defined in an aside element\n\t\tif( notesElement ) {\n\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t}\n\n\t\tsocket.emit( 'statechanged', messageData );\n\n\t}\n\n\t// When a new notes window connects, post our current state\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tpost();\n\t} );\n\n\t// When the state changes from inside of the speaker view\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tReveal.setState( data.state );\n\t} );\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n\t// Post the initial state\n\tpost();\n\n}());\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/notes-server/index.js",
    "content": "var http      = require('http');\nvar express   = require('express');\nvar fs        = require('fs');\nvar io        = require('socket.io');\nvar _         = require('underscore');\nvar Mustache  = require('mustache');\n\nvar app       = express();\nvar staticDir = express.static;\nvar server    = http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport :      1947,\n\tbaseDir :   __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tsocket.broadcast.emit( 'new-subscriber', data );\n\t});\n\n\tsocket.on( 'statechanged', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged', data );\n\t});\n\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged-speaker', data );\n\t});\n\n});\n\n[ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) {\n\tapp.use( '/' + dir, staticDir( opts.baseDir + dir ) );\n});\n\napp.get('/', function( req, res ) {\n\n\tres.writeHead( 200, { 'Content-Type': 'text/html' } );\n\tfs.createReadStream( opts.baseDir + '/index.html' ).pipe( res );\n\n});\n\napp.get( '/notes/:socketId', function( req, res ) {\n\n\tfs.readFile( opts.baseDir + 'plugin/notes-server/notes.html', function( err, data ) {\n\t\tres.send( Mustache.to_html( data.toString(), {\n\t\t\tsocketId : req.params.socketId\n\t\t}));\n\t});\n\n});\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nvar slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : '' );\n\nconsole.log( brown + 'reveal.js - Speaker Notes' + reset );\nconsole.log( '1. Open the slides at ' + green + slidesLocation + reset );\nconsole.log( '2. Click on the link your JS console to go to the notes page' );\nconsole.log( '3. Advance through your slides and your notes will advance automatically' );\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/notes-server/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"/socket.io/socket.io.js\"></script>\n\t\t<script src=\"/plugin/markdown/marked.js\"></script>\n\n\t\t<script>\n\t\t(function() {\n\n\t\t\tvar notes,\n\t\t\t\tnotesValue,\n\t\t\t\tcurrentState,\n\t\t\t\tcurrentSlide,\n\t\t\t\tupcomingSlide,\n\t\t\t\tconnected = false;\n\n\t\t\tvar socket = io.connect( window.location.origin ),\n\t\t\t\tsocketId = '{{socketId}}';\n\n\t\t\tsocket.on( 'statechanged', function( data ) {\n\n\t\t\t\t// ignore data from sockets that aren't ours\n\t\t\t\tif( data.socketId !== socketId ) { return; }\n\n\t\t\t\tif( connected === false ) {\n\t\t\t\t\tconnected = true;\n\n\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\tsetupNotes();\n\t\t\t\t\tsetupTimer();\n\n\t\t\t\t}\n\n\t\t\t\thandleStateMessage( data );\n\n\t\t\t} );\n\n\t\t\t// Load our presentation iframes\n\t\t\tsetupIframes();\n\n\t\t\t// Once the iframes have loaded, emit a signal saying there's\n\t\t\t// a new subscriber which will trigger a 'statechanged'\n\t\t\t// message to be sent back\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\tsocket.emit( 'new-subscriber', { socketId: socketId } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Messages sent by reveal.js inside of the current slide preview\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\tsocket.emit( 'statechanged-speaker', { state: data.state } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t/**\n\t\t\t * Called when the main window sends an updated state.\n\t\t\t */\n\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t// applying the same state\n\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\tif ( data.notes ) {\n\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t}\n\n\t\t\t\t// Update the note slides\n\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t}\n\n\t\t\t// Limit to max one state update per X ms\n\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t/**\n\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t * This enables keyboard events to work even if focus\n\t\t\t * isn't set on the current slide iframe.\n\t\t\t */\n\t\t\tfunction setupKeyboard() {\n\n\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Creates the preview iframes.\n\t\t\t */\n\t\t\tfunction setupIframes() {\n\n\t\t\t\tvar params = [\n\t\t\t\t\t'receiver',\n\t\t\t\t\t'progress=false',\n\t\t\t\t\t'history=false',\n\t\t\t\t\t'transition=none',\n\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t].join( '&' );\n\n\t\t\t\tvar currentURL = '/?' + params + '&postMessageEvents=true';\n\t\t\t\tvar upcomingURL = '/?' + params + '&controls=false';\n\n\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Setup the notes UI.\n\t\t\t */\n\t\t\tfunction setupNotes() {\n\n\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Create the timer and clock and start updating them\n\t\t\t * at an interval.\n\t\t\t */\n\t\t\tfunction setupTimer() {\n\n\t\t\t\tvar start = new Date(),\n\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t}\n\n\t\t\t\t// Update once directly\n\t\t\t\t_updateTimer();\n\n\t\t\t\t// Then update every second\n\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\tstart = new Date();\n\t\t\t\t\t_updateTimer();\n\t\t\t\t\treturn false;\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t */\n\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\tvar lastTime = 0,\n\t\t\t\t\ttimeout;\n\n\t\t\t\treturn function() {\n\n\t\t\t\t\tvar args = arguments;\n\t\t\t\t\tvar context = this;\n\n\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t})();\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/print-pdf/print-pdf.js",
    "content": "/**\n * phantomjs script for printing presentations to PDF.\n *\n * Example:\n * phantomjs print-pdf.js \"http://lab.hakim.se/reveal-js?print-pdf\" reveal-demo.pdf\n *\n * By Manuel Bieh (https://github.com/manuelbieh)\n */\n\n// html2pdf.js\nvar page = new WebPage();\nvar system = require( 'system' );\n\nvar slideWidth = system.args[3] ? system.args[3].split( 'x' )[0] : 960;\nvar slideHeight = system.args[3] ? system.args[3].split( 'x' )[1] : 700;\n\npage.viewportSize = {\n\twidth: slideWidth,\n\theight: slideHeight\n};\n\n// TODO\n// Something is wrong with these config values. An input\n// paper width of 1920px actually results in a 756px wide\n// PDF.\npage.paperSize = {\n\twidth: Math.round( slideWidth * 2 ),\n\theight: Math.round( slideHeight * 2 ),\n\tborder: 0\n};\n\nvar inputFile = system.args[1] || 'index.html?print-pdf';\nvar outputFile = system.args[2] || 'slides.pdf';\n\nif( outputFile.match( /\\.pdf$/gi ) === null ) {\n\toutputFile += '.pdf';\n}\n\nconsole.log( 'Printing PDF (Paper size: '+ page.paperSize.width + 'x' + page.paperSize.height +')' );\n\npage.open( inputFile, function( status ) {\n\twindow.setTimeout( function() {\n\t\tconsole.log( 'Printed succesfully' );\n\t\tpage.render( outputFile );\n\t\tphantom.exit();\n\t}, 1000 );\n} );\n\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/search/search.js",
    "content": "/*\n * Handles finding a text string anywhere in the slides and showing the next occurrence to the user\n * by navigatating to that slide and highlighting it.\n *\n * By Jon Snyder <snyder.jon@gmail.com>, February 2013\n */\n\nvar RevealSearch = (function() {\n\n\tvar matchedSlides;\n\tvar currentMatchedIndex;\n\tvar searchboxDirty;\n\tvar myHilitor;\n\n// Original JavaScript code by Chirp Internet: www.chirp.com.au\n// Please acknowledge use of this code by including this header.\n// 2/2013 jon: modified regex to display any match, not restricted to word boundaries.\n\nfunction Hilitor(id, tag)\n{\n\n  var targetNode = document.getElementById(id) || document.body;\n  var hiliteTag = tag || \"EM\";\n  var skipTags = new RegExp(\"^(?:\" + hiliteTag + \"|SCRIPT|FORM|SPAN)$\");\n  var colors = [\"#ff6\", \"#a0ffff\", \"#9f9\", \"#f99\", \"#f6f\"];\n  var wordColor = [];\n  var colorIdx = 0;\n  var matchRegex = \"\";\n  var matchingSlides = [];\n\n  this.setRegex = function(input)\n  {\n    input = input.replace(/^[^\\w]+|[^\\w]+$/g, \"\").replace(/[^\\w'-]+/g, \"|\");\n    matchRegex = new RegExp(\"(\" + input + \")\",\"i\");\n  }\n\n  this.getRegex = function()\n  {\n    return matchRegex.toString().replace(/^\\/\\\\b\\(|\\)\\\\b\\/i$/g, \"\").replace(/\\|/g, \" \");\n  }\n\n  // recursively apply word highlighting\n  this.hiliteWords = function(node)\n  {\n    if(node == undefined || !node) return;\n    if(!matchRegex) return;\n    if(skipTags.test(node.nodeName)) return;\n\n    if(node.hasChildNodes()) {\n      for(var i=0; i < node.childNodes.length; i++)\n        this.hiliteWords(node.childNodes[i]);\n    }\n    if(node.nodeType == 3) { // NODE_TEXT\n      if((nv = node.nodeValue) && (regs = matchRegex.exec(nv))) {\n      \t//find the slide's section element and save it in our list of matching slides\n      \tvar secnode = node.parentNode;\n      \twhile (secnode.nodeName != 'SECTION') {\n      \t\tsecnode = secnode.parentNode;\n      \t}\n      \t\n      \tvar slideIndex = Reveal.getIndices(secnode);\n      \tvar slidelen = matchingSlides.length;\n      \tvar alreadyAdded = false;\n      \tfor (var i=0; i < slidelen; i++) {\n      \t\tif ( (matchingSlides[i].h === slideIndex.h) && (matchingSlides[i].v === slideIndex.v) ) {\n      \t\t\talreadyAdded = true;\n      \t\t}\n      \t}\n      \tif (! alreadyAdded) {\n      \t\tmatchingSlides.push(slideIndex);\n      \t}\n      \t\n        if(!wordColor[regs[0].toLowerCase()]) {\n          wordColor[regs[0].toLowerCase()] = colors[colorIdx++ % colors.length];\n        }\n\n        var match = document.createElement(hiliteTag);\n        match.appendChild(document.createTextNode(regs[0]));\n        match.style.backgroundColor = wordColor[regs[0].toLowerCase()];\n        match.style.fontStyle = \"inherit\";\n        match.style.color = \"#000\";\n\n        var after = node.splitText(regs.index);\n        after.nodeValue = after.nodeValue.substring(regs[0].length);\n        node.parentNode.insertBefore(match, after);\n      }\n    }\n  };\n\n  // remove highlighting\n  this.remove = function()\n  {\n    var arr = document.getElementsByTagName(hiliteTag);\n    while(arr.length && (el = arr[0])) {\n      el.parentNode.replaceChild(el.firstChild, el);\n    }\n  };\n\n  // start highlighting at target node\n  this.apply = function(input)\n  {\n    if(input == undefined || !input) return;\n    this.remove();\n    this.setRegex(input);\n    this.hiliteWords(targetNode);\n    return matchingSlides;\n  };\n\n}\n\n\tfunction openSearch() {\n\t\t//ensure the search term input dialog is visible and has focus:\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tinputbox.style.display = \"inline\";\n\t\tinputbox.focus();\n\t\tinputbox.select();\n\t}\n\n\tfunction toggleSearch() {\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tif (inputbox.style.display !== \"inline\") {\n\t\t\topenSearch();\n\t\t}\n\t\telse {\n\t\t\tinputbox.style.display = \"none\";\n\t\t\tmyHilitor.remove();\n\t\t}\n\t}\n\n\tfunction doSearch() {\n\t\t//if there's been a change in the search term, perform a new search:\n\t\tif (searchboxDirty) {\n\t\t\tvar searchstring = document.getElementById(\"searchinput\").value;\n\n\t\t\t//find the keyword amongst the slides\n\t\t\tmyHilitor = new Hilitor(\"slidecontent\");\n\t\t\tmatchedSlides = myHilitor.apply(searchstring);\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\n\t\t//navigate to the next slide that has the keyword, wrapping to the first if necessary\n\t\tif (matchedSlides.length && (matchedSlides.length <= currentMatchedIndex)) {\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\t\tif (matchedSlides.length > currentMatchedIndex) {\n\t\t\tReveal.slide(matchedSlides[currentMatchedIndex].h, matchedSlides[currentMatchedIndex].v);\n\t\t\tcurrentMatchedIndex++;\n\t\t}\n\t}\n\n\tvar dom = {};\n\tdom.wrapper = document.querySelector( '.reveal' );\n\n\tif( !dom.wrapper.querySelector( '.searchbox' ) ) {\n\t\t\tvar searchElement = document.createElement( 'div' );\n\t\t\tsearchElement.id = \"searchinputdiv\";\n\t\t\tsearchElement.classList.add( 'searchdiv' );\n      searchElement.style.position = 'absolute';\n      searchElement.style.top = '10px';\n      searchElement.style.left = '10px';\n      //embedded base64 search icon Designed by Sketchdock - http://www.sketchdock.com/:\n\t\t\tsearchElement.innerHTML = '<span><input type=\"search\" id=\"searchinput\" class=\"searchinput\" style=\"vertical-align: top;\"/><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJiSURBVHjatFZNaxNBGH5md+Mmu92NVdKDRipSAyqCghgQD4L4cRe86UUtAQ+eFCxoa4/25EXBFi8eBE+eRPoDhB6KgiiixdAPCEkx2pjvTXadd9yNsflwuyUDD/O+u8PzzDPvzOwyx3EwyCZhwG3gAkp7MnpjgbopjsltcD4gjuXZZKeAR348MYLYTm3LzOs/y3j3JTfZxgXWXmTuwPHIc4VmoOmv5IrI53+AO2DdHLjkDWQ3GoEEVFXtXQOvkSnPWcyUceviLhwbDYv8/XIVj97kse7TodLvZXxYxrPUHkQ1ufXs3FEdybEIxucySOesoNvUgWU1cP3MkCBfTFdw9fGaAMVmRELq7LBw2Q3/FaAxxWIRpw+ZIr/7IouPqzUBiqmdHAv7EuhRAwf1er2Vy4x1jW3b2d5Jfvu5IPp7l2LYbcgCFFNb+FoJ7oBqEAqFMPNqFcmEgVMJDfMT+1tvN0pNjERlMS6QA5pFOKxiKVPFhakPeL3It+WGJUDxt2wFR+JhzI7v5ctkd8DXOZAkCYYxhO+lKm4+Xfqz/rIixBuNBl7eOYzkQQNzqX249mRl6zUgEcYkaJrGhUwBinVdh6IouPzwE6/DL5w4oLkH8y981aDf+uq6hlKpJESiUdNfDZi7/ehG9K6KfiA3pml0PLcsq+cSMTj2NL9ukc4UOmz7AZ3+crkC4mHujFvXNaMFB3bEr8xPS6p5O+jXxq4VZtaen7/PwzrntjcLUE0iHPS1Ud1cdiEJl/8WivZk0wXd7zWOMkeF8s0CcAmkNrC2nvXZDbbbN73ccYnZoH9bfgswAFzAe9/h3dbKAAAAAElFTkSuQmCC\" id=\"searchbutton\" class=\"searchicon\" style=\"vertical-align: top; margin-top: -1px;\"/></span>';\n\t\t\tdom.wrapper.appendChild( searchElement );\n\t}\n\n\tdocument.getElementById(\"searchbutton\").addEventListener( 'click', function(event) {\n\t\tdoSearch();\n\t}, false );\n\n\tdocument.getElementById(\"searchinput\").addEventListener( 'keyup', function( event ) {\n\t\tswitch (event.keyCode) {\n\t\t\tcase 13:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tdoSearch();\n\t\t\t\tsearchboxDirty = false;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tsearchboxDirty = true;\n\t\t}\n\t}, false );\n\n\t// Open the search when the 's' key is hit (yes, this conflicts with the notes plugin, disabling for now)\n\t/*\n\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t// Disregard the event if the target is editable or a\n\t\t// modifier is present\n\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\tif( event.keyCode === 83 ) {\n\t\t\tevent.preventDefault();\n\t\t\topenSearch();\n\t\t}\n\t}, false );\n*/\n\treturn { open: openSearch };\n})();\n"
  },
  {
    "path": "doc/cppnow-2016/plugin/zoom-js/zoom.js",
    "content": "// Custom reveal.js integration\n(function(){\n\tvar isEnabled = true;\n\n\tdocument.querySelector( '.reveal .slides' ).addEventListener( 'mousedown', function( event ) {\n\t\tvar modifier = ( Reveal.getConfig().zoomKey ? Reveal.getConfig().zoomKey : 'alt' ) + 'Key';\n\n\t\tvar zoomPadding = 20;\n\t\tvar revealScale = Reveal.getScale();\n\n\t\tif( event[ modifier ] && isEnabled ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar bounds = event.target.getBoundingClientRect();\n\n\t\t\tzoom.to({\n\t\t\t\tx: ( bounds.left * revealScale ) - zoomPadding,\n\t\t\t\ty: ( bounds.top * revealScale ) - zoomPadding,\n\t\t\t\twidth: ( bounds.width * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\theight: ( bounds.height * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\tpan: false\n\t\t\t});\n\t\t}\n\t} );\n\n\tReveal.addEventListener( 'overviewshown', function() { isEnabled = false; } );\n\tReveal.addEventListener( 'overviewhidden', function() { isEnabled = true; } );\n})();\n\n/*!\n * zoom.js 0.3 (modified for use with reveal.js)\n * http://lab.hakim.se/zoom-js\n * MIT licensed\n *\n * Copyright (C) 2011-2014 Hakim El Hattab, http://hakim.se\n */\nvar zoom = (function(){\n\n\t// The current zoom level (scale)\n\tvar level = 1;\n\n\t// The current mouse position, used for panning\n\tvar mouseX = 0,\n\t\tmouseY = 0;\n\n\t// Timeout before pan is activated\n\tvar panEngageTimeout = -1,\n\t\tpanUpdateInterval = -1;\n\n\t// Check for transform support so that we can fallback otherwise\n\tvar supportsTransforms = \t'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\tif( supportsTransforms ) {\n\t\t// The easing that will be applied when we zoom in/out\n\t\tdocument.body.style.transition = 'transform 0.8s ease';\n\t\tdocument.body.style.OTransition = '-o-transform 0.8s ease';\n\t\tdocument.body.style.msTransition = '-ms-transform 0.8s ease';\n\t\tdocument.body.style.MozTransition = '-moz-transform 0.8s ease';\n\t\tdocument.body.style.WebkitTransition = '-webkit-transform 0.8s ease';\n\t}\n\n\t// Zoom out if the user hits escape\n\tdocument.addEventListener( 'keyup', function( event ) {\n\t\tif( level !== 1 && event.keyCode === 27 ) {\n\t\t\tzoom.out();\n\t\t}\n\t} );\n\n\t// Monitor mouse movement for panning\n\tdocument.addEventListener( 'mousemove', function( event ) {\n\t\tif( level !== 1 ) {\n\t\t\tmouseX = event.clientX;\n\t\t\tmouseY = event.clientY;\n\t\t}\n\t} );\n\n\t/**\n\t * Applies the CSS required to zoom in, prefers the use of CSS3\n\t * transforms but falls back on zoom for IE.\n\t *\n\t * @param {Object} rect\n\t * @param {Number} scale\n\t */\n\tfunction magnify( rect, scale ) {\n\n\t\tvar scrollOffset = getScrollOffset();\n\n\t\t// Ensure a width/height is set\n\t\trect.width = rect.width || 1;\n\t\trect.height = rect.height || 1;\n\n\t\t// Center the rect within the zoomed viewport\n\t\trect.x -= ( window.innerWidth - ( rect.width * scale ) ) / 2;\n\t\trect.y -= ( window.innerHeight - ( rect.height * scale ) ) / 2;\n\n\t\tif( supportsTransforms ) {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.transform = '';\n\t\t\t\tdocument.body.style.OTransform = '';\n\t\t\t\tdocument.body.style.msTransform = '';\n\t\t\t\tdocument.body.style.MozTransform = '';\n\t\t\t\tdocument.body.style.WebkitTransform = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tvar origin = scrollOffset.x +'px '+ scrollOffset.y +'px',\n\t\t\t\t\ttransform = 'translate('+ -rect.x +'px,'+ -rect.y +'px) scale('+ scale +')';\n\n\t\t\t\tdocument.body.style.transformOrigin = origin;\n\t\t\t\tdocument.body.style.OTransformOrigin = origin;\n\t\t\t\tdocument.body.style.msTransformOrigin = origin;\n\t\t\t\tdocument.body.style.MozTransformOrigin = origin;\n\t\t\t\tdocument.body.style.WebkitTransformOrigin = origin;\n\n\t\t\t\tdocument.body.style.transform = transform;\n\t\t\t\tdocument.body.style.OTransform = transform;\n\t\t\t\tdocument.body.style.msTransform = transform;\n\t\t\t\tdocument.body.style.MozTransform = transform;\n\t\t\t\tdocument.body.style.WebkitTransform = transform;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.position = '';\n\t\t\t\tdocument.body.style.left = '';\n\t\t\t\tdocument.body.style.top = '';\n\t\t\t\tdocument.body.style.width = '';\n\t\t\t\tdocument.body.style.height = '';\n\t\t\t\tdocument.body.style.zoom = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tdocument.body.style.position = 'relative';\n\t\t\t\tdocument.body.style.left = ( - ( scrollOffset.x + rect.x ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.top = ( - ( scrollOffset.y + rect.y ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.width = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.height = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.zoom = scale;\n\t\t\t}\n\t\t}\n\n\t\tlevel = scale;\n\n\t\tif( document.documentElement.classList ) {\n\t\t\tif( level !== 1 ) {\n\t\t\t\tdocument.documentElement.classList.add( 'zoomed' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdocument.documentElement.classList.remove( 'zoomed' );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Pan the document when the mosue cursor approaches the edges\n\t * of the window.\n\t */\n\tfunction pan() {\n\t\tvar range = 0.12,\n\t\t\trangeX = window.innerWidth * range,\n\t\t\trangeY = window.innerHeight * range,\n\t\t\tscrollOffset = getScrollOffset();\n\n\t\t// Up\n\t\tif( mouseY < rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y - ( 1 - ( mouseY / rangeY ) ) * ( 14 / level ) );\n\t\t}\n\t\t// Down\n\t\telse if( mouseY > window.innerHeight - rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y + ( 1 - ( window.innerHeight - mouseY ) / rangeY ) * ( 14 / level ) );\n\t\t}\n\n\t\t// Left\n\t\tif( mouseX < rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x - ( 1 - ( mouseX / rangeX ) ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t\t// Right\n\t\telse if( mouseX > window.innerWidth - rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x + ( 1 - ( window.innerWidth - mouseX ) / rangeX ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t}\n\n\tfunction getScrollOffset() {\n\t\treturn {\n\t\t\tx: window.scrollX !== undefined ? window.scrollX : window.pageXOffset,\n\t\t\ty: window.scrollY !== undefined ? window.scrollY : window.pageYOffset\n\t\t}\n\t}\n\n\treturn {\n\t\t/**\n\t\t * Zooms in on either a rectangle or HTML element.\n\t\t *\n\t\t * @param {Object} options\n\t\t *   - element: HTML element to zoom in on\n\t\t *   OR\n\t\t *   - x/y: coordinates in non-transformed space to zoom in on\n\t\t *   - width/height: the portion of the screen to zoom in on\n\t\t *   - scale: can be used instead of width/height to explicitly set scale\n\t\t */\n\t\tto: function( options ) {\n\n\t\t\t// Due to an implementation limitation we can't zoom in\n\t\t\t// to another element without zooming out first\n\t\t\tif( level !== 1 ) {\n\t\t\t\tzoom.out();\n\t\t\t}\n\t\t\telse {\n\t\t\t\toptions.x = options.x || 0;\n\t\t\t\toptions.y = options.y || 0;\n\n\t\t\t\t// If an element is set, that takes precedence\n\t\t\t\tif( !!options.element ) {\n\t\t\t\t\t// Space around the zoomed in element to leave on screen\n\t\t\t\t\tvar padding = 20;\n\t\t\t\t\tvar bounds = options.element.getBoundingClientRect();\n\n\t\t\t\t\toptions.x = bounds.left - padding;\n\t\t\t\t\toptions.y = bounds.top - padding;\n\t\t\t\t\toptions.width = bounds.width + ( padding * 2 );\n\t\t\t\t\toptions.height = bounds.height + ( padding * 2 );\n\t\t\t\t}\n\n\t\t\t\t// If width/height values are set, calculate scale from those values\n\t\t\t\tif( options.width !== undefined && options.height !== undefined ) {\n\t\t\t\t\toptions.scale = Math.max( Math.min( window.innerWidth / options.width, window.innerHeight / options.height ), 1 );\n\t\t\t\t}\n\n\t\t\t\tif( options.scale > 1 ) {\n\t\t\t\t\toptions.x *= options.scale;\n\t\t\t\t\toptions.y *= options.scale;\n\n\t\t\t\t\tmagnify( options, options.scale );\n\n\t\t\t\t\tif( options.pan !== false ) {\n\n\t\t\t\t\t\t// Wait with engaging panning as it may conflict with the\n\t\t\t\t\t\t// zoom transition\n\t\t\t\t\t\tpanEngageTimeout = setTimeout( function() {\n\t\t\t\t\t\t\tpanUpdateInterval = setInterval( pan, 1000 / 60 );\n\t\t\t\t\t\t}, 800 );\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * Resets the document zoom state to its default.\n\t\t */\n\t\tout: function() {\n\t\t\tclearTimeout( panEngageTimeout );\n\t\t\tclearInterval( panUpdateInterval );\n\n\t\t\tmagnify( { x: 0, y: 0 }, 1 );\n\n\t\t\tlevel = 1;\n\t\t},\n\n\t\t// Alias\n\t\tmagnify: function( options ) { this.to( options ) },\n\t\treset: function() { this.out() },\n\n\t\tzoomLevel: function() {\n\t\t\treturn level;\n\t\t}\n\t}\n\n})();\n\n\n\n"
  },
  {
    "path": "doc/cppnow-2016/test/examples/barebones.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Barebones</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Barebones Presentation</h2>\n\t\t\t\t\t<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>No Theme</h2>\n\t\t\t\t\t<p>There's no theme included, so it will fall back on browser defaults.</p>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize();\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/examples/embedded-media.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Embedded Media</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/default.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Embedded Media Test</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<iframe data-autoplay width=\"420\" height=\"345\" src=\"http://www.youtube.com/embed/l3RQZ4mcr1c\"></iframe>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Empty Slide</h2>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\ttransition: 'linear'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/examples/math.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Math Plugin</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/night.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>reveal.js Math Plugin</h2>\n\t\t\t\t\t<p>A thin wrapper for MathJax</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t<script type=\"math/tex; mode=display\">\n\t\t\t\t\t\t\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right) \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\t\t\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\thistory: true,\n\t\t\t\ttransition: 'linear',\n\n\t\t\t\tmath: {\n\t\t\t\t\t// mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\t\t\t\tconfig: 'TeX-AMS_HTML-full'\n\t\t\t\t},\n\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js' },\n\t\t\t\t\t{ src: '../../plugin/math/math.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/examples/slide-backgrounds.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Backgrounds</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/serif.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h2 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h2 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background=\"#00ffff\">\n\t\t\t\t\t<h2>data-background: #00ffff</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#bb00bb\">\n\t\t\t\t\t<h2>data-background: #bb00bb</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-color=\"lightblue\">\n\t\t\t\t\t<h2>data-background: lightblue</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#ff0000\">\n\t\t\t\t\t\t<h2>data-background: #ff0000</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgba(0, 0, 0, 0.2)\">\n\t\t\t\t\t\t<h2>data-background: rgba(0, 0, 0, 0.2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"salmon\">\n\t\t\t\t\t\t<h2>data-background: salmon</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"rgba(0, 100, 100, 0.2)\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgb(66, 66, 66)\">\n\t\t\t\t\t\t<h2>Background applied to slide inside of stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"assets/image2.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t<pre>data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\"</pre>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (1/2)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (2/2)</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\">\n\t\t\t\t\t<h2>Video background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-iframe=\"https://slides.com\">\n\t\t\t\t\t<h2>Iframe background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (1/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (2/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t<h2>Same background from horizontal to vertical (1/3)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (2/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (3/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available here:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\t// rtl: true,\n\n\t\t\t\ttransition: 'linear',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/examples/slide-transitions.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Transitions</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h3 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h3 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t<h3>data-transition: zoom</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom-in fade-out\">\n\t\t\t\t\t<h3>data-transition: zoom-in fade-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex\">\n\t\t\t\t\t<h3>data-transition: convex</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex-in concave-out\">\n\t\t\t\t\t<h3>data-transition: convex-in concave-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"concave\">\n\t\t\t\t\t\t<h3>data-transition: concave</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"convex-in fade-out\">\n\t\t\t\t\t\t<h3>data-transition: convex-in fade-out</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"none\">\n\t\t\t\t\t<h3>data-transition: none</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\thistory: true,\n\n\t\t\t\t// transition: 'slide',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/qunit-1.12.0.css",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2012 jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n/** Font Family and Sizes */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {\n\tfont-family: \"Helvetica Neue Light\", \"HelveticaNeue-Light\", \"Helvetica Neue\", Calibri, Helvetica, Arial, sans-serif;\n}\n\n#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }\n#qunit-tests { font-size: smaller; }\n\n\n/** Resets */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n\n/** Header */\n\n#qunit-header {\n\tpadding: 0.5em 0 0.5em 1em;\n\n\tcolor: #8699a4;\n\tbackground-color: #0d3349;\n\n\tfont-size: 1.5em;\n\tline-height: 1em;\n\tfont-weight: normal;\n\n\tborder-radius: 5px 5px 0 0;\n\t-moz-border-radius: 5px 5px 0 0;\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-top-left-radius: 5px;\n}\n\n#qunit-header a {\n\ttext-decoration: none;\n\tcolor: #c2ccd1;\n}\n\n#qunit-header a:hover,\n#qunit-header a:focus {\n\tcolor: #fff;\n}\n\n#qunit-testrunner-toolbar label {\n\tdisplay: inline-block;\n\tpadding: 0 .5em 0 .1em;\n}\n\n#qunit-banner {\n\theight: 5px;\n}\n\n#qunit-testrunner-toolbar {\n\tpadding: 0.5em 0 0.5em 2em;\n\tcolor: #5E740B;\n\tbackground-color: #eee;\n\toverflow: hidden;\n}\n\n#qunit-userAgent {\n\tpadding: 0.5em 0 0.5em 2.5em;\n\tbackground-color: #2b81af;\n\tcolor: #fff;\n\ttext-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;\n}\n\n#qunit-modulefilter-container {\n\tfloat: right;\n}\n\n/** Tests: Pass/Fail */\n\n#qunit-tests {\n\tlist-style-position: inside;\n}\n\n#qunit-tests li {\n\tpadding: 0.4em 0.5em 0.4em 2.5em;\n\tborder-bottom: 1px solid #fff;\n\tlist-style-position: inside;\n}\n\n#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {\n\tdisplay: none;\n}\n\n#qunit-tests li strong {\n\tcursor: pointer;\n}\n\n#qunit-tests li a {\n\tpadding: 0.5em;\n\tcolor: #c2ccd1;\n\ttext-decoration: none;\n}\n#qunit-tests li a:hover,\n#qunit-tests li a:focus {\n\tcolor: #000;\n}\n\n#qunit-tests li .runtime {\n\tfloat: right;\n\tfont-size: smaller;\n}\n\n.qunit-assert-list {\n\tmargin-top: 0.5em;\n\tpadding: 0.5em;\n\n\tbackground-color: #fff;\n\n\tborder-radius: 5px;\n\t-moz-border-radius: 5px;\n\t-webkit-border-radius: 5px;\n}\n\n.qunit-collapsed {\n\tdisplay: none;\n}\n\n#qunit-tests table {\n\tborder-collapse: collapse;\n\tmargin-top: .2em;\n}\n\n#qunit-tests th {\n\ttext-align: right;\n\tvertical-align: top;\n\tpadding: 0 .5em 0 0;\n}\n\n#qunit-tests td {\n\tvertical-align: top;\n}\n\n#qunit-tests pre {\n\tmargin: 0;\n\twhite-space: pre-wrap;\n\tword-wrap: break-word;\n}\n\n#qunit-tests del {\n\tbackground-color: #e0f2be;\n\tcolor: #374e0c;\n\ttext-decoration: none;\n}\n\n#qunit-tests ins {\n\tbackground-color: #ffcaca;\n\tcolor: #500;\n\ttext-decoration: none;\n}\n\n/*** Test Counts */\n\n#qunit-tests b.counts                       { color: black; }\n#qunit-tests b.passed                       { color: #5E740B; }\n#qunit-tests b.failed                       { color: #710909; }\n\n#qunit-tests li li {\n\tpadding: 5px;\n\tbackground-color: #fff;\n\tborder-bottom: none;\n\tlist-style-position: inside;\n}\n\n/*** Passing Styles */\n\n#qunit-tests li li.pass {\n\tcolor: #3c510c;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #C6E746;\n}\n\n#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }\n#qunit-tests .pass .test-name               { color: #366097; }\n\n#qunit-tests .pass .test-actual,\n#qunit-tests .pass .test-expected           { color: #999999; }\n\n#qunit-banner.qunit-pass                    { background-color: #C6E746; }\n\n/*** Failing Styles */\n\n#qunit-tests li li.fail {\n\tcolor: #710909;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #EE5757;\n\twhite-space: pre;\n}\n\n#qunit-tests > li:last-child {\n\tborder-radius: 0 0 5px 5px;\n\t-moz-border-radius: 0 0 5px 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n}\n\n#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }\n#qunit-tests .fail .test-name,\n#qunit-tests .fail .module-name             { color: #000000; }\n\n#qunit-tests .fail .test-actual             { color: #EE5757; }\n#qunit-tests .fail .test-expected           { color: green;   }\n\n#qunit-banner.qunit-fail                    { background-color: #EE5757; }\n\n\n/** Result */\n\n#qunit-testresult {\n\tpadding: 0.5em 0.5em 0.5em 2.5em;\n\n\tcolor: #2b81af;\n\tbackground-color: #D2E0E6;\n\n\tborder-bottom: 1px solid white;\n}\n#qunit-testresult .module-name {\n\tfont-weight: bold;\n}\n\n/** Fixture */\n\n#qunit-fixture {\n\tposition: absolute;\n\ttop: -10000px;\n\tleft: -10000px;\n\twidth: 1000px;\n\theight: 1000px;\n}"
  },
  {
    "path": "doc/cppnow-2016/test/qunit-1.12.0.js",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2013 jQuery Foundation and other contributors\n * Released under the MIT license.\n * https://jquery.org/license/\n */\n\n(function( window ) {\n\nvar QUnit,\n\tassert,\n\tconfig,\n\tonErrorFnPrev,\n\ttestId = 0,\n\tfileName = (sourceFromStacktrace( 0 ) || \"\" ).replace(/(:\\d+)+\\)?/, \"\").replace(/.+\\//, \"\"),\n\ttoString = Object.prototype.toString,\n\thasOwn = Object.prototype.hasOwnProperty,\n\t// Keep a local reference to Date (GH-283)\n\tDate = window.Date,\n\tsetTimeout = window.setTimeout,\n\tdefined = {\n\t\tsetTimeout: typeof window.setTimeout !== \"undefined\",\n\t\tsessionStorage: (function() {\n\t\t\tvar x = \"qunit-test-string\";\n\t\t\ttry {\n\t\t\t\tsessionStorage.setItem( x, x );\n\t\t\t\tsessionStorage.removeItem( x );\n\t\t\t\treturn true;\n\t\t\t} catch( e ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}())\n\t},\n\t/**\n\t * Provides a normalized error string, correcting an issue\n\t * with IE 7 (and prior) where Error.prototype.toString is\n\t * not properly implemented\n\t *\n\t * Based on http://es5.github.com/#x15.11.4.4\n\t *\n\t * @param {String|Error} error\n\t * @return {String} error message\n\t */\n\terrorString = function( error ) {\n\t\tvar name, message,\n\t\t\terrorString = error.toString();\n\t\tif ( errorString.substring( 0, 7 ) === \"[object\" ) {\n\t\t\tname = error.name ? error.name.toString() : \"Error\";\n\t\t\tmessage = error.message ? error.message.toString() : \"\";\n\t\t\tif ( name && message ) {\n\t\t\t\treturn name + \": \" + message;\n\t\t\t} else if ( name ) {\n\t\t\t\treturn name;\n\t\t\t} else if ( message ) {\n\t\t\t\treturn message;\n\t\t\t} else {\n\t\t\t\treturn \"Error\";\n\t\t\t}\n\t\t} else {\n\t\t\treturn errorString;\n\t\t}\n\t},\n\t/**\n\t * Makes a clone of an object using only Array or Object as base,\n\t * and copies over the own enumerable properties.\n\t *\n\t * @param {Object} obj\n\t * @return {Object} New object with only the own properties (recursively).\n\t */\n\tobjectValues = function( obj ) {\n\t\t// Grunt 0.3.x uses an older version of jshint that still has jshint/jshint#392.\n\t\t/*jshint newcap: false */\n\t\tvar key, val,\n\t\t\tvals = QUnit.is( \"array\", obj ) ? [] : {};\n\t\tfor ( key in obj ) {\n\t\t\tif ( hasOwn.call( obj, key ) ) {\n\t\t\t\tval = obj[key];\n\t\t\t\tvals[key] = val === Object(val) ? objectValues(val) : val;\n\t\t\t}\n\t\t}\n\t\treturn vals;\n\t};\n\nfunction Test( settings ) {\n\textend( this, settings );\n\tthis.assertions = [];\n\tthis.testNumber = ++Test.count;\n}\n\nTest.count = 0;\n\nTest.prototype = {\n\tinit: function() {\n\t\tvar a, b, li,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tif ( tests ) {\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml;\n\n\t\t\t// `a` initialized at top of scope\n\t\t\ta = document.createElement( \"a\" );\n\t\t\ta.innerHTML = \"Rerun\";\n\t\t\ta.href = QUnit.url({ testNumber: this.testNumber });\n\n\t\t\tli = document.createElement( \"li\" );\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.className = \"running\";\n\t\t\tli.id = this.id = \"qunit-test-output\" + testId++;\n\n\t\t\ttests.appendChild( li );\n\t\t}\n\t},\n\tsetup: function() {\n\t\tif (\n\t\t\t// Emit moduleStart when we're switching from one module to another\n\t\t\tthis.module !== config.previousModule ||\n\t\t\t\t// They could be equal (both undefined) but if the previousModule property doesn't\n\t\t\t\t// yet exist it means this is the first test in a suite that isn't wrapped in a\n\t\t\t\t// module, in which case we'll just emit a moduleStart event for 'undefined'.\n\t\t\t\t// Without this, reporters can get testStart before moduleStart  which is a problem.\n\t\t\t\t!hasOwn.call( config, \"previousModule\" )\n\t\t) {\n\t\t\tif ( hasOwn.call( config, \"previousModule\" ) ) {\n\t\t\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\t\t\tname: config.previousModule,\n\t\t\t\t\tfailed: config.moduleStats.bad,\n\t\t\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\t\t\ttotal: config.moduleStats.all\n\t\t\t\t});\n\t\t\t}\n\t\t\tconfig.previousModule = this.module;\n\t\t\tconfig.moduleStats = { all: 0, bad: 0 };\n\t\t\trunLoggingCallbacks( \"moduleStart\", QUnit, {\n\t\t\t\tname: this.module\n\t\t\t});\n\t\t}\n\n\t\tconfig.current = this;\n\n\t\tthis.testEnvironment = extend({\n\t\t\tsetup: function() {},\n\t\t\tteardown: function() {}\n\t\t}, this.moduleTestEnvironment );\n\n\t\tthis.started = +new Date();\n\t\trunLoggingCallbacks( \"testStart\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module\n\t\t});\n\n\t\t/*jshint camelcase:false */\n\n\n\t\t/**\n\t\t * Expose the current test environment.\n\t\t *\n\t\t * @deprecated since 1.12.0: Use QUnit.config.current.testEnvironment instead.\n\t\t */\n\t\tQUnit.current_testEnvironment = this.testEnvironment;\n\n\t\t/*jshint camelcase:true */\n\n\t\tif ( !config.pollution ) {\n\t\t\tsaveGlobal();\n\t\t}\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t}\n\t\ttry {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t} catch( e ) {\n\t\t\tQUnit.pushFailure( \"Setup failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t}\n\t},\n\trun: function() {\n\t\tconfig.current = this;\n\n\t\tvar running = id( \"qunit-testresult\" );\n\n\t\tif ( running ) {\n\t\t\trunning.innerHTML = \"Running: <br/>\" + this.nameHtml;\n\t\t}\n\n\t\tif ( this.async ) {\n\t\t\tQUnit.stop();\n\t\t}\n\n\t\tthis.callbackStarted = +new Date();\n\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\treturn;\n\t\t}\n\n\t\ttry {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t} catch( e ) {\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\n\t\t\tQUnit.pushFailure( \"Died on test #\" + (this.assertions.length + 1) + \" \" + this.stack + \": \" + ( e.message || e ), extractStacktrace( e, 0 ) );\n\t\t\t// else next test will carry the responsibility\n\t\t\tsaveGlobal();\n\n\t\t\t// Restart the tests if they're blocking\n\t\t\tif ( config.blocking ) {\n\t\t\t\tQUnit.start();\n\t\t\t}\n\t\t}\n\t},\n\tteardown: function() {\n\t\tconfig.current = this;\n\t\tif ( config.notrycatch ) {\n\t\t\tif ( typeof this.callbackRuntime === \"undefined\" ) {\n\t\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\t}\n\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\t} catch( e ) {\n\t\t\t\tQUnit.pushFailure( \"Teardown failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t\t}\n\t\t}\n\t\tcheckPollution();\n\t},\n\tfinish: function() {\n\t\tconfig.current = this;\n\t\tif ( config.requireExpects && this.expected === null ) {\n\t\t\tQUnit.pushFailure( \"Expected number of assertions to be defined, but expect() was not called.\", this.stack );\n\t\t} else if ( this.expected !== null && this.expected !== this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected \" + this.expected + \" assertions, but \" + this.assertions.length + \" were run\", this.stack );\n\t\t} else if ( this.expected === null && !this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected at least one assertion, but none were run - call expect(0) to accept zero assertions.\", this.stack );\n\t\t}\n\n\t\tvar i, assertion, a, b, time, li, ol,\n\t\t\ttest = this,\n\t\t\tgood = 0,\n\t\t\tbad = 0,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tthis.runtime = +new Date() - this.started;\n\t\tconfig.stats.all += this.assertions.length;\n\t\tconfig.moduleStats.all += this.assertions.length;\n\n\t\tif ( tests ) {\n\t\t\tol = document.createElement( \"ol\" );\n\t\t\tol.className = \"qunit-assert-list\";\n\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tassertion = this.assertions[i];\n\n\t\t\t\tli = document.createElement( \"li\" );\n\t\t\t\tli.className = assertion.result ? \"pass\" : \"fail\";\n\t\t\t\tli.innerHTML = assertion.message || ( assertion.result ? \"okay\" : \"failed\" );\n\t\t\t\tol.appendChild( li );\n\n\t\t\t\tif ( assertion.result ) {\n\t\t\t\t\tgood++;\n\t\t\t\t} else {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// store result when possible\n\t\t\tif ( QUnit.config.reorder && defined.sessionStorage ) {\n\t\t\t\tif ( bad ) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-test-\" + this.module + \"-\" + this.testName, bad );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( bad === 0 ) {\n\t\t\t\taddClass( ol, \"qunit-collapsed\" );\n\t\t\t}\n\n\t\t\t// `b` initialized at top of scope\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml + \" <b class='counts'>(<b class='failed'>\" + bad + \"</b>, <b class='passed'>\" + good + \"</b>, \" + this.assertions.length + \")</b>\";\n\n\t\t\taddEvent(b, \"click\", function() {\n\t\t\t\tvar next = b.parentNode.lastChild,\n\t\t\t\t\tcollapsed = hasClass( next, \"qunit-collapsed\" );\n\t\t\t\t( collapsed ? removeClass : addClass )( next, \"qunit-collapsed\" );\n\t\t\t});\n\n\t\t\taddEvent(b, \"dblclick\", function( e ) {\n\t\t\t\tvar target = e && e.target ? e.target : window.event.srcElement;\n\t\t\t\tif ( target.nodeName.toLowerCase() === \"span\" || target.nodeName.toLowerCase() === \"b\" ) {\n\t\t\t\t\ttarget = target.parentNode;\n\t\t\t\t}\n\t\t\t\tif ( window.location && target.nodeName.toLowerCase() === \"strong\" ) {\n\t\t\t\t\twindow.location = QUnit.url({ testNumber: test.testNumber });\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// `time` initialized at top of scope\n\t\t\ttime = document.createElement( \"span\" );\n\t\t\ttime.className = \"runtime\";\n\t\t\ttime.innerHTML = this.runtime + \" ms\";\n\n\t\t\t// `li` initialized at top of scope\n\t\t\tli = id( this.id );\n\t\t\tli.className = bad ? \"fail\" : \"pass\";\n\t\t\tli.removeChild( li.firstChild );\n\t\t\ta = li.firstChild;\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.appendChild( time );\n\t\t\tli.appendChild( ol );\n\n\t\t} else {\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tif ( !this.assertions[i].result ) {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\trunLoggingCallbacks( \"testDone\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module,\n\t\t\tfailed: bad,\n\t\t\tpassed: this.assertions.length - bad,\n\t\t\ttotal: this.assertions.length,\n\t\t\tduration: this.runtime\n\t\t});\n\n\t\tQUnit.reset();\n\n\t\tconfig.current = undefined;\n\t},\n\n\tqueue: function() {\n\t\tvar bad,\n\t\t\ttest = this;\n\n\t\tsynchronize(function() {\n\t\t\ttest.init();\n\t\t});\n\t\tfunction run() {\n\t\t\t// each of these can by async\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.setup();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.run();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.teardown();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.finish();\n\t\t\t});\n\t\t}\n\n\t\t// `bad` initialized at top of scope\n\t\t// defer when previous test run passed, if storage is available\n\t\tbad = QUnit.config.reorder && defined.sessionStorage &&\n\t\t\t\t\t\t+sessionStorage.getItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\n\t\tif ( bad ) {\n\t\t\trun();\n\t\t} else {\n\t\t\tsynchronize( run, true );\n\t\t}\n\t}\n};\n\n// Root QUnit object.\n// `QUnit` initialized at top of scope\nQUnit = {\n\n\t// call on start of module test to prepend name to all tests\n\tmodule: function( name, testEnvironment ) {\n\t\tconfig.currentModule = name;\n\t\tconfig.currentModuleTestEnvironment = testEnvironment;\n\t\tconfig.modules[name] = true;\n\t},\n\n\tasyncTest: function( testName, expected, callback ) {\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tQUnit.test( testName, expected, callback, true );\n\t},\n\n\ttest: function( testName, expected, callback, async ) {\n\t\tvar test,\n\t\t\tnameHtml = \"<span class='test-name'>\" + escapeText( testName ) + \"</span>\";\n\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tif ( config.currentModule ) {\n\t\t\tnameHtml = \"<span class='module-name'>\" + escapeText( config.currentModule ) + \"</span>: \" + nameHtml;\n\t\t}\n\n\t\ttest = new Test({\n\t\t\tnameHtml: nameHtml,\n\t\t\ttestName: testName,\n\t\t\texpected: expected,\n\t\t\tasync: async,\n\t\t\tcallback: callback,\n\t\t\tmodule: config.currentModule,\n\t\t\tmoduleTestEnvironment: config.currentModuleTestEnvironment,\n\t\t\tstack: sourceFromStacktrace( 2 )\n\t\t});\n\n\t\tif ( !validTest( test ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\ttest.queue();\n\t},\n\n\t// Specify the number of expected assertions to guarantee that failed test (no assertions are run at all) don't slip through.\n\texpect: function( asserts ) {\n\t\tif (arguments.length === 1) {\n\t\t\tconfig.current.expected = asserts;\n\t\t} else {\n\t\t\treturn config.current.expected;\n\t\t}\n\t},\n\n\tstart: function( count ) {\n\t\t// QUnit hasn't been initialized yet.\n\t\t// Note: RequireJS (et al) may delay onLoad\n\t\tif ( config.semaphore === undefined ) {\n\t\t\tQUnit.begin(function() {\n\t\t\t\t// This is triggered at the top of QUnit.load, push start() to the event loop, to allow QUnit.load to finish first\n\t\t\t\tsetTimeout(function() {\n\t\t\t\t\tQUnit.start( count );\n\t\t\t\t});\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\n\t\tconfig.semaphore -= count || 1;\n\t\t// don't start until equal number of stop-calls\n\t\tif ( config.semaphore > 0 ) {\n\t\t\treturn;\n\t\t}\n\t\t// ignore if start is called more often then stop\n\t\tif ( config.semaphore < 0 ) {\n\t\t\tconfig.semaphore = 0;\n\t\t\tQUnit.pushFailure( \"Called start() while already started (QUnit.config.semaphore was 0 already)\", null, sourceFromStacktrace(2) );\n\t\t\treturn;\n\t\t}\n\t\t// A slight delay, to avoid any current callbacks\n\t\tif ( defined.setTimeout ) {\n\t\t\tsetTimeout(function() {\n\t\t\t\tif ( config.semaphore > 0 ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( config.timeout ) {\n\t\t\t\t\tclearTimeout( config.timeout );\n\t\t\t\t}\n\n\t\t\t\tconfig.blocking = false;\n\t\t\t\tprocess( true );\n\t\t\t}, 13);\n\t\t} else {\n\t\t\tconfig.blocking = false;\n\t\t\tprocess( true );\n\t\t}\n\t},\n\n\tstop: function( count ) {\n\t\tconfig.semaphore += count || 1;\n\t\tconfig.blocking = true;\n\n\t\tif ( config.testTimeout && defined.setTimeout ) {\n\t\t\tclearTimeout( config.timeout );\n\t\t\tconfig.timeout = setTimeout(function() {\n\t\t\t\tQUnit.ok( false, \"Test timed out\" );\n\t\t\t\tconfig.semaphore = 1;\n\t\t\t\tQUnit.start();\n\t\t\t}, config.testTimeout );\n\t\t}\n\t}\n};\n\n// `assert` initialized at top of scope\n// Assert helpers\n// All of these must either call QUnit.push() or manually do:\n// - runLoggingCallbacks( \"log\", .. );\n// - config.current.assertions.push({ .. });\n// We attach it to the QUnit object *after* we expose the public API,\n// otherwise `assert` will become a global variable in browsers (#341).\nassert = {\n\t/**\n\t * Asserts rough true-ish result.\n\t * @name ok\n\t * @function\n\t * @example ok( \"asdfasdf\".length > 5, \"There must be at least 5 chars\" );\n\t */\n\tok: function( result, msg ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"ok() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\t\tresult = !!result;\n\t\tmsg = msg || (result ? \"okay\" : \"failed\" );\n\n\t\tvar source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: msg\n\t\t\t};\n\n\t\tmsg = \"<span class='test-message'>\" + escapeText( msg ) + \"</span>\";\n\n\t\tif ( !result ) {\n\t\t\tsource = sourceFromStacktrace( 2 );\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\tmsg += \"<table><tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr></table>\";\n\t\t\t}\n\t\t}\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\t\tconfig.current.assertions.push({\n\t\t\tresult: result,\n\t\t\tmessage: msg\n\t\t});\n\t},\n\n\t/**\n\t * Assert that the first two arguments are equal, with an optional message.\n\t * Prints out both actual and expected values.\n\t * @name equal\n\t * @function\n\t * @example equal( format( \"Received {0} bytes.\", 2), \"Received 2 bytes.\", \"format() replaces {0} with next argument\" );\n\t */\n\tequal: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected == actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notEqual\n\t * @function\n\t */\n\tnotEqual: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected != actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name propEqual\n\t * @function\n\t */\n\tpropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notPropEqual\n\t * @function\n\t */\n\tnotPropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name deepEqual\n\t * @function\n\t */\n\tdeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notDeepEqual\n\t * @function\n\t */\n\tnotDeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name strictEqual\n\t * @function\n\t */\n\tstrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected === actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notStrictEqual\n\t * @function\n\t */\n\tnotStrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected !== actual, actual, expected, message );\n\t},\n\n\t\"throws\": function( block, expected, message ) {\n\t\tvar actual,\n\t\t\texpectedOutput = expected,\n\t\t\tok = false;\n\n\t\t// 'expected' is optional\n\t\tif ( typeof expected === \"string\" ) {\n\t\t\tmessage = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tconfig.current.ignoreGlobalErrors = true;\n\t\ttry {\n\t\t\tblock.call( config.current.testEnvironment );\n\t\t} catch (e) {\n\t\t\tactual = e;\n\t\t}\n\t\tconfig.current.ignoreGlobalErrors = false;\n\n\t\tif ( actual ) {\n\t\t\t// we don't want to validate thrown error\n\t\t\tif ( !expected ) {\n\t\t\t\tok = true;\n\t\t\t\texpectedOutput = null;\n\t\t\t// expected is a regexp\n\t\t\t} else if ( QUnit.objectType( expected ) === \"regexp\" ) {\n\t\t\t\tok = expected.test( errorString( actual ) );\n\t\t\t// expected is a constructor\n\t\t\t} else if ( actual instanceof expected ) {\n\t\t\t\tok = true;\n\t\t\t// expected is a validation function which returns true is validation passed\n\t\t\t} else if ( expected.call( {}, actual ) === true ) {\n\t\t\t\texpectedOutput = null;\n\t\t\t\tok = true;\n\t\t\t}\n\n\t\t\tQUnit.push( ok, actual, expectedOutput, message );\n\t\t} else {\n\t\t\tQUnit.pushFailure( message, null, \"No exception was thrown.\" );\n\t\t}\n\t}\n};\n\n/**\n * @deprecated since 1.8.0\n * Kept assertion helpers in root for backwards compatibility.\n */\nextend( QUnit, assert );\n\n/**\n * @deprecated since 1.9.0\n * Kept root \"raises()\" for backwards compatibility.\n * (Note that we don't introduce assert.raises).\n */\nQUnit.raises = assert[ \"throws\" ];\n\n/**\n * @deprecated since 1.0.0, replaced with error pushes since 1.3.0\n * Kept to avoid TypeErrors for undefined methods.\n */\nQUnit.equals = function() {\n\tQUnit.push( false, false, false, \"QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead\" );\n};\nQUnit.same = function() {\n\tQUnit.push( false, false, false, \"QUnit.same has been deprecated since 2009 (e88049a0), use QUnit.deepEqual instead\" );\n};\n\n// We want access to the constructor's prototype\n(function() {\n\tfunction F() {}\n\tF.prototype = QUnit;\n\tQUnit = new F();\n\t// Make F QUnit's constructor so that we can add to the prototype later\n\tQUnit.constructor = F;\n}());\n\n/**\n * Config object: Maintain internal state\n * Later exposed as QUnit.config\n * `config` initialized at top of scope\n */\nconfig = {\n\t// The queue of tests to run\n\tqueue: [],\n\n\t// block until document ready\n\tblocking: true,\n\n\t// when enabled, show only failing tests\n\t// gets persisted through sessionStorage and can be changed in UI via checkbox\n\thidepassed: false,\n\n\t// by default, run previously failed tests first\n\t// very useful in combination with \"Hide passed tests\" checked\n\treorder: true,\n\n\t// by default, modify document.title when suite is done\n\taltertitle: true,\n\n\t// when enabled, all tests must call expect()\n\trequireExpects: false,\n\n\t// add checkboxes that are persisted in the query-string\n\t// when enabled, the id is set to `true` as a `QUnit.config` property\n\turlConfig: [\n\t\t{\n\t\t\tid: \"noglobals\",\n\t\t\tlabel: \"Check for Globals\",\n\t\t\ttooltip: \"Enabling this will test if any test introduces new properties on the `window` object. Stored as query-strings.\"\n\t\t},\n\t\t{\n\t\t\tid: \"notrycatch\",\n\t\t\tlabel: \"No try-catch\",\n\t\t\ttooltip: \"Enabling this will run tests outside of a try-catch block. Makes debugging exceptions in IE reasonable. Stored as query-strings.\"\n\t\t}\n\t],\n\n\t// Set of all modules.\n\tmodules: {},\n\n\t// logging callback queues\n\tbegin: [],\n\tdone: [],\n\tlog: [],\n\ttestStart: [],\n\ttestDone: [],\n\tmoduleStart: [],\n\tmoduleDone: []\n};\n\n// Export global variables, unless an 'exports' object exists,\n// in that case we assume we're in CommonJS (dealt with on the bottom of the script)\nif ( typeof exports === \"undefined\" ) {\n\textend( window, QUnit.constructor.prototype );\n\n\t// Expose QUnit object\n\twindow.QUnit = QUnit;\n}\n\n// Initialize more QUnit.config and QUnit.urlParams\n(function() {\n\tvar i,\n\t\tlocation = window.location || { search: \"\", protocol: \"file:\" },\n\t\tparams = location.search.slice( 1 ).split( \"&\" ),\n\t\tlength = params.length,\n\t\turlParams = {},\n\t\tcurrent;\n\n\tif ( params[ 0 ] ) {\n\t\tfor ( i = 0; i < length; i++ ) {\n\t\t\tcurrent = params[ i ].split( \"=\" );\n\t\t\tcurrent[ 0 ] = decodeURIComponent( current[ 0 ] );\n\t\t\t// allow just a key to turn on a flag, e.g., test.html?noglobals\n\t\t\tcurrent[ 1 ] = current[ 1 ] ? decodeURIComponent( current[ 1 ] ) : true;\n\t\t\turlParams[ current[ 0 ] ] = current[ 1 ];\n\t\t}\n\t}\n\n\tQUnit.urlParams = urlParams;\n\n\t// String search anywhere in moduleName+testName\n\tconfig.filter = urlParams.filter;\n\n\t// Exact match of the module name\n\tconfig.module = urlParams.module;\n\n\tconfig.testNumber = parseInt( urlParams.testNumber, 10 ) || null;\n\n\t// Figure out if we're running the tests from a server or not\n\tQUnit.isLocal = location.protocol === \"file:\";\n}());\n\n// Extend QUnit object,\n// these after set here because they should not be exposed as global functions\nextend( QUnit, {\n\tassert: assert,\n\n\tconfig: config,\n\n\t// Initialize the configuration options\n\tinit: function() {\n\t\textend( config, {\n\t\t\tstats: { all: 0, bad: 0 },\n\t\t\tmoduleStats: { all: 0, bad: 0 },\n\t\t\tstarted: +new Date(),\n\t\t\tupdateRate: 1000,\n\t\t\tblocking: false,\n\t\t\tautostart: true,\n\t\t\tautorun: false,\n\t\t\tfilter: \"\",\n\t\t\tqueue: [],\n\t\t\tsemaphore: 1\n\t\t});\n\n\t\tvar tests, banner, result,\n\t\t\tqunit = id( \"qunit\" );\n\n\t\tif ( qunit ) {\n\t\t\tqunit.innerHTML =\n\t\t\t\t\"<h1 id='qunit-header'>\" + escapeText( document.title ) + \"</h1>\" +\n\t\t\t\t\"<h2 id='qunit-banner'></h2>\" +\n\t\t\t\t\"<div id='qunit-testrunner-toolbar'></div>\" +\n\t\t\t\t\"<h2 id='qunit-userAgent'></h2>\" +\n\t\t\t\t\"<ol id='qunit-tests'></ol>\";\n\t\t}\n\n\t\ttests = id( \"qunit-tests\" );\n\t\tbanner = id( \"qunit-banner\" );\n\t\tresult = id( \"qunit-testresult\" );\n\n\t\tif ( tests ) {\n\t\t\ttests.innerHTML = \"\";\n\t\t}\n\n\t\tif ( banner ) {\n\t\t\tbanner.className = \"\";\n\t\t}\n\n\t\tif ( result ) {\n\t\t\tresult.parentNode.removeChild( result );\n\t\t}\n\n\t\tif ( tests ) {\n\t\t\tresult = document.createElement( \"p\" );\n\t\t\tresult.id = \"qunit-testresult\";\n\t\t\tresult.className = \"result\";\n\t\t\ttests.parentNode.insertBefore( result, tests );\n\t\t\tresult.innerHTML = \"Running...<br/>&nbsp;\";\n\t\t}\n\t},\n\n\t// Resets the test setup. Useful for tests that modify the DOM.\n\t/*\n\tDEPRECATED: Use multiple tests instead of resetting inside a test.\n\tUse testStart or testDone for custom cleanup.\n\tThis method will throw an error in 2.0, and will be removed in 2.1\n\t*/\n\treset: function() {\n\t\tvar fixture = id( \"qunit-fixture\" );\n\t\tif ( fixture ) {\n\t\t\tfixture.innerHTML = config.fixture;\n\t\t}\n\t},\n\n\t// Trigger an event on an element.\n\t// @example triggerEvent( document.body, \"click\" );\n\ttriggerEvent: function( elem, type, event ) {\n\t\tif ( document.createEvent ) {\n\t\t\tevent = document.createEvent( \"MouseEvents\" );\n\t\t\tevent.initMouseEvent(type, true, true, elem.ownerDocument.defaultView,\n\t\t\t\t0, 0, 0, 0, 0, false, false, false, false, 0, null);\n\n\t\t\telem.dispatchEvent( event );\n\t\t} else if ( elem.fireEvent ) {\n\t\t\telem.fireEvent( \"on\" + type );\n\t\t}\n\t},\n\n\t// Safe object type checking\n\tis: function( type, obj ) {\n\t\treturn QUnit.objectType( obj ) === type;\n\t},\n\n\tobjectType: function( obj ) {\n\t\tif ( typeof obj === \"undefined\" ) {\n\t\t\t\treturn \"undefined\";\n\t\t// consider: typeof null === object\n\t\t}\n\t\tif ( obj === null ) {\n\t\t\t\treturn \"null\";\n\t\t}\n\n\t\tvar match = toString.call( obj ).match(/^\\[object\\s(.*)\\]$/),\n\t\t\ttype = match && match[1] || \"\";\n\n\t\tswitch ( type ) {\n\t\t\tcase \"Number\":\n\t\t\t\tif ( isNaN(obj) ) {\n\t\t\t\t\treturn \"nan\";\n\t\t\t\t}\n\t\t\t\treturn \"number\";\n\t\t\tcase \"String\":\n\t\t\tcase \"Boolean\":\n\t\t\tcase \"Array\":\n\t\t\tcase \"Date\":\n\t\t\tcase \"RegExp\":\n\t\t\tcase \"Function\":\n\t\t\t\treturn type.toLowerCase();\n\t\t}\n\t\tif ( typeof obj === \"object\" ) {\n\t\t\treturn \"object\";\n\t\t}\n\t\treturn undefined;\n\t},\n\n\tpush: function( result, actual, expected, message ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"assertion outside test context, was \" + sourceFromStacktrace() );\n\t\t}\n\n\t\tvar output, source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: message,\n\t\t\t\tactual: actual,\n\t\t\t\texpected: expected\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || ( result ? \"okay\" : \"failed\" );\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\tif ( !result ) {\n\t\t\texpected = escapeText( QUnit.jsDump.parse(expected) );\n\t\t\tactual = escapeText( QUnit.jsDump.parse(actual) );\n\t\t\toutput += \"<table><tr class='test-expected'><th>Expected: </th><td><pre>\" + expected + \"</pre></td></tr>\";\n\n\t\t\tif ( actual !== expected ) {\n\t\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + actual + \"</pre></td></tr>\";\n\t\t\t\toutput += \"<tr class='test-diff'><th>Diff: </th><td><pre>\" + QUnit.diff( expected, actual ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\tsource = sourceFromStacktrace();\n\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\toutput += \"</table>\";\n\t\t}\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: !!result,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\tpushFailure: function( message, source, actual ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"pushFailure() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\n\t\tvar output,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: false,\n\t\t\t\tmessage: message\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || \"error\";\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\toutput += \"<table>\";\n\n\t\tif ( actual ) {\n\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + escapeText( actual ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\tif ( source ) {\n\t\t\tdetails.source = source;\n\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\toutput += \"</table>\";\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: false,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\turl: function( params ) {\n\t\tparams = extend( extend( {}, QUnit.urlParams ), params );\n\t\tvar key,\n\t\t\tquerystring = \"?\";\n\n\t\tfor ( key in params ) {\n\t\t\tif ( hasOwn.call( params, key ) ) {\n\t\t\t\tquerystring += encodeURIComponent( key ) + \"=\" +\n\t\t\t\t\tencodeURIComponent( params[ key ] ) + \"&\";\n\t\t\t}\n\t\t}\n\t\treturn window.location.protocol + \"//\" + window.location.host +\n\t\t\twindow.location.pathname + querystring.slice( 0, -1 );\n\t},\n\n\textend: extend,\n\tid: id,\n\taddEvent: addEvent,\n\taddClass: addClass,\n\thasClass: hasClass,\n\tremoveClass: removeClass\n\t// load, equiv, jsDump, diff: Attached later\n});\n\n/**\n * @deprecated: Created for backwards compatibility with test runner that set the hook function\n * into QUnit.{hook}, instead of invoking it and passing the hook function.\n * QUnit.constructor is set to the empty F() above so that we can add to it's prototype here.\n * Doing this allows us to tell if the following methods have been overwritten on the actual\n * QUnit object.\n */\nextend( QUnit.constructor.prototype, {\n\n\t// Logging callbacks; all receive a single argument with the listed properties\n\t// run test/logs.html for any related changes\n\tbegin: registerLoggingCallback( \"begin\" ),\n\n\t// done: { failed, passed, total, runtime }\n\tdone: registerLoggingCallback( \"done\" ),\n\n\t// log: { result, actual, expected, message }\n\tlog: registerLoggingCallback( \"log\" ),\n\n\t// testStart: { name }\n\ttestStart: registerLoggingCallback( \"testStart\" ),\n\n\t// testDone: { name, failed, passed, total, duration }\n\ttestDone: registerLoggingCallback( \"testDone\" ),\n\n\t// moduleStart: { name }\n\tmoduleStart: registerLoggingCallback( \"moduleStart\" ),\n\n\t// moduleDone: { name, failed, passed, total }\n\tmoduleDone: registerLoggingCallback( \"moduleDone\" )\n});\n\nif ( typeof document === \"undefined\" || document.readyState === \"complete\" ) {\n\tconfig.autorun = true;\n}\n\nQUnit.load = function() {\n\trunLoggingCallbacks( \"begin\", QUnit, {} );\n\n\t// Initialize the config, saving the execution queue\n\tvar banner, filter, i, label, len, main, ol, toolbar, userAgent, val,\n\t\turlConfigCheckboxesContainer, urlConfigCheckboxes, moduleFilter,\n\t\tnumModules = 0,\n\t\tmoduleNames = [],\n\t\tmoduleFilterHtml = \"\",\n\t\turlConfigHtml = \"\",\n\t\toldconfig = extend( {}, config );\n\n\tQUnit.init();\n\textend(config, oldconfig);\n\n\tconfig.blocking = false;\n\n\tlen = config.urlConfig.length;\n\n\tfor ( i = 0; i < len; i++ ) {\n\t\tval = config.urlConfig[i];\n\t\tif ( typeof val === \"string\" ) {\n\t\t\tval = {\n\t\t\t\tid: val,\n\t\t\t\tlabel: val,\n\t\t\t\ttooltip: \"[no tooltip available]\"\n\t\t\t};\n\t\t}\n\t\tconfig[ val.id ] = QUnit.urlParams[ val.id ];\n\t\turlConfigHtml += \"<input id='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' name='\" + escapeText( val.id ) +\n\t\t\t\"' type='checkbox'\" + ( config[ val.id ] ? \" checked='checked'\" : \"\" ) +\n\t\t\t\" title='\" + escapeText( val.tooltip ) +\n\t\t\t\"'><label for='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' title='\" + escapeText( val.tooltip ) + \"'>\" + val.label + \"</label>\";\n\t}\n\tfor ( i in config.modules ) {\n\t\tif ( config.modules.hasOwnProperty( i ) ) {\n\t\t\tmoduleNames.push(i);\n\t\t}\n\t}\n\tnumModules = moduleNames.length;\n\tmoduleNames.sort( function( a, b ) {\n\t\treturn a.localeCompare( b );\n\t});\n\tmoduleFilterHtml += \"<label for='qunit-modulefilter'>Module: </label><select id='qunit-modulefilter' name='modulefilter'><option value='' \" +\n\t\t( config.module === undefined  ? \"selected='selected'\" : \"\" ) +\n\t\t\">< All Modules ></option>\";\n\n\n\tfor ( i = 0; i < numModules; i++) {\n\t\t\tmoduleFilterHtml += \"<option value='\" + escapeText( encodeURIComponent(moduleNames[i]) ) + \"' \" +\n\t\t\t\t( config.module === moduleNames[i] ? \"selected='selected'\" : \"\" ) +\n\t\t\t\t\">\" + escapeText(moduleNames[i]) + \"</option>\";\n\t}\n\tmoduleFilterHtml += \"</select>\";\n\n\t// `userAgent` initialized at top of scope\n\tuserAgent = id( \"qunit-userAgent\" );\n\tif ( userAgent ) {\n\t\tuserAgent.innerHTML = navigator.userAgent;\n\t}\n\n\t// `banner` initialized at top of scope\n\tbanner = id( \"qunit-header\" );\n\tif ( banner ) {\n\t\tbanner.innerHTML = \"<a href='\" + QUnit.url({ filter: undefined, module: undefined, testNumber: undefined }) + \"'>\" + banner.innerHTML + \"</a> \";\n\t}\n\n\t// `toolbar` initialized at top of scope\n\ttoolbar = id( \"qunit-testrunner-toolbar\" );\n\tif ( toolbar ) {\n\t\t// `filter` initialized at top of scope\n\t\tfilter = document.createElement( \"input\" );\n\t\tfilter.type = \"checkbox\";\n\t\tfilter.id = \"qunit-filter-pass\";\n\n\t\taddEvent( filter, \"click\", function() {\n\t\t\tvar tmp,\n\t\t\t\tol = document.getElementById( \"qunit-tests\" );\n\n\t\t\tif ( filter.checked ) {\n\t\t\t\tol.className = ol.className + \" hidepass\";\n\t\t\t} else {\n\t\t\t\ttmp = \" \" + ol.className.replace( /[\\n\\t\\r]/g, \" \" ) + \" \";\n\t\t\t\tol.className = tmp.replace( / hidepass /, \" \" );\n\t\t\t}\n\t\t\tif ( defined.sessionStorage ) {\n\t\t\t\tif (filter.checked) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-filter-passed-tests\", \"true\" );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-filter-passed-tests\" );\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif ( config.hidepassed || defined.sessionStorage && sessionStorage.getItem( \"qunit-filter-passed-tests\" ) ) {\n\t\t\tfilter.checked = true;\n\t\t\t// `ol` initialized at top of scope\n\t\t\tol = document.getElementById( \"qunit-tests\" );\n\t\t\tol.className = ol.className + \" hidepass\";\n\t\t}\n\t\ttoolbar.appendChild( filter );\n\n\t\t// `label` initialized at top of scope\n\t\tlabel = document.createElement( \"label\" );\n\t\tlabel.setAttribute( \"for\", \"qunit-filter-pass\" );\n\t\tlabel.setAttribute( \"title\", \"Only show tests and assertions that fail. Stored in sessionStorage.\" );\n\t\tlabel.innerHTML = \"Hide passed tests\";\n\t\ttoolbar.appendChild( label );\n\n\t\turlConfigCheckboxesContainer = document.createElement(\"span\");\n\t\turlConfigCheckboxesContainer.innerHTML = urlConfigHtml;\n\t\turlConfigCheckboxes = urlConfigCheckboxesContainer.getElementsByTagName(\"input\");\n\t\t// For oldIE support:\n\t\t// * Add handlers to the individual elements instead of the container\n\t\t// * Use \"click\" instead of \"change\"\n\t\t// * Fallback from event.target to event.srcElement\n\t\taddEvents( urlConfigCheckboxes, \"click\", function( event ) {\n\t\t\tvar params = {},\n\t\t\t\ttarget = event.target || event.srcElement;\n\t\t\tparams[ target.name ] = target.checked ? true : undefined;\n\t\t\twindow.location = QUnit.url( params );\n\t\t});\n\t\ttoolbar.appendChild( urlConfigCheckboxesContainer );\n\n\t\tif (numModules > 1) {\n\t\t\tmoduleFilter = document.createElement( \"span\" );\n\t\t\tmoduleFilter.setAttribute( \"id\", \"qunit-modulefilter-container\" );\n\t\t\tmoduleFilter.innerHTML = moduleFilterHtml;\n\t\t\taddEvent( moduleFilter.lastChild, \"change\", function() {\n\t\t\t\tvar selectBox = moduleFilter.getElementsByTagName(\"select\")[0],\n\t\t\t\t\tselectedModule = decodeURIComponent(selectBox.options[selectBox.selectedIndex].value);\n\n\t\t\t\twindow.location = QUnit.url({\n\t\t\t\t\tmodule: ( selectedModule === \"\" ) ? undefined : selectedModule,\n\t\t\t\t\t// Remove any existing filters\n\t\t\t\t\tfilter: undefined,\n\t\t\t\t\ttestNumber: undefined\n\t\t\t\t});\n\t\t\t});\n\t\t\ttoolbar.appendChild(moduleFilter);\n\t\t}\n\t}\n\n\t// `main` initialized at top of scope\n\tmain = id( \"qunit-fixture\" );\n\tif ( main ) {\n\t\tconfig.fixture = main.innerHTML;\n\t}\n\n\tif ( config.autostart ) {\n\t\tQUnit.start();\n\t}\n};\n\naddEvent( window, \"load\", QUnit.load );\n\n// `onErrorFnPrev` initialized at top of scope\n// Preserve other handlers\nonErrorFnPrev = window.onerror;\n\n// Cover uncaught exceptions\n// Returning true will suppress the default browser handler,\n// returning false will let it run.\nwindow.onerror = function ( error, filePath, linerNr ) {\n\tvar ret = false;\n\tif ( onErrorFnPrev ) {\n\t\tret = onErrorFnPrev( error, filePath, linerNr );\n\t}\n\n\t// Treat return value as window.onerror itself does,\n\t// Only do our handling if not suppressed.\n\tif ( ret !== true ) {\n\t\tif ( QUnit.config.current ) {\n\t\t\tif ( QUnit.config.current.ignoreGlobalErrors ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t} else {\n\t\t\tQUnit.test( \"global failure\", extend( function() {\n\t\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t\t}, { validTest: validTest } ) );\n\t\t}\n\t\treturn false;\n\t}\n\n\treturn ret;\n};\n\nfunction done() {\n\tconfig.autorun = true;\n\n\t// Log the last module results\n\tif ( config.currentModule ) {\n\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\tname: config.currentModule,\n\t\t\tfailed: config.moduleStats.bad,\n\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\ttotal: config.moduleStats.all\n\t\t});\n\t}\n\tdelete config.previousModule;\n\n\tvar i, key,\n\t\tbanner = id( \"qunit-banner\" ),\n\t\ttests = id( \"qunit-tests\" ),\n\t\truntime = +new Date() - config.started,\n\t\tpassed = config.stats.all - config.stats.bad,\n\t\thtml = [\n\t\t\t\"Tests completed in \",\n\t\t\truntime,\n\t\t\t\" milliseconds.<br/>\",\n\t\t\t\"<span class='passed'>\",\n\t\t\tpassed,\n\t\t\t\"</span> assertions of <span class='total'>\",\n\t\t\tconfig.stats.all,\n\t\t\t\"</span> passed, <span class='failed'>\",\n\t\t\tconfig.stats.bad,\n\t\t\t\"</span> failed.\"\n\t\t].join( \"\" );\n\n\tif ( banner ) {\n\t\tbanner.className = ( config.stats.bad ? \"qunit-fail\" : \"qunit-pass\" );\n\t}\n\n\tif ( tests ) {\n\t\tid( \"qunit-testresult\" ).innerHTML = html;\n\t}\n\n\tif ( config.altertitle && typeof document !== \"undefined\" && document.title ) {\n\t\t// show ✖ for good, ✔ for bad suite result in title\n\t\t// use escape sequences in case file gets loaded with non-utf-8-charset\n\t\tdocument.title = [\n\t\t\t( config.stats.bad ? \"\\u2716\" : \"\\u2714\" ),\n\t\t\tdocument.title.replace( /^[\\u2714\\u2716] /i, \"\" )\n\t\t].join( \" \" );\n\t}\n\n\t// clear own sessionStorage items if all tests passed\n\tif ( config.reorder && defined.sessionStorage && config.stats.bad === 0 ) {\n\t\t// `key` & `i` initialized at top of scope\n\t\tfor ( i = 0; i < sessionStorage.length; i++ ) {\n\t\t\tkey = sessionStorage.key( i++ );\n\t\t\tif ( key.indexOf( \"qunit-test-\" ) === 0 ) {\n\t\t\t\tsessionStorage.removeItem( key );\n\t\t\t}\n\t\t}\n\t}\n\n\t// scroll back to top to show results\n\tif ( window.scrollTo ) {\n\t\twindow.scrollTo(0, 0);\n\t}\n\n\trunLoggingCallbacks( \"done\", QUnit, {\n\t\tfailed: config.stats.bad,\n\t\tpassed: passed,\n\t\ttotal: config.stats.all,\n\t\truntime: runtime\n\t});\n}\n\n/** @return Boolean: true if this test should be ran */\nfunction validTest( test ) {\n\tvar include,\n\t\tfilter = config.filter && config.filter.toLowerCase(),\n\t\tmodule = config.module && config.module.toLowerCase(),\n\t\tfullName = (test.module + \": \" + test.testName).toLowerCase();\n\n\t// Internally-generated tests are always valid\n\tif ( test.callback && test.callback.validTest === validTest ) {\n\t\tdelete test.callback.validTest;\n\t\treturn true;\n\t}\n\n\tif ( config.testNumber ) {\n\t\treturn test.testNumber === config.testNumber;\n\t}\n\n\tif ( module && ( !test.module || test.module.toLowerCase() !== module ) ) {\n\t\treturn false;\n\t}\n\n\tif ( !filter ) {\n\t\treturn true;\n\t}\n\n\tinclude = filter.charAt( 0 ) !== \"!\";\n\tif ( !include ) {\n\t\tfilter = filter.slice( 1 );\n\t}\n\n\t// If the filter matches, we need to honour include\n\tif ( fullName.indexOf( filter ) !== -1 ) {\n\t\treturn include;\n\t}\n\n\t// Otherwise, do the opposite\n\treturn !include;\n}\n\n// so far supports only Firefox, Chrome and Opera (buggy), Safari (for real exceptions)\n// Later Safari and IE10 are supposed to support error.stack as well\n// See also https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error/Stack\nfunction extractStacktrace( e, offset ) {\n\toffset = offset === undefined ? 3 : offset;\n\n\tvar stack, include, i;\n\n\tif ( e.stacktrace ) {\n\t\t// Opera\n\t\treturn e.stacktrace.split( \"\\n\" )[ offset + 3 ];\n\t} else if ( e.stack ) {\n\t\t// Firefox, Chrome\n\t\tstack = e.stack.split( \"\\n\" );\n\t\tif (/^error$/i.test( stack[0] ) ) {\n\t\t\tstack.shift();\n\t\t}\n\t\tif ( fileName ) {\n\t\t\tinclude = [];\n\t\t\tfor ( i = offset; i < stack.length; i++ ) {\n\t\t\t\tif ( stack[ i ].indexOf( fileName ) !== -1 ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tinclude.push( stack[ i ] );\n\t\t\t}\n\t\t\tif ( include.length ) {\n\t\t\t\treturn include.join( \"\\n\" );\n\t\t\t}\n\t\t}\n\t\treturn stack[ offset ];\n\t} else if ( e.sourceURL ) {\n\t\t// Safari, PhantomJS\n\t\t// hopefully one day Safari provides actual stacktraces\n\t\t// exclude useless self-reference for generated Error objects\n\t\tif ( /qunit.js$/.test( e.sourceURL ) ) {\n\t\t\treturn;\n\t\t}\n\t\t// for actual exceptions, this is useful\n\t\treturn e.sourceURL + \":\" + e.line;\n\t}\n}\nfunction sourceFromStacktrace( offset ) {\n\ttry {\n\t\tthrow new Error();\n\t} catch ( e ) {\n\t\treturn extractStacktrace( e, offset );\n\t}\n}\n\n/**\n * Escape text for attribute or text content.\n */\nfunction escapeText( s ) {\n\tif ( !s ) {\n\t\treturn \"\";\n\t}\n\ts = s + \"\";\n\t// Both single quotes and double quotes (for attributes)\n\treturn s.replace( /['\"<>&]/g, function( s ) {\n\t\tswitch( s ) {\n\t\t\tcase \"'\":\n\t\t\t\treturn \"&#039;\";\n\t\t\tcase \"\\\"\":\n\t\t\t\treturn \"&quot;\";\n\t\t\tcase \"<\":\n\t\t\t\treturn \"&lt;\";\n\t\t\tcase \">\":\n\t\t\t\treturn \"&gt;\";\n\t\t\tcase \"&\":\n\t\t\t\treturn \"&amp;\";\n\t\t}\n\t});\n}\n\nfunction synchronize( callback, last ) {\n\tconfig.queue.push( callback );\n\n\tif ( config.autorun && !config.blocking ) {\n\t\tprocess( last );\n\t}\n}\n\nfunction process( last ) {\n\tfunction next() {\n\t\tprocess( last );\n\t}\n\tvar start = new Date().getTime();\n\tconfig.depth = config.depth ? config.depth + 1 : 1;\n\n\twhile ( config.queue.length && !config.blocking ) {\n\t\tif ( !defined.setTimeout || config.updateRate <= 0 || ( ( new Date().getTime() - start ) < config.updateRate ) ) {\n\t\t\tconfig.queue.shift()();\n\t\t} else {\n\t\t\tsetTimeout( next, 13 );\n\t\t\tbreak;\n\t\t}\n\t}\n\tconfig.depth--;\n\tif ( last && !config.blocking && !config.queue.length && config.depth === 0 ) {\n\t\tdone();\n\t}\n}\n\nfunction saveGlobal() {\n\tconfig.pollution = [];\n\n\tif ( config.noglobals ) {\n\t\tfor ( var key in window ) {\n\t\t\tif ( hasOwn.call( window, key ) ) {\n\t\t\t\t// in Opera sometimes DOM element ids show up here, ignore them\n\t\t\t\tif ( /^qunit-test-output/.test( key ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tconfig.pollution.push( key );\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction checkPollution() {\n\tvar newGlobals,\n\t\tdeletedGlobals,\n\t\told = config.pollution;\n\n\tsaveGlobal();\n\n\tnewGlobals = diff( config.pollution, old );\n\tif ( newGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Introduced global variable(s): \" + newGlobals.join(\", \") );\n\t}\n\n\tdeletedGlobals = diff( old, config.pollution );\n\tif ( deletedGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Deleted global variable(s): \" + deletedGlobals.join(\", \") );\n\t}\n}\n\n// returns a new Array with the elements that are in a but not in b\nfunction diff( a, b ) {\n\tvar i, j,\n\t\tresult = a.slice();\n\n\tfor ( i = 0; i < result.length; i++ ) {\n\t\tfor ( j = 0; j < b.length; j++ ) {\n\t\t\tif ( result[i] === b[j] ) {\n\t\t\t\tresult.splice( i, 1 );\n\t\t\t\ti--;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\treturn result;\n}\n\nfunction extend( a, b ) {\n\tfor ( var prop in b ) {\n\t\tif ( hasOwn.call( b, prop ) ) {\n\t\t\t// Avoid \"Member not found\" error in IE8 caused by messing with window.constructor\n\t\t\tif ( !( prop === \"constructor\" && a === window ) ) {\n\t\t\t\tif ( b[ prop ] === undefined ) {\n\t\t\t\t\tdelete a[ prop ];\n\t\t\t\t} else {\n\t\t\t\t\ta[ prop ] = b[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a;\n}\n\n/**\n * @param {HTMLElement} elem\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvent( elem, type, fn ) {\n\t// Standards-based browsers\n\tif ( elem.addEventListener ) {\n\t\telem.addEventListener( type, fn, false );\n\t// IE\n\t} else {\n\t\telem.attachEvent( \"on\" + type, fn );\n\t}\n}\n\n/**\n * @param {Array|NodeList} elems\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvents( elems, type, fn ) {\n\tvar i = elems.length;\n\twhile ( i-- ) {\n\t\taddEvent( elems[i], type, fn );\n\t}\n}\n\nfunction hasClass( elem, name ) {\n\treturn (\" \" + elem.className + \" \").indexOf(\" \" + name + \" \") > -1;\n}\n\nfunction addClass( elem, name ) {\n\tif ( !hasClass( elem, name ) ) {\n\t\telem.className += (elem.className ? \" \" : \"\") + name;\n\t}\n}\n\nfunction removeClass( elem, name ) {\n\tvar set = \" \" + elem.className + \" \";\n\t// Class name may appear multiple times\n\twhile ( set.indexOf(\" \" + name + \" \") > -1 ) {\n\t\tset = set.replace(\" \" + name + \" \" , \" \");\n\t}\n\t// If possible, trim it for prettiness, but not necessarily\n\telem.className = typeof set.trim === \"function\" ? set.trim() : set.replace(/^\\s+|\\s+$/g, \"\");\n}\n\nfunction id( name ) {\n\treturn !!( typeof document !== \"undefined\" && document && document.getElementById ) &&\n\t\tdocument.getElementById( name );\n}\n\nfunction registerLoggingCallback( key ) {\n\treturn function( callback ) {\n\t\tconfig[key].push( callback );\n\t};\n}\n\n// Supports deprecated method of completely overwriting logging callbacks\nfunction runLoggingCallbacks( key, scope, args ) {\n\tvar i, callbacks;\n\tif ( QUnit.hasOwnProperty( key ) ) {\n\t\tQUnit[ key ].call(scope, args );\n\t} else {\n\t\tcallbacks = config[ key ];\n\t\tfor ( i = 0; i < callbacks.length; i++ ) {\n\t\t\tcallbacks[ i ].call( scope, args );\n\t\t}\n\t}\n}\n\n// Test for equality any JavaScript type.\n// Author: Philippe Rathé <prathe@gmail.com>\nQUnit.equiv = (function() {\n\n\t// Call the o related callback with the given arguments.\n\tfunction bindCallbacks( o, callbacks, args ) {\n\t\tvar prop = QUnit.objectType( o );\n\t\tif ( prop ) {\n\t\t\tif ( QUnit.objectType( callbacks[ prop ] ) === \"function\" ) {\n\t\t\t\treturn callbacks[ prop ].apply( callbacks, args );\n\t\t\t} else {\n\t\t\t\treturn callbacks[ prop ]; // or undefined\n\t\t\t}\n\t\t}\n\t}\n\n\t// the real equiv function\n\tvar innerEquiv,\n\t\t// stack to decide between skip/abort functions\n\t\tcallers = [],\n\t\t// stack to avoiding loops from circular referencing\n\t\tparents = [],\n\t\tparentsB = [],\n\n\t\tgetProto = Object.getPrototypeOf || function ( obj ) {\n\t\t\t/*jshint camelcase:false */\n\t\t\treturn obj.__proto__;\n\t\t},\n\t\tcallbacks = (function () {\n\n\t\t\t// for string, boolean, number and null\n\t\t\tfunction useStrictEquality( b, a ) {\n\t\t\t\t/*jshint eqeqeq:false */\n\t\t\t\tif ( b instanceof a.constructor || a instanceof b.constructor ) {\n\t\t\t\t\t// to catch short annotation VS 'new' annotation of a\n\t\t\t\t\t// declaration\n\t\t\t\t\t// e.g. var i = 1;\n\t\t\t\t\t// var j = new Number(1);\n\t\t\t\t\treturn a == b;\n\t\t\t\t} else {\n\t\t\t\t\treturn a === b;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\t\"string\": useStrictEquality,\n\t\t\t\t\"boolean\": useStrictEquality,\n\t\t\t\t\"number\": useStrictEquality,\n\t\t\t\t\"null\": useStrictEquality,\n\t\t\t\t\"undefined\": useStrictEquality,\n\n\t\t\t\t\"nan\": function( b ) {\n\t\t\t\t\treturn isNaN( b );\n\t\t\t\t},\n\n\t\t\t\t\"date\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"date\" && a.valueOf() === b.valueOf();\n\t\t\t\t},\n\n\t\t\t\t\"regexp\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"regexp\" &&\n\t\t\t\t\t\t// the regex itself\n\t\t\t\t\t\ta.source === b.source &&\n\t\t\t\t\t\t// and its modifiers\n\t\t\t\t\t\ta.global === b.global &&\n\t\t\t\t\t\t// (gmi) ...\n\t\t\t\t\t\ta.ignoreCase === b.ignoreCase &&\n\t\t\t\t\t\ta.multiline === b.multiline &&\n\t\t\t\t\t\ta.sticky === b.sticky;\n\t\t\t\t},\n\n\t\t\t\t// - skip when the property is a method of an instance (OOP)\n\t\t\t\t// - abort otherwise,\n\t\t\t\t// initial === would have catch identical references anyway\n\t\t\t\t\"function\": function() {\n\t\t\t\t\tvar caller = callers[callers.length - 1];\n\t\t\t\t\treturn caller !== Object && typeof caller !== \"undefined\";\n\t\t\t\t},\n\n\t\t\t\t\"array\": function( b, a ) {\n\t\t\t\t\tvar i, j, len, loop, aCircular, bCircular;\n\n\t\t\t\t\t// b could be an object literal here\n\t\t\t\t\tif ( QUnit.objectType( b ) !== \"array\" ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\tlen = a.length;\n\t\t\t\t\tif ( len !== b.length ) {\n\t\t\t\t\t\t// safe and faster\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\t\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\n\t\t\t\t\"object\": function( b, a ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar i, j, loop, aCircular, bCircular,\n\t\t\t\t\t\t// Default to true\n\t\t\t\t\t\teq = true,\n\t\t\t\t\t\taProperties = [],\n\t\t\t\t\t\tbProperties = [];\n\n\t\t\t\t\t// comparing constructors is more strict than using\n\t\t\t\t\t// instanceof\n\t\t\t\t\tif ( a.constructor !== b.constructor ) {\n\t\t\t\t\t\t// Allow objects with no prototype to be equivalent to\n\t\t\t\t\t\t// objects with Object as their constructor.\n\t\t\t\t\t\tif ( !(( getProto(a) === null && getProto(b) === Object.prototype ) ||\n\t\t\t\t\t\t\t( getProto(b) === null && getProto(a) === Object.prototype ) ) ) {\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// stack constructor before traversing properties\n\t\t\t\t\tcallers.push( a.constructor );\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\n\t\t\t\t\t// be strict: don't ensure hasOwnProperty and go deep\n\t\t\t\t\tfor ( i in a ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\taProperties.push(i);\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\tcallers.pop(); // unstack, we are done\n\n\t\t\t\t\tfor ( i in b ) {\n\t\t\t\t\t\tbProperties.push( i ); // collect b's properties\n\t\t\t\t\t}\n\n\t\t\t\t\t// Ensures identical properties name\n\t\t\t\t\treturn eq && innerEquiv( aProperties.sort(), bProperties.sort() );\n\t\t\t\t}\n\t\t\t};\n\t\t}());\n\n\tinnerEquiv = function() { // can take multiple arguments\n\t\tvar args = [].slice.apply( arguments );\n\t\tif ( args.length < 2 ) {\n\t\t\treturn true; // end transition\n\t\t}\n\n\t\treturn (function( a, b ) {\n\t\t\tif ( a === b ) {\n\t\t\t\treturn true; // catch the most you can\n\t\t\t} else if ( a === null || b === null || typeof a === \"undefined\" ||\n\t\t\t\t\ttypeof b === \"undefined\" ||\n\t\t\t\t\tQUnit.objectType(a) !== QUnit.objectType(b) ) {\n\t\t\t\treturn false; // don't lose time with error prone cases\n\t\t\t} else {\n\t\t\t\treturn bindCallbacks(a, callbacks, [ b, a ]);\n\t\t\t}\n\n\t\t\t// apply transition with (1..n) arguments\n\t\t}( args[0], args[1] ) && innerEquiv.apply( this, args.splice(1, args.length - 1 )) );\n\t};\n\n\treturn innerEquiv;\n}());\n\n/**\n * jsDump Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com |\n * http://flesler.blogspot.com Licensed under BSD\n * (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008\n *\n * @projectDescription Advanced and extensible data dumping for Javascript.\n * @version 1.0.0\n * @author Ariel Flesler\n * @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}\n */\nQUnit.jsDump = (function() {\n\tfunction quote( str ) {\n\t\treturn \"\\\"\" + str.toString().replace( /\"/g, \"\\\\\\\"\" ) + \"\\\"\";\n\t}\n\tfunction literal( o ) {\n\t\treturn o + \"\";\n\t}\n\tfunction join( pre, arr, post ) {\n\t\tvar s = jsDump.separator(),\n\t\t\tbase = jsDump.indent(),\n\t\t\tinner = jsDump.indent(1);\n\t\tif ( arr.join ) {\n\t\t\tarr = arr.join( \",\" + s + inner );\n\t\t}\n\t\tif ( !arr ) {\n\t\t\treturn pre + post;\n\t\t}\n\t\treturn [ pre, inner + arr, base + post ].join(s);\n\t}\n\tfunction array( arr, stack ) {\n\t\tvar i = arr.length, ret = new Array(i);\n\t\tthis.up();\n\t\twhile ( i-- ) {\n\t\t\tret[i] = this.parse( arr[i] , undefined , stack);\n\t\t}\n\t\tthis.down();\n\t\treturn join( \"[\", ret, \"]\" );\n\t}\n\n\tvar reName = /^function (\\w+)/,\n\t\tjsDump = {\n\t\t\t// type is used mostly internally, you can fix a (custom)type in advance\n\t\t\tparse: function( obj, type, stack ) {\n\t\t\t\tstack = stack || [ ];\n\t\t\t\tvar inStack, res,\n\t\t\t\t\tparser = this.parsers[ type || this.typeOf(obj) ];\n\n\t\t\t\ttype = typeof parser;\n\t\t\t\tinStack = inArray( obj, stack );\n\n\t\t\t\tif ( inStack !== -1 ) {\n\t\t\t\t\treturn \"recursion(\" + (inStack - stack.length) + \")\";\n\t\t\t\t}\n\t\t\t\tif ( type === \"function\" )  {\n\t\t\t\t\tstack.push( obj );\n\t\t\t\t\tres = parser.call( this, obj, stack );\n\t\t\t\t\tstack.pop();\n\t\t\t\t\treturn res;\n\t\t\t\t}\n\t\t\t\treturn ( type === \"string\" ) ? parser : this.parsers.error;\n\t\t\t},\n\t\t\ttypeOf: function( obj ) {\n\t\t\t\tvar type;\n\t\t\t\tif ( obj === null ) {\n\t\t\t\t\ttype = \"null\";\n\t\t\t\t} else if ( typeof obj === \"undefined\" ) {\n\t\t\t\t\ttype = \"undefined\";\n\t\t\t\t} else if ( QUnit.is( \"regexp\", obj) ) {\n\t\t\t\t\ttype = \"regexp\";\n\t\t\t\t} else if ( QUnit.is( \"date\", obj) ) {\n\t\t\t\t\ttype = \"date\";\n\t\t\t\t} else if ( QUnit.is( \"function\", obj) ) {\n\t\t\t\t\ttype = \"function\";\n\t\t\t\t} else if ( typeof obj.setInterval !== undefined && typeof obj.document !== \"undefined\" && typeof obj.nodeType === \"undefined\" ) {\n\t\t\t\t\ttype = \"window\";\n\t\t\t\t} else if ( obj.nodeType === 9 ) {\n\t\t\t\t\ttype = \"document\";\n\t\t\t\t} else if ( obj.nodeType ) {\n\t\t\t\t\ttype = \"node\";\n\t\t\t\t} else if (\n\t\t\t\t\t// native arrays\n\t\t\t\t\ttoString.call( obj ) === \"[object Array]\" ||\n\t\t\t\t\t// NodeList objects\n\t\t\t\t\t( typeof obj.length === \"number\" && typeof obj.item !== \"undefined\" && ( obj.length ? obj.item(0) === obj[0] : ( obj.item( 0 ) === null && typeof obj[0] === \"undefined\" ) ) )\n\t\t\t\t) {\n\t\t\t\t\ttype = \"array\";\n\t\t\t\t} else if ( obj.constructor === Error.prototype.constructor ) {\n\t\t\t\t\ttype = \"error\";\n\t\t\t\t} else {\n\t\t\t\t\ttype = typeof obj;\n\t\t\t\t}\n\t\t\t\treturn type;\n\t\t\t},\n\t\t\tseparator: function() {\n\t\t\t\treturn this.multiline ?\tthis.HTML ? \"<br />\" : \"\\n\" : this.HTML ? \"&nbsp;\" : \" \";\n\t\t\t},\n\t\t\t// extra can be a number, shortcut for increasing-calling-decreasing\n\t\t\tindent: function( extra ) {\n\t\t\t\tif ( !this.multiline ) {\n\t\t\t\t\treturn \"\";\n\t\t\t\t}\n\t\t\t\tvar chr = this.indentChar;\n\t\t\t\tif ( this.HTML ) {\n\t\t\t\t\tchr = chr.replace( /\\t/g, \"   \" ).replace( / /g, \"&nbsp;\" );\n\t\t\t\t}\n\t\t\t\treturn new Array( this.depth + ( extra || 0 ) ).join(chr);\n\t\t\t},\n\t\t\tup: function( a ) {\n\t\t\t\tthis.depth += a || 1;\n\t\t\t},\n\t\t\tdown: function( a ) {\n\t\t\t\tthis.depth -= a || 1;\n\t\t\t},\n\t\t\tsetParser: function( name, parser ) {\n\t\t\t\tthis.parsers[name] = parser;\n\t\t\t},\n\t\t\t// The next 3 are exposed so you can use them\n\t\t\tquote: quote,\n\t\t\tliteral: literal,\n\t\t\tjoin: join,\n\t\t\t//\n\t\t\tdepth: 1,\n\t\t\t// This is the list of parsers, to modify them, use jsDump.setParser\n\t\t\tparsers: {\n\t\t\t\twindow: \"[Window]\",\n\t\t\t\tdocument: \"[Document]\",\n\t\t\t\terror: function(error) {\n\t\t\t\t\treturn \"Error(\\\"\" + error.message + \"\\\")\";\n\t\t\t\t},\n\t\t\t\tunknown: \"[Unknown]\",\n\t\t\t\t\"null\": \"null\",\n\t\t\t\t\"undefined\": \"undefined\",\n\t\t\t\t\"function\": function( fn ) {\n\t\t\t\t\tvar ret = \"function\",\n\t\t\t\t\t\t// functions never have name in IE\n\t\t\t\t\t\tname = \"name\" in fn ? fn.name : (reName.exec(fn) || [])[1];\n\n\t\t\t\t\tif ( name ) {\n\t\t\t\t\t\tret += \" \" + name;\n\t\t\t\t\t}\n\t\t\t\t\tret += \"( \";\n\n\t\t\t\t\tret = [ ret, QUnit.jsDump.parse( fn, \"functionArgs\" ), \"){\" ].join( \"\" );\n\t\t\t\t\treturn join( ret, QUnit.jsDump.parse(fn,\"functionCode\" ), \"}\" );\n\t\t\t\t},\n\t\t\t\tarray: array,\n\t\t\t\tnodelist: array,\n\t\t\t\t\"arguments\": array,\n\t\t\t\tobject: function( map, stack ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar ret = [ ], keys, key, val, i;\n\t\t\t\t\tQUnit.jsDump.up();\n\t\t\t\t\tkeys = [];\n\t\t\t\t\tfor ( key in map ) {\n\t\t\t\t\t\tkeys.push( key );\n\t\t\t\t\t}\n\t\t\t\t\tkeys.sort();\n\t\t\t\t\tfor ( i = 0; i < keys.length; i++ ) {\n\t\t\t\t\t\tkey = keys[ i ];\n\t\t\t\t\t\tval = map[ key ];\n\t\t\t\t\t\tret.push( QUnit.jsDump.parse( key, \"key\" ) + \": \" + QUnit.jsDump.parse( val, undefined, stack ) );\n\t\t\t\t\t}\n\t\t\t\t\tQUnit.jsDump.down();\n\t\t\t\t\treturn join( \"{\", ret, \"}\" );\n\t\t\t\t},\n\t\t\t\tnode: function( node ) {\n\t\t\t\t\tvar len, i, val,\n\t\t\t\t\t\topen = QUnit.jsDump.HTML ? \"&lt;\" : \"<\",\n\t\t\t\t\t\tclose = QUnit.jsDump.HTML ? \"&gt;\" : \">\",\n\t\t\t\t\t\ttag = node.nodeName.toLowerCase(),\n\t\t\t\t\t\tret = open + tag,\n\t\t\t\t\t\tattrs = node.attributes;\n\n\t\t\t\t\tif ( attrs ) {\n\t\t\t\t\t\tfor ( i = 0, len = attrs.length; i < len; i++ ) {\n\t\t\t\t\t\t\tval = attrs[i].nodeValue;\n\t\t\t\t\t\t\t// IE6 includes all attributes in .attributes, even ones not explicitly set.\n\t\t\t\t\t\t\t// Those have values like undefined, null, 0, false, \"\" or \"inherit\".\n\t\t\t\t\t\t\tif ( val && val !== \"inherit\" ) {\n\t\t\t\t\t\t\t\tret += \" \" + attrs[i].nodeName + \"=\" + QUnit.jsDump.parse( val, \"attribute\" );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tret += close;\n\n\t\t\t\t\t// Show content of TextNode or CDATASection\n\t\t\t\t\tif ( node.nodeType === 3 || node.nodeType === 4 ) {\n\t\t\t\t\t\tret += node.nodeValue;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn ret + open + \"/\" + tag + close;\n\t\t\t\t},\n\t\t\t\t// function calls it internally, it's the arguments part of the function\n\t\t\t\tfunctionArgs: function( fn ) {\n\t\t\t\t\tvar args,\n\t\t\t\t\t\tl = fn.length;\n\n\t\t\t\t\tif ( !l ) {\n\t\t\t\t\t\treturn \"\";\n\t\t\t\t\t}\n\n\t\t\t\t\targs = new Array(l);\n\t\t\t\t\twhile ( l-- ) {\n\t\t\t\t\t\t// 97 is 'a'\n\t\t\t\t\t\targs[l] = String.fromCharCode(97+l);\n\t\t\t\t\t}\n\t\t\t\t\treturn \" \" + args.join( \", \" ) + \" \";\n\t\t\t\t},\n\t\t\t\t// object calls it internally, the key part of an item in a map\n\t\t\t\tkey: quote,\n\t\t\t\t// function calls it internally, it's the content of the function\n\t\t\t\tfunctionCode: \"[code]\",\n\t\t\t\t// node calls it internally, it's an html attribute value\n\t\t\t\tattribute: quote,\n\t\t\t\tstring: quote,\n\t\t\t\tdate: quote,\n\t\t\t\tregexp: literal,\n\t\t\t\tnumber: literal,\n\t\t\t\t\"boolean\": literal\n\t\t\t},\n\t\t\t// if true, entities are escaped ( <, >, \\t, space and \\n )\n\t\t\tHTML: false,\n\t\t\t// indentation unit\n\t\t\tindentChar: \"  \",\n\t\t\t// if true, items in a collection, are separated by a \\n, else just a space.\n\t\t\tmultiline: true\n\t\t};\n\n\treturn jsDump;\n}());\n\n// from jquery.js\nfunction inArray( elem, array ) {\n\tif ( array.indexOf ) {\n\t\treturn array.indexOf( elem );\n\t}\n\n\tfor ( var i = 0, length = array.length; i < length; i++ ) {\n\t\tif ( array[ i ] === elem ) {\n\t\t\treturn i;\n\t\t}\n\t}\n\n\treturn -1;\n}\n\n/*\n * Javascript Diff Algorithm\n *  By John Resig (http://ejohn.org/)\n *  Modified by Chu Alan \"sprite\"\n *\n * Released under the MIT license.\n *\n * More Info:\n *  http://ejohn.org/projects/javascript-diff-algorithm/\n *\n * Usage: QUnit.diff(expected, actual)\n *\n * QUnit.diff( \"the quick brown fox jumped over\", \"the quick fox jumps over\" ) == \"the  quick <del>brown </del> fox <del>jumped </del><ins>jumps </ins> over\"\n */\nQUnit.diff = (function() {\n\t/*jshint eqeqeq:false, eqnull:true */\n\tfunction diff( o, n ) {\n\t\tvar i,\n\t\t\tns = {},\n\t\t\tos = {};\n\n\t\tfor ( i = 0; i < n.length; i++ ) {\n\t\t\tif ( !hasOwn.call( ns, n[i] ) ) {\n\t\t\t\tns[ n[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\to: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tns[ n[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i = 0; i < o.length; i++ ) {\n\t\t\tif ( !hasOwn.call( os, o[i] ) ) {\n\t\t\t\tos[ o[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\tn: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tos[ o[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i in ns ) {\n\t\t\tif ( hasOwn.call( ns, i ) ) {\n\t\t\t\tif ( ns[i].rows.length === 1 && hasOwn.call( os, i ) && os[i].rows.length === 1 ) {\n\t\t\t\t\tn[ ns[i].rows[0] ] = {\n\t\t\t\t\t\ttext: n[ ns[i].rows[0] ],\n\t\t\t\t\t\trow: os[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t\to[ os[i].rows[0] ] = {\n\t\t\t\t\t\ttext: o[ os[i].rows[0] ],\n\t\t\t\t\t\trow: ns[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = 0; i < n.length - 1; i++ ) {\n\t\t\tif ( n[i].text != null && n[ i + 1 ].text == null && n[i].row + 1 < o.length && o[ n[i].row + 1 ].text == null &&\n\t\t\t\t\t\tn[ i + 1 ] == o[ n[i].row + 1 ] ) {\n\n\t\t\t\tn[ i + 1 ] = {\n\t\t\t\t\ttext: n[ i + 1 ],\n\t\t\t\t\trow: n[i].row + 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row + 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row + 1 ],\n\t\t\t\t\trow: i + 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = n.length - 1; i > 0; i-- ) {\n\t\t\tif ( n[i].text != null && n[ i - 1 ].text == null && n[i].row > 0 && o[ n[i].row - 1 ].text == null &&\n\t\t\t\t\t\tn[ i - 1 ] == o[ n[i].row - 1 ]) {\n\n\t\t\t\tn[ i - 1 ] = {\n\t\t\t\t\ttext: n[ i - 1 ],\n\t\t\t\t\trow: n[i].row - 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row - 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row - 1 ],\n\t\t\t\t\trow: i - 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\treturn {\n\t\t\to: o,\n\t\t\tn: n\n\t\t};\n\t}\n\n\treturn function( o, n ) {\n\t\to = o.replace( /\\s+$/, \"\" );\n\t\tn = n.replace( /\\s+$/, \"\" );\n\n\t\tvar i, pre,\n\t\t\tstr = \"\",\n\t\t\tout = diff( o === \"\" ? [] : o.split(/\\s+/), n === \"\" ? [] : n.split(/\\s+/) ),\n\t\t\toSpace = o.match(/\\s+/g),\n\t\t\tnSpace = n.match(/\\s+/g);\n\n\t\tif ( oSpace == null ) {\n\t\t\toSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\toSpace.push( \" \" );\n\t\t}\n\n\t\tif ( nSpace == null ) {\n\t\t\tnSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\tnSpace.push( \" \" );\n\t\t}\n\n\t\tif ( out.n.length === 0 ) {\n\t\t\tfor ( i = 0; i < out.o.length; i++ ) {\n\t\t\t\tstr += \"<del>\" + out.o[i] + oSpace[i] + \"</del>\";\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tif ( out.n[0].text == null ) {\n\t\t\t\tfor ( n = 0; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\tstr += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( i = 0; i < out.n.length; i++ ) {\n\t\t\t\tif (out.n[i].text == null) {\n\t\t\t\t\tstr += \"<ins>\" + out.n[i] + nSpace[i] + \"</ins>\";\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// `pre` initialized at top of scope\n\t\t\t\t\tpre = \"\";\n\n\t\t\t\t\tfor ( n = out.n[i].row + 1; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\t\tpre += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t\t}\n\t\t\t\t\tstr += \" \" + out.n[i].text + nSpace[i] + pre;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn str;\n\t};\n}());\n\n// for CommonJS environments, export everything\nif ( typeof exports !== \"undefined\" ) {\n\textend( exports, QUnit.constructor.prototype );\n}\n\n// get at whatever the global object is, like window in browsers\n}( (function() {return this;}.call()) ));"
  },
  {
    "path": "doc/cppnow-2016/test/test-markdown-element-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Element Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\" data-element-attributes=\"{_\\s*?([^}]+?)}\">>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\t\t\t\t\t\t<!-- {_class=\"fragment fade-out\" data-fragment-index=\"1\"} -->\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\t\t\t\t\t\t<!-- {_class=\"fragment shrink\"} -->\n\n\t\t\t\t\t\tParagraph 1\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\tParagraph 2\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 2 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 3 <!-- {_class=\"fragment grow\"} -->\n\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\n\n\t\t\t\t\t\tParagraph 1.2  \n\t\t\t\t\t\tmulti-line <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.2 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.3 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.4 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 2<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 3<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 4\n\t\t\t\t\t\t<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 5<!-- {_class=\"fragment highlight-green\"} -->\n\n\t\t\t\t\t\tTest\n\n\t\t\t\t\t\t![Example Picture](examples/assets/image2.png)\n\t\t\t\t\t\t<!-- {_class=\"reveal stretch\"} -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def <!-- .element: class=\"fragment highlight-red\" data-fragment-index=\"1\" -->\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .element: class=\"fragment highlight-red\" -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\t\t\t\t\tA paragraph\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tMultiple  \n\t\t\t\t\tLine\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tTest<!-- .element: class=\"fragment highlight-blue\" -->\n\n\t\t\t\t\tMore Test\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-element-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/test-markdown-element-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 4, 'found four slides' );\n\t});\n\n\n\ttest( 'Attributes on element header in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.fade-out' ).length, 1, 'found one vertical slide with class fragment.fade-out on header' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.shrink' ).length, 1, 'found one vertical slide with class fragment.shrink on header' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section p.fragment.grow' ).length, 2, 'found a vertical slide with two paragraphs with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element list items in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-red' ).length, 4, 'found a horizontal slide with four paragraphs with class fragment.grow' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section li.fragment.highlight-green' ).length, 5, 'found a horizontal slide with five list items with class fragment.roll-in' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section img.reveal.stretch' ).length, 1, 'found a horizontal slide with stretched image, class img.reveal.stretch' );\n\t});\n\n\ttest( 'Attributes on elements in vertical slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section h2.fragment.highlight-red' ).length, 2, 'found two h2 titles with fragment highlight-red in vertical slides with default element attribute separator' );\n\t});\n\n\ttest( 'Attributes on elements in single slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-blue' ).length, 3, 'found three elements with fragment highlight-blue in single slide with default element attribute separator' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cppnow-2016/test/test-markdown-slide-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by three lines, vertical slides by two lines, attributes are one any line starting with (spaces and) two dashes -->\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-attributes=\"--\\s(.*?)$\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown\n\t\t\t\t\t\t## Slide 1\n\n\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t\t<!-- -- id=\"slide2\" data-transition=\"zoom\" data-background=\"#A0C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1\n\t\t\t\t\t\t<!-- -- data-background=\"#ff0000\" data-transition=\"fade\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2\n\t\t\t\t\t\t[Link to Slide2](#/slide2)\n\n\n\n\t\t\t\t\t\t## Slide 3\n\t\t\t\t\t\t<!-- -- data-transition=\"zoom\" data-background=\"#C6916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def\n\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .slide: id=\"slide2def\" data-transition=\"concave\" data-background=\"#A7C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1 Def\n\t\t\t\t\t\t<!-- .slide: data-background=\"#f70000\" data-transition=\"page\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2 Def\n\t\t\t\t\t\t[Link to Slide2](#/slide2def)\n\n\n\n\t\t\t\t\t\t## Slide 3 Def\n\t\t\t\t\t\t<!-- .slide: data-transition=\"concave\" data-background=\"#C7916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\n\t\t\t\t\t\tTest\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\n\t\t\t\t\t\tMore Test\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-slide-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/test-markdown-slide-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 6, 'found six vertical slides' );\n\t});\n\n\ttest( 'Id on slide', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section#slide2' ).length, 1, 'found one slide with id slide2' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section a[href=\"#/slide2\"]' ).length, 1, 'found one slide with a link to slide2' );\n\t});\n\n\ttest( 'data-background attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A0C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#ff0000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C6916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"zoom\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"fade\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"zoom\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-background attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A7C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#f70000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C7916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"concave\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"page\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"concave\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-transition attributes with inline content', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#ff0000\"]' ).length, 3, 'found three horizontal slides with data-background=\"#ff0000\"' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cppnow-2016/test/test-markdown.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/test-markdown.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cppnow-2016/test/test-pdf.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test PDF exports</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../css/print/pdf.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-pdf.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/test-pdf.js",
    "content": "\nReveal.addEventListener( 'ready', function() {\n\n\t// Only one test for now, we're mainly ensuring that there\n\t// are no execution errors when running PDF mode\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\n} );\n\nReveal.initialize({ pdf: true });\n\n"
  },
  {
    "path": "doc/cppnow-2016/test/test.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Tests</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background-image=\"examples/assets/image1.png\">\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t\t<video data-src=\"fake-url.mp4\"></video>\n\t\t\t\t\t<audio data-src=\"fake-url.mp3\"></audio>\n\t\t\t\t\t<aside class=\"notes\">speaker notes 1</aside>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"examples/assets/image2.png\" data-notes=\"speaker notes 2\">\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t<iframe data-src=\"http://example.com\"></iframe>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2016/test/test.js",
    "content": "\n// These tests expect the DOM to contain a presentation\n// with the following slide structure:\n//\n// 1\n// 2 - Three sub-slides\n// 3 - Three fragment elements\n// 3 - Two fragments with same data-fragment-index\n// 4\n\n\nReveal.addEventListener( 'ready', function() {\n\n\t// ---------------------------------------------------------------\n\t// DOM TESTS\n\n\tQUnit.module( 'DOM' );\n\n\ttest( 'Initial slides classes', function() {\n\t\tvar horizontalSlides = document.querySelectorAll( '.reveal .slides>section' )\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.past' ).length, 0, 'no .past slides' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.present' ).length, 1, 'one .present slide' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section.future' ).length, horizontalSlides.length - 1, 'remaining horizontal slides are .future' );\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.stack' ).length, 2, 'two .stacks' );\n\n\t\tok( document.querySelectorAll( '.reveal .slides section.stack' )[0].querySelectorAll( '.future' ).length > 0, 'vertical slides are given .future' );\n\t});\n\n\t// ---------------------------------------------------------------\n\t// API TESTS\n\n\tQUnit.module( 'API' );\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\ttest( 'Reveal.isOverview', function() {\n\t\tstrictEqual( Reveal.isOverview(), false, 'false by default' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), true, 'true after toggling on' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), false, 'false after toggling off' );\n\t});\n\n\ttest( 'Reveal.isPaused', function() {\n\t\tstrictEqual( Reveal.isPaused(), false, 'false by default' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), true, 'true after pausing' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), false, 'false after resuming' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), false, 'false after Reveal.slide( 1, 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide after vertical slide', function() {\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide after vertical slide', function() {\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( lastSlideIndex );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\t});\n\n\ttest( 'Reveal.getTotalSlides', function() {\n\t\tstrictEqual( Reveal.getTotalSlides(), 8, 'eight slides in total' );\n\t});\n\n\ttest( 'Reveal.getIndices', function() {\n\t\tvar indices = Reveal.getIndices();\n\n\t\tok( indices.hasOwnProperty( 'h' ), 'h exists' );\n\t\tok( indices.hasOwnProperty( 'v' ), 'v exists' );\n\t\tok( indices.hasOwnProperty( 'f' ), 'f exists' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\n\t\tReveal.slide( 1, 2 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 2, 'v 2' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 0, 'h 0' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\t});\n\n\ttest( 'Reveal.getSlide', function() {\n\t\tequal( Reveal.getSlide( 0 ), document.querySelector( '.reveal .slides>section:first-child' ), 'gets correct first slide' );\n\t\tequal( Reveal.getSlide( 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlide( 1, 0 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlide( 1, 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlide( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlide( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideBackground', function() {\n\t\tequal( Reveal.getSlideBackground( 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:first-child' ), 'gets correct first background' );\n\t\tequal( Reveal.getSlideBackground( 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlideBackground( 1, 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlideBackground( 1, 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlideBackground( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlideBackground( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideNotes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 1', 'works with <aside class=\"notes\">' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 2', 'works with <section data-notes=\"\">' );\n\t});\n\n\ttest( 'Reveal.getPreviousSlide/getCurrentSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tReveal.slide( 1, 0 );\n\n\t\tvar firstSlide = document.querySelector( '.reveal .slides>section:first-child' );\n\t\tvar secondSlide = document.querySelector( '.reveal .slides>section:nth-child(2)>section' );\n\n\t\tequal( Reveal.getPreviousSlide(), firstSlide, 'previous is slide #0' );\n\t\tequal( Reveal.getCurrentSlide(), secondSlide, 'current is slide #1' );\n\t});\n\n\ttest( 'Reveal.getProgress', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 0, 'progress is 0 on first slide' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 1, 'progress is 1 on last slide' );\n\t});\n\n\ttest( 'Reveal.getScale', function() {\n\t\tok( typeof Reveal.getScale() === 'number', 'has scale' );\n\t});\n\n\ttest( 'Reveal.getConfig', function() {\n\t\tok( typeof Reveal.getConfig() === 'object', 'has config' );\n\t});\n\n\ttest( 'Reveal.configure', function() {\n\t\tstrictEqual( Reveal.getConfig().loop, false, '\"loop\" is false to start with' );\n\n\t\tReveal.configure({ loop: true });\n\t\tstrictEqual( Reveal.getConfig().loop, true, '\"loop\" has changed to true' );\n\n\t\tReveal.configure({ loop: false, customTestValue: 1 });\n\t\tstrictEqual( Reveal.getConfig().customTestValue, 1, 'supports custom values' );\n\t});\n\n\ttest( 'Reveal.availableRoutes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: false, up: false, down: false, right: true }, 'correct for first slide' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: true, up: false, down: true, right: true }, 'correct for vertical slide' );\n\t});\n\n\ttest( 'Reveal.next', function() {\n\t\tReveal.slide( 0, 0 );\n\n\t\t// Step through vertical child slides\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 1, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 2, f: undefined } );\n\n\t\t// Step through fragments\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 } );\n\t});\n\n\ttest( 'Reveal.next at end', function() {\n\t\tReveal.slide( 3 );\n\n\t\t// We're at the end, this should have no effect\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// FRAGMENT TESTS\n\n\tQUnit.module( 'Fragments' );\n\n\ttest( 'Sliding to fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 }, 'Reveal.slide( 2, 0, -1 )' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'Reveal.slide( 2, 0, 0 )' );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'Reveal.slide( 2, 0, 2 )' );\n\n\t\tReveal.slide( 2, 0, 1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'Reveal.slide( 2, 0, 1 )' );\n\t});\n\n\ttest( 'Hiding all fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 1, 'one fragment visible when index is 0' );\n\n\t\tReveal.slide( 2, 0, -1 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when index is -1' );\n\t});\n\n\ttest( 'Current fragment', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment at index -1' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 1, 'one current fragment at index 0' );\n\n\t\tReveal.slide( 1, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to next slide' );\n\t});\n\n\ttest( 'Stepping through fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\n\t\t// forwards:\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'next() goes to next fragment' );\n\n\t\tReveal.right();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'right() goes to next fragment' );\n\n\t\tReveal.down();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'down() goes to next fragment' );\n\n\t\tReveal.down(); // moves to f #3\n\n\t\t// backwards:\n\n\t\tReveal.prev();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'prev() goes to prev fragment' );\n\n\t\tReveal.left();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'left() goes to prev fragment' );\n\n\t\tReveal.up();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'up() goes to prev fragment' );\n\t});\n\n\ttest( 'Stepping past fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 0, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when on previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 3, 'all fragments visible when on future slide' );\n\t});\n\n\ttest( 'Fragment indices', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(2)' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 2, 'both fragments of same index are shown' );\n\n\t\t// This slide has three fragments, first one is index 0, second and third have index 1\n\t\tReveal.slide( 2, 2, 0 );\n\t\tequal( Reveal.getIndices().f, 0, 'returns correct index for first fragment' );\n\n\t\tReveal.slide( 2, 2, 1 );\n\t\tequal( Reveal.getIndices().f, 1, 'returns correct index for two fragments with same index' );\n\t});\n\n\ttest( 'Index generation', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\t// These have no indices defined to start with\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '2' );\n\t});\n\n\ttest( 'Index normalization', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(3)' );\n\n\t\t// These start out as 1-4-4 and should normalize to 0-1-1\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '1' );\n\t});\n\n\tasyncTest( 'fragmentshown event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmentshown', _onEvent );\n\n\t\tReveal.slide( 2, 0 );\n\t\tReveal.slide( 2, 0 ); // should do nothing\n\t\tReveal.slide( 2, 0, 0 ); // should do nothing\n\t\tReveal.next();\n\t\tReveal.next();\n\t\tReveal.prev(); // shouldn't fire fragmentshown\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmentshown', _onEvent );\n\t});\n\n\tasyncTest( 'fragmenthidden event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmenthidden', _onEvent );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tReveal.slide( 2, 0, 2 ); // should do nothing\n\t\tReveal.prev();\n\t\tReveal.prev();\n\t\tReveal.next(); // shouldn't fire fragmenthidden\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmenthidden', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// AUTO-SLIDE TESTS\n\n\tQUnit.module( 'Auto Sliding' );\n\n\ttest( 'Reveal.isAutoSliding', function() {\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false by default' );\n\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after starting' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after setting to 0' );\n\t});\n\n\ttest( 'Reveal.toggleAutoSlide', function() {\n\t\tReveal.configure({ autoSlide: 10000 });\n\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after first toggle' );\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after second toggle' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t});\n\n\tasyncTest( 'autoslidepaused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslidepaused', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslidepaused', _onEvent );\n\t});\n\n\tasyncTest( 'autoslideresumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslideresumed', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslideresumed', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// CONFIGURATION VALUES\n\n\tQUnit.module( 'Configuration' );\n\n\ttest( 'Controls', function() {\n\t\tvar controlsElement = document.querySelector( '.reveal>.controls' );\n\n\t\tReveal.configure({ controls: false });\n\t\tequal( controlsElement.style.display, 'none', 'controls are hidden' );\n\n\t\tReveal.configure({ controls: true });\n\t\tequal( controlsElement.style.display, 'block', 'controls are visible' );\n\t});\n\n\ttest( 'Progress', function() {\n\t\tvar progressElement = document.querySelector( '.reveal>.progress' );\n\n\t\tReveal.configure({ progress: false });\n\t\tequal( progressElement.style.display, 'none', 'progress are hidden' );\n\n\t\tReveal.configure({ progress: true });\n\t\tequal( progressElement.style.display, 'block', 'progress are visible' );\n\t});\n\n\ttest( 'Loop', function() {\n\t\tReveal.configure({ loop: true });\n\n\t\tReveal.slide( 0, 0 );\n\n\t\tReveal.left();\n\t\tnotEqual( Reveal.getIndices().h, 0, 'looped from start to end' );\n\n\t\tReveal.right();\n\t\tequal( Reveal.getIndices().h, 0, 'looped from end to start' );\n\n\t\tReveal.configure({ loop: false });\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// LAZY-LOADING TESTS\n\n\tQUnit.module( 'Lazy-Loading' );\n\n\ttest( 'img with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section img[src]' ).length, 1, 'Image source has been set' );\n\t});\n\n\ttest( 'video with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section video[src]' ).length, 1, 'Video source has been set' );\n\t});\n\n\ttest( 'audio with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section audio[src]' ).length, 1, 'Audio source has been set' );\n\t});\n\n\ttest( 'iframe with data-src', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t\tReveal.slide( 2, 1 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 1, 'Iframe source is set' );\n\t\tReveal.slide( 2, 2 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t});\n\n\ttest( 'background images', function() {\n\t\tvar imageSource1 = Reveal.getSlide( 0 ).getAttribute( 'data-background-image' );\n\t\tvar imageSource2 = Reveal.getSlide( 1, 0 ).getAttribute( 'data-background' );\n\n\t\t// check that the images are applied to the background elements\n\t\tok( Reveal.getSlideBackground( 0 ).style.backgroundImage.indexOf( imageSource1 ) !== -1, 'data-background-image worked' );\n\t\tok( Reveal.getSlideBackground( 1, 0 ).style.backgroundImage.indexOf( imageSource2 ) !== -1, 'data-background worked' );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// EVENT TESTS\n\n\tQUnit.module( 'Events' );\n\n\tasyncTest( 'slidechanged', function() {\n\t\texpect( 3 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'slidechanged', _onEvent );\n\n\t\tReveal.slide( 1, 0 ); // should trigger\n\t\tReveal.slide( 1, 0 ); // should do nothing\n\t\tReveal.next(); // should trigger\n\t\tReveal.slide( 3, 0 ); // should trigger\n\t\tReveal.next(); // should do nothing\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'slidechanged', _onEvent );\n\n\t});\n\n\tasyncTest( 'paused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'paused', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'paused', _onEvent );\n\t});\n\n\tasyncTest( 'resumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'resumed', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'resumed', _onEvent );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cppnow-2017/.gitignore",
    "content": ".DS_Store\n.svn\nlog/*.log\ntmp/**\nnode_modules/\n.sass-cache\ncss/reveal.min.css\njs/reveal.min.js\n"
  },
  {
    "path": "doc/cppnow-2017/.travis.yml",
    "content": "language: node_js\nnode_js:\n  - 4.1.1\nbefore_script:\n  - npm install -g grunt-cli"
  },
  {
    "path": "doc/cppnow-2017/CONTRIBUTING.md",
    "content": "## Contributing\n\nPlease keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.\n\n\n### Personal Support\nIf you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).\n\n\n### Bug Reports\nWhen reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.\n\n\n### Pull Requests\n- Should follow the coding style of the file you work in, most importantly:\n  - Tabs to indent\n  - Single-quoted strings\n- Should be made towards the **dev branch**\n- Should be submitted from a feature/topic branch (not your master)\n\n\n### Plugins\nPlease do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines\n"
  },
  {
    "path": "doc/cppnow-2017/Gruntfile.js",
    "content": "/* global module:false */\nmodule.exports = function(grunt) {\n\tvar port = grunt.option('port') || 8000;\n\tvar base = grunt.option('base') || '.';\n\n\t// Project configuration\n\tgrunt.initConfig({\n\t\tpkg: grunt.file.readJSON('package.json'),\n\t\tmeta: {\n\t\t\tbanner:\n\t\t\t\t'/*!\\n' +\n\t\t\t\t' * reveal.js <%= pkg.version %> (<%= grunt.template.today(\"yyyy-mm-dd, HH:MM\") %>)\\n' +\n\t\t\t\t' * http://lab.hakim.se/reveal-js\\n' +\n\t\t\t\t' * MIT licensed\\n' +\n\t\t\t\t' *\\n' +\n\t\t\t\t' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\\n' +\n\t\t\t\t' */'\n\t\t},\n\n\t\tqunit: {\n\t\t\tfiles: [ 'test/*.html' ]\n\t\t},\n\n\t\tuglify: {\n\t\t\toptions: {\n\t\t\t\tbanner: '<%= meta.banner %>\\n'\n\t\t\t},\n\t\t\tbuild: {\n\t\t\t\tsrc: 'js/reveal.js',\n\t\t\t\tdest: 'js/reveal.min.js'\n\t\t\t}\n\t\t},\n\n\t\tsass: {\n\t\t\tcore: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.css': 'css/reveal.scss',\n\t\t\t\t}\n\t\t\t},\n\t\t\tthemes: {\n\t\t\t\tfiles: [\n\t\t\t\t\t{\n\t\t\t\t\t\texpand: true,\n\t\t\t\t\t\tcwd: 'css/theme/source',\n\t\t\t\t\t\tsrc: ['*.scss'],\n\t\t\t\t\t\tdest: 'css/theme',\n\t\t\t\t\t\text: '.css'\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t},\n\n\t\tautoprefixer: {\n\t\t\tdist: {\n\t\t\t\tsrc: 'css/reveal.css'\n\t\t\t}\n\t\t},\n\n\t\tcssmin: {\n\t\t\tcompress: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.min.css': [ 'css/reveal.css' ]\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tjshint: {\n\t\t\toptions: {\n\t\t\t\tcurly: false,\n\t\t\t\teqeqeq: true,\n\t\t\t\timmed: true,\n\t\t\t\tlatedef: true,\n\t\t\t\tnewcap: true,\n\t\t\t\tnoarg: true,\n\t\t\t\tsub: true,\n\t\t\t\tundef: true,\n\t\t\t\teqnull: true,\n\t\t\t\tbrowser: true,\n\t\t\t\texpr: true,\n\t\t\t\tglobals: {\n\t\t\t\t\thead: false,\n\t\t\t\t\tmodule: false,\n\t\t\t\t\tconsole: false,\n\t\t\t\t\tunescape: false,\n\t\t\t\t\tdefine: false,\n\t\t\t\t\texports: false\n\t\t\t\t}\n\t\t\t},\n\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ]\n\t\t},\n\n\t\tconnect: {\n\t\t\tserver: {\n\t\t\t\toptions: {\n\t\t\t\t\tport: port,\n\t\t\t\t\tbase: base,\n\t\t\t\t\tlivereload: true,\n\t\t\t\t\topen: true\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tzip: {\n\t\t\t'reveal-js-presentation.zip': [\n\t\t\t\t'index.html',\n\t\t\t\t'css/**',\n\t\t\t\t'js/**',\n\t\t\t\t'lib/**',\n\t\t\t\t'images/**',\n\t\t\t\t'plugin/**',\n\t\t\t\t'**.md'\n\t\t\t]\n\t\t},\n\n\t\twatch: {\n\t\t\toptions: {\n\t\t\t\tlivereload: true\n\t\t\t},\n\t\t\tjs: {\n\t\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ],\n\t\t\t\ttasks: 'js'\n\t\t\t},\n\t\t\ttheme: {\n\t\t\t\tfiles: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],\n\t\t\t\ttasks: 'css-themes'\n\t\t\t},\n\t\t\tcss: {\n\t\t\t\tfiles: [ 'css/reveal.scss' ],\n\t\t\t\ttasks: 'css-core'\n\t\t\t},\n\t\t\thtml: {\n\t\t\t\tfiles: [ 'index.html']\n\t\t\t},\n\t\t\tmarkdown: {\n\t\t\t\tfiles: [ './*.md' ]\n\t\t\t}\n\t\t}\n\n\t});\n\n\t// Dependencies\n\tgrunt.loadNpmTasks( 'grunt-contrib-qunit' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-jshint' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-cssmin' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-uglify' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-watch' );\n\tgrunt.loadNpmTasks( 'grunt-sass' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-connect' );\n\tgrunt.loadNpmTasks( 'grunt-autoprefixer' );\n\tgrunt.loadNpmTasks( 'grunt-zip' );\n\n\t// Default task\n\tgrunt.registerTask( 'default', [ 'css', 'js' ] );\n\n\t// JS task\n\tgrunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );\n\n\t// Theme CSS\n\tgrunt.registerTask( 'css-themes', [ 'sass:themes' ] );\n\n\t// Core framework CSS\n\tgrunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );\n\n\t// All CSS\n\tgrunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );\n\n\t// Package presentation to archive\n\tgrunt.registerTask( 'package', [ 'default', 'zip' ] );\n\n\t// Serve presentation locally\n\tgrunt.registerTask( 'serve', [ 'connect', 'watch' ] );\n\n\t// Run tests\n\tgrunt.registerTask( 'test', [ 'jshint', 'qunit' ] );\n\n};\n"
  },
  {
    "path": "doc/cppnow-2017/LICENSE",
    "content": "Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "doc/cppnow-2017/README.md",
    "content": "# reveal.js [![Build Status](https://travis-ci.org/hakimel/reveal.js.svg?branch=master)](https://travis-ci.org/hakimel/reveal.js)\n\nA framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/).\n\nreveal.js comes with a broad range of features including [nested slides](https://github.com/hakimel/reveal.js#markup), [Markdown contents](https://github.com/hakimel/reveal.js#markdown), [PDF export](https://github.com/hakimel/reveal.js#pdf-export), [speaker notes](https://github.com/hakimel/reveal.js#speaker-notes) and a [JavaScript API](https://github.com/hakimel/reveal.js#api). It's best viewed in a modern browser but [fallbacks](https://github.com/hakimel/reveal.js/wiki/Browser-Support) are available to make sure your presentation can still be viewed elsewhere.\n\n\n#### More reading:\n- [Installation](#installation): Step-by-step instructions for getting reveal.js running on your computer.\n- [Changelog](https://github.com/hakimel/reveal.js/releases): Up-to-date version history.\n- [Examples](https://github.com/hakimel/reveal.js/wiki/Example-Presentations): Presentations created with reveal.js, add your own!\n- [Browser Support](https://github.com/hakimel/reveal.js/wiki/Browser-Support): Explanation of browser support and fallbacks.\n- [Plugins](https://github.com/hakimel/reveal.js/wiki/Plugins,-Tools-and-Hardware): A list of plugins that can be used to extend reveal.js.\n\n## Online Editor\n\nPresentations are written using HTML or Markdown but there's also an online editor for those of you who prefer a graphical interface. Give it a try at [http://slides.com](http://slides.com).\n\n\n## Instructions\n\n### Markup\n\nMarkup hierarchy needs to be ``<div class=\"reveal\"> <div class=\"slides\"> <section>`` where the ``<section>`` represents one slide and can be repeated indefinitely. If you place multiple ``<section>``'s inside of another ``<section>`` they will be shown as vertical slides. The first of the vertical slides is the \"root\" of the others (at the top), and it will be included in the horizontal sequence. For example:\n\n```html\n<div class=\"reveal\">\n\t<div class=\"slides\">\n\t\t<section>Single Horizontal Slide</section>\n\t\t<section>\n\t\t\t<section>Vertical Slide 1</section>\n\t\t\t<section>Vertical Slide 2</section>\n\t\t</section>\n\t</div>\n</div>\n```\n\n### Markdown\n\nIt's possible to write your slides using Markdown. To enable Markdown, add the ```data-markdown``` attribute to your ```<section>``` elements and wrap the contents in a ```<script type=\"text/template\">``` like the example below.\n\nThis is based on [data-markdown](https://gist.github.com/1343518) from [Paul Irish](https://github.com/paulirish) modified to use [marked](https://github.com/chjj/marked) to support [Github Flavoured Markdown](https://help.github.com/articles/github-flavored-markdown). Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks).\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t## Page title\n\n\t\tA paragraph with some text and a [link](http://hakim.se).\n\t</script>\n</section>\n```\n\n#### External Markdown\n\nYou can write your content as a separate file and have reveal.js load it at runtime. Note the separator arguments which determine how slides are delimited in the external file. The ```data-charset``` attribute is optional and specifies which charset to use when loading the external file.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section data-markdown=\"example.md\"  \n         data-separator=\"^\\n\\n\\n\"  \n         data-separator-vertical=\"^\\n\\n\"  \n         data-separator-notes=\"^Note:\"  \n         data-charset=\"iso-8859-15\">\n</section>\n```\n\n#### Element Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to Markdown elements. This is useful for fragments, amongst other things.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t- Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n\t\t- Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n\t</script>\n</section>\n```\n\n#### Slide Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to the slide `<section>` elements generated by your Markdown.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\tMarkdown content\n\t</script>\n</section>\n```\n\n\n### Configuration\n\nAt the end of your page you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below.\n\n```javascript\nReveal.initialize({\n\n\t// Display controls in the bottom right corner\n\tcontrols: true,\n\n\t// Display a presentation progress bar\n\tprogress: true,\n\n\t// Display the page number of the current slide\n\tslideNumber: false,\n\n\t// Push each slide change to the browser history\n\thistory: false,\n\n\t// Enable keyboard shortcuts for navigation\n\tkeyboard: true,\n\n\t// Enable the slide overview mode\n\toverview: true,\n\n\t// Vertical centering of slides\n\tcenter: true,\n\n\t// Enables touch navigation on devices with touch input\n\ttouch: true,\n\n\t// Loop the presentation\n\tloop: false,\n\n\t// Change the presentation direction to be RTL\n\trtl: false,\n\n\t// Turns fragments on and off globally\n\tfragments: true,\n\n\t// Flags if the presentation is running in an embedded mode,\n\t// i.e. contained within a limited portion of the screen\n\tembedded: false,\n\n\t// Flags if we should show a help overlay when the questionmark\n\t// key is pressed\n\thelp: true,\n\n\t// Flags if speaker notes should be visible to all viewers\n\tshowNotes: false,\n\n\t// Number of milliseconds between automatically proceeding to the\n\t// next slide, disabled when set to 0, this value can be overwritten\n\t// by using a data-autoslide attribute on your slides\n\tautoSlide: 0,\n\n\t// Stop auto-sliding after user input\n\tautoSlideStoppable: true,\n\n\t// Enable slide navigation via mouse wheel\n\tmouseWheel: false,\n\n\t// Hides the address bar on mobile devices\n\thideAddressBar: true,\n\n\t// Opens links in an iframe preview overlay\n\tpreviewLinks: false,\n\n\t// Transition style\n\ttransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Transition speed\n\ttransitionSpeed: 'default', // default/fast/slow\n\n\t// Transition style for full page slide backgrounds\n\tbackgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Number of slides away from the current that are visible\n\tviewDistance: 3,\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n\t// Amount to move parallax background (horizontal and vertical) on slide change\n\t// Number, e.g. 100\n\tparallaxBackgroundHorizontal: '',\n\tparallaxBackgroundVertical: ''\n\n});\n```\n\n\nThe configuration can be updated after initialization using the ```configure``` method:\n\n```javascript\n// Turn autoSlide off\nReveal.configure({ autoSlide: 0 });\n\n// Start auto-sliding every 5s\nReveal.configure({ autoSlide: 5000 });\n```\n\n\n### Presentation Size\n\nAll presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport.\n\nSee below for a list of configuration options related to sizing, including default values:\n\n```javascript\nReveal.initialize({\n\n\t...\n\n\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t// when the presentation is scaled to fit different resolutions. Can be\n\t// specified using percentage units.\n\twidth: 960,\n\theight: 700,\n\n\t// Factor of the display size that should remain empty around the content\n\tmargin: 0.1,\n\n\t// Bounds for smallest/largest possible scale to apply to content\n\tminScale: 0.2,\n\tmaxScale: 1.5\n\n});\n```\n\n\n### Dependencies\n\nReveal.js doesn't _rely_ on any third party scripts to work but a few optional libraries are included by default. These libraries are loaded as dependencies in the order they appear, for example:\n\n```javascript\nReveal.initialize({\n\tdependencies: [\n\t\t// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/\n\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\n\t\t// Interpret Markdown in <section> elements\n\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\n\t\t// Syntax highlight for <code> elements\n\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\n\t\t// Zoom in and out with Alt+click\n\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\n\t\t// Speaker notes\n\t\t{ src: 'plugin/notes/notes.js', async: true },\n\n\t\t// MathJax\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n});\n```\n\nYou can add your own extensions using the same syntax. The following properties are available for each dependency object:\n- **src**: Path to the script to load\n- **async**: [optional] Flags if the script should load after reveal.js has started, defaults to false\n- **callback**: [optional] Function to execute when the script has loaded\n- **condition**: [optional] Function which must return true for the script to be loaded\n\n\n### Ready Event\n\nA 'ready' event is fired when reveal.js has loaded all non-async dependencies and is ready to start navigating. To check if reveal.js is already 'ready' you can call `Reveal.isReady()`.\n\n```javascript\nReveal.addEventListener( 'ready', function( event ) {\n\t// event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n\n### Auto-sliding\n\nPresentations can be configured to progress through slides automatically, without any user input. To enable this you will need to tell the framework how many milliseconds it should wait between slides:\n\n```javascript\n// Slide every five seconds\nReveal.configure({\n  autoSlide: 5000\n});\n```\nWhen this is turned on a control element will appear that enables users to pause and resume auto-sliding. Alternatively, sliding can be paused or resumed by pressing »a« on the keyboard. Sliding is paused automatically as soon as the user starts navigating. You can disable these controls by specifying ```autoSlideStoppable: false``` in your reveal.js config.\n\nYou can also override the slide duration for individual slides and fragments by using the ```data-autoslide``` attribute:\n\n```html\n<section data-autoslide=\"2000\">\n\t<p>After 2 seconds the first fragment will be shown.</p>\n\t<p class=\"fragment\" data-autoslide=\"10000\">After 10 seconds the next fragment will be shown.</p>\n\t<p class=\"fragment\">Now, the fragment is displayed for 2 seconds before the next slide is shown.</p>\n</section>\n```\n\nWhenever the auto-slide mode is resumed or paused the ```autoslideresumed``` and ```autoslidepaused``` events are fired.\n\n\n### Keyboard Bindings\n\nIf you're unhappy with any of the default keyboard bindings you can override them using the ```keyboard``` config option:\n\n```javascript\nReveal.configure({\n  keyboard: {\n    13: 'next', // go to the next slide when the ENTER key is pressed\n    27: function() {}, // do something custom when ESC is pressed\n    32: null // don't do anything when SPACE is pressed (i.e. disable a reveal.js default binding)\n  }\n});\n```\n\n### Touch Navigation\n\nYou can swipe to navigate through a presentation on any touch-enabled device. Horizontal swipes change between horizontal slides, vertical swipes change between vertical slides. If you wish to disable this you can set the `touch` config option to false when initializing reveal.js.\n\nIf there's some part of your content that needs to remain accessible to touch events you'll need to highlight this by adding a `data-prevent-swipe` attribute to the element. One common example where this is useful is elements that need to be scrolled.\n\n\n### Lazy Loading\n\nWhen working on presentation with a lot of media or iframe content it's important to load lazily. Lazy loading means that reveal.js will only load content for the few slides nearest to the current slide. The number of slides that are preloaded is determined by the `viewDistance` configuration option.\n\nTo enable lazy loading all you need to do is change your \"src\" attributes to \"data-src\" as shown below. This is supported for image, video, audio and iframe elements. Lazy loaded iframes will also unload when the containing slide is no longer visible.\n\n```html\n<section>\n  <img data-src=\"image.png\">\n  <iframe data-src=\"http://hakim.se\"></iframe>\n  <video>\n    <source data-src=\"video.webm\" type=\"video/webm\" />\n    <source data-src=\"video.mp4\" type=\"video/mp4\" />\n  </video>\n</section>\n```\n\n\n### API\n\nThe ``Reveal`` object exposes a JavaScript API for controlling navigation and reading state:\n\n```javascript\n// Navigation\nReveal.slide( indexh, indexv, indexf );\nReveal.left();\nReveal.right();\nReveal.up();\nReveal.down();\nReveal.prev();\nReveal.next();\nReveal.prevFragment();\nReveal.nextFragment();\n\n// Toggle presentation states, optionally pass true/false to force on/off\nReveal.toggleOverview();\nReveal.togglePause();\nReveal.toggleAutoSlide();\n\n// Change a config value at runtime\nReveal.configure({ controls: true });\n\n// Returns the present configuration options\nReveal.getConfig();\n\n// Fetch the current scale of the presentation\nReveal.getScale();\n\n// Retrieves the previous and current slide elements\nReveal.getPreviousSlide();\nReveal.getCurrentSlide();\n\nReveal.getIndices(); // { h: 0, v: 0 } }\nReveal.getProgress(); // 0-1\nReveal.getTotalSlides();\n\n// Returns the speaker notes for the current slide\nReveal.getSlideNotes();\n\n// State checks\nReveal.isFirstSlide();\nReveal.isLastSlide();\nReveal.isOverview();\nReveal.isPaused();\nReveal.isAutoSliding();\n```\n\n### Slide Changed Event\n\nA 'slidechanged' event is fired each time the slide is changed (regardless of state). The event object holds the index values of the current slide as well as a reference to the previous and current slide HTML nodes.\n\nSome libraries, like MathJax (see [#226](https://github.com/hakimel/reveal.js/issues/226#issuecomment-10261609)), get confused by the transforms and display states of slides. Often times, this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'slidechanged', function( event ) {\n\t// event.previousSlide, event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n### Presentation State\n\nThe presentation's current state can be fetched by using the `getState` method. A state object contains all of the information required to put the presentation back as it was when `getState` was first called. Sort of like a snapshot. It's a simple object that can easily be stringified and persisted or sent over the wire.\n\n```javascript\nReveal.slide( 1 );\n// we're on slide 1\n\nvar state = Reveal.getState();\n\nReveal.slide( 3 );\n// we're on slide 3\n\nReveal.setState( state );\n// we're back on slide 1\n```\n\n### Slide States\n\nIf you set ``data-state=\"somestate\"`` on a slide ``<section>``, \"somestate\" will be applied as a class on the document element when that slide is opened. This allows you to apply broad style changes to the page based on the active slide.\n\nFurthermore you can also listen to these changes in state via JavaScript:\n\n```javascript\nReveal.addEventListener( 'somestate', function() {\n\t// TODO: Sprinkle magic\n}, false );\n```\n\n### Slide Backgrounds\n\nSlides are contained within a limited portion of the screen by default to allow them to fit any display and scale uniformly. You can apply full page backgrounds outside of the slide area by adding a ```data-background``` attribute to your ```<section>``` elements. Four different types of backgrounds are supported: color, image, video and iframe. Below are a few examples.\n\n```html\n<section data-background=\"#ff0000\">\n\t<h2>All CSS color formats are supported, like rgba() or hsl().</h2>\n</section>\n<section data-background=\"http://example.com/image.png\">\n\t<h2>This slide will have a full-size background image.</h2>\n</section>\n<section data-background=\"http://example.com/image.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\">\n\t<h2>This background image will be sized to 100px and repeated.</h2>\n</section>\n<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\" data-background-video-loop>\n\t<h2>Video. Multiple sources can be defined using a comma separated list. Video will loop when the data-background-video-loop attribute is provided.</h2>\n</section>\n<section data-background-iframe=\"https://slides.com\">\n\t<h2>Embeds a web page as a background. Note that the page won't be interactive.</h2>\n</section>\n```\n\nBackgrounds transition using a fade animation by default. This can be changed to a linear sliding transition by passing ```backgroundTransition: 'slide'``` to the ```Reveal.initialize()``` call. Alternatively you can set ```data-background-transition``` on any section with a background to override that specific transition.\n\n\n### Parallax Background\n\nIf you want to use a parallax scrolling background, set the first two config properties below when initializing reveal.js (the other two are optional).\n\n```javascript\nReveal.initialize({\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\" - currently only pixels are supported (don't use % or auto)\n\n\t// Amount of pixels to move the parallax background per slide step,\n\t// a value of 0 disables movement along the given axis\n\t// These are optional, if they aren't specified they'll be calculated automatically\n\tparallaxBackgroundHorizontal: 200,\n\tparallaxBackgroundVertical: 50\n\n});\n```\n\nMake sure that the background size is much bigger than screen size to allow for some scrolling. [View example](http://lab.hakim.se/reveal-js/?parallaxBackgroundImage=https%3A%2F%2Fs3.amazonaws.com%2Fhakim-static%2Freveal-js%2Freveal-parallax-1.jpg&parallaxBackgroundSize=2100px%20900px).\n\n\n\n### Slide Transitions\nThe global presentation transition is set using the ```transition``` config value. You can override the global transition for a specific slide by using the ```data-transition``` attribute:\n\n```html\n<section data-transition=\"zoom\">\n\t<h2>This slide will override the presentation transition and zoom!</h2>\n</section>\n\n<section data-transition-speed=\"fast\">\n\t<h2>Choose from three transition speeds: default, fast or slow!</h2>\n</section>\n```\n\nYou can also use different in and out transitions for the same slide:\n\n```html\n<section data-transition=\"slide\">\n    The train goes on … \n</section>\n<section data-transition=\"slide\"> \n    and on … \n</section>\n<section data-transition=\"slide-in fade-out\"> \n    and stops.\n</section>\n<section data-transition=\"fade-in slide-out\"> \n    (Passengers entering and leaving)\n</section>\n<section data-transition=\"slide\">\n    And it starts again.\n</section>\n```\n\n\n### Internal links\n\nIt's easy to link between slides. The first example below targets the index of another slide whereas the second targets a slide with an ID attribute (```<section id=\"some-slide\">```):\n\n```html\n<a href=\"#/2/2\">Link</a>\n<a href=\"#/some-slide\">Link</a>\n```\n\nYou can also add relative navigation links, similar to the built in reveal.js controls, by appending one of the following classes on any element. Note that each element is automatically given an ```enabled``` class when it's a valid navigation route based on the current slide.\n\n```html\n<a href=\"#\" class=\"navigate-left\">\n<a href=\"#\" class=\"navigate-right\">\n<a href=\"#\" class=\"navigate-up\">\n<a href=\"#\" class=\"navigate-down\">\n<a href=\"#\" class=\"navigate-prev\"> <!-- Previous vertical or horizontal slide -->\n<a href=\"#\" class=\"navigate-next\"> <!-- Next vertical or horizontal slide -->\n```\n\n\n### Fragments\nFragments are used to highlight individual elements on a slide. Every element with the class ```fragment``` will be stepped through before moving on to the next slide. Here's an example: http://lab.hakim.se/reveal-js/#/fragments\n\nThe default fragment style is to start out invisible and fade in. This style can be changed by appending a different class to the fragment:\n\n```html\n<section>\n\t<p class=\"fragment grow\">grow</p>\n\t<p class=\"fragment shrink\">shrink</p>\n\t<p class=\"fragment fade-out\">fade-out</p>\n\t<p class=\"fragment current-visible\">visible only once</p>\n\t<p class=\"fragment highlight-current-blue\">blue only once</p>\n\t<p class=\"fragment highlight-red\">highlight-red</p>\n\t<p class=\"fragment highlight-green\">highlight-green</p>\n\t<p class=\"fragment highlight-blue\">highlight-blue</p>\n</section>\n```\n\nMultiple fragments can be applied to the same element sequentially by wrapping it, this will fade in the text on the first step and fade it back out on the second.\n\n```html\n<section>\n\t<span class=\"fragment fade-in\">\n\t\t<span class=\"fragment fade-out\">I'll fade in, then out</span>\n\t</span>\n</section>\n```\n\nThe display order of fragments can be controlled using the ```data-fragment-index``` attribute.\n\n```html\n<section>\n\t<p class=\"fragment\" data-fragment-index=\"3\">Appears last</p>\n\t<p class=\"fragment\" data-fragment-index=\"1\">Appears first</p>\n\t<p class=\"fragment\" data-fragment-index=\"2\">Appears second</p>\n</section>\n```\n\n### Fragment events\n\nWhen a slide fragment is either shown or hidden reveal.js will dispatch an event.\n\nSome libraries, like MathJax (see #505), get confused by the initially hidden fragment elements. Often times this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'fragmentshown', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\nReveal.addEventListener( 'fragmenthidden', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\n```\n\n### Code syntax highlighting\n\nBy default, Reveal is configured with [highlight.js](https://highlightjs.org/) for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted. When the `data-trim` attribute is present surrounding whitespace is automatically removed.\n\n```html\n<section>\n\t<pre><code data-trim>\n(def lazy-fib\n  (concat\n   [0 1]\n   ((fn rfib [a b]\n        (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))\n\t</code></pre>\n</section>\n```\n\n### Slide number\nIf you would like to display the page number of the current slide you can do so using the ```slideNumber``` configuration value.\n\n```javascript\n// Shows the slide number using default formatting\nReveal.configure({ slideNumber: true });\n\n// Slide number formatting can be configured using these variables:\n//  \"h.v\": \thorizontal . vertical slide number (default)\n//  \"h/v\": \thorizontal / vertical slide number\n//    \"c\": \tflattened slide number\n//  \"c/t\": \tflattened slide number / total slides\nReveal.configure({ slideNumber: 'c/t' });\n\n```\n\n\n### Overview mode\n\nPress \"Esc\" or \"o\" keys to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides,\nas if you were at 1,000 feet above your presentation. The overview mode comes with a few API hooks:\n\n```javascript\nReveal.addEventListener( 'overviewshown', function( event ) { /* ... */ } );\nReveal.addEventListener( 'overviewhidden', function( event ) { /* ... */ } );\n\n// Toggle the overview mode programmatically\nReveal.toggleOverview();\n```\n\n### Fullscreen mode\nJust press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode.\n\n\n### Embedded media\nEmbedded HTML5 `<video>`/`<audio>` and YouTube iframes are automatically paused when you navigate away from a slide. This can be disabled by decorating your element with a `data-ignore` attribute.\n\nAdd `data-autoplay` to your media element if you want it to automatically start playing when the slide is shown:\n\n```html\n<video data-autoplay src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n```\n\nAdditionally the framework automatically pushes two [post messages](https://developer.mozilla.org/en-US/docs/Web/API/Window.postMessage) to all iframes, ```slide:start``` when the slide containing the iframe is made visible and ```slide:stop``` when it is hidden.\n\n\n### Stretching elements\nSometimes it's desirable to have an element, like an image or video, stretch to consume as much space as possible within a given slide. This can be done by adding the ```.stretch``` class to an element as seen below:\n\n```html\n<section>\n\t<h2>This video will use up the remaining space on the slide</h2>\n    <video class=\"stretch\" src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n</section>\n```\n\nLimitations:\n- Only direct descendants of a slide section can be stretched\n- Only one descendant per slide section can be stretched\n\n\n### postMessage API\nThe framework has a built-in postMessage API that can be used when communicating with a presentation inside of another window. Here's an example showing how you'd make a reveal.js instance in the given window proceed to slide 2:\n\n```javascript\n<window>.postMessage( JSON.stringify({ method: 'slide', args: [ 2 ] }), '*' );\n```\n\nWhen reveal.js runs inside of an iframe it can optionally bubble all of its events to the parent. Bubbled events are stringified JSON with three fields: namespace, eventName and state. Here's how you subscribe to them from the parent window:\n\n```javascript\nwindow.addEventListener( 'message', function( event ) {\n\tvar data = JSON.parse( event.data );\n\tif( data.namespace === 'reveal' && data.eventName ==='slidechanged' ) {\n\t\t// Slide changed, see data.state for slide number\n\t}\n} );\n```\n\nThis cross-window messaging can be toggled on or off using configuration flags.\n\n```javascript\nReveal.initialize({\n\t...,\n\n\t// Exposes the reveal.js API through window.postMessage\n\tpostMessage: true,\n\n\t// Dispatches all reveal.js events to the parent window through postMessage\n\tpostMessageEvents: false\n});\n```\n\n\n## PDF Export\n\nPresentations can be exported to PDF via a special print stylesheet. This feature requires that you use [Google Chrome](http://google.com/chrome) or [Chromium](https://www.chromium.org/Home).\nHere's an example of an exported presentation that's been uploaded to SlideShare: http://www.slideshare.net/hakimel/revealjs-300.\n\n1. Open your presentation with `print-pdf` included anywhere in the query string. This triggers the default index HTML to load the PDF print stylesheet ([css/print/pdf.css](https://github.com/hakimel/reveal.js/blob/master/css/print/pdf.css)). You can test this with [lab.hakim.se/reveal-js?print-pdf](http://lab.hakim.se/reveal-js?print-pdf).\n2. Open the in-browser print dialog (CMD+P).\n3. Change the **Destination** setting to **Save as PDF**.\n4. Change the **Layout** to **Landscape**.\n5. Change the **Margins** to **None**.\n6. Click **Save**.\n\n![Chrome Print Settings](https://s3.amazonaws.com/hakim-static/reveal-js/pdf-print-settings.png)\n\nAlternatively you can use the [decktape](https://github.com/astefanutti/decktape) project.\n\n## Theming\n\nThe framework comes with a few different themes included:\n\n- black: Black background, white text, blue links (default theme)\n- white: White background, black text, blue links\n- league: Gray background, white text, blue links (default theme for reveal.js < 3.0.0)\n- beige: Beige background, dark text, brown links\n- sky: Blue background, thin dark text, blue links\n- night: Black background, thick white text, orange links\n- serif: Cappuccino background, gray text, brown links\n- simple: White background, black text, blue links\n- solarized: Cream-colored background, dark green text, blue links\n\nEach theme is available as a separate stylesheet. To change theme you will need to replace **black** below with your desired theme name in index.html:\n\n```html\n<link rel=\"stylesheet\" href=\"css/theme/black.css\" id=\"theme\">\n```\n\nIf you want to add a theme of your own see the instructions here: [/css/theme/README.md](https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md).\n\n\n## Speaker Notes\n\nreveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Press the 's' key on your keyboard to open the notes window.\n\nNotes are defined by appending an ```<aside>``` element to a slide as seen below. You can add the ```data-markdown``` attribute to the aside element if you prefer writing notes using Markdown.\n\nAlternatively you can add your notes in a `data-notes` attribute on the slide. Like `<section data-notes=\"Something important\"></section>`.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section>\n\t<h2>Some Slide</h2>\n\n\t<aside class=\"notes\">\n\t\tOh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).\n\t</aside>\n</section>\n```\n\nNotes are only visible to you in the speaker view. If you wish to share your notes with the audience initialize reveal.js with the `showNotes` config value set to `true`.\n\nIf you're using the external Markdown plugin, you can add notes with the help of a special delimiter:\n\n```html\n<section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\" data-separator-notes=\"^Note:\"></section>\n\n# Title\n## Sub-title\n\nHere is some content...\n\nNote:\nThis will only display in the notes window.\n```\n\n## Server Side Speaker Notes\n\nIn some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the required scripts by adding the following dependencies:\n\n```javascript\nReveal.initialize({\n\t...\n\n\tdependencies: [\n\t\t{ src: 'socket.io/socket.io.js', async: true },\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\t]\n});\n```\n\nThen:\n\n1. Install [Node.js](http://nodejs.org/)\n2. Run ```npm install```\n3. Run ```node plugin/notes-server```\n\n\n## Multiplexing\n\nThe multiplex plugin allows your audience to view the slides of the presentation you are controlling on their own phone, tablet or laptop. As the master presentation navigates the slides, all client presentations will update in real time. See a demo at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nThe multiplex plugin needs the following 3 things to operate:\n\n1. Master presentation that has control\n2. Client presentations that follow the master\n3. Socket.io server to broadcast events from the master to the clients\n\nMore details:\n\n#### Master presentation\nServed from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation: \n\n1. ```npm install node-static```\n2. ```static```\n\nIf you want to use the speaker notes plugin with your master presentation then make sure you have the speaker notes plugin configured correctly along with the configuration shown below, then execute ```node plugin/notes-server``` in the directory of your master presentation. The configuration below will cause it to connect to the socket.io server as a master, as well as launch your speaker-notes/static-file server.\n\nYou can then access your master presentation at ```http://localhost:1947```\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\n\t\t// and if you want speaker notes\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Client presentation\nServed from a publicly accessible static file server. Examples include: GitHub Pages, Amazon S3, Dreamhost, Akamai, etc. The more reliable, the better. Your audience can then access the client presentation via ```http://example.com/path/to/presentation/client/index.html```, with the configuration below causing them to connect to the socket.io server as clients.\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Socket.io server\nServer that receives the slideChanged events from the master presentation and broadcasts them out to the connected client presentations. This needs to be publicly accessible. You can run your own socket.io server with the commands:\n\n1. ```npm install```\n2. ```node plugin/multiplex```\n\nOr you use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nYou'll need to generate a unique secret and token pair for your master and client presentations. To do so, visit ```http://example.com/token```, where ```http://example.com``` is the location of your socket.io server. Or if you're going to use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), visit [http://revealjs-51546.onmodulus.net/token](http://revealjs-51546.onmodulus.net/token).\n\nYou are very welcome to point your presentations at the Socket.io server running at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), but availability and stability are not guaranteed. For anything mission critical I recommend you run your own server. It is simple to deploy to nodejitsu, heroku, your own environment, etc.\n\n##### socket.io server as file static server\n\nThe socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match.)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n```\n\nIt can also play the role of static file server for your master presentation and client presentations at the same time (as long as you don't want to use speaker notes). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match. Navigate through the slides on the second, and the first will update to match.) This is probably not desirable, because you don't want your audience to mess with your slides while you're presenting. ;)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n## MathJax\n\nIf you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies).\n\nThe plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value. \n\nBelow is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all.\n\n```js\nReveal.initialize({\n\n\t// other options ...\n\n\tmath: {\n\t\tmathjax: 'https://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\tconfig: 'TeX-AMS_HTML-full'  // See http://docs.mathjax.org/en/latest/config-files.html\n\t},\n\t\n\tdependencies: [\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n\n});\n```\n\nRead MathJax's documentation if you need [HTTPS delivery](http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn) or serving of [specific versions](http://docs.mathjax.org/en/latest/configuration.html#loading-mathjax-from-the-cdn) for stability.\n\n\n## Installation\n\nThe **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features and plugins such as speaker notes as well as the development tasks needed to make changes to the source.\n\n### Basic setup\n\nThe core of reveal.js is very easy to install. You'll simply need to download a copy of this repository and open the index.html file directly in your browser.\n\n1. Download the latest version of reveal.js from <https://github.com/hakimel/reveal.js/releases>\n\n2. Unzip and replace the example contents in index.html with your own\n\n3. Open index.html in a browser to view it\n\n\n### Full setup\n\nSome reveal.js features, like external Markdown and speaker notes, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code.\n\n1. Install [Node.js](http://nodejs.org/)\n\n2. Install [Grunt](http://gruntjs.com/getting-started#installing-the-cli)\n\n4. Clone the reveal.js repository\n   ```sh\n   $ git clone https://github.com/hakimel/reveal.js.git\n   ```\n\n5. Navigate to the reveal.js folder\n   ```sh\n   $ cd reveal.js\n   ```\n\n6. Install dependencies\n   ```sh\n   $ npm install\n   ```\n\n7. Serve the presentation and monitor source files for changes\n   ```sh\n   $ grunt serve\n   ```\n\n8. Open <http://localhost:8000> to view your presentation\n\n   You can change the port by using `grunt serve --port 8001`.\n\n\n### Folder Structure\n- **css/** Core styles without which the project does not function\n- **js/** Like above but for JavaScript\n- **plugin/** Components that have been developed as extensions to reveal.js\n- **lib/** All other third party assets (JavaScript, CSS, fonts)\n\n\n## License\n\nMIT licensed\n\nCopyright (C) 2015 Hakim El Hattab, http://hakim.se\n"
  },
  {
    "path": "doc/cppnow-2017/bower.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"main\": [\n    \"js/reveal.js\",\n    \"css/reveal.css\"\n  ],\n  \"homepage\": \"http://lab.hakim.se/reveal-js/\",\n  \"license\": \"MIT\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"authors\": [\n    \"Hakim El Hattab <hakim.elhattab@gmail.com>\"\n  ],\n  \"dependencies\": {\n    \"headjs\": \"~1.0.3\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"ignore\": [\n    \"**/.*\",\n    \"node_modules\",\n    \"bower_components\",\n    \"test\"\n  ]\n}"
  },
  {
    "path": "doc/cppnow-2017/css/print/paper.css",
    "content": "/* Default Print Stylesheet Template\n   by Rob Glazebrook of CSSnewbie.com\n   Last Updated: June 4, 2008\n\n   Feel free (nay, compelled) to edit, append, and\n   manipulate this file as you see fit. */\n\n\n@media print {\n\n\t/* SECTION 1: Set default width, margin, float, and\n\t   background. This prevents elements from extending\n\t   beyond the edge of the printed page, and prevents\n\t   unnecessary background images from printing */\n\thtml {\n\t\tbackground: #fff;\n\t\twidth: auto;\n\t\theight: auto;\n\t\toverflow: visible;\n\t}\n\tbody {\n\t\tbackground: #fff;\n\t\tfont-size: 20pt;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tborder: 0;\n\t\tmargin: 0 5%;\n\t\tpadding: 0;\n\t\toverflow: visible;\n\t\tfloat: none !important;\n\t}\n\n\t/* SECTION 2: Remove any elements not needed in print.\n\t   This would include navigation, ads, sidebars, etc. */\n\t.nestedarrow,\n\t.controls,\n\t.fork-reveal,\n\t.share-reveal,\n\t.state-background,\n\t.reveal .progress,\n\t.reveal .backgrounds {\n\t\tdisplay: none !important;\n\t}\n\n\t/* SECTION 3: Set body font face, size, and color.\n\t   Consider using a serif font for readability. */\n\tbody, p, td, li, div {\n\t\tfont-size: 20pt!important;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\tcolor: #000;\n\t}\n\n\t/* SECTION 4: Set heading font face, sizes, and color.\n\t   Differentiate your headings from your body text.\n\t   Perhaps use a large sans-serif for distinction. */\n\th1,h2,h3,h4,h5,h6 {\n\t\tcolor: #000!important;\n\t\theight: auto;\n\t\tline-height: normal;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\ttext-shadow: 0 0 0 #000 !important;\n\t\ttext-align: left;\n\t\tletter-spacing: normal;\n\t}\n\t/* Need to reduce the size of the fonts for printing */\n\th1 { font-size: 28pt !important;  }\n\th2 { font-size: 24pt !important; }\n\th3 { font-size: 22pt !important; }\n\th4 { font-size: 22pt !important; font-variant: small-caps; }\n\th5 { font-size: 21pt !important; }\n\th6 { font-size: 20pt !important; font-style: italic; }\n\n\t/* SECTION 5: Make hyperlinks more usable.\n\t   Ensure links are underlined, and consider appending\n\t   the URL to the end of the link for usability. */\n\ta:link,\n\ta:visited {\n\t\tcolor: #000 !important;\n\t\tfont-weight: bold;\n\t\ttext-decoration: underline;\n\t}\n\t/*\n\t.reveal a:link:after,\n\t.reveal a:visited:after {\n\t\tcontent: \" (\" attr(href) \") \";\n\t\tcolor: #222 !important;\n\t\tfont-size: 90%;\n\t}\n\t*/\n\n\n\t/* SECTION 6: more reveal.js specific additions by @skypanther */\n\tul, ol, div, p {\n\t\tvisibility: visible;\n\t\tposition: static;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tdisplay: block;\n\t\toverflow: visible;\n\t\tmargin: 0;\n\t\ttext-align: left !important;\n\t}\n\t.reveal pre,\n\t.reveal table {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n\t.reveal pre code {\n\t\tpadding: 20px;\n\t\tborder: 1px solid #ddd;\n\t}\n\t.reveal blockquote {\n\t\tmargin: 20px 0;\n\t}\n\t.reveal .slides {\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 0 !important;\n\t\tzoom: 1 !important;\n\n\t\toverflow: visible !important;\n\t\tdisplay: block !important;\n\n\t\ttext-align: left !important;\n\t\t-webkit-perspective: none;\n\t\t   -moz-perspective: none;\n\t\t    -ms-perspective: none;\n\t\t        perspective: none;\n\n\t\t-webkit-perspective-origin: 50% 50%;\n\t\t   -moz-perspective-origin: 50% 50%;\n\t\t    -ms-perspective-origin: 50% 50%;\n\t\t        perspective-origin: 50% 50%;\n\t}\n\t.reveal .slides section {\n\t\tvisibility: visible !important;\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\t\tdisplay: block !important;\n\t\toverflow: visible !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 60px 20px !important;\n\t\tz-index: auto !important;\n\n\t\topacity: 1 !important;\n\n\t\tpage-break-after: always !important;\n\n\t\t-webkit-transform-style: flat !important;\n\t\t   -moz-transform-style: flat !important;\n\t\t    -ms-transform-style: flat !important;\n\t\t        transform-style: flat !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\n\t\t-webkit-transition: none !important;\n\t\t   -moz-transition: none !important;\n\t\t    -ms-transition: none !important;\n\t\t        transition: none !important;\n\t}\n\t.reveal .slides section.stack {\n\t\tpadding: 0 !important;\n\t}\n\t.reveal section:last-of-type {\n\t\tpage-break-after: avoid !important;\n\t}\n\t.reveal section .fragment {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\t}\n\t.reveal section img {\n\t\tdisplay: block;\n\t\tmargin: 15px 0px;\n\t\tbackground: rgba(255,255,255,1);\n\t\tborder: 1px solid #666;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal section small {\n\t\tfont-size: 0.8em;\n\t}\n\n}"
  },
  {
    "path": "doc/cppnow-2017/css/print/pdf.css",
    "content": "/**\n * This stylesheet is used to print reveal.js\n * presentations to PDF.\n *\n * https://github.com/hakimel/reveal.js#pdf-export\n */\n\n* {\n\t-webkit-print-color-adjust: exact;\n}\n\nbody {\n\tmargin: 0 auto !important;\n\tborder: 0;\n\tpadding: 0;\n\tfloat: none !important;\n\toverflow: visible;\n}\n\nhtml {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: visible;\n}\n\n/* Remove any elements not needed in print. */\n.nestedarrow,\n.reveal .controls,\n.reveal .progress,\n.reveal .playback,\n.reveal.overview,\n.fork-reveal,\n.share-reveal,\n.state-background {\n\tdisplay: none !important;\n}\n\nh1, h2, h3, h4, h5, h6 {\n\ttext-shadow: 0 0 0 #000 !important;\n}\n\n.reveal pre code {\n\toverflow: hidden !important;\n\tfont-family: Courier, 'Courier New', monospace !important;\n}\n\nul, ol, div, p {\n\tvisibility: visible;\n\tposition: static;\n\twidth: auto;\n\theight: auto;\n\tdisplay: block;\n\toverflow: visible;\n\tmargin: auto;\n}\n.reveal {\n\twidth: auto !important;\n\theight: auto !important;\n\toverflow: hidden !important;\n}\n.reveal .slides {\n\tposition: static;\n\twidth: 100%;\n\theight: auto;\n\n\tleft: auto;\n\ttop: auto;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\n\toverflow: visible;\n\tdisplay: block;\n\n\t-webkit-perspective: none;\n\t   -moz-perspective: none;\n\t    -ms-perspective: none;\n\t        perspective: none;\n\n\t-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */\n\t   -moz-perspective-origin: 50% 50%;\n\t    -ms-perspective-origin: 50% 50%;\n\t        perspective-origin: 50% 50%;\n}\n\n.reveal .slides section {\n\tpage-break-after: always !important;\n\n\tvisibility: visible !important;\n\tposition: relative !important;\n\tdisplay: block !important;\n\tposition: relative !important;\n\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tbox-sizing: border-box !important;\n\tmin-height: 1px;\n\n\topacity: 1 !important;\n\n\t-webkit-transform-style: flat !important;\n\t   -moz-transform-style: flat !important;\n\t    -ms-transform-style: flat !important;\n\t        transform-style: flat !important;\n\n\t-webkit-transform: none !important;\n\t   -moz-transform: none !important;\n\t    -ms-transform: none !important;\n\t        transform: none !important;\n}\n\n.reveal section.stack {\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tpage-break-after: avoid !important;\n\theight: auto !important;\n\tmin-height: auto !important;\n}\n\n.reveal img {\n\tbox-shadow: none;\n}\n\n.reveal .roll {\n\toverflow: visible;\n\tline-height: 1em;\n}\n\n/* Slide backgrounds are placed inside of their slide when exporting to PDF */\n.reveal section .slide-background {\n\tdisplay: block !important;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\tz-index: -1;\n}\n\n/* All elements should be above the slide-background */\n.reveal section>* {\n\tposition: relative;\n\tz-index: 1;\n}\n\n/* Display slide speaker notes when 'showNotes' is enabled */\n.reveal .speaker-notes-pdf {\n\tdisplay: block;\n\twidth: 100%;\n\tmax-height: none;\n\tleft: auto;\n\ttop: auto;\n\tz-index: 100;\n}\n\n/* Display slide numbers when 'slideNumber' is enabled */\n.reveal .slide-number-pdf {\n\tdisplay: block;\n\tposition: absolute;\n\tfont-size: 14px;\n}\n\n"
  },
  {
    "path": "doc/cppnow-2017/css/reveal.css",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n/*********************************************\n * RESET STYLES\n *********************************************/\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n  margin: 0;\n  padding: 0;\n  border: 0;\n  font-size: 100%;\n  font: inherit;\n  vertical-align: baseline; }\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n  display: block; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n  overflow: hidden; }\n\nbody {\n  position: relative;\n  line-height: 1;\n  background-color: #fff;\n  color: #000; }\n\nhtml:-webkit-full-screen-ancestor {\n  background-color: inherit; }\n\nhtml:-moz-full-screen-ancestor {\n  background-color: inherit; }\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n.reveal .slides section .fragment {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease; }\n  .reveal .slides section .fragment.visible {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.grow {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.grow.visible {\n    -webkit-transform: scale(1.3);\n        -ms-transform: scale(1.3);\n            transform: scale(1.3); }\n\n.reveal .slides section .fragment.shrink {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.shrink.visible {\n    -webkit-transform: scale(0.7);\n        -ms-transform: scale(0.7);\n            transform: scale(0.7); }\n\n.reveal .slides section .fragment.zoom-in {\n  -webkit-transform: scale(0.1);\n      -ms-transform: scale(0.1);\n          transform: scale(0.1); }\n  .reveal .slides section .fragment.zoom-in.visible {\n    -webkit-transform: none;\n        -ms-transform: none;\n            transform: none; }\n\n.reveal .slides section .fragment.fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.fade-out.visible {\n    opacity: 0;\n    visibility: hidden; }\n\n.reveal .slides section .fragment.semi-fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.semi-fade-out.visible {\n    opacity: 0.5;\n    visibility: visible; }\n\n.reveal .slides section .fragment.strike {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.strike.visible {\n    text-decoration: line-through; }\n\n.reveal .slides section .fragment.current-visible {\n  opacity: 0;\n  visibility: hidden; }\n  .reveal .slides section .fragment.current-visible.current-fragment {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red.visible {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-green.visible {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-blue.visible {\n  color: #1b91ff; }\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n  color: #1b91ff; }\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic; }\n\n.reveal iframe {\n  z-index: 1; }\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n  position: relative; }\n\n.reveal .stretch {\n  max-width: none;\n  max-height: none; }\n\n.reveal pre.stretch code {\n  height: 100%;\n  max-height: 100%;\n  box-sizing: border-box; }\n\n/*********************************************\n * CONTROLS\n *********************************************/\n.reveal .controls {\n  display: none;\n  position: fixed;\n  width: 110px;\n  height: 110px;\n  z-index: 30;\n  right: 10px;\n  bottom: 10px;\n  -webkit-user-select: none; }\n\n.reveal .controls button {\n  padding: 0;\n  position: absolute;\n  opacity: 0.05;\n  width: 0;\n  height: 0;\n  background-color: transparent;\n  border: 12px solid transparent;\n  -webkit-transform: scale(0.9999);\n      -ms-transform: scale(0.9999);\n          transform: scale(0.9999);\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease;\n  -webkit-appearance: none;\n  -webkit-tap-highlight-color: transparent; }\n\n.reveal .controls .enabled {\n  opacity: 0.7;\n  cursor: pointer; }\n\n.reveal .controls .enabled:active {\n  margin-top: 1px; }\n\n.reveal .controls .navigate-left {\n  top: 42px;\n  border-right-width: 22px;\n  border-right-color: #000; }\n\n.reveal .controls .navigate-left.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-right {\n  left: 74px;\n  top: 42px;\n  border-left-width: 22px;\n  border-left-color: #000; }\n\n.reveal .controls .navigate-right.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-up {\n  left: 42px;\n  border-bottom-width: 22px;\n  border-bottom-color: #000; }\n\n.reveal .controls .navigate-up.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-down {\n  left: 42px;\n  top: 74px;\n  border-top-width: 22px;\n  border-top-color: #000; }\n\n.reveal .controls .navigate-down.fragmented {\n  opacity: 0.3; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  position: fixed;\n  display: none;\n  height: 3px;\n  width: 100%;\n  bottom: 0;\n  left: 0;\n  z-index: 10;\n  background-color: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress:after {\n  content: '';\n  display: block;\n  position: absolute;\n  height: 20px;\n  width: 100%;\n  top: -20px; }\n\n.reveal .progress span {\n  display: block;\n  height: 100%;\n  width: 0px;\n  background-color: #000;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n.reveal .slide-number {\n  position: fixed;\n  display: block;\n  right: 8px;\n  bottom: 8px;\n  z-index: 31;\n  font-family: Helvetica, sans-serif;\n  font-size: 12px;\n  line-height: 1;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.4);\n  padding: 5px; }\n\n.reveal .slide-number-delimiter {\n  margin: 0 3px; }\n\n/*********************************************\n * SLIDES\n *********************************************/\n.reveal {\n  position: relative;\n  width: 100%;\n  height: 100%;\n  overflow: hidden;\n  -ms-touch-action: none;\n      touch-action: none; }\n\n.reveal .slides {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  overflow: visible;\n  z-index: 1;\n  text-align: center;\n  -webkit-perspective: 600px;\n          perspective: 600px;\n  -webkit-perspective-origin: 50% 40%;\n          perspective-origin: 50% 40%; }\n\n.reveal .slides > section {\n  -ms-perspective: 600px; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  display: none;\n  position: absolute;\n  width: 100%;\n  padding: 20px 0px;\n  z-index: 10;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: -ms-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] .slides section {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal .slides section[data-transition-speed=\"slow\"] {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n.reveal .slides > section.stack {\n  padding-top: 0;\n  padding-bottom: 0; }\n\n.reveal .slides > section.present,\n.reveal .slides > section > section.present {\n  display: block;\n  z-index: 11;\n  opacity: 1; }\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n  min-height: 0 !important; }\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides > section.future,\n.reveal .slides > section > section.future,\n.reveal .slides > section.past,\n.reveal .slides > section > section.past {\n  pointer-events: none; }\n\n.reveal.overview .slides > section,\n.reveal.overview .slides > section > section {\n  pointer-events: auto; }\n\n.reveal .slides > section.past,\n.reveal .slides > section.future,\n.reveal .slides > section > section.past,\n.reveal .slides > section > section.future {\n  opacity: 0; }\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n.reveal.slide section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=slide].past,\n.reveal .slides > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=slide].future,\n.reveal .slides > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=slide].past,\n.reveal .slides > section > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=slide].future,\n.reveal .slides > section > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n.reveal.linear section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=linear].past,\n.reveal .slides > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=linear].future,\n.reveal .slides > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=linear].past,\n.reveal .slides > section > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=linear].future,\n.reveal .slides > section > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n.reveal .slides > section[data-transition=default].past,\n.reveal .slides > section[data-transition~=default-out].past,\n.reveal.default .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=default].future,\n.reveal .slides > section[data-transition~=default-in].future,\n.reveal.default .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=default].past,\n.reveal .slides > section > section[data-transition~=default-out].past,\n.reveal.default .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=default].future,\n.reveal .slides > section > section[data-transition~=default-in].future,\n.reveal.default .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n.reveal .slides > section[data-transition=convex].past,\n.reveal .slides > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=convex].future,\n.reveal .slides > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=convex].past,\n.reveal .slides > section > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=convex].future,\n.reveal .slides > section > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n.reveal .slides > section[data-transition=concave].past,\n.reveal .slides > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=concave].future,\n.reveal .slides > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=concave].past,\n.reveal .slides > section > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n          transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); }\n\n.reveal .slides > section > section[data-transition=concave].future,\n.reveal .slides > section > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n          transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); }\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=zoom],\n.reveal.zoom .slides section:not([data-transition]) {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal .slides > section[data-transition=zoom].past,\n.reveal .slides > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section:not([data-transition]).past {\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal .slides > section[data-transition=zoom].future,\n.reveal .slides > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section:not([data-transition]).future {\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .slides > section > section[data-transition=zoom].past,\n.reveal .slides > section > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=zoom].future,\n.reveal .slides > section > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n.reveal.cube .slides {\n  -webkit-perspective: 1300px;\n          perspective: 1300px; }\n\n.reveal.cube .slides section {\n  padding: 30px;\n  min-height: 700px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  box-sizing: border-box; }\n\n.reveal.center.cube .slides section {\n  min-height: 0; }\n\n.reveal.cube .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  border-radius: 4px;\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.cube .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg);\n          transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.cube .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.cube .slides > section.past {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg); }\n\n.reveal.cube .slides > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);\n          transform: translate3d(100%, 0, 0) rotateY(90deg); }\n\n.reveal.cube .slides > section > section.past {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);\n          transform: translate3d(0, -100%, 0) rotateX(90deg); }\n\n.reveal.cube .slides > section > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg); }\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n.reveal.page .slides {\n  -webkit-perspective-origin: 0% 50%;\n          perspective-origin: 0% 50%;\n  -webkit-perspective: 3000px;\n          perspective: 3000px; }\n\n.reveal.page .slides section {\n  padding: 30px;\n  min-height: 700px;\n  box-sizing: border-box; }\n\n.reveal.page .slides section.past {\n  z-index: 12; }\n\n.reveal.page .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.page .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.page .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.page .slides > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);\n          transform: translate3d(-40%, 0, 0) rotateY(-80deg); }\n\n.reveal.page .slides > section.future {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n.reveal.page .slides > section > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);\n          transform: translate3d(0, -40%, 0) rotateX(80deg); }\n\n.reveal.page .slides > section > section.future {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides > section > section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: opacity 0.5s;\n          transition: opacity 0.5s; }\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides > section > section {\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=none],\n.reveal.none .slides section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n.reveal .pause-overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  background: black;\n  visibility: hidden;\n  opacity: 0;\n  z-index: 100;\n  -webkit-transition: all 1s ease;\n          transition: all 1s ease; }\n\n.reveal.paused .pause-overlay {\n  visibility: visible;\n  opacity: 1; }\n\n/*********************************************\n * FALLBACK\n *********************************************/\n.no-transforms {\n  overflow-y: auto; }\n\n.no-transforms .reveal .slides {\n  position: relative;\n  width: 80%;\n  height: auto !important;\n  top: 0;\n  left: 50%;\n  margin: 0;\n  text-align: center; }\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n  display: none !important; }\n\n.no-transforms .reveal .slides section {\n  display: block !important;\n  opacity: 1 !important;\n  position: relative !important;\n  height: auto;\n  min-height: 0;\n  top: 0;\n  left: -50%;\n  margin: 70px 0;\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none; }\n\n.no-transforms .reveal .slides section section {\n  left: 0; }\n\n.reveal .no-transition,\n.reveal .no-transition * {\n  -webkit-transition: none !important;\n          transition: none !important; }\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n.reveal .backgrounds {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  -webkit-perspective: 600px;\n          perspective: 600px; }\n\n.reveal .slide-background {\n  display: none;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  opacity: 0;\n  visibility: hidden;\n  background-color: transparent;\n  background-position: 50% 50%;\n  background-repeat: no-repeat;\n  background-size: cover;\n  -webkit-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal .slide-background.stack {\n  display: block; }\n\n.reveal .slide-background.present {\n  opacity: 1;\n  visibility: visible; }\n\n.print-pdf .reveal .slide-background {\n  opacity: 1 !important;\n  visibility: visible !important; }\n\n/* Video backgrounds */\n.reveal .slide-background video {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  max-width: none;\n  max-height: none;\n  top: 0;\n  left: 0; }\n\n/* Immediate transition style */\n.reveal[data-background-transition=none] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=none] {\n  -webkit-transition: none;\n          transition: none; }\n\n/* Slide */\n.reveal[data-background-transition=slide] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=slide] {\n  opacity: 1;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(-100%, 0);\n      -ms-transform: translate(-100%, 0);\n          transform: translate(-100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(100%, 0);\n      -ms-transform: translate(100%, 0);\n          transform: translate(100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(0, -100%);\n      -ms-transform: translate(0, -100%);\n          transform: translate(0, -100%); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(0, 100%);\n      -ms-transform: translate(0, 100%);\n          transform: translate(0, 100%); }\n\n/* Convex */\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); }\n\n/* Concave */\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); }\n\n/* Zoom */\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=zoom] {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n.reveal.overview {\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%;\n  -webkit-perspective: 700px;\n          perspective: 700px; }\n  .reveal.overview .slides section {\n    height: 700px;\n    opacity: 1 !important;\n    overflow: hidden;\n    visibility: visible !important;\n    cursor: pointer;\n    box-sizing: border-box; }\n  .reveal.overview .slides section:hover,\n  .reveal.overview .slides section.present {\n    outline: 10px solid rgba(150, 150, 150, 0.4);\n    outline-offset: 10px; }\n  .reveal.overview .slides section .fragment {\n    opacity: 1;\n    -webkit-transition: none;\n            transition: none; }\n  .reveal.overview .slides section:after,\n  .reveal.overview .slides section:before {\n    display: none !important; }\n  .reveal.overview .slides > section.stack {\n    padding: 0;\n    top: 0 !important;\n    background: none;\n    outline: none;\n    overflow: visible; }\n  .reveal.overview .backgrounds {\n    -webkit-perspective: inherit;\n            perspective: inherit; }\n  .reveal.overview .backgrounds .slide-background {\n    opacity: 1;\n    visibility: visible;\n    outline: 10px solid rgba(150, 150, 150, 0.1);\n    outline-offset: 10px; }\n\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview-animated .slides {\n  -webkit-transition: -webkit-transform 0.4s ease;\n          transition: transform 0.4s ease; }\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n  direction: rtl;\n  font-family: sans-serif; }\n\n.reveal.rtl pre,\n.reveal.rtl code {\n  direction: ltr; }\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n  text-align: right; }\n\n.reveal.rtl .progress span {\n  float: right; }\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n.reveal.has-parallax-background .backgrounds {\n  -webkit-transition: all 0.8s ease;\n          transition: all 0.8s ease; }\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n.reveal .overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1000;\n  background: rgba(0, 0, 0, 0.9);\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.visible {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay .spinner {\n  position: absolute;\n  display: block;\n  top: 50%;\n  left: 50%;\n  width: 32px;\n  height: 32px;\n  margin: -16px 0 0 -16px;\n  z-index: 10;\n  background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n  visibility: visible;\n  opacity: 0.6;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay header {\n  position: absolute;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 40px;\n  z-index: 2;\n  border-bottom: 1px solid #222; }\n\n.reveal .overlay header a {\n  display: inline-block;\n  width: 40px;\n  height: 40px;\n  padding: 0 10px;\n  float: right;\n  opacity: 0.6;\n  box-sizing: border-box; }\n\n.reveal .overlay header a:hover {\n  opacity: 1; }\n\n.reveal .overlay header a .icon {\n  display: inline-block;\n  width: 20px;\n  height: 20px;\n  background-position: 50% 50%;\n  background-size: 100%;\n  background-repeat: no-repeat; }\n\n.reveal .overlay header a.close .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); }\n\n.reveal .overlay header a.external .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); }\n\n.reveal .overlay .viewport {\n  position: absolute;\n  top: 40px;\n  right: 0;\n  bottom: 0;\n  left: 0; }\n\n.reveal .overlay.overlay-preview .viewport iframe {\n  width: 100%;\n  height: 100%;\n  max-width: 100%;\n  max-height: 100%;\n  border: 0;\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.overlay-preview.loaded .viewport iframe {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay.overlay-preview.loaded .spinner {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .overlay.overlay-help .viewport {\n  overflow: auto;\n  color: #fff; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner {\n  width: 600px;\n  margin: 0 auto;\n  padding: 60px;\n  text-align: center;\n  letter-spacing: normal; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n  font-size: 20px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table {\n  border: 1px solid #fff;\n  border-collapse: collapse;\n  font-size: 14px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n  width: 200px;\n  padding: 10px;\n  border: 1px solid #fff;\n  vertical-align: middle; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n  padding-top: 20px;\n  padding-bottom: 20px; }\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n.reveal .playback {\n  position: fixed;\n  left: 15px;\n  bottom: 20px;\n  z-index: 30;\n  cursor: pointer;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease; }\n\n.reveal.overview .playback {\n  opacity: 0;\n  visibility: hidden; }\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n.reveal .roll {\n  display: inline-block;\n  line-height: 1.2;\n  overflow: hidden;\n  vertical-align: top;\n  -webkit-perspective: 400px;\n          perspective: 400px;\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%; }\n\n.reveal .roll:hover {\n  background: none;\n  text-shadow: none; }\n\n.reveal .roll span {\n  display: block;\n  position: relative;\n  padding: 0 2px;\n  pointer-events: none;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .roll:hover span {\n  background: rgba(0, 0, 0, 0.5);\n  -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg);\n          transform: translate3d(0px, 0px, -45px) rotateX(90deg); }\n\n.reveal .roll span:after {\n  content: attr(data-title);\n  display: block;\n  position: absolute;\n  left: 0;\n  top: 0;\n  padding: 0 2px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg);\n          transform: translate3d(0px, 110%, 0px) rotateX(-90deg); }\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n.reveal aside.notes {\n  display: none; }\n\n.reveal .speaker-notes {\n  display: none;\n  position: absolute;\n  width: 70%;\n  max-height: 15%;\n  left: 15%;\n  bottom: 26px;\n  padding: 10px;\n  z-index: 1;\n  font-size: 18px;\n  line-height: 1.4;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.5);\n  overflow: auto;\n  box-sizing: border-box;\n  text-align: left;\n  font-family: Helvetica, sans-serif;\n  -webkit-overflow-scrolling: touch; }\n\n.reveal .speaker-notes.visible:not(:empty) {\n  display: block; }\n\n@media screen and (max-width: 1024px) {\n  .reveal .speaker-notes {\n    font-size: 14px; } }\n\n@media screen and (max-width: 600px) {\n  .reveal .speaker-notes {\n    width: 90%;\n    left: 5%; } }\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n  -webkit-backface-visibility: visible !important;\n          backface-visibility: visible !important; }\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n  opacity: 0; }\n\n.zoomed .reveal .roll span {\n  background: none; }\n\n.zoomed .reveal .roll span:after {\n  visibility: hidden; }\n"
  },
  {
    "path": "doc/cppnow-2017/css/reveal.scss",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n/*********************************************\n * RESET STYLES\n *********************************************/\n\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\tfont-size: 100%;\n\tfont: inherit;\n\tvertical-align: baseline;\n}\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n\tdisplay: block;\n}\n\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nhtml,\nbody {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n}\n\nbody {\n\tposition: relative;\n\tline-height: 1;\n\n\tbackground-color: #fff;\n\tcolor: #000;\n}\n\n// Ensures that the main background color matches the\n// theme in fullscreen mode\nhtml:-webkit-full-screen-ancestor {\n\tbackground-color: inherit;\n}\nhtml:-moz-full-screen-ancestor {\n\tbackground-color: inherit;\n}\n\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n\n.reveal .slides section .fragment {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all .2s ease;\n\n\t&.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.grow {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 1.3 );\n\t}\n}\n\n.reveal .slides section .fragment.shrink {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 0.7 );\n\t}\n}\n\n.reveal .slides section .fragment.zoom-in {\n\ttransform: scale( 0.1 );\n\n\t&.visible {\n\t\ttransform: none;\n\t}\n}\n\n.reveal .slides section .fragment.fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t}\n}\n\n.reveal .slides section .fragment.semi-fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0.5;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.strike {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttext-decoration: line-through;\n\t}\n}\n\n.reveal .slides section .fragment.current-visible {\n\topacity: 0;\n\tvisibility: hidden;\n\n\t&.current-fragment {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n\topacity: 1;\n\tvisibility: visible;\n}\n\t.reveal .slides section .fragment.highlight-red.visible {\n\t\tcolor: #ff2c2d\n\t}\n\t.reveal .slides section .fragment.highlight-green.visible {\n\t\tcolor: #17ff2e;\n\t}\n\t.reveal .slides section .fragment.highlight-blue.visible {\n\t\tcolor: #1b91ff;\n\t}\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n\tcolor: #ff2c2d\n}\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n\tcolor: #17ff2e;\n}\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n\tcolor: #1b91ff;\n}\n\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic;\n}\n\n.reveal iframe {\n\tz-index: 1;\n}\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n\tposition: relative;\n}\n\n.reveal .stretch {\n\tmax-width: none;\n\tmax-height: none;\n}\n\n.reveal pre.stretch code {\n\theight: 100%;\n\tmax-height: 100%;\n\tbox-sizing: border-box;\n}\n\n\n/*********************************************\n * CONTROLS\n *********************************************/\n\n.reveal .controls {\n\tdisplay: none;\n\tposition: fixed;\n\twidth: 110px;\n\theight: 110px;\n\tz-index: 30;\n\tright: 10px;\n\tbottom: 10px;\n\n\t-webkit-user-select: none;\n}\n\n.reveal .controls button {\n\tpadding: 0;\n\tposition: absolute;\n\topacity: 0.05;\n\twidth: 0;\n\theight: 0;\n\tbackground-color: transparent;\n\tborder: 12px solid transparent;\n\ttransform: scale(.9999);\n\ttransition: all 0.2s ease;\n\t-webkit-appearance: none;\n\t-webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );\n}\n\n.reveal .controls .enabled {\n\topacity: 0.7;\n\tcursor: pointer;\n}\n\n.reveal .controls .enabled:active {\n\tmargin-top: 1px;\n}\n\n\t.reveal .controls .navigate-left {\n\t\ttop: 42px;\n\n\t\tborder-right-width: 22px;\n\t\tborder-right-color: #000;\n\t}\n\t\t.reveal .controls .navigate-left.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-right {\n\t\tleft: 74px;\n\t\ttop: 42px;\n\n\t\tborder-left-width: 22px;\n\t\tborder-left-color: #000;\n\t}\n\t\t.reveal .controls .navigate-right.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-up {\n\t\tleft: 42px;\n\n\t\tborder-bottom-width: 22px;\n\t\tborder-bottom-color: #000;\n\t}\n\t\t.reveal .controls .navigate-up.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-down {\n\t\tleft: 42px;\n\t\ttop: 74px;\n\n\t\tborder-top-width: 22px;\n\t\tborder-top-color: #000;\n\t}\n\t\t.reveal .controls .navigate-down.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tposition: fixed;\n\tdisplay: none;\n\theight: 3px;\n\twidth: 100%;\n\tbottom: 0;\n\tleft: 0;\n\tz-index: 10;\n\n\tbackground-color: rgba( 0, 0, 0, 0.2 );\n}\n\t.reveal .progress:after {\n\t\tcontent: '';\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\theight: 20px;\n\t\twidth: 100%;\n\t\ttop: -20px;\n\t}\n\t.reveal .progress span {\n\t\tdisplay: block;\n\t\theight: 100%;\n\t\twidth: 0px;\n\n\t\tbackground-color: #000;\n\t\ttransition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n\n.reveal .slide-number {\n\tposition: fixed;\n\tdisplay: block;\n\tright: 8px;\n\tbottom: 8px;\n\tz-index: 31;\n\tfont-family: Helvetica, sans-serif;\n\tfont-size: 12px;\n\tline-height: 1;\n\tcolor: #fff;\n\tbackground-color: rgba( 0, 0, 0, 0.4 );\n\tpadding: 5px;\n}\n\n.reveal .slide-number-delimiter {\n\tmargin: 0 3px;\n}\n\n/*********************************************\n * SLIDES\n *********************************************/\n\n.reveal {\n\tposition: relative;\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n\ttouch-action: none;\n}\n\n.reveal .slides {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tmargin: auto;\n\n\toverflow: visible;\n\tz-index: 1;\n\ttext-align: center;\n\tperspective: 600px;\n\tperspective-origin: 50% 40%;\n}\n\n.reveal .slides>section {\n\t-ms-perspective: 600px;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 100%;\n\tpadding: 20px 0px;\n\n\tz-index: 10;\n\ttransform-style: preserve-3d;\n\ttransition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\ttransform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\tvisibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\topacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n}\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"] .slides section {\n\ttransition-duration: 1200ms;\n}\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n\ttransition-duration: 400ms;\n}\n.reveal .slides section[data-transition-speed=\"slow\"] {\n\ttransition-duration: 1200ms;\n}\n\n.reveal .slides>section.stack {\n\tpadding-top: 0;\n\tpadding-bottom: 0;\n}\n\n.reveal .slides>section.present,\n.reveal .slides>section>section.present {\n\tdisplay: block;\n\tz-index: 11;\n\topacity: 1;\n}\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n\tmin-height: 0 !important;\n}\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides>section.future,\n.reveal .slides>section>section.future,\n.reveal .slides>section.past,\n.reveal .slides>section>section.past {\n\tpointer-events: none;\n}\n\n.reveal.overview .slides>section,\n.reveal.overview .slides>section>section {\n\tpointer-events: auto;\n}\n\n.reveal .slides>section.past,\n.reveal .slides>section.future,\n.reveal .slides>section>section.past,\n.reveal .slides>section>section.future {\n\topacity: 0;\n}\n\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n\n@mixin transition-global($style) {\n\t.reveal .slides section[data-transition=#{$style}],\n\t.reveal.#{$style} .slides section:not([data-transition]) {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-past($style) {\n\t.reveal .slides>section[data-transition=#{$style}].past,\n\t.reveal .slides>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-future($style) {\n\t.reveal .slides>section[data-transition=#{$style}].future,\n\t.reveal .slides>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n@mixin transition-vertical-past($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].past,\n\t.reveal .slides>section>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-vertical-future($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].future,\n\t.reveal .slides>section>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n\n@each $stylename in slide, linear {\n\t.reveal.#{$stylename} section {\n\t\tbackface-visibility: hidden;\n\t}\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate(-150%, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate(150%, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate(0, -150%);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate(0, 150%);\n\t}\n}\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n\n@each $stylename in default, convex {\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n\t}\n}\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n\n@include transition-horizontal-past(concave) {\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n@include transition-horizontal-future(concave) {\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n@include transition-vertical-past(concave) {\n\ttransform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n}\n@include transition-vertical-future(concave) {\n\ttransform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n}\n\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n\n@include transition-global(zoom) {\n\ttransition-timing-function: ease;\n}\n@include transition-horizontal-past(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n@include transition-horizontal-future(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n@include transition-vertical-past(zoom) {\n\ttransform: translate(0, -150%);\n}\n@include transition-vertical-future(zoom) {\n\ttransform: translate(0, 150%);\n}\n\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n\n.reveal.cube .slides {\n\tperspective: 1300px;\n}\n\n.reveal.cube .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbackface-visibility: hidden;\n\tbox-sizing: border-box;\n}\n\t.reveal.center.cube .slides section {\n\t\tmin-height: 0;\n\t}\n\t.reveal.cube .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\tborder-radius: 4px;\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.cube .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\t\ttransform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.cube .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.cube .slides>section.past {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg);\n}\n\n.reveal.cube .slides>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg);\n}\n\n.reveal.cube .slides>section>section.past {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg);\n}\n\n.reveal.cube .slides>section>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg);\n}\n\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n\n.reveal.page .slides {\n\tperspective-origin: 0% 50%;\n\tperspective: 3000px;\n}\n\n.reveal.page .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbox-sizing: border-box;\n}\n\t.reveal.page .slides section.past {\n\t\tz-index: 12;\n\t}\n\t.reveal.page .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.page .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\n\t\t-webkit-transform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.page .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.page .slides>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(-40%, 0, 0) rotateY(-80deg);\n}\n\n.reveal.page .slides>section.future {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n.reveal.page .slides>section>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, -40%, 0) rotateX(80deg);\n}\n\n.reveal.page .slides>section>section.future {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides>section>section:not([data-transition]) {\n\ttransform: none;\n\ttransition: opacity 0.5s;\n}\n\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides>section>section {\n\ttransition: none;\n}\n\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n\n@include transition-global(none) {\n\ttransform: none;\n\ttransition: none;\n}\n\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n\n.reveal .pause-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tbackground: black;\n\tvisibility: hidden;\n\topacity: 0;\n\tz-index: 100;\n\ttransition: all 1s ease;\n}\n.reveal.paused .pause-overlay {\n\tvisibility: visible;\n\topacity: 1;\n}\n\n\n/*********************************************\n * FALLBACK\n *********************************************/\n\n.no-transforms {\n\toverflow-y: auto;\n}\n\n.no-transforms .reveal .slides {\n\tposition: relative;\n\twidth: 80%;\n\theight: auto !important;\n\ttop: 0;\n\tleft: 50%;\n\tmargin: 0;\n\ttext-align: center;\n}\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n\tdisplay: none !important;\n}\n\n.no-transforms .reveal .slides section {\n\tdisplay: block !important;\n\topacity: 1 !important;\n\tposition: relative !important;\n\theight: auto;\n\tmin-height: 0;\n\ttop: 0;\n\tleft: -50%;\n\tmargin: 70px 0;\n\ttransform: none;\n}\n\n.no-transforms .reveal .slides section section {\n\tleft: 0;\n}\n\n.reveal .no-transition,\n.reveal .no-transition * {\n\ttransition: none !important;\n}\n\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n\n.reveal .backgrounds {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tperspective: 600px;\n}\n\t.reveal .slide-background {\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\n\t\tbackground-color: rgba( 0, 0, 0, 0 );\n\t\tbackground-position: 50% 50%;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: cover;\n\n\t\ttransition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\t.reveal .slide-background.stack {\n\t\tdisplay: block;\n\t}\n\n\t.reveal .slide-background.present {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.print-pdf .reveal .slide-background {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\t}\n\n/* Video backgrounds */\n.reveal .slide-background video {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\tmax-width: none;\n\tmax-height: none;\n\ttop: 0;\n\tleft: 0;\n}\n\n/* Immediate transition style */\n.reveal[data-background-transition=none]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=none] {\n\ttransition: none;\n}\n\n/* Slide */\n.reveal[data-background-transition=slide]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=slide] {\n\topacity: 1;\n\tbackface-visibility: hidden;\n}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.past,\n\t.reveal>.backgrounds .slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(-100%, 0);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.future,\n\t.reveal>.backgrounds .slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(100%, 0);\n\t}\n\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past,\n\t.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(0, -100%);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future,\n\t.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(0, 100%);\n\t}\n\n\n/* Convex */\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n}\n\n\n/* Concave */\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n}\n\n/* Zoom */\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=zoom] {\n\ttransition-timing-function: ease;\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"]>.backgrounds .slide-background {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"]>.backgrounds .slide-background {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n\n.reveal.overview {\n\tperspective-origin: 50% 50%;\n\tperspective: 700px;\n\n\t.slides section {\n\t\theight: 700px;\n\t\topacity: 1 !important;\n\t\toverflow: hidden;\n\t\tvisibility: visible !important;\n\t\tcursor: pointer;\n\t\tbox-sizing: border-box;\n\t}\n\t.slides section:hover,\n\t.slides section.present {\n\t\toutline: 10px solid rgba(150,150,150,0.4);\n\t\toutline-offset: 10px;\n\t}\n\t.slides section .fragment {\n\t\topacity: 1;\n\t\ttransition: none;\n\t}\n\t.slides section:after,\n\t.slides section:before {\n\t\tdisplay: none !important;\n\t}\n\t.slides>section.stack {\n\t\tpadding: 0;\n\t\ttop: 0 !important;\n\t\tbackground: none;\n\t\toutline: none;\n\t\toverflow: visible;\n\t}\n\n\t.backgrounds {\n\t\tperspective: inherit;\n\t}\n\n\t.backgrounds .slide-background {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\n\t\t// This can't be applied to the slide itself in Safari\n\t\toutline: 10px solid rgba(150,150,150,0.1);\n\t\toutline-offset: 10px;\n\t}\n}\n\n// Disable transitions transitions while we're activating\n// or deactivating the overview mode.\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n\ttransition: none;\n}\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n\ttransition: none;\n}\n\n.reveal.overview-animated .slides {\n\ttransition: transform 0.4s ease;\n}\n\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n\tdirection: rtl;\n\tfont-family: sans-serif;\n}\n\n.reveal.rtl pre,\n.reveal.rtl code {\n\tdirection: ltr;\n}\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n\ttext-align: right;\n}\n\n.reveal.rtl .progress span {\n\tfloat: right\n}\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n\n.reveal.has-parallax-background .backgrounds {\n\ttransition: all 0.8s ease;\n}\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n\ttransition-duration: 400ms;\n}\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n\n.reveal .overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1000;\n\tbackground: rgba( 0, 0, 0, 0.9 );\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all 0.3s ease;\n}\n\t.reveal .overlay.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay .spinner {\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\ttop: 50%;\n\t\tleft: 50%;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tmargin: -16px 0 0 -16px;\n\t\tz-index: 10;\n\t\tbackground-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n\n\t\tvisibility: visible;\n\t\topacity: 0.6;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay header {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\twidth: 100%;\n\t\theight: 40px;\n\t\tz-index: 2;\n\t\tborder-bottom: 1px solid #222;\n\t}\n\t\t.reveal .overlay header a {\n\t\t\tdisplay: inline-block;\n\t\t\twidth: 40px;\n\t\t\theight: 40px;\n\t\t\tpadding: 0 10px;\n\t\t\tfloat: right;\n\t\t\topacity: 0.6;\n\n\t\t\tbox-sizing: border-box;\n\t\t}\n\t\t\t.reveal .overlay header a:hover {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t\t.reveal .overlay header a .icon {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: 20px;\n\t\t\t\theight: 20px;\n\n\t\t\t\tbackground-position: 50% 50%;\n\t\t\t\tbackground-size: 100%;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t}\n\t\t\t.reveal .overlay header a.close .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC);\n\t\t\t}\n\t\t\t.reveal .overlay header a.external .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==);\n\t\t\t}\n\n\t.reveal .overlay .viewport {\n\t\tposition: absolute;\n\t\ttop: 40px;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\n\t.reveal .overlay.overlay-preview .viewport iframe {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tmax-width: 100%;\n\t\tmax-height: 100%;\n\t\tborder: 0;\n\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .viewport iframe {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .spinner {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(0.2);\n\t}\n\n\t.reveal .overlay.overlay-help .viewport {\n\t\toverflow: auto;\n\t\tcolor: #fff;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner {\n\t\twidth: 600px;\n\t\tmargin: 0 auto;\n\t\tpadding: 60px;\n\t\ttext-align: center;\n\t\tletter-spacing: normal;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n\t\tfont-size: 20px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table {\n\t\tborder: 1px solid #fff;\n\t\tborder-collapse: collapse;\n\t\tfont-size: 14px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n\t\twidth: 200px;\n\t\tpadding: 10px;\n\t\tborder: 1px solid #fff;\n\t\tvertical-align: middle;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n\t\tpadding-top: 20px;\n\t\tpadding-bottom: 20px;\n\t}\n\n\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n\n.reveal .playback {\n\tposition: fixed;\n\tleft: 15px;\n\tbottom: 20px;\n\tz-index: 30;\n\tcursor: pointer;\n\ttransition: all 400ms ease;\n}\n\n.reveal.overview .playback {\n\topacity: 0;\n\tvisibility: hidden;\n}\n\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n\n.reveal .roll {\n\tdisplay: inline-block;\n\tline-height: 1.2;\n\toverflow: hidden;\n\n\tvertical-align: top;\n\tperspective: 400px;\n\tperspective-origin: 50% 50%;\n}\n\t.reveal .roll:hover {\n\t\tbackground: none;\n\t\ttext-shadow: none;\n\t}\n.reveal .roll span {\n\tdisplay: block;\n\tposition: relative;\n\tpadding: 0 2px;\n\n\tpointer-events: none;\n\ttransition: all 400ms ease;\n\ttransform-origin: 50% 0%;\n\ttransform-style: preserve-3d;\n\tbackface-visibility: hidden;\n}\n\t.reveal .roll:hover span {\n\t    background: rgba(0,0,0,0.5);\n\t    transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );\n\t}\n.reveal .roll span:after {\n\tcontent: attr(data-title);\n\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 0;\n\ttop: 0;\n\tpadding: 0 2px;\n\tbackface-visibility: hidden;\n\ttransform-origin: 50% 0%;\n\ttransform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );\n}\n\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n\n// Hide on-page notes\n.reveal aside.notes {\n\tdisplay: none;\n}\n\n// An interface element that can optionally be used to show the\n// speaker notes to all viewers, on top of the presentation\n.reveal .speaker-notes {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 70%;\n\tmax-height: 15%;\n\tleft: 15%;\n\tbottom: 26px;\n\tpadding: 10px;\n\tz-index: 1;\n\tfont-size: 18px;\n\tline-height: 1.4;\n\tcolor: #fff;\n\tbackground-color: rgba(0,0,0,0.5);\n\toverflow: auto;\n\tbox-sizing: border-box;\n\ttext-align: left;\n\tfont-family: Helvetica, sans-serif;\n\t-webkit-overflow-scrolling: touch;\n}\n\n.reveal .speaker-notes.visible:not(:empty) {\n\tdisplay: block;\n}\n\n@media screen and (max-width: 1024px) {\n\t.reveal .speaker-notes {\n\t\tfont-size: 14px;\n\t}\n}\n\n@media screen and (max-width: 600px) {\n\t.reveal .speaker-notes {\n\t\twidth: 90%;\n\t\tleft: 5%;\n\t}\n}\n\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n\tbackface-visibility: visible !important;\n}\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n\topacity: 0;\n}\n\n.zoomed .reveal .roll span {\n\tbackground: none;\n}\n\n.zoomed .reveal .roll span:after {\n\tvisibility: hidden;\n}\n\n\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/README.md",
    "content": "## Dependencies\n\nThemes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup\n\n## Creating a Theme\n\nTo create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`.\n\nEach theme file does four things in the following order:\n\n1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**\nShared utility functions.\n\n2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**\nDeclares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.\n\n3. **Override**\nThis is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.\n\n4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**\nThe template theme file which will generate final CSS output based on the currently defined variables.\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/beige.css",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #f7f2d3;\n  background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));\n  background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background-color: #f7f3de; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: rgba(79, 64, 28, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #8b743d;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #c0a86e;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #564826; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #8b743d;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #8b743d; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #8b743d; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #8b743d; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #8b743d; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #c0a86e; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #c0a86e; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #c0a86e; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #c0a86e; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #8b743d;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/black.css",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {\n  color: #222; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: black; }\n\n::selection {\n  color: #fff;\n  background: #bee4fd;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #ff6a00;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #42affa;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8dcffc;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #068de9; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #fff;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #42affa;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #42affa; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #42affa; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #42affa; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #42affa; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8dcffc; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8dcffc; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8dcffc; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8dcffc; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #42affa;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/blood.css",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: Ubuntu, \"sans-serif\";\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #a23;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: Ubuntu, \"sans-serif\";\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 2px 2px 2px #222;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #a23;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #dd5566;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #6a1520; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #a23;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #a23; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #a23; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #a23; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #a23; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #dd5566; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #dd5566; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #dd5566; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #dd5566; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #a23;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal p {\n  font-weight: 300;\n  text-shadow: 1px 1px #222; }\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  font-weight: 700; }\n\n.reveal p code {\n  background-color: #23241f;\n  display: inline-block;\n  border-radius: 7px; }\n\n.reveal small code {\n  vertical-align: baseline; }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/league.css",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #1c1e20;\n  background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));\n  background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background-color: #2b2b2b; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #FF5E99;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #13DAEC;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #71e9f4;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #0d99a5; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #13DAEC;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #13DAEC; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #13DAEC; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #13DAEC; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #13DAEC; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #71e9f4; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #71e9f4; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #71e9f4; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #71e9f4; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #13DAEC;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/moon.css",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #002b36;\n  background-color: #002b36; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #93a1a1; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee8d5;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #93a1a1;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/night.css",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #111;\n  background-color: #111; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 30px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #e7ad52;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"Montserrat\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.03em;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #e7ad52;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #f3d7ac;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #d08a1d; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #e7ad52;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #e7ad52; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #e7ad52; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #e7ad52; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #e7ad52; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #f3d7ac; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #f3d7ac; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #f3d7ac; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #f3d7ac; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #e7ad52;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/serif.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #F0F1EB;\n  background-color: #F0F1EB; }\n\n.reveal {\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: #26351C;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #383D3D;\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #51483D;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8b7c69;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #25211c; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #51483D;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #51483D; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #51483D; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #51483D; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #51483D; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8b7c69; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8b7c69; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8b7c69; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8b7c69; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #51483D;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/simple.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: rgba(0, 0, 0, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #000;\n  font-family: \"News Cycle\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #00008B;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #0000f1;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #00003f; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #00008B;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #00008B; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #00008B; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #00008B; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #00008B; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #0000f1; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #0000f1; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #0000f1; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #0000f1; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #00008B;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/sky.css",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #add9e4;\n  background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));\n  background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background-color: #f7fbfc; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: #134674;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"Quicksand\", sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.08em;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #3b759e;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #74a7cb;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #264c66; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #3b759e;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #3b759e; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #3b759e; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #3b759e; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #3b759e; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #74a7cb; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #74a7cb; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #74a7cb; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #74a7cb; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #3b759e;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/solarized.css",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fdf6e3;\n  background-color: #fdf6e3; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #657b83; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #586e75;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #657b83;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/beige.scss",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: #333;\n$headingColor: #333;\n$headingTextShadow: none;\n$backgroundColor: #f7f3de;\n$linkColor: #8b743d;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(79, 64, 28, 0.99);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/black.scss",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #222;\n\n$mainColor: #fff;\n$headingColor: #fff;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #42affa;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-light-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #222;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/blood.scss",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n\n // Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n// Include theme-specific fonts\n\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n\n// Colors used in the theme\n$blood: #a23;\n$coal: #222;\n$codeBackground: #23241f;\n\n$backgroundColor: $coal;\n\n// Main text\n$mainFont: Ubuntu, 'sans-serif';\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Headings\n$headingFont: Ubuntu, 'sans-serif';\n$headingTextShadow: 2px 2px 2px $coal;\n\n// h1 shadow, borrowed humbly from \n// (c) Default theme by Hakim El Hattab\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Links\n$linkColor: $blood;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: $blood;\n$selectionColor: #fff;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n\n// some overrides after theme template import\n\n.reveal p {\n    font-weight: 300;\n    text-shadow: 1px 1px $coal;\n}\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n    font-weight: 700;\n}\n\n.reveal p code {\n    background-color: $codeBackground;\n    display: inline-block;\n    border-radius: 7px;\n}\n\n.reveal small code {\n    vertical-align: baseline;\n}"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/league.scss",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n// Override theme settings (see ../template/settings.scss)\n$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/moon.scss",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base1;\n$headingColor: $base2;\n$headingTextShadow: none;\n$backgroundColor: $base03;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/night.scss",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #111;\n\n$mainFont: 'Open Sans', sans-serif;\n$linkColor: #e7ad52;\n$linkColorHover: lighten( $linkColor, 20% );\n$headingFont: 'Montserrat', Impact, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: -0.03em;\n$headingTextTransform: none;\n$selectionBackgroundColor: #e7ad52;\n$mainFontSize: 30px;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/serif.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$mainColor: #000;\n$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$headingColor: #383D3D;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #F0F1EB;\n$linkColor: #51483D;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #26351C;\n\n.reveal a {\n  line-height: 1.3em;\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/simple.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Lato', sans-serif;\n$mainColor: #000;\n$headingFont: 'News Cycle', Impact, sans-serif;\n$headingColor: #000;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #fff;\n$linkColor: #00008B;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(0, 0, 0, 0.99);\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/sky.scss",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Open Sans', sans-serif;\n$mainColor: #333;\n$headingFont: 'Quicksand', sans-serif;\n$headingColor: #333;\n$headingLetterSpacing: -0.08em;\n$headingTextShadow: none;\n$backgroundColor: #f7fbfc;\n$linkColor: #3b759e;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #134674;\n\n// Fix links so they are not cut off\n.reveal a {\n\tline-height: 1.3em;\n}\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( #add9e4, #f7fbfc );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/solarized.scss",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base00;\n$headingColor: $base01;\n$headingTextShadow: none;\n$backgroundColor: $base3;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n// Background generator\n// @mixin bodyBackground() {\n// \t@include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );\n// }\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/source/white.scss",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #fff;\n\n$mainColor: #222;\n$headingColor: #222;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #2a76dd;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-dark-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #fff;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/cppnow-2017/css/theme/template/mixins.scss",
    "content": "@mixin vertical-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( top, $top 0%, $bottom 100% );\n}\n\n@mixin horizontal-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( left, $top 0%, $bottom 100% );\n}\n\n@mixin radial-gradient( $outer, $inner, $type: circle ) {\n\tbackground: $outer;\n\tbackground: -moz-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );\n\tbackground: -webkit-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -o-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -ms-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n}"
  },
  {
    "path": "doc/cppnow-2017/css/theme/template/settings.scss",
    "content": "// Base settings for all themes that can optionally be\n// overridden by the super-theme\n\n// Background of the presentation\n$backgroundColor: #2b2b2b;\n\n// Primary/body text\n$mainFont: 'Lato', sans-serif;\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Vertical spacing between blocks of text\n$blockMargin: 20px;\n\n// Headings\n$headingMargin: 0 0 $blockMargin 0;\n$headingFont: 'League Gothic', Impact, sans-serif;\n$headingColor: #eee;\n$headingLineHeight: 1.2;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingTextShadow: none;\n$headingFontWeight: normal;\n$heading1TextShadow: $headingTextShadow;\n\n$heading1Size: 3.77em;\n$heading2Size: 2.11em;\n$heading3Size: 1.55em;\n$heading4Size: 1.00em;\n\n// Links and actions\n$linkColor: #13DAEC;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: #FF5E99;\n$selectionColor: #fff;\n\n// Generates the presentation background, can be overridden\n// to return a background image or gradient\n@mixin bodyBackground() {\n\tbackground: $backgroundColor;\n}"
  },
  {
    "path": "doc/cppnow-2017/css/theme/template/theme.scss",
    "content": "// Base theme template for reveal.js\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nbody {\n\t@include bodyBackground();\n\tbackground-color: $backgroundColor;\n}\n\n.reveal {\n\tfont-family: $mainFont;\n\tfont-size: $mainFontSize;\n\tfont-weight: normal;\n\tcolor: $mainColor;\n}\n\n::selection {\n\tcolor: $selectionColor;\n\tbackground: $selectionBackgroundColor;\n\ttext-shadow: none;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tline-height: 1.3;\n\tfont-weight: inherit;\n}\n\n/*********************************************\n * HEADERS\n *********************************************/\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n\tmargin: $headingMargin;\n\tcolor: $headingColor;\n\n\tfont-family: $headingFont;\n\tfont-weight: $headingFontWeight;\n\tline-height: $headingLineHeight;\n\tletter-spacing: $headingLetterSpacing;\n\n\ttext-transform: $headingTextTransform;\n\ttext-shadow: $headingTextShadow;\n\n\tword-wrap: break-word;\n}\n\n.reveal h1 {font-size: $heading1Size; }\n.reveal h2 {font-size: $heading2Size; }\n.reveal h3 {font-size: $heading3Size; }\n.reveal h4 {font-size: $heading4Size; }\n\n.reveal h1 {\n\ttext-shadow: $heading1TextShadow;\n}\n\n\n/*********************************************\n * OTHER\n *********************************************/\n\n.reveal p {\n\tmargin: $blockMargin 0;\n\tline-height: 1.3;\n}\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n\tmax-width: 95%;\n\tmax-height: 95%;\n}\n.reveal strong,\n.reveal b {\n\tfont-weight: bold;\n}\n\n.reveal em {\n\tfont-style: italic;\n}\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n\tdisplay: inline-block;\n\n\ttext-align: left;\n\tmargin: 0 0 0 1em;\n}\n\n.reveal ol {\n\tlist-style-type: decimal;\n}\n\n.reveal ul {\n\tlist-style-type: disc;\n}\n\n.reveal ul ul {\n\tlist-style-type: square;\n}\n\n.reveal ul ul ul {\n\tlist-style-type: circle;\n}\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n\tdisplay: block;\n\tmargin-left: 40px;\n}\n\n.reveal dt {\n\tfont-weight: bold;\n}\n\n.reveal dd {\n\tmargin-left: 40px;\n}\n\n.reveal q,\n.reveal blockquote {\n\tquotes: none;\n}\n\n.reveal blockquote {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 70%;\n\tmargin: $blockMargin auto;\n\tpadding: 5px;\n\n\tfont-style: italic;\n\tbackground: rgba(255, 255, 255, 0.05);\n\tbox-shadow: 0px 0px 2px rgba(0,0,0,0.2);\n}\n\t.reveal blockquote p:first-child,\n\t.reveal blockquote p:last-child {\n\t\tdisplay: inline-block;\n\t}\n\n.reveal q {\n\tfont-style: italic;\n}\n\n.reveal pre {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 90%;\n\tmargin: $blockMargin auto;\n\n\ttext-align: left;\n\tfont-size: 0.55em;\n\tfont-family: monospace;\n\tline-height: 1.2em;\n\n\tword-wrap: break-word;\n\n\tbox-shadow: 0px 0px 6px rgba(0,0,0,0.3);\n}\n.reveal code {\n\tfont-family: monospace;\n}\n\n.reveal pre code {\n\tdisplay: block;\n\tpadding: 5px;\n\toverflow: auto;\n\tmax-height: 400px;\n\tword-wrap: normal;\n}\n\n.reveal table {\n\tmargin: auto;\n\tborder-collapse: collapse;\n\tborder-spacing: 0;\n}\n\n.reveal table th {\n\tfont-weight: bold;\n}\n\n.reveal table th,\n.reveal table td {\n\ttext-align: left;\n\tpadding: 0.2em 0.5em 0.2em 0.5em;\n\tborder-bottom: 1px solid;\n}\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n\ttext-align: center;\n}\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n\ttext-align: right;\n}\n\n.reveal table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.reveal sup {\n\tvertical-align: super;\n}\n.reveal sub {\n\tvertical-align: sub;\n}\n\n.reveal small {\n\tdisplay: inline-block;\n\tfont-size: 0.6em;\n\tline-height: 1.2em;\n\tvertical-align: top;\n}\n\n.reveal small * {\n\tvertical-align: top;\n}\n\n\n/*********************************************\n * LINKS\n *********************************************/\n\n.reveal a {\n\tcolor: $linkColor;\n\ttext-decoration: none;\n\n\t-webkit-transition: color .15s ease;\n\t   -moz-transition: color .15s ease;\n\t        transition: color .15s ease;\n}\n\t.reveal a:hover {\n\t\tcolor: $linkColorHover;\n\n\t\ttext-shadow: none;\n\t\tborder: none;\n\t}\n\n.reveal .roll span:after {\n\tcolor: #fff;\n\tbackground: darken( $linkColor, 15% );\n}\n\n\n/*********************************************\n * IMAGES\n *********************************************/\n\n.reveal section img {\n\tmargin: 15px 0px;\n\tbackground: rgba(255,255,255,0.12);\n\tborder: 4px solid $mainColor;\n\n\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.15);\n}\n\n\t.reveal section img.plain {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal a img {\n\t\t-webkit-transition: all .15s linear;\n\t\t   -moz-transition: all .15s linear;\n\t\t        transition: all .15s linear;\n\t}\n\n\t.reveal a:hover img {\n\t\tbackground: rgba(255,255,255,0.2);\n\t\tborder-color: $linkColor;\n\n\t\tbox-shadow: 0 0 20px rgba(0, 0, 0, 0.55);\n\t}\n\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n\tborder-right-color: $linkColor;\n}\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n\tborder-left-color: $linkColor;\n}\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n\tborder-bottom-color: $linkColor;\n}\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n\tborder-top-color: $linkColor;\n}\n\n.reveal .controls .navigate-left.enabled:hover {\n\tborder-right-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-right.enabled:hover {\n\tborder-left-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-up.enabled:hover {\n\tborder-bottom-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-down.enabled:hover {\n\tborder-top-color: $linkColorHover;\n}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tbackground: rgba(0,0,0,0.2);\n}\n\t.reveal .progress span {\n\t\tbackground: $linkColor;\n\n\t\t-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t   -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t        transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\n"
  },
  {
    "path": "doc/cppnow-2017/css/theme/white.css",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {\n  color: #fff; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: #222; }\n\n::selection {\n  color: #fff;\n  background: #98bdef;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #222;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #2a76dd;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #6ca0e8;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a53a1; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #222;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #2a76dd;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #2a76dd; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #2a76dd; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #2a76dd; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #2a76dd; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #6ca0e8; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #6ca0e8; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #6ca0e8; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #6ca0e8; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #2a76dd;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/cppnow-2017/example/god_object.cpp",
    "content": "#include <fstream>\n#include <iostream>\n\nint main() {\n  auto value = 0;\n  {\n    std::fstream file{\"input.txt\"};\n    file >> value;\n  }\n  std::cout << value << '\\n';\n}\n"
  },
  {
    "path": "doc/cppnow-2017/example/static_polymorphism.cpp",
    "content": "#include <cassert>\n#include <fstream>\n#include <iostream>\n\ntemplate <class T>\nstruct Reader {\n  int read() { return static_cast<T*>(this)->read_impl(); }\n  int read_impl() { return 0; }\n};\n\nstruct FileReader : Reader<FileReader> {\n  explicit FileReader(const std::string& str) : file(str) { assert(file.good()); }\n\n  int read_impl() {\n    auto value = 0;\n    file >> value;\n    return value;\n  }\n\n  std::fstream file;\n};\n\ntemplate <class T>\nstruct Viewer {\n  void show(int value) { static_cast<T*>(this)->show_impl(value); }\n  void show_impl(int) {}\n};\n\nstruct ConsoleViewer : Viewer<ConsoleViewer> {\n  void show_impl(int value) { std::cout << value << std::endl; }\n};\n\ntemplate <class TReader, class TViewer>\nstruct App {\n  TReader& reader;\n  TViewer& viewer;\n\n  App(TReader& reader, TViewer& viewer) : reader(reader), viewer(viewer) {}\n\n  void run() { viewer.show(reader.read()); }\n};\n\nint main() {\n  FileReader reader{\"input.txt\"};\n  ConsoleViewer viewer{};\n  App<FileReader, ConsoleViewer>{reader, viewer}.run();\n  // App{reader, viewer}.run();\n}\n"
  },
  {
    "path": "doc/cppnow-2017/example/type_erasure.cpp",
    "content": "#include <boost/type_erasure/any.hpp>\n#include <boost/type_erasure/builtin.hpp>\n#include <boost/type_erasure/free.hpp>\n#include <boost/type_erasure/member.hpp>\n#include <cassert>\n#include <fstream>\n#include <iostream>\n\nBOOST_TYPE_ERASURE_MEMBER((has_read), read, 0)\nBOOST_TYPE_ERASURE_MEMBER((has_show), show, 1)\n\nusing Reader = boost::mpl::vector<has_read<int()>, boost::type_erasure::copy_constructible<>>;\nusing Viewer = boost::mpl::vector<has_show<void(int)>, boost::type_erasure::copy_constructible<>>;\n\nclass FileReader {\n  std::fstream file;\n\n public:\n  explicit FileReader(const std::string& str) : file(path) { assert(file.good()); }\n\n  int read() {\n    auto value = 12;\n    file >> value;\n    return value;\n  }\n};\n\nclass ConsoleViewer {\n public:\n  void show(int value) { std::cout << value << std::endl; }\n};\n\nclass App {\n  boost::type_erasure::any<Reader> reader;\n  boost::type_erasure::any<Viewer> viewer;\n\n public:\n  App(boost::type_erasure::any<Reader> reader, boost::type_erasure::any<Viewer> viewer) : reader(reader), viewer(viewer) {}\n\n  void run() { viewer.show(reader.read()); }\n};\n\nint main() {\n  FileReader reader{\"input.txt\"};\n  ConsoleViewer viewer{};\n  App{reader, viewer}.run();\n}\n"
  },
  {
    "path": "doc/cppnow-2017/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>Concepts driven design with dependency injection</title>\n\n\t\t<meta name=\"description\" content=\"Concepts driven design with dependency injection\">\n\t\t<meta name=\"author\" content=\"Kris Jusiak\">\n\n\t\t<meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n\t\t<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\">\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui\">\n\n\t\t<link rel=\"stylesheet\" href=\"css/reveal.css\">\n        <link rel=\"stylesheet\" href=\"css/theme/league.css\" id=\"theme\">\n\n            <!-- Code syntax highlighting -->\n        <link rel=\"stylesheet\" href=\"lib/css/zenburn.css\">\n\n\t\t<!-- Printing and PDF exports -->\n\t\t<script>\n\t\t\tvar link = document.createElement( 'link' );\n\t\t\tlink.rel = 'stylesheet';\n\t\t\tlink.type = 'text/css';\n\t\t\tlink.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';\n\t\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( link );\n\t\t</script>\n\n\t\t<!--[if lt IE 9]>\n\t\t<script src=\"lib/js/html5shiv.js\"></script>\n\t\t<![endif]-->\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\t\t\t<div class=\"slides\">\n\n          <section data-markdown=\"\"\n                   data-separator=\"^====+$\"\n                   data-separator-vertical=\"^----+$\"\n                   data-notes=\"^Note:\">\n\t\t\t\t\t<script type=\"text/template\">\n#### C++ Now 2017\n# Concepts driven design with dependency injection\n\nKris Jusiak, Quantlab Financial\n\n---\n\n[kris@jusiak.net](mailto:kris@jusiak.net) | [@krisjusiak](https://twitter.com/krisjusiak) | [linkedin.com/in/kris-jusiak](https://www.linkedin.com/in/kris-jusiak)\n\n==============================================================================\n\n## Concepts driven design - Goals / Dream\n\n| | |\n|-|-|\n| Expressiveness | Type constraints for better error messages (Design by Introspection) |\n| Loosely coupeled design | Inject all the things! (Policy Design) |\n| Performance | Static dispatch by default <br />(based on concepts) |\n| Flexiblity | Dynamic dispatch using type erasure (based on the same concepts) |\n| Testability | Automatic mocks injection <br />(based on the same concepts) |\n\n----\n\n## Type constraints - [VC](https://github.com/boost-experimental/vc)\n\n#### C++14/17 Type constraints (~Concepts-Lite predicates)\n\n```cpp\ntemplate<class T>               | struct Foo {\nconstexpr auto Fooable =        |  int foo();\n  $requires(T)(auto&& t) (      | };\n    int( t.foo() )              |\n  );                            | template<class T, REQUIRES(Fooable<T>)>\n                                | void foo(T&&);\n```\n<!-- .element: style=\"margin-left:0%; width:100%\" -->\n\n#### Non-templated constraints (optional interfaces)\n\n```cpp\nstruct Readable {               | // Readable Implementation\n template<class T>              |\n  auto operator()() const {     | struct Reader { // no inheritance\n    MoveConstructible<T> &&    <|> Reader(Reader&&) = default; // ✔\n    MoveAssignable<T> &&       <|> Reader& operator=(Reader&&) = default; // ✔\n    Callable<T, int()>($(read))<|> int read(); // ✔\n  };                     ^      | };\n};               ________/      |\n                /               | static_assert(\n  /* Lambda expression */       |  is_satisfied_by<Readable, Reader>{}\n  /* exposing a read() call */  | );\n```\n<!-- .element: style=\"margin-left:0%; width:100%\" -->\n\n----\n\n## Inject all the things! - [[Boost].DI](https://github.com/boost-experimental/vc)\n\n#### Policy design\n```cpp\ntemplate<class T = class TException> // `TException` is satisifed by any type\nstruct ThrowExceptionPolicy {        //  It's like auto in Concepts-lite\n  void onError(std::string_view msg) { throw T{msg}; }\n};\n```\n<!-- .element: style=\"margin-left:0%; width:100%\" -->\n\n```cpp\ntemplate<class TPolicy = class TErrorPolicy>\nclass App : TPolicy {\npublic:\n  void run() {\n    if (...) { TPolicy::onError(\"error!\"); }\n  }\n};\n```\n<!-- .element: style=\"margin-left:0%; width:100%\" -->\n\n```cpp\nint main() {\n  const auto injector = di::make_injector(                 // wiring\n   di::bind<class TException>.to<std::runtime_error>(),    // concept->type\n   di::bind<class TErrorPolicy>.to<ThrowExceptionPolicy>() // concept->template\n  );\n  di::make<App>(injector).run(); // App is a template!\n}\n```\n<!-- .element: style=\"margin-left:0%; width:100%\" -->\n\n----\n\n## [DI](https://github.com/boost-experimental/vc) - 2-Phase resolving (concepts / ctors) \n\n```cpp\ntemplate<class TReader = Readable, // typename = concept\n         class TPrinter = Printable>\nclass App {\n  TReader reader;\n  TPrinter printer;\n\npublic:\n  App(TReader reader, TPrinter printer) // constructor\n   : reader(reader), printer(printer)   // parameters deduction\n  { }\n\n  void run() { printer.print(reader.read()); }\n};\n```\n\n#### Concepts based injection (compile time wiring)\n```cpp\nint main() {\n const auto injector = di::make_injector(\n   di::bind<Readable>.to<FileReader>(),     // concept -> type\n   di::bind<Printable>.to<ConsolePrinter>() // concepts checking\n );                                         // at wiring!\n di::make<App>(injector).run(); // preallocates shared dependencies\n```\n\n----\n\n## type_erasure for dynamic dispatch - [VC](https://github.com/boost-experimental/vc)\n\n```cpp\ntemplate<class TReader = Readable> // type = concept\nclass App {\n  TReader reader;\n  any<Printable> printer; // type erasure based on the same concept\n                          // as concepts example\npublic:\n  App(TReader reader, any<Printable> printer) // 100% value semantics\n    : reader(reader), printer(printer)\n  { }\n\n  void run() { printer.print(reader.read()); }\n};\n```\n\n#### Dynamic bindings using virtual concepts\n```cpp\nconst auto config = [](std::string_view printer) {\n  return di::make_injector(\n    di::bind<Readable>.to<FileReader>(),\n    di::bind<Printable>([&](auto&& _) {\n      return printer == \"QT\" ?\n        _.to<QtPrinter>() : _.to<ConsolePrinter>();\n    })\n  );\n};\n```\n\n----\n\n## Automatic / concepts based / mocks injection - [GUnit.GMock](https://github.com/cpp-testing/gunit)\n\n```cpp\n\"should print read text\"_test = [] {\n constexpr auto value = 42;\n auto [app, mocks] = testing::make<App>(); // creates System Under Test\n                                           // and Mocks!\n\n InSequence sequence;\n {\n   EXPECT_CALL(mocks<Readable>(), read()).WillOnce(Return(value));\n   EXPECT_CALL(mocks<Printable>(), print(value));\n }\n\n app.run();\n};\n```\n#### It works with concepts/type_erasure and interfaces!\n\n==============================================================================\n\n## Questions?\n\n[(SG8) Concepts lite](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3580.pdf) |\n[Virtual Concepts](https://github.com/andyprowl/virtual-concepts/blob/master/draft/Dynamic%20Generic%20Programming%20with%20Virtual%20Concepts.pdf) |\n[(SG7) Static reflection](www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0194r0.pdf)\n\n| | | |\n|-|-|-|\n| Dependency Injection |[Boost].DI  | https://github.com/boost-experimental/di |\n| Virtual Concepts     | VC         | https://github.com/boost-experimental/vc |\n| Mocking              | GUnit      | https://github.com/cpp-testing/GUnit |\n\n---\n\n[kris@jusiak.net](mailto:kris@jusiak.net) | [@krisjusiak](https://twitter.com/krisjusiak) | [linkedin.com/in/kris-jusiak](https://www.linkedin.com/in/kris-jusiak)\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"lib/js/head.min.js\"></script>\n\t\t<script src=\"js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available at:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\n        // Display controls in the bottom right corner\n        controls: true,\n\n        // Display a presentation progress bar\n        progress: true,\n\n        // Display the page number of the current slide\n        slideNumber: true,\n\n        // Push each slide change to the browser history\n        history: true,\n\n        // Enable keyboard shortcuts for navigation\n        keyboard: true,\n\n        // Enable the slide overview mode\n        overview: true,\n\n        // Vertical centering of slides\n        center: true,\n\n        // Enables touch navigation on devices with touch input\n        touch: true,\n\n        // Loop the presentation\n        loop: false,\n\n        // Change the presentation direction to be RTL\n        rtl: false,\n\n        // Turns fragments on and off globally\n        fragments: false,\n\n        // Flags if the presentation is running in an embedded mode,\n        // i.e. contained within a limited portion of the screen\n        embedded: false,\n\n        // Flags if we should show a help overlay when the questionmark\n        // key is pressed\n        help: true,\n\n        // Flags if speaker notes should be visible to all viewers\n        showNotes: false,\n\n        // Number of milliseconds between automatically proceeding to the\n        // next slide, disabled when set to 0, this value can be overwritten\n        // by using a data-autoslide attribute on your slides\n        autoSlide: 0,\n\n        // Stop auto-sliding after user input\n        autoSlideStoppable: true,\n\n        // Enable slide navigation via mouse wheel\n        mouseWheel: true,\n\n        // Hides the address bar on mobile devices\n        hideAddressBar: true,\n\n        // Opens links in an iframe preview overlay\n        previewLinks: false,\n\n        // Transition style\n        transition: 'convex', // none/fade/slide/convex/concave/zoom\n\n        // Transition speed\n        transitionSpeed: 'default', // default/fast/slow\n\n        // Transition style for full page slide backgrounds\n        backgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n        // Number of slides away from the current that are visible\n        viewDistance: 3,\n\n        // Parallax background image\n        parallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n        // Parallax background size\n        parallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n        // Number of pixels to move the parallax background per slide\n        // - Calculated automatically unless specified\n        // - Set to 0 to disable movement along an axis\n        parallaxBackgroundHorizontal: null,\n        parallaxBackgroundVertical: null,\n\n\t\t\t\t// Optional reveal.js plugins\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\t\t\t\t\t{ src: 'plugin/notes/notes.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\t\t</script>\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/js/reveal.js",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n(function( root, factory ) {\n\tif( typeof define === 'function' && define.amd ) {\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine( function() {\n\t\t\troot.Reveal = factory();\n\t\t\treturn root.Reveal;\n\t\t} );\n\t} else if( typeof exports === 'object' ) {\n\t\t// Node. Does not work with strict CommonJS.\n\t\tmodule.exports = factory();\n\t} else {\n\t\t// Browser globals.\n\t\troot.Reveal = factory();\n\t}\n}( this, function() {\n\n\t'use strict';\n\n\tvar Reveal;\n\n\tvar SLIDES_SELECTOR = '.slides section',\n\t\tHORIZONTAL_SLIDES_SELECTOR = '.slides>section',\n\t\tVERTICAL_SLIDES_SELECTOR = '.slides>section.present>section',\n\t\tHOME_SLIDE_SELECTOR = '.slides>section:first-of-type',\n\n\t\t// Configuration defaults, can be overridden at initialization time\n\t\tconfig = {\n\n\t\t\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t\t\t// when the presentation is scaled to fit different resolutions\n\t\t\twidth: 960,\n\t\t\theight: 700,\n\n\t\t\t// Factor of the display size that should remain empty around the content\n\t\t\tmargin: 0.1,\n\n\t\t\t// Bounds for smallest/largest possible scale to apply to content\n\t\t\tminScale: 0.2,\n\t\t\tmaxScale: 1.5,\n\n\t\t\t// Display controls in the bottom right corner\n\t\t\tcontrols: true,\n\n\t\t\t// Display a presentation progress bar\n\t\t\tprogress: true,\n\n\t\t\t// Display the page number of the current slide\n\t\t\tslideNumber: false,\n\n\t\t\t// Push each slide change to the browser history\n\t\t\thistory: false,\n\n\t\t\t// Enable keyboard shortcuts for navigation\n\t\t\tkeyboard: true,\n\n\t\t\t// Optional function that blocks keyboard events when retuning false\n\t\t\tkeyboardCondition: null,\n\n\t\t\t// Enable the slide overview mode\n\t\t\toverview: true,\n\n\t\t\t// Vertical centering of slides\n\t\t\tcenter: true,\n\n\t\t\t// Enables touch navigation on devices with touch input\n\t\t\ttouch: true,\n\n\t\t\t// Loop the presentation\n\t\t\tloop: false,\n\n\t\t\t// Change the presentation direction to be RTL\n\t\t\trtl: false,\n\n\t\t\t// Turns fragments on and off globally\n\t\t\tfragments: true,\n\n\t\t\t// Flags if the presentation is running in an embedded mode,\n\t\t\t// i.e. contained within a limited portion of the screen\n\t\t\tembedded: false,\n\n\t\t\t// Flags if we should show a help overlay when the questionmark\n\t\t\t// key is pressed\n\t\t\thelp: true,\n\n\t\t\t// Flags if it should be possible to pause the presentation (blackout)\n\t\t\tpause: true,\n\n\t\t\t// Flags if speaker notes should be visible to all viewers\n\t\t\tshowNotes: false,\n\n\t\t\t// Number of milliseconds between automatically proceeding to the\n\t\t\t// next slide, disabled when set to 0, this value can be overwritten\n\t\t\t// by using a data-autoslide attribute on your slides\n\t\t\tautoSlide: 0,\n\n\t\t\t// Stop auto-sliding after user input\n\t\t\tautoSlideStoppable: true,\n\n\t\t\t// Enable slide navigation via mouse wheel\n\t\t\tmouseWheel: false,\n\n\t\t\t// Apply a 3D roll to links on hover\n\t\t\trollingLinks: false,\n\n\t\t\t// Hides the address bar on mobile devices\n\t\t\thideAddressBar: true,\n\n\t\t\t// Opens links in an iframe preview overlay\n\t\t\tpreviewLinks: false,\n\n\t\t\t// Exposes the reveal.js API through window.postMessage\n\t\t\tpostMessage: true,\n\n\t\t\t// Dispatches all reveal.js events to the parent window through postMessage\n\t\t\tpostMessageEvents: false,\n\n\t\t\t// Focuses body when page changes visiblity to ensure keyboard shortcuts work\n\t\t\tfocusBodyOnPageVisibilityChange: true,\n\n\t\t\t// Transition style\n\t\t\ttransition: 'slide', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Transition speed\n\t\t\ttransitionSpeed: 'default', // default/fast/slow\n\n\t\t\t// Transition style for full page slide backgrounds\n\t\t\tbackgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Parallax background image\n\t\t\tparallaxBackgroundImage: '', // CSS syntax, e.g. \"a.jpg\"\n\n\t\t\t// Parallax background size\n\t\t\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"3000px 2000px\"\n\n\t\t\t// Amount of pixels to move the parallax background per slide step\n\t\t\tparallaxBackgroundHorizontal: null,\n\t\t\tparallaxBackgroundVertical: null,\n\n\t\t\t// Number of slides away from the current that are visible\n\t\t\tviewDistance: 3,\n\n\t\t\t// Script dependencies to load\n\t\t\tdependencies: []\n\n\t\t},\n\n\t\t// Flags if reveal.js is loaded (has dispatched the 'ready' event)\n\t\tloaded = false,\n\n\t\t// Flags if the overview mode is currently active\n\t\toverview = false,\n\n\t\t// The horizontal and vertical index of the currently active slide\n\t\tindexh,\n\t\tindexv,\n\n\t\t// The previous and current slide HTML elements\n\t\tpreviousSlide,\n\t\tcurrentSlide,\n\n\t\tpreviousBackground,\n\n\t\t// Slides may hold a data-state attribute which we pick up and apply\n\t\t// as a class to the body. This list contains the combined state of\n\t\t// all current slides.\n\t\tstate = [],\n\n\t\t// The current scale of the presentation (see width/height config)\n\t\tscale = 1,\n\n\t\t// CSS transform that is currently applied to the slides container,\n\t\t// split into two groups\n\t\tslidesTransform = { layout: '', overview: '' },\n\n\t\t// Cached references to DOM elements\n\t\tdom = {},\n\n\t\t// Features supported by the browser, see #checkCapabilities()\n\t\tfeatures = {},\n\n\t\t// Client is a mobile device, see #checkCapabilities()\n\t\tisMobileDevice,\n\n\t\t// Throttles mouse wheel navigation\n\t\tlastMouseWheelStep = 0,\n\n\t\t// Delays updates to the URL due to a Chrome thumbnailer bug\n\t\twriteURLTimeout = 0,\n\n\t\t// Flags if the interaction event listeners are bound\n\t\teventsAreBound = false,\n\n\t\t// The current auto-slide duration\n\t\tautoSlide = 0,\n\n\t\t// Auto slide properties\n\t\tautoSlidePlayer,\n\t\tautoSlideTimeout = 0,\n\t\tautoSlideStartTime = -1,\n\t\tautoSlidePaused = false,\n\n\t\t// Holds information about the currently ongoing touch input\n\t\ttouch = {\n\t\t\tstartX: 0,\n\t\t\tstartY: 0,\n\t\t\tstartSpan: 0,\n\t\t\tstartCount: 0,\n\t\t\tcaptured: false,\n\t\t\tthreshold: 40\n\t\t},\n\n\t\t// Holds information about the keyboard shortcuts\n\t\tkeyboardShortcuts = {\n\t\t\t'N  ,  SPACE':\t\t\t'Next slide',\n\t\t\t'P':\t\t\t\t\t'Previous slide',\n\t\t\t'&#8592;  ,  H':\t\t'Navigate left',\n\t\t\t'&#8594;  ,  L':\t\t'Navigate right',\n\t\t\t'&#8593;  ,  K':\t\t'Navigate up',\n\t\t\t'&#8595;  ,  J':\t\t'Navigate down',\n\t\t\t'Home':\t\t\t\t\t'First slide',\n\t\t\t'End':\t\t\t\t\t'Last slide',\n\t\t\t'B  ,  .':\t\t\t\t'Pause',\n\t\t\t'F':\t\t\t\t\t'Fullscreen',\n\t\t\t'ESC, O':\t\t\t\t'Slide overview'\n\t\t};\n\n\t/**\n\t * Starts up the presentation if the client is capable.\n\t */\n\tfunction initialize( options ) {\n\n\t\tcheckCapabilities();\n\n\t\tif( !features.transforms2d && !features.transforms3d ) {\n\t\t\tdocument.body.setAttribute( 'class', 'no-transforms' );\n\n\t\t\t// Since JS won't be running any further, we load all lazy\n\t\t\t// loading elements upfront\n\t\t\tvar images = toArray( document.getElementsByTagName( 'img' ) ),\n\t\t\t\tiframes = toArray( document.getElementsByTagName( 'iframe' ) );\n\n\t\t\tvar lazyLoadable = images.concat( iframes );\n\n\t\t\tfor( var i = 0, len = lazyLoadable.length; i < len; i++ ) {\n\t\t\t\tvar element = lazyLoadable[i];\n\t\t\t\tif( element.getAttribute( 'data-src' ) ) {\n\t\t\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\t\t\telement.removeAttribute( 'data-src' );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If the browser doesn't support core features we won't be\n\t\t\t// using JavaScript to control the presentation\n\t\t\treturn;\n\t\t}\n\n\t\t// Cache references to key DOM elements\n\t\tdom.wrapper = document.querySelector( '.reveal' );\n\t\tdom.slides = document.querySelector( '.reveal .slides' );\n\n\t\t// Force a layout when the whole page, incl fonts, has loaded\n\t\twindow.addEventListener( 'load', layout, false );\n\n\t\tvar query = Reveal.getQueryHash();\n\n\t\t// Do not accept new dependencies via query config to avoid\n\t\t// the potential of malicious script injection\n\t\tif( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies'];\n\n\t\t// Copy options over to our config object\n\t\textend( config, options );\n\t\textend( config, query );\n\n\t\t// Hide the address bar in mobile browsers\n\t\thideAddressBar();\n\n\t\t// Loads the dependencies and continues to #start() once done\n\t\tload();\n\n\t}\n\n\t/**\n\t * Inspect the client to see what it's capable of, this\n\t * should only happens once per runtime.\n\t */\n\tfunction checkCapabilities() {\n\n\t\tfeatures.transforms3d = 'WebkitPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'msPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'OPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'perspective' in document.body.style;\n\n\t\tfeatures.transforms2d = 'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\t\tfeatures.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;\n\t\tfeatures.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function';\n\n\t\tfeatures.canvas = !!document.createElement( 'canvas' ).getContext;\n\n\t\tfeatures.touch = !!( 'ontouchstart' in window );\n\n\t\t// Transitions in the overview are disabled in desktop and\n\t\t// mobile Safari due to lag\n\t\tfeatures.overviewTransitions = !/Version\\/[\\d\\.]+.*Safari/.test( navigator.userAgent );\n\n\t\tisMobileDevice = /(iphone|ipod|ipad|android)/gi.test( navigator.userAgent );\n\n\t}\n\n    /**\n     * Loads the dependencies of reveal.js. Dependencies are\n     * defined via the configuration option 'dependencies'\n     * and will be loaded prior to starting/binding reveal.js.\n     * Some dependencies may have an 'async' flag, if so they\n     * will load after reveal.js has been started up.\n     */\n\tfunction load() {\n\n\t\tvar scripts = [],\n\t\t\tscriptsAsync = [],\n\t\t\tscriptsToPreload = 0;\n\n\t\t// Called once synchronous scripts finish loading\n\t\tfunction proceed() {\n\t\t\tif( scriptsAsync.length ) {\n\t\t\t\t// Load asynchronous scripts\n\t\t\t\thead.js.apply( null, scriptsAsync );\n\t\t\t}\n\n\t\t\tstart();\n\t\t}\n\n\t\tfunction loadScript( s ) {\n\t\t\thead.ready( s.src.match( /([\\w\\d_\\-]*)\\.?js$|[^\\\\\\/]*$/i )[0], function() {\n\t\t\t\t// Extension may contain callback functions\n\t\t\t\tif( typeof s.callback === 'function' ) {\n\t\t\t\t\ts.callback.apply( this );\n\t\t\t\t}\n\n\t\t\t\tif( --scriptsToPreload === 0 ) {\n\t\t\t\t\tproceed();\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfor( var i = 0, len = config.dependencies.length; i < len; i++ ) {\n\t\t\tvar s = config.dependencies[i];\n\n\t\t\t// Load if there's no condition or the condition is truthy\n\t\t\tif( !s.condition || s.condition() ) {\n\t\t\t\tif( s.async ) {\n\t\t\t\t\tscriptsAsync.push( s.src );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tscripts.push( s.src );\n\t\t\t\t}\n\n\t\t\t\tloadScript( s );\n\t\t\t}\n\t\t}\n\n\t\tif( scripts.length ) {\n\t\t\tscriptsToPreload = scripts.length;\n\n\t\t\t// Load synchronous scripts\n\t\t\thead.js.apply( null, scripts );\n\t\t}\n\t\telse {\n\t\t\tproceed();\n\t\t}\n\n\t}\n\n\t/**\n\t * Starts up reveal.js by binding input events and navigating\n\t * to the current URL deeplink if there is one.\n\t */\n\tfunction start() {\n\n\t\t// Make sure we've got all the DOM elements we need\n\t\tsetupDOM();\n\n\t\t// Listen to messages posted to this window\n\t\tsetupPostMessage();\n\n\t\t// Prevent iframes from scrolling the slides out of view\n\t\tsetupIframeScrollPrevention();\n\n\t\t// Resets all vertical slides so that only the first is visible\n\t\tresetVerticalSlides();\n\n\t\t// Updates the presentation to match the current configuration values\n\t\tconfigure();\n\n\t\t// Read the initial hash\n\t\treadURL();\n\n\t\t// Update all backgrounds\n\t\tupdateBackground( true );\n\n\t\t// Notify listeners that the presentation is ready but use a 1ms\n\t\t// timeout to ensure it's not fired synchronously after #initialize()\n\t\tsetTimeout( function() {\n\t\t\t// Enable transitions now that we're loaded\n\t\t\tdom.slides.classList.remove( 'no-transition' );\n\n\t\t\tloaded = true;\n\n\t\t\tdispatchEvent( 'ready', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\t\t}, 1 );\n\n\t\t// Special setup and config is required when printing to PDF\n\t\tif( isPrintingPDF() ) {\n\t\t\tremoveEventListeners();\n\n\t\t\t// The document needs to have loaded for the PDF layout\n\t\t\t// measurements to be accurate\n\t\t\tif( document.readyState === 'complete' ) {\n\t\t\t\tsetupPDF();\n\t\t\t}\n\t\t\telse {\n\t\t\t\twindow.addEventListener( 'load', setupPDF );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Finds and stores references to DOM elements which are\n\t * required by the presentation. If a required element is\n\t * not found, it is created.\n\t */\n\tfunction setupDOM() {\n\n\t\t// Prevent transitions while we're loading\n\t\tdom.slides.classList.add( 'no-transition' );\n\n\t\t// Background element\n\t\tdom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null );\n\n\t\t// Progress bar\n\t\tdom.progress = createSingletonNode( dom.wrapper, 'div', 'progress', '<span></span>' );\n\t\tdom.progressbar = dom.progress.querySelector( 'span' );\n\n\t\t// Arrow controls\n\t\tcreateSingletonNode( dom.wrapper, 'aside', 'controls',\n\t\t\t'<button class=\"navigate-left\" aria-label=\"previous slide\"></button>' +\n\t\t\t'<button class=\"navigate-right\" aria-label=\"next slide\"></button>' +\n\t\t\t'<button class=\"navigate-up\" aria-label=\"above slide\"></button>' +\n\t\t\t'<button class=\"navigate-down\" aria-label=\"below slide\"></button>' );\n\n\t\t// Slide number\n\t\tdom.slideNumber = createSingletonNode( dom.wrapper, 'div', 'slide-number', '' );\n\n\t\t// Element containing notes that are visible to the audience\n\t\tdom.speakerNotes = createSingletonNode( dom.wrapper, 'div', 'speaker-notes', null );\n\t\tdom.speakerNotes.setAttribute( 'data-prevent-swipe', '' );\n\n\t\t// Overlay graphic which is displayed during the paused mode\n\t\tcreateSingletonNode( dom.wrapper, 'div', 'pause-overlay', null );\n\n\t\t// Cache references to elements\n\t\tdom.controls = document.querySelector( '.reveal .controls' );\n\t\tdom.theme = document.querySelector( '#theme' );\n\n\t\tdom.wrapper.setAttribute( 'role', 'application' );\n\n\t\t// There can be multiple instances of controls throughout the page\n\t\tdom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );\n\t\tdom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) );\n\t\tdom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );\n\t\tdom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) );\n\t\tdom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) );\n\t\tdom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );\n\n\t\tdom.statusDiv = createStatusDiv();\n\t}\n\n\t/**\n\t * Creates a hidden div with role aria-live to announce the\n\t * current slide content. Hide the div off-screen to make it\n\t * available only to Assistive Technologies.\n\t */\n\tfunction createStatusDiv() {\n\n\t\tvar statusDiv = document.getElementById( 'aria-status-div' );\n\t\tif( !statusDiv ) {\n\t\t\tstatusDiv = document.createElement( 'div' );\n\t\t\tstatusDiv.style.position = 'absolute';\n\t\t\tstatusDiv.style.height = '1px';\n\t\t\tstatusDiv.style.width = '1px';\n\t\t\tstatusDiv.style.overflow ='hidden';\n\t\t\tstatusDiv.style.clip = 'rect( 1px, 1px, 1px, 1px )';\n\t\t\tstatusDiv.setAttribute( 'id', 'aria-status-div' );\n\t\t\tstatusDiv.setAttribute( 'aria-live', 'polite' );\n\t\t\tstatusDiv.setAttribute( 'aria-atomic','true' );\n\t\t\tdom.wrapper.appendChild( statusDiv );\n\t\t}\n\t\treturn statusDiv;\n\n\t}\n\n\t/**\n\t * Configures the presentation for printing to a static\n\t * PDF.\n\t */\n\tfunction setupPDF() {\n\n\t\tvar slideSize = getComputedSlideSize( window.innerWidth, window.innerHeight );\n\n\t\t// Dimensions of the PDF pages\n\t\tvar pageWidth = Math.floor( slideSize.width * ( 1 + config.margin ) ),\n\t\t\tpageHeight = Math.floor( slideSize.height * ( 1 + config.margin  ) );\n\n\t\t// Dimensions of slides within the pages\n\t\tvar slideWidth = slideSize.width,\n\t\t\tslideHeight = slideSize.height;\n\n\t\t// Let the browser know what page size we want to print\n\t\tinjectStyleSheet( '@page{size:'+ pageWidth +'px '+ pageHeight +'px; margin: 0;}' );\n\n\t\t// Limit the size of certain elements to the dimensions of the slide\n\t\tinjectStyleSheet( '.reveal section>img, .reveal section>video, .reveal section>iframe{max-width: '+ slideWidth +'px; max-height:'+ slideHeight +'px}' );\n\n\t\tdocument.body.classList.add( 'print-pdf' );\n\t\tdocument.body.style.width = pageWidth + 'px';\n\t\tdocument.body.style.height = pageHeight + 'px';\n\n\t\t// Add each slide's index as attributes on itself, we need these\n\t\t// indices to generate slide numbers below\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\n\t\t// Slide and slide background layout\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\n\t\t\t// Vertical stacks are not centred since their section\n\t\t\t// children will be\n\t\t\tif( slide.classList.contains( 'stack' ) === false ) {\n\t\t\t\t// Center the slide inside of the page, giving the slide some margin\n\t\t\t\tvar left = ( pageWidth - slideWidth ) / 2,\n\t\t\t\t\ttop = ( pageHeight - slideHeight ) / 2;\n\n\t\t\t\tvar contentHeight = getAbsoluteHeight( slide );\n\t\t\t\tvar numberOfPages = Math.max( Math.ceil( contentHeight / pageHeight ), 1 );\n\n\t\t\t\t// Center slides vertically\n\t\t\t\tif( numberOfPages === 1 && config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\ttop = Math.max( ( pageHeight - contentHeight ) / 2, 0 );\n\t\t\t\t}\n\n\t\t\t\t// Position the slide inside of the page\n\t\t\t\tslide.style.left = left + 'px';\n\t\t\t\tslide.style.top = top + 'px';\n\t\t\t\tslide.style.width = slideWidth + 'px';\n\n\t\t\t\t// TODO Backgrounds need to be multiplied when the slide\n\t\t\t\t// stretches over multiple pages\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background ) {\n\t\t\t\t\tbackground.style.width = pageWidth + 'px';\n\t\t\t\t\tbackground.style.height = ( pageHeight * numberOfPages ) + 'px';\n\t\t\t\t\tbackground.style.top = -top + 'px';\n\t\t\t\t\tbackground.style.left = -left + 'px';\n\t\t\t\t}\n\n\t\t\t\t// Inject notes if `showNotes` is enabled\n\t\t\t\tif( config.showNotes ) {\n\t\t\t\t\tvar notes = getSlideNotes( slide );\n\t\t\t\t\tif( notes ) {\n\t\t\t\t\t\tvar notesSpacing = 8;\n\t\t\t\t\t\tvar notesElement = document.createElement( 'div' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes-pdf' );\n\t\t\t\t\t\tnotesElement.innerHTML = notes;\n\t\t\t\t\t\tnotesElement.style.left = ( notesSpacing - left ) + 'px';\n\t\t\t\t\t\tnotesElement.style.bottom = ( notesSpacing - top ) + 'px';\n\t\t\t\t\t\tnotesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px';\n\t\t\t\t\t\tslide.appendChild( notesElement );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Inject slide numbers if `slideNumbers` are enabled\n\t\t\t\tif( config.slideNumber ) {\n\t\t\t\t\tvar slideNumberH = parseInt( slide.getAttribute( 'data-index-h' ), 10 ) + 1,\n\t\t\t\t\t\tslideNumberV = parseInt( slide.getAttribute( 'data-index-v' ), 10 ) + 1;\n\n\t\t\t\t\tvar numberElement = document.createElement( 'div' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number-pdf' );\n\t\t\t\t\tnumberElement.innerHTML = formatSlideNumber( slideNumberH, '.', slideNumberV );\n\t\t\t\t\tbackground.appendChild( numberElement );\n\t\t\t\t}\n\t\t\t}\n\n\t\t} );\n\n\t\t// Show all fragments\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' .fragment' ) ).forEach( function( fragment ) {\n\t\t\tfragment.classList.add( 'visible' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * This is an unfortunate necessity. Iframes can trigger the\n\t * parent window to scroll, for example by focusing an input.\n\t * This scrolling can not be prevented by hiding overflow in\n\t * CSS so we have to resort to repeatedly checking if the\n\t * browser has decided to offset our slides :(\n\t */\n\tfunction setupIframeScrollPrevention() {\n\n\t\tif( dom.slides.querySelector( 'iframe' ) ) {\n\t\t\tsetInterval( function() {\n\t\t\t\tif( dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) {\n\t\t\t\t\tdom.wrapper.scrollTop = 0;\n\t\t\t\t\tdom.wrapper.scrollLeft = 0;\n\t\t\t\t}\n\t\t\t}, 500 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates an HTML element and returns a reference to it.\n\t * If the element already exists the existing instance will\n\t * be returned.\n\t */\n\tfunction createSingletonNode( container, tagname, classname, innerHTML ) {\n\n\t\t// Find all nodes matching the description\n\t\tvar nodes = container.querySelectorAll( '.' + classname );\n\n\t\t// Check all matches to find one which is a direct child of\n\t\t// the specified container\n\t\tfor( var i = 0; i < nodes.length; i++ ) {\n\t\t\tvar testNode = nodes[i];\n\t\t\tif( testNode.parentNode === container ) {\n\t\t\t\treturn testNode;\n\t\t\t}\n\t\t}\n\n\t\t// If no node was found, create it now\n\t\tvar node = document.createElement( tagname );\n\t\tnode.classList.add( classname );\n\t\tif( typeof innerHTML === 'string' ) {\n\t\t\tnode.innerHTML = innerHTML;\n\t\t}\n\t\tcontainer.appendChild( node );\n\n\t\treturn node;\n\n\t}\n\n\t/**\n\t * Creates the slide background elements and appends them\n\t * to the background container. One element is created per\n\t * slide no matter if the given slide has visible background.\n\t */\n\tfunction createBackgrounds() {\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\t// Clear prior backgrounds\n\t\tdom.background.innerHTML = '';\n\t\tdom.background.classList.add( 'no-transition' );\n\n\t\t// Iterate over all horizontal slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( slideh ) {\n\n\t\t\tvar backgroundStack;\n\n\t\t\tif( printMode ) {\n\t\t\t\tbackgroundStack = createBackground( slideh, slideh );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundStack = createBackground( slideh, dom.background );\n\t\t\t}\n\n\t\t\t// Iterate over all vertical slides\n\t\t\ttoArray( slideh.querySelectorAll( 'section' ) ).forEach( function( slidev ) {\n\n\t\t\t\tif( printMode ) {\n\t\t\t\t\tcreateBackground( slidev, slidev );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tcreateBackground( slidev, backgroundStack );\n\t\t\t\t}\n\n\t\t\t\tbackgroundStack.classList.add( 'stack' );\n\n\t\t\t} );\n\n\t\t} );\n\n\t\t// Add parallax background if specified\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tdom.background.style.backgroundImage = 'url(\"' + config.parallaxBackgroundImage + '\")';\n\t\t\tdom.background.style.backgroundSize = config.parallaxBackgroundSize;\n\n\t\t\t// Make sure the below properties are set on the element - these properties are\n\t\t\t// needed for proper transitions to be set on the element via CSS. To remove\n\t\t\t// annoying background slide-in effect when the presentation starts, apply\n\t\t\t// these properties after short time delay\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.wrapper.classList.add( 'has-parallax-background' );\n\t\t\t}, 1 );\n\n\t\t}\n\t\telse {\n\n\t\t\tdom.background.style.backgroundImage = '';\n\t\t\tdom.wrapper.classList.remove( 'has-parallax-background' );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates a background for the given slide.\n\t *\n\t * @param {HTMLElement} slide\n\t * @param {HTMLElement} container The element that the background\n\t * should be appended to\n\t */\n\tfunction createBackground( slide, container ) {\n\n\t\tvar data = {\n\t\t\tbackground: slide.getAttribute( 'data-background' ),\n\t\t\tbackgroundSize: slide.getAttribute( 'data-background-size' ),\n\t\t\tbackgroundImage: slide.getAttribute( 'data-background-image' ),\n\t\t\tbackgroundVideo: slide.getAttribute( 'data-background-video' ),\n\t\t\tbackgroundIframe: slide.getAttribute( 'data-background-iframe' ),\n\t\t\tbackgroundColor: slide.getAttribute( 'data-background-color' ),\n\t\t\tbackgroundRepeat: slide.getAttribute( 'data-background-repeat' ),\n\t\t\tbackgroundPosition: slide.getAttribute( 'data-background-position' ),\n\t\t\tbackgroundTransition: slide.getAttribute( 'data-background-transition' )\n\t\t};\n\n\t\tvar element = document.createElement( 'div' );\n\n\t\t// Carry over custom classes from the slide to the background\n\t\telement.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' );\n\n\t\tif( data.background ) {\n\t\t\t// Auto-wrap image urls in url(...)\n\t\t\tif( /^(http|file|\\/\\/)/gi.test( data.background ) || /\\.(svg|png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) {\n\t\t\t\tslide.setAttribute( 'data-background-image', data.background );\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.background = data.background;\n\t\t\t}\n\t\t}\n\n\t\t// Create a hash for this combination of background settings.\n\t\t// This is used to determine when two slide backgrounds are\n\t\t// the same.\n\t\tif( data.background || data.backgroundColor || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) {\n\t\t\telement.setAttribute( 'data-background-hash', data.background +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundSize +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundImage +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundVideo +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundIframe +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundColor +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundRepeat +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundPosition +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundTransition );\n\t\t}\n\n\t\t// Additional and optional background properties\n\t\tif( data.backgroundSize ) element.style.backgroundSize = data.backgroundSize;\n\t\tif( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;\n\t\tif( data.backgroundRepeat ) element.style.backgroundRepeat = data.backgroundRepeat;\n\t\tif( data.backgroundPosition ) element.style.backgroundPosition = data.backgroundPosition;\n\t\tif( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );\n\n\t\tcontainer.appendChild( element );\n\n\t\t// If backgrounds are being recreated, clear old classes\n\t\tslide.classList.remove( 'has-dark-background' );\n\t\tslide.classList.remove( 'has-light-background' );\n\n\t\t// If this slide has a background color, add a class that\n\t\t// signals if it is light or dark. If the slide has no background\n\t\t// color, no class will be set\n\t\tvar computedBackgroundColor = window.getComputedStyle( element ).backgroundColor;\n\t\tif( computedBackgroundColor ) {\n\t\t\tvar rgb = colorToRgb( computedBackgroundColor );\n\n\t\t\t// Ignore fully transparent backgrounds. Some browsers return\n\t\t\t// rgba(0,0,0,0) when reading the computed background color of\n\t\t\t// an element with no background\n\t\t\tif( rgb && rgb.a !== 0 ) {\n\t\t\t\tif( colorBrightness( computedBackgroundColor ) < 128 ) {\n\t\t\t\t\tslide.classList.add( 'has-dark-background' );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.classList.add( 'has-light-background' );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn element;\n\n\t}\n\n\t/**\n\t * Registers a listener to postMessage events, this makes it\n\t * possible to call all reveal.js API methods from another\n\t * window. For example:\n\t *\n\t * revealWindow.postMessage( JSON.stringify({\n\t *   method: 'slide',\n\t *   args: [ 2 ]\n\t * }), '*' );\n\t */\n\tfunction setupPostMessage() {\n\n\t\tif( config.postMessage ) {\n\t\t\twindow.addEventListener( 'message', function ( event ) {\n\t\t\t\tvar data = event.data;\n\n\t\t\t\t// Make sure we're dealing with JSON\n\t\t\t\tif( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) {\n\t\t\t\t\tdata = JSON.parse( data );\n\n\t\t\t\t\t// Check if the requested method can be found\n\t\t\t\t\tif( data.method && typeof Reveal[data.method] === 'function' ) {\n\t\t\t\t\t\tReveal[data.method].apply( Reveal, data.args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies the configuration settings from the config\n\t * object. May be called multiple times.\n\t */\n\tfunction configure( options ) {\n\n\t\tvar numberOfSlides = dom.wrapper.querySelectorAll( SLIDES_SELECTOR ).length;\n\n\t\tdom.wrapper.classList.remove( config.transition );\n\n\t\t// New config options may be passed when this method\n\t\t// is invoked through the API after initialization\n\t\tif( typeof options === 'object' ) extend( config, options );\n\n\t\t// Force linear transition based on browser capabilities\n\t\tif( features.transforms3d === false ) config.transition = 'linear';\n\n\t\tdom.wrapper.classList.add( config.transition );\n\n\t\tdom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );\n\t\tdom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition );\n\n\t\tdom.controls.style.display = config.controls ? 'block' : 'none';\n\t\tdom.progress.style.display = config.progress ? 'block' : 'none';\n\t\tdom.slideNumber.style.display = config.slideNumber && !isPrintingPDF() ? 'block' : 'none';\n\n\t\tif( config.rtl ) {\n\t\t\tdom.wrapper.classList.add( 'rtl' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'rtl' );\n\t\t}\n\n\t\tif( config.center ) {\n\t\t\tdom.wrapper.classList.add( 'center' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'center' );\n\t\t}\n\n\t\t// Exit the paused mode if it was configured off\n\t\tif( config.pause === false ) {\n\t\t\tresume();\n\t\t}\n\n\t\tif( config.showNotes ) {\n\t\t\tdom.speakerNotes.classList.add( 'visible' );\n\t\t}\n\t\telse {\n\t\t\tdom.speakerNotes.classList.remove( 'visible' );\n\t\t}\n\n\t\tif( config.mouseWheel ) {\n\t\t\tdocument.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.addEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\t\telse {\n\t\t\tdocument.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\n\t\t// Rolling 3D links\n\t\tif( config.rollingLinks ) {\n\t\t\tenableRollingLinks();\n\t\t}\n\t\telse {\n\t\t\tdisableRollingLinks();\n\t\t}\n\n\t\t// Iframe link previews\n\t\tif( config.previewLinks ) {\n\t\t\tenablePreviewLinks();\n\t\t}\n\t\telse {\n\t\t\tdisablePreviewLinks();\n\t\t\tenablePreviewLinks( '[data-preview-link]' );\n\t\t}\n\n\t\t// Remove existing auto-slide controls\n\t\tif( autoSlidePlayer ) {\n\t\t\tautoSlidePlayer.destroy();\n\t\t\tautoSlidePlayer = null;\n\t\t}\n\n\t\t// Generate auto-slide controls if needed\n\t\tif( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) {\n\t\t\tautoSlidePlayer = new Playback( dom.wrapper, function() {\n\t\t\t\treturn Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 );\n\t\t\t} );\n\n\t\t\tautoSlidePlayer.on( 'click', onAutoSlidePlayerClick );\n\t\t\tautoSlidePaused = false;\n\t\t}\n\n\t\t// When fragments are turned off they should be visible\n\t\tif( config.fragments === false ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( '.fragment' ) ).forEach( function( element ) {\n\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t} );\n\t\t}\n\n\t\tsync();\n\n\t}\n\n\t/**\n\t * Binds all event listeners.\n\t */\n\tfunction addEventListeners() {\n\n\t\teventsAreBound = true;\n\n\t\twindow.addEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.addEventListener( 'resize', onWindowResize, false );\n\n\t\tif( config.touch ) {\n\t\t\tdom.wrapper.addEventListener( 'touchstart', onTouchStart, false );\n\t\t\tdom.wrapper.addEventListener( 'touchmove', onTouchMove, false );\n\t\t\tdom.wrapper.addEventListener( 'touchend', onTouchEnd, false );\n\n\t\t\t// Support pointer-style touch interaction as well\n\t\t\tif( window.navigator.pointerEnabled ) {\n\t\t\t\t// IE 11 uses un-prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'pointerdown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointermove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointerup', onPointerUp, false );\n\t\t\t}\n\t\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\t\t// IE 10 uses prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t\t}\n\t\t}\n\n\t\tif( config.keyboard ) {\n\t\t\tdocument.addEventListener( 'keydown', onDocumentKeyDown, false );\n\t\t\tdocument.addEventListener( 'keypress', onDocumentKeyPress, false );\n\t\t}\n\n\t\tif( config.progress && dom.progress ) {\n\t\t\tdom.progress.addEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\tif( config.focusBodyOnPageVisibilityChange ) {\n\t\t\tvar visibilityChange;\n\n\t\t\tif( 'hidden' in document ) {\n\t\t\t\tvisibilityChange = 'visibilitychange';\n\t\t\t}\n\t\t\telse if( 'msHidden' in document ) {\n\t\t\t\tvisibilityChange = 'msvisibilitychange';\n\t\t\t}\n\t\t\telse if( 'webkitHidden' in document ) {\n\t\t\t\tvisibilityChange = 'webkitvisibilitychange';\n\t\t\t}\n\n\t\t\tif( visibilityChange ) {\n\t\t\t\tdocument.addEventListener( visibilityChange, onPageVisibilityChange, false );\n\t\t\t}\n\t\t}\n\n\t\t// Listen to both touch and click events, in case the device\n\t\t// supports both\n\t\tvar pointerEvents = [ 'touchstart', 'click' ];\n\n\t\t// Only support touch for Android, fixes double navigations in\n\t\t// stock browser\n\t\tif( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tpointerEvents = [ 'touchstart' ];\n\t\t}\n\n\t\tpointerEvents.forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbinds all event listeners.\n\t */\n\tfunction removeEventListeners() {\n\n\t\teventsAreBound = false;\n\n\t\tdocument.removeEventListener( 'keydown', onDocumentKeyDown, false );\n\t\tdocument.removeEventListener( 'keypress', onDocumentKeyPress, false );\n\t\twindow.removeEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.removeEventListener( 'resize', onWindowResize, false );\n\n\t\tdom.wrapper.removeEventListener( 'touchstart', onTouchStart, false );\n\t\tdom.wrapper.removeEventListener( 'touchmove', onTouchMove, false );\n\t\tdom.wrapper.removeEventListener( 'touchend', onTouchEnd, false );\n\n\t\t// IE11\n\t\tif( window.navigator.pointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'pointerdown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointermove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointerup', onPointerUp, false );\n\t\t}\n\t\t// IE10\n\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t}\n\n\t\tif ( config.progress && dom.progress ) {\n\t\t\tdom.progress.removeEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\t[ 'touchstart', 'click' ].forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Extend object a with the properties of object b.\n\t * If there's a conflict, object b takes precedence.\n\t */\n\tfunction extend( a, b ) {\n\n\t\tfor( var i in b ) {\n\t\t\ta[ i ] = b[ i ];\n\t\t}\n\n\t}\n\n\t/**\n\t * Converts the target object to an array.\n\t */\n\tfunction toArray( o ) {\n\n\t\treturn Array.prototype.slice.call( o );\n\n\t}\n\n\t/**\n\t * Utility for deserializing a value.\n\t */\n\tfunction deserialize( value ) {\n\n\t\tif( typeof value === 'string' ) {\n\t\t\tif( value === 'null' ) return null;\n\t\t\telse if( value === 'true' ) return true;\n\t\t\telse if( value === 'false' ) return false;\n\t\t\telse if( value.match( /^\\d+$/ ) ) return parseFloat( value );\n\t\t}\n\n\t\treturn value;\n\n\t}\n\n\t/**\n\t * Measures the distance in pixels between point a\n\t * and point b.\n\t *\n\t * @param {Object} a point with x/y properties\n\t * @param {Object} b point with x/y properties\n\t */\n\tfunction distanceBetween( a, b ) {\n\n\t\tvar dx = a.x - b.x,\n\t\t\tdy = a.y - b.y;\n\n\t\treturn Math.sqrt( dx*dx + dy*dy );\n\n\t}\n\n\t/**\n\t * Applies a CSS transform to the target element.\n\t */\n\tfunction transformElement( element, transform ) {\n\n\t\telement.style.WebkitTransform = transform;\n\t\telement.style.MozTransform = transform;\n\t\telement.style.msTransform = transform;\n\t\telement.style.transform = transform;\n\n\t}\n\n\t/**\n\t * Applies CSS transforms to the slides container. The container\n\t * is transformed from two separate sources: layout and the overview\n\t * mode.\n\t */\n\tfunction transformSlides( transforms ) {\n\n\t\t// Pick up new transforms from arguments\n\t\tif( typeof transforms.layout === 'string' ) slidesTransform.layout = transforms.layout;\n\t\tif( typeof transforms.overview === 'string' ) slidesTransform.overview = transforms.overview;\n\n\t\t// Apply the transforms to the slides container\n\t\tif( slidesTransform.layout ) {\n\t\t\ttransformElement( dom.slides, slidesTransform.layout + ' ' + slidesTransform.overview );\n\t\t}\n\t\telse {\n\t\t\ttransformElement( dom.slides, slidesTransform.overview );\n\t\t}\n\n\t}\n\n\t/**\n\t * Injects the given CSS styles into the DOM.\n\t */\n\tfunction injectStyleSheet( value ) {\n\n\t\tvar tag = document.createElement( 'style' );\n\t\ttag.type = 'text/css';\n\t\tif( tag.styleSheet ) {\n\t\t\ttag.styleSheet.cssText = value;\n\t\t}\n\t\telse {\n\t\t\ttag.appendChild( document.createTextNode( value ) );\n\t\t}\n\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( tag );\n\n\t}\n\n\t/**\n\t * Converts various color input formats to an {r:0,g:0,b:0} object.\n\t *\n\t * @param {String} color The string representation of a color,\n\t * the following formats are supported:\n\t * - #000\n\t * - #000000\n\t * - rgb(0,0,0)\n\t */\n\tfunction colorToRgb( color ) {\n\n\t\tvar hex3 = color.match( /^#([0-9a-f]{3})$/i );\n\t\tif( hex3 && hex3[1] ) {\n\t\t\thex3 = hex3[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex3.charAt( 0 ), 16 ) * 0x11,\n\t\t\t\tg: parseInt( hex3.charAt( 1 ), 16 ) * 0x11,\n\t\t\t\tb: parseInt( hex3.charAt( 2 ), 16 ) * 0x11\n\t\t\t};\n\t\t}\n\n\t\tvar hex6 = color.match( /^#([0-9a-f]{6})$/i );\n\t\tif( hex6 && hex6[1] ) {\n\t\t\thex6 = hex6[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex6.substr( 0, 2 ), 16 ),\n\t\t\t\tg: parseInt( hex6.substr( 2, 2 ), 16 ),\n\t\t\t\tb: parseInt( hex6.substr( 4, 2 ), 16 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgb = color.match( /^rgb\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\)$/i );\n\t\tif( rgb ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgb[1], 10 ),\n\t\t\t\tg: parseInt( rgb[2], 10 ),\n\t\t\t\tb: parseInt( rgb[3], 10 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgba = color.match( /^rgba\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\,\\s*([\\d]+|[\\d]*.[\\d]+)\\s*\\)$/i );\n\t\tif( rgba ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgba[1], 10 ),\n\t\t\t\tg: parseInt( rgba[2], 10 ),\n\t\t\t\tb: parseInt( rgba[3], 10 ),\n\t\t\t\ta: parseFloat( rgba[4] )\n\t\t\t};\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Calculates brightness on a scale of 0-255.\n\t *\n\t * @param color See colorStringToRgb for supported formats.\n\t */\n\tfunction colorBrightness( color ) {\n\n\t\tif( typeof color === 'string' ) color = colorToRgb( color );\n\n\t\tif( color ) {\n\t\t\treturn ( color.r * 299 + color.g * 587 + color.b * 114 ) / 1000;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the height of the given element by looking\n\t * at the position and height of its immediate children.\n\t */\n\tfunction getAbsoluteHeight( element ) {\n\n\t\tvar height = 0;\n\n\t\tif( element ) {\n\t\t\tvar absoluteChildren = 0;\n\n\t\t\ttoArray( element.childNodes ).forEach( function( child ) {\n\n\t\t\t\tif( typeof child.offsetTop === 'number' && child.style ) {\n\t\t\t\t\t// Count # of abs children\n\t\t\t\t\tif( window.getComputedStyle( child ).position === 'absolute' ) {\n\t\t\t\t\t\tabsoluteChildren += 1;\n\t\t\t\t\t}\n\n\t\t\t\t\theight = Math.max( height, child.offsetTop + child.offsetHeight );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t// If there are no absolute children, use offsetHeight\n\t\t\tif( absoluteChildren === 0 ) {\n\t\t\t\theight = element.offsetHeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Returns the remaining height within the parent of the\n\t * target element.\n\t *\n\t * remaining height = [ configured parent height ] - [ current parent height ]\n\t */\n\tfunction getRemainingHeight( element, height ) {\n\n\t\theight = height || 0;\n\n\t\tif( element ) {\n\t\t\tvar newHeight, oldHeight = element.style.height;\n\n\t\t\t// Change the .stretch element height to 0 in order find the height of all\n\t\t\t// the other elements\n\t\t\telement.style.height = '0px';\n\t\t\tnewHeight = height - element.parentNode.offsetHeight;\n\n\t\t\t// Restore the old height, just in case\n\t\t\telement.style.height = oldHeight + 'px';\n\n\t\t\treturn newHeight;\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Checks if this instance is being used to print a PDF.\n\t */\n\tfunction isPrintingPDF() {\n\n\t\treturn ( /print-pdf/gi ).test( window.location.search );\n\n\t}\n\n\t/**\n\t * Hides the address bar if we're on a mobile device.\n\t */\n\tfunction hideAddressBar() {\n\n\t\tif( config.hideAddressBar && isMobileDevice ) {\n\t\t\t// Events that should trigger the address bar to hide\n\t\t\twindow.addEventListener( 'load', removeAddressBar, false );\n\t\t\twindow.addEventListener( 'orientationchange', removeAddressBar, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Causes the address bar to hide on mobile devices,\n\t * more vertical space ftw.\n\t */\n\tfunction removeAddressBar() {\n\n\t\tsetTimeout( function() {\n\t\t\twindow.scrollTo( 0, 1 );\n\t\t}, 10 );\n\n\t}\n\n\t/**\n\t * Dispatches an event of the specified type from the\n\t * reveal DOM element.\n\t */\n\tfunction dispatchEvent( type, args ) {\n\n\t\tvar event = document.createEvent( 'HTMLEvents', 1, 2 );\n\t\tevent.initEvent( type, true, true );\n\t\textend( event, args );\n\t\tdom.wrapper.dispatchEvent( event );\n\n\t\t// If we're in an iframe, post each reveal.js event to the\n\t\t// parent window. Used by the notes plugin\n\t\tif( config.postMessageEvents && window.parent !== window.self ) {\n\t\t\twindow.parent.postMessage( JSON.stringify({ namespace: 'reveal', eventName: type, state: getState() }), '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Wrap all links in 3D goodness.\n\t */\n\tfunction enableRollingLinks() {\n\n\t\tif( features.transforms3d && !( 'msPerspective' in document.body.style ) ) {\n\t\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a' );\n\n\t\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\t\tvar anchor = anchors[i];\n\n\t\t\t\tif( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {\n\t\t\t\t\tvar span = document.createElement('span');\n\t\t\t\t\tspan.setAttribute('data-title', anchor.text);\n\t\t\t\t\tspan.innerHTML = anchor.innerHTML;\n\n\t\t\t\t\tanchor.classList.add( 'roll' );\n\t\t\t\t\tanchor.innerHTML = '';\n\t\t\t\t\tanchor.appendChild(span);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Unwrap all 3D links.\n\t */\n\tfunction disableRollingLinks() {\n\n\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );\n\n\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\tvar anchor = anchors[i];\n\t\t\tvar span = anchor.querySelector( 'span' );\n\n\t\t\tif( span ) {\n\t\t\t\tanchor.classList.remove( 'roll' );\n\t\t\t\tanchor.innerHTML = span.innerHTML;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Bind preview frame links.\n\t */\n\tfunction enablePreviewLinks( selector ) {\n\n\t\tvar anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.addEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbind preview frame links.\n\t */\n\tfunction disablePreviewLinks() {\n\n\t\tvar anchors = toArray( document.querySelectorAll( 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.removeEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Opens a preview window for the target URL.\n\t */\n\tfunction showPreview( url ) {\n\n\t\tcloseOverlay();\n\n\t\tdom.overlay = document.createElement( 'div' );\n\t\tdom.overlay.classList.add( 'overlay' );\n\t\tdom.overlay.classList.add( 'overlay-preview' );\n\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\tdom.overlay.innerHTML = [\n\t\t\t'<header>',\n\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'<a class=\"external\" href=\"'+ url +'\" target=\"_blank\"><span class=\"icon\"></span></a>',\n\t\t\t'</header>',\n\t\t\t'<div class=\"spinner\"></div>',\n\t\t\t'<div class=\"viewport\">',\n\t\t\t\t'<iframe src=\"'+ url +'\"></iframe>',\n\t\t\t'</div>'\n\t\t].join('');\n\n\t\tdom.overlay.querySelector( 'iframe' ).addEventListener( 'load', function( event ) {\n\t\t\tdom.overlay.classList.add( 'loaded' );\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t\tevent.preventDefault();\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.external' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t}, false );\n\n\t\tsetTimeout( function() {\n\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Opens a overlay window with help material.\n\t */\n\tfunction showHelp() {\n\n\t\tif( config.help ) {\n\n\t\t\tcloseOverlay();\n\n\t\t\tdom.overlay = document.createElement( 'div' );\n\t\t\tdom.overlay.classList.add( 'overlay' );\n\t\t\tdom.overlay.classList.add( 'overlay-help' );\n\t\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\t\tvar html = '<p class=\"title\">Keyboard Shortcuts</p><br/>';\n\n\t\t\thtml += '<table><th>KEY</th><th>ACTION</th>';\n\t\t\tfor( var key in keyboardShortcuts ) {\n\t\t\t\thtml += '<tr><td>' + key + '</td><td>' + keyboardShortcuts[ key ] + '</td></tr>';\n\t\t\t}\n\n\t\t\thtml += '</table>';\n\n\t\t\tdom.overlay.innerHTML = [\n\t\t\t\t'<header>',\n\t\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'</header>',\n\t\t\t\t'<div class=\"viewport\">',\n\t\t\t\t\t'<div class=\"viewport-inner\">'+ html +'</div>',\n\t\t\t\t'</div>'\n\t\t\t].join('');\n\n\t\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\t\tcloseOverlay();\n\t\t\t\tevent.preventDefault();\n\t\t\t}, false );\n\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t\t}, 1 );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Closes any currently open overlay.\n\t */\n\tfunction closeOverlay() {\n\n\t\tif( dom.overlay ) {\n\t\t\tdom.overlay.parentNode.removeChild( dom.overlay );\n\t\t\tdom.overlay = null;\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies JavaScript-controlled layout rules to the\n\t * presentation.\n\t */\n\tfunction layout() {\n\n\t\tif( dom.wrapper && !isPrintingPDF() ) {\n\n\t\t\tvar size = getComputedSlideSize();\n\n\t\t\tvar slidePadding = 20; // TODO Dig this out of DOM\n\n\t\t\t// Layout the contents of the slides\n\t\t\tlayoutSlideContents( config.width, config.height, slidePadding );\n\n\t\t\tdom.slides.style.width = size.width + 'px';\n\t\t\tdom.slides.style.height = size.height + 'px';\n\n\t\t\t// Determine scale of content to fit within available space\n\t\t\tscale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height );\n\n\t\t\t// Respect max/min scale settings\n\t\t\tscale = Math.max( scale, config.minScale );\n\t\t\tscale = Math.min( scale, config.maxScale );\n\n\t\t\t// Don't apply any scaling styles if scale is 1\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\tdom.slides.style.left = '';\n\t\t\t\tdom.slides.style.top = '';\n\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\tdom.slides.style.right = '';\n\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Use zoom to scale up in desktop Chrome so that content\n\t\t\t\t// remains crisp. We don't use zoom to scale down since that\n\t\t\t\t// can lead to shifts in text layout/line breaks.\n\t\t\t\tif( scale > 1 && !isMobileDevice && /chrome/i.test( navigator.userAgent ) && typeof dom.slides.style.zoom !== 'undefined' ) {\n\t\t\t\t\tdom.slides.style.zoom = scale;\n\t\t\t\t\tdom.slides.style.left = '';\n\t\t\t\t\tdom.slides.style.top = '';\n\t\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\t\tdom.slides.style.right = '';\n\t\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t\t}\n\t\t\t\t// Apply scale transform as a fallback\n\t\t\t\telse {\n\t\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\t\tdom.slides.style.left = '50%';\n\t\t\t\t\tdom.slides.style.top = '50%';\n\t\t\t\t\tdom.slides.style.bottom = 'auto';\n\t\t\t\t\tdom.slides.style.right = 'auto';\n\t\t\t\t\ttransformSlides( { layout: 'translate(-50%, -50%) scale('+ scale +')' } );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Select all slides, vertical and horizontal\n\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) );\n\n\t\t\tfor( var i = 0, len = slides.length; i < len; i++ ) {\n\t\t\t\tvar slide = slides[ i ];\n\n\t\t\t\t// Don't bother updating invisible slides\n\t\t\t\tif( slide.style.display === 'none' ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\t// Vertical stacks are not centred since their section\n\t\t\t\t\t// children will be\n\t\t\t\t\tif( slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\t\tslide.style.top = 0;\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tslide.style.top = Math.max( ( ( size.height - getAbsoluteHeight( slide ) ) / 2 ) - slidePadding, 0 ) + 'px';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.style.top = '';\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tupdateProgress();\n\t\t\tupdateParallax();\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies layout logic to the contents of all slides in\n\t * the presentation.\n\t */\n\tfunction layoutSlideContents( width, height, padding ) {\n\n\t\t// Handle sizing of elements with the 'stretch' class\n\t\ttoArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) {\n\n\t\t\t// Determine how much vertical space we can use\n\t\t\tvar remainingHeight = getRemainingHeight( element, height );\n\n\t\t\t// Consider the aspect ratio of media elements\n\t\t\tif( /(img|video)/gi.test( element.nodeName ) ) {\n\t\t\t\tvar nw = element.naturalWidth || element.videoWidth,\n\t\t\t\t\tnh = element.naturalHeight || element.videoHeight;\n\n\t\t\t\tvar es = Math.min( width / nw, remainingHeight / nh );\n\n\t\t\t\telement.style.width = ( nw * es ) + 'px';\n\t\t\t\telement.style.height = ( nh * es ) + 'px';\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.width = width + 'px';\n\t\t\t\telement.style.height = remainingHeight + 'px';\n\t\t\t}\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Calculates the computed pixel size of our slides. These\n\t * values are based on the width and height configuration\n\t * options.\n\t */\n\tfunction getComputedSlideSize( presentationWidth, presentationHeight ) {\n\n\t\tvar size = {\n\t\t\t// Slide size\n\t\t\twidth: config.width,\n\t\t\theight: config.height,\n\n\t\t\t// Presentation size\n\t\t\tpresentationWidth: presentationWidth || dom.wrapper.offsetWidth,\n\t\t\tpresentationHeight: presentationHeight || dom.wrapper.offsetHeight\n\t\t};\n\n\t\t// Reduce available space by margin\n\t\tsize.presentationWidth -= ( size.presentationWidth * config.margin );\n\t\tsize.presentationHeight -= ( size.presentationHeight * config.margin );\n\n\t\t// Slide width may be a percentage of available width\n\t\tif( typeof size.width === 'string' && /%$/.test( size.width ) ) {\n\t\t\tsize.width = parseInt( size.width, 10 ) / 100 * size.presentationWidth;\n\t\t}\n\n\t\t// Slide height may be a percentage of available height\n\t\tif( typeof size.height === 'string' && /%$/.test( size.height ) ) {\n\t\t\tsize.height = parseInt( size.height, 10 ) / 100 * size.presentationHeight;\n\t\t}\n\n\t\treturn size;\n\n\t}\n\n\t/**\n\t * Stores the vertical index of a stack so that the same\n\t * vertical slide can be selected when navigating to and\n\t * from the stack.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t * @param {int} v Index to memorize\n\t */\n\tfunction setPreviousVerticalIndex( stack, v ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {\n\t\t\tstack.setAttribute( 'data-previous-indexv', v || 0 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the vertical index which was stored using\n\t * #setPreviousVerticalIndex() or 0 if no previous index\n\t * exists.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t */\n\tfunction getPreviousVerticalIndex( stack ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {\n\t\t\t// Prefer manually defined start-indexv\n\t\t\tvar attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv';\n\n\t\t\treturn parseInt( stack.getAttribute( attributeName ) || 0, 10 );\n\t\t}\n\n\t\treturn 0;\n\n\t}\n\n\t/**\n\t * Displays the overview of slides (quick nav) by scaling\n\t * down and arranging all slide elements.\n\t */\n\tfunction activateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview && !isOverview() ) {\n\n\t\t\toverview = true;\n\n\t\t\tdom.wrapper.classList.add( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\n\t\t\tif( features.overviewTransitions ) {\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tdom.wrapper.classList.add( 'overview-animated' );\n\t\t\t\t}, 1 );\n\t\t\t}\n\n\t\t\t// Don't auto-slide while in overview mode\n\t\t\tcancelAutoSlide();\n\n\t\t\t// Move the backgrounds element into the slide container to\n\t\t\t// that the same scaling is applied\n\t\t\tdom.slides.appendChild( dom.background );\n\n\t\t\t// Clicking on an overview slide navigates to it\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\tif( !slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\tslide.addEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tupdateSlidesVisibility();\n\t\t\tlayoutOverview();\n\t\t\tupdateOverview();\n\n\t\t\tlayout();\n\n\t\t\t// Notify observers of the overview showing\n\t\t\tdispatchEvent( 'overviewshown', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Uses CSS transforms to position all slides in a grid for\n\t * display inside of the overview mode.\n\t */\n\tfunction layoutOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\t// Layout slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\t\t\ttransformElement( hslide, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\n\t\t\t\t\ttransformElement( vslide, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t\t} );\n\n\t\t\t}\n\t\t} );\n\n\t\t// Layout slide backgrounds\n\t\ttoArray( dom.background.childNodes ).forEach( function( hbackground, h ) {\n\t\t\ttransformElement( hbackground, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\ttoArray( hbackground.querySelectorAll( '.slide-background' ) ).forEach( function( vbackground, v ) {\n\t\t\t\ttransformElement( vbackground, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Moves the overview viewport to the current slides.\n\t * Called each time the current slide changes.\n\t */\n\tfunction updateOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\ttransformSlides( {\n\t\t\toverview: [\n\t\t\t\t'translateX('+ ( -indexh * slideWidth ) +'px)',\n\t\t\t\t'translateY('+ ( -indexv * slideHeight ) +'px)',\n\t\t\t\t'translateZ('+ ( window.innerWidth < 400 ? -1000 : -2500 ) +'px)'\n\t\t\t].join( ' ' )\n\t\t} );\n\n\t}\n\n\t/**\n\t * Exits the slide overview and enters the currently\n\t * active slide.\n\t */\n\tfunction deactivateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview ) {\n\n\t\t\toverview = false;\n\n\t\t\tdom.wrapper.classList.remove( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-animated' );\n\n\t\t\t// Temporarily add a class so that transitions can do different things\n\t\t\t// depending on whether they are exiting/entering overview, or just\n\t\t\t// moving from slide to slide\n\t\t\tdom.wrapper.classList.add( 'overview-deactivating' );\n\n\t\t\tsetTimeout( function () {\n\t\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\t\t\t}, 1 );\n\n\t\t\t// Move the background element back out\n\t\t\tdom.wrapper.appendChild( dom.background );\n\n\t\t\t// Clean up changes made to slides\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\ttransformElement( slide, '' );\n\n\t\t\t\tslide.removeEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t} );\n\n\t\t\t// Clean up changes made to backgrounds\n\t\t\ttoArray( dom.background.querySelectorAll( '.slide-background' ) ).forEach( function( background ) {\n\t\t\t\ttransformElement( background, '' );\n\t\t\t} );\n\n\t\t\ttransformSlides( { overview: '' } );\n\n\t\t\tslide( indexh, indexv );\n\n\t\t\tlayout();\n\n\t\t\tcueAutoSlide();\n\n\t\t\t// Notify observers of the overview hiding\n\t\t\tdispatchEvent( 'overviewhidden', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\t}\n\n\t/**\n\t * Toggles the slide overview mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which overrides the\n\t * toggle logic and forcibly sets the desired state. True means\n\t * overview is open, false means it's closed.\n\t */\n\tfunction toggleOverview( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? activateOverview() : deactivateOverview();\n\t\t}\n\t\telse {\n\t\t\tisOverview() ? deactivateOverview() : activateOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the overview is currently active.\n\t *\n\t * @return {Boolean} true if the overview is active,\n\t * false otherwise\n\t */\n\tfunction isOverview() {\n\n\t\treturn overview;\n\n\t}\n\n\t/**\n\t * Checks if the current or specified slide is vertical\n\t * (nested within another slide).\n\t *\n\t * @param {HTMLElement} slide [optional] The slide to check\n\t * orientation of\n\t */\n\tfunction isVerticalSlide( slide ) {\n\n\t\t// Prefer slide argument, otherwise use current slide\n\t\tslide = slide ? slide : currentSlide;\n\n\t\treturn slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i );\n\n\t}\n\n\t/**\n\t * Handling the fullscreen functionality via the fullscreen API\n\t *\n\t * @see http://fullscreen.spec.whatwg.org/\n\t * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode\n\t */\n\tfunction enterFullscreen() {\n\n\t\tvar element = document.body;\n\n\t\t// Check which implementation is available\n\t\tvar requestMethod = element.requestFullScreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullscreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullScreen ||\n\t\t\t\t\t\t\telement.mozRequestFullScreen ||\n\t\t\t\t\t\t\telement.msRequestFullscreen;\n\n\t\tif( requestMethod ) {\n\t\t\trequestMethod.apply( element );\n\t\t}\n\n\t}\n\n\t/**\n\t * Enters the paused mode which fades everything on screen to\n\t * black.\n\t */\n\tfunction pause() {\n\n\t\tif( config.pause ) {\n\t\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\n\t\t\tcancelAutoSlide();\n\t\t\tdom.wrapper.classList.add( 'paused' );\n\n\t\t\tif( wasPaused === false ) {\n\t\t\t\tdispatchEvent( 'paused' );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Exits from the paused mode.\n\t */\n\tfunction resume() {\n\n\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\t\tdom.wrapper.classList.remove( 'paused' );\n\n\t\tcueAutoSlide();\n\n\t\tif( wasPaused ) {\n\t\t\tdispatchEvent( 'resumed' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Toggles the paused mode on and off.\n\t */\n\tfunction togglePause( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? pause() : resume();\n\t\t}\n\t\telse {\n\t\t\tisPaused() ? resume() : pause();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if we are currently in the paused mode.\n\t */\n\tfunction isPaused() {\n\n\t\treturn dom.wrapper.classList.contains( 'paused' );\n\n\t}\n\n\t/**\n\t * Toggles the auto slide mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which sets the desired state.\n\t * True means autoplay starts, false means it stops.\n\t */\n\n\tfunction toggleAutoSlide( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t\telse {\n\t\t\tautoSlidePaused ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the auto slide mode is currently on.\n\t */\n\tfunction isAutoSliding() {\n\n\t\treturn !!( autoSlide && !autoSlidePaused );\n\n\t}\n\n\t/**\n\t * Steps from the current point in the presentation to the\n\t * slide which matches the specified horizontal and vertical\n\t * indices.\n\t *\n\t * @param {int} h Horizontal index of the target slide\n\t * @param {int} v Vertical index of the target slide\n\t * @param {int} f Optional index of a fragment within the\n\t * target slide to activate\n\t * @param {int} o Optional origin for use in multimaster environments\n\t */\n\tfunction slide( h, v, f, o ) {\n\n\t\t// Remember where we were at before\n\t\tpreviousSlide = currentSlide;\n\n\t\t// Query all horizontal slides in the deck\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );\n\n\t\t// If no vertical index is specified and the upcoming slide is a\n\t\t// stack, resume at its previous vertical index\n\t\tif( v === undefined && !isOverview() ) {\n\t\t\tv = getPreviousVerticalIndex( horizontalSlides[ h ] );\n\t\t}\n\n\t\t// If we were on a vertical stack, remember what vertical index\n\t\t// it was on so we can resume at the same position when returning\n\t\tif( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {\n\t\t\tsetPreviousVerticalIndex( previousSlide.parentNode, indexv );\n\t\t}\n\n\t\t// Remember the state before this slide\n\t\tvar stateBefore = state.concat();\n\n\t\t// Reset the state array\n\t\tstate.length = 0;\n\n\t\tvar indexhBefore = indexh || 0,\n\t\t\tindexvBefore = indexv || 0;\n\n\t\t// Activate and transition to the new slide\n\t\tindexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );\n\t\tindexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );\n\n\t\t// Update the visibility of slides now that the indices have changed\n\t\tupdateSlidesVisibility();\n\n\t\tlayout();\n\n\t\t// Apply the new state\n\t\tstateLoop: for( var i = 0, len = state.length; i < len; i++ ) {\n\t\t\t// Check if this state existed on the previous slide. If it\n\t\t\t// did, we will avoid adding it repeatedly\n\t\t\tfor( var j = 0; j < stateBefore.length; j++ ) {\n\t\t\t\tif( stateBefore[j] === state[i] ) {\n\t\t\t\t\tstateBefore.splice( j, 1 );\n\t\t\t\t\tcontinue stateLoop;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdocument.documentElement.classList.add( state[i] );\n\n\t\t\t// Dispatch custom event matching the state's name\n\t\t\tdispatchEvent( state[i] );\n\t\t}\n\n\t\t// Clean up the remains of the previous state\n\t\twhile( stateBefore.length ) {\n\t\t\tdocument.documentElement.classList.remove( stateBefore.pop() );\n\t\t}\n\n\t\t// Update the overview if it's currently active\n\t\tif( isOverview() ) {\n\t\t\tupdateOverview();\n\t\t}\n\n\t\t// Find the current horizontal slide and any possible vertical slides\n\t\t// within it\n\t\tvar currentHorizontalSlide = horizontalSlides[ indexh ],\n\t\t\tcurrentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );\n\n\t\t// Store references to the previous and current slides\n\t\tcurrentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;\n\n\t\t// Show fragment, if specified\n\t\tif( typeof f !== 'undefined' ) {\n\t\t\tnavigateFragment( f );\n\t\t}\n\n\t\t// Dispatch an event if the slide changed\n\t\tvar slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore );\n\t\tif( slideChanged ) {\n\t\t\tdispatchEvent( 'slidechanged', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'previousSlide': previousSlide,\n\t\t\t\t'currentSlide': currentSlide,\n\t\t\t\t'origin': o\n\t\t\t} );\n\t\t}\n\t\telse {\n\t\t\t// Ensure that the previous slide is never the same as the current\n\t\t\tpreviousSlide = null;\n\t\t}\n\n\t\t// Solves an edge case where the previous slide maintains the\n\t\t// 'present' class when navigating between adjacent vertical\n\t\t// stacks\n\t\tif( previousSlide ) {\n\t\t\tpreviousSlide.classList.remove( 'present' );\n\t\t\tpreviousSlide.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t// Reset all slides upon navigate to home\n\t\t\t// Issue: #285\n\t\t\tif ( dom.wrapper.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) {\n\t\t\t\t// Launch async task\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i;\n\t\t\t\t\tfor( i in slides ) {\n\t\t\t\t\t\tif( slides[i] ) {\n\t\t\t\t\t\t\t// Reset stack\n\t\t\t\t\t\t\tsetPreviousVerticalIndex( slides[i], 0 );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}, 0 );\n\t\t\t}\n\t\t}\n\n\t\t// Handle embedded content\n\t\tif( slideChanged || !previousSlide ) {\n\t\t\tstopEmbeddedContent( previousSlide );\n\t\t\tstartEmbeddedContent( currentSlide );\n\t\t}\n\n\t\t// Announce the current slide contents, for screen readers\n\t\tdom.statusDiv.textContent = currentSlide.textContent;\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground();\n\t\tupdateParallax();\n\t\tupdateSlideNumber();\n\t\tupdateNotes();\n\n\t\t// Update the URL hash\n\t\twriteURL();\n\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Syncs the presentation with the current DOM. Useful\n\t * when new slides or control elements are added or when\n\t * the configuration has changed.\n\t */\n\tfunction sync() {\n\n\t\t// Subscribe to input\n\t\tremoveEventListeners();\n\t\taddEventListeners();\n\n\t\t// Force a layout to make sure the current config is accounted for\n\t\tlayout();\n\n\t\t// Reflect the current autoSlide value\n\t\tautoSlide = config.autoSlide;\n\n\t\t// Start auto-sliding if it's enabled\n\t\tcueAutoSlide();\n\n\t\t// Re-create the slide backgrounds\n\t\tcreateBackgrounds();\n\n\t\t// Write the current hash to the URL\n\t\twriteURL();\n\n\t\tsortAllFragments();\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground( true );\n\t\tupdateSlideNumber();\n\t\tupdateSlidesVisibility();\n\t\tupdateNotes();\n\n\t\tformatEmbeddedContent();\n\t\tstartEmbeddedContent( currentSlide );\n\n\t\tif( isOverview() ) {\n\t\t\tlayoutOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Resets all vertical slides so that only the first\n\t * is visible.\n\t */\n\tfunction resetVerticalSlides() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tif( y > 0 ) {\n\t\t\t\t\tverticalSlide.classList.remove( 'present' );\n\t\t\t\t\tverticalSlide.classList.remove( 'past' );\n\t\t\t\t\tverticalSlide.classList.add( 'future' );\n\t\t\t\t\tverticalSlide.setAttribute( 'aria-hidden', 'true' );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Sorts and formats all of fragments in the\n\t * presentation.\n\t */\n\tfunction sortAllFragments() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tsortFragments( verticalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t\t} );\n\n\t\t\tif( verticalSlides.length === 0 ) sortFragments( horizontalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Updates one dimension of slides by showing the slide\n\t * with the specified index.\n\t *\n\t * @param {String} selector A CSS selector that will fetch\n\t * the group of slides we are working with\n\t * @param {Number} index The index of the slide that should be\n\t * shown\n\t *\n\t * @return {Number} The index of the slide that is now shown,\n\t * might differ from the passed in index if it was out of\n\t * bounds.\n\t */\n\tfunction updateSlides( selector, index ) {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar slides = toArray( dom.wrapper.querySelectorAll( selector ) ),\n\t\t\tslidesLength = slides.length;\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\tif( slidesLength ) {\n\n\t\t\t// Should the index loop?\n\t\t\tif( config.loop ) {\n\t\t\t\tindex %= slidesLength;\n\n\t\t\t\tif( index < 0 ) {\n\t\t\t\t\tindex = slidesLength + index;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Enforce max and minimum index bounds\n\t\t\tindex = Math.max( Math.min( index, slidesLength - 1 ), 0 );\n\n\t\t\tfor( var i = 0; i < slidesLength; i++ ) {\n\t\t\t\tvar element = slides[i];\n\n\t\t\t\tvar reverse = config.rtl && !isVerticalSlide( element );\n\n\t\t\t\telement.classList.remove( 'past' );\n\t\t\t\telement.classList.remove( 'present' );\n\t\t\t\telement.classList.remove( 'future' );\n\n\t\t\t\t// http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute\n\t\t\t\telement.setAttribute( 'hidden', '' );\n\t\t\t\telement.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t\t// If this element contains vertical slides\n\t\t\t\tif( element.querySelector( 'section' ) ) {\n\t\t\t\t\telement.classList.add( 'stack' );\n\t\t\t\t}\n\n\t\t\t\t// If we're printing static slides, all slides are \"present\"\n\t\t\t\tif( printMode ) {\n\t\t\t\t\telement.classList.add( 'present' );\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( i < index ) {\n\t\t\t\t\t// Any element previous to index is given the 'past' class\n\t\t\t\t\telement.classList.add( reverse ? 'future' : 'past' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar pastFragments = toArray( element.querySelectorAll( '.fragment' ) );\n\n\t\t\t\t\t\t// Show all fragments on prior slides\n\t\t\t\t\t\twhile( pastFragments.length ) {\n\t\t\t\t\t\t\tvar pastFragment = pastFragments.pop();\n\t\t\t\t\t\t\tpastFragment.classList.add( 'visible' );\n\t\t\t\t\t\t\tpastFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( i > index ) {\n\t\t\t\t\t// Any element subsequent to index is given the 'future' class\n\t\t\t\t\telement.classList.add( reverse ? 'past' : 'future' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar futureFragments = toArray( element.querySelectorAll( '.fragment.visible' ) );\n\n\t\t\t\t\t\t// No fragments in future slides should be visible ahead of time\n\t\t\t\t\t\twhile( futureFragments.length ) {\n\t\t\t\t\t\t\tvar futureFragment = futureFragments.pop();\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'visible' );\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Mark the current slide as present\n\t\t\tslides[index].classList.add( 'present' );\n\t\t\tslides[index].removeAttribute( 'hidden' );\n\t\t\tslides[index].removeAttribute( 'aria-hidden' );\n\n\t\t\t// If this slide has a state associated with it, add it\n\t\t\t// onto the current state of the deck\n\t\t\tvar slideState = slides[index].getAttribute( 'data-state' );\n\t\t\tif( slideState ) {\n\t\t\t\tstate = state.concat( slideState.split( ' ' ) );\n\t\t\t}\n\n\t\t}\n\t\telse {\n\t\t\t// Since there are no slides we can't be anywhere beyond the\n\t\t\t// zeroth index\n\t\t\tindex = 0;\n\t\t}\n\n\t\treturn index;\n\n\t}\n\n\t/**\n\t * Optimization method; hide all slides that are far away\n\t * from the present slide.\n\t */\n\tfunction updateSlidesVisibility() {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ),\n\t\t\thorizontalSlidesLength = horizontalSlides.length,\n\t\t\tdistanceX,\n\t\t\tdistanceY;\n\n\t\tif( horizontalSlidesLength && typeof indexh !== 'undefined' ) {\n\n\t\t\t// The number of steps away from the present slide that will\n\t\t\t// be visible\n\t\t\tvar viewDistance = isOverview() ? 10 : config.viewDistance;\n\n\t\t\t// Limit view distance on weaker devices\n\t\t\tif( isMobileDevice ) {\n\t\t\t\tviewDistance = isOverview() ? 6 : 2;\n\t\t\t}\n\n\t\t\t// All slides need to be visible when exporting to PDF\n\t\t\tif( isPrintingPDF() ) {\n\t\t\t\tviewDistance = Number.MAX_VALUE;\n\t\t\t}\n\n\t\t\tfor( var x = 0; x < horizontalSlidesLength; x++ ) {\n\t\t\t\tvar horizontalSlide = horizontalSlides[x];\n\n\t\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ),\n\t\t\t\t\tverticalSlidesLength = verticalSlides.length;\n\n\t\t\t\t// Determine how far away this slide is from the present\n\t\t\t\tdistanceX = Math.abs( ( indexh || 0 ) - x ) || 0;\n\n\t\t\t\t// If the presentation is looped, distance should measure\n\t\t\t\t// 1 between the first and last slides\n\t\t\t\tif( config.loop ) {\n\t\t\t\t\tdistanceX = Math.abs( ( ( indexh || 0 ) - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0;\n\t\t\t\t}\n\n\t\t\t\t// Show the horizontal slide if it's within the view distance\n\t\t\t\tif( distanceX < viewDistance ) {\n\t\t\t\t\tshowSlide( horizontalSlide );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\thideSlide( horizontalSlide );\n\t\t\t\t}\n\n\t\t\t\tif( verticalSlidesLength ) {\n\n\t\t\t\t\tvar oy = getPreviousVerticalIndex( horizontalSlide );\n\n\t\t\t\t\tfor( var y = 0; y < verticalSlidesLength; y++ ) {\n\t\t\t\t\t\tvar verticalSlide = verticalSlides[y];\n\n\t\t\t\t\t\tdistanceY = x === ( indexh || 0 ) ? Math.abs( ( indexv || 0 ) - y ) : Math.abs( y - oy );\n\n\t\t\t\t\t\tif( distanceX + distanceY < viewDistance ) {\n\t\t\t\t\t\t\tshowSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\thideSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Pick up notes from the current slide and display tham\n\t * to the viewer.\n\t *\n\t * @see `showNotes` config value\n\t */\n\tfunction updateNotes() {\n\n\t\tif( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) {\n\n\t\t\tdom.speakerNotes.innerHTML = getSlideNotes() || '';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the progress bar to reflect the current slide.\n\t */\n\tfunction updateProgress() {\n\n\t\t// Update progress if enabled\n\t\tif( config.progress && dom.progressbar ) {\n\n\t\t\tdom.progressbar.style.width = getProgress() * dom.wrapper.offsetWidth + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the slide number div to reflect the current slide.\n\t *\n\t * The following slide number formats are available:\n\t *  \"h.v\": \thorizontal . vertical slide number (default)\n\t *  \"h/v\": \thorizontal / vertical slide number\n\t *    \"c\": \tflattened slide number\n\t *  \"c/t\": \tflattened slide number / total slides\n\t */\n\tfunction updateSlideNumber() {\n\n\t\t// Update slide number if enabled\n\t\tif( config.slideNumber && dom.slideNumber ) {\n\n\t\t\tvar value = [];\n\t\t\tvar format = 'h.v';\n\n\t\t\t// Check if a custom number format is available\n\t\t\tif( typeof config.slideNumber === 'string' ) {\n\t\t\t\tformat = config.slideNumber;\n\t\t\t}\n\n\t\t\tswitch( format ) {\n\t\t\t\tcase 'c':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'c/t':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1, '/', getTotalSlides() );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'h/v':\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '/', indexv + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '.', indexv + 1 );\n\t\t\t}\n\n\t\t\tdom.slideNumber.innerHTML = formatSlideNumber( value[0], value[1], value[2] );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies HTML formatting to a slide number before it's\n\t * written to the DOM.\n\t */\n\tfunction formatSlideNumber( a, delimiter, b ) {\n\n\t\tif( typeof b === 'number' && !isNaN( b ) ) {\n\t\t\treturn  '<span class=\"slide-number-a\">'+ a +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-delimiter\">'+ delimiter +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-b\">'+ b +'</span>';\n\t\t}\n\t\telse {\n\t\t\treturn '<span class=\"slide-number-a\">'+ a +'</span>';\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the state of all control/navigation arrows.\n\t */\n\tfunction updateControls() {\n\n\t\tvar routes = availableRoutes();\n\t\tvar fragments = availableFragments();\n\n\t\t// Remove the 'enabled' class from all directions\n\t\tdom.controlsLeft.concat( dom.controlsRight )\n\t\t\t\t\t\t.concat( dom.controlsUp )\n\t\t\t\t\t\t.concat( dom.controlsDown )\n\t\t\t\t\t\t.concat( dom.controlsPrev )\n\t\t\t\t\t\t.concat( dom.controlsNext ).forEach( function( node ) {\n\t\t\tnode.classList.remove( 'enabled' );\n\t\t\tnode.classList.remove( 'fragmented' );\n\t\t} );\n\n\t\t// Add the 'enabled' class to the available routes\n\t\tif( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Prev/next buttons\n\t\tif( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Highlight fragment directions\n\t\tif( currentSlide ) {\n\n\t\t\t// Always apply fragment decorator to prev/next buttons\n\t\t\tif( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\tif( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\n\t\t\t// Apply fragment decorators to directional buttons based on\n\t\t\t// what slide axis they are in\n\t\t\tif( isVerticalSlide( currentSlide ) ) {\n\t\t\t\tif( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the background elements to reflect the current\n\t * slide.\n\t *\n\t * @param {Boolean} includeAll If true, the backgrounds of\n\t * all vertical slides (not just the present) will be updated.\n\t */\n\tfunction updateBackground( includeAll ) {\n\n\t\tvar currentBackground = null;\n\n\t\t// Reverse past/future classes when in RTL mode\n\t\tvar horizontalPast = config.rtl ? 'future' : 'past',\n\t\t\thorizontalFuture = config.rtl ? 'past' : 'future';\n\n\t\t// Update the classes of all backgrounds to match the\n\t\t// states of their slides (past/present/future)\n\t\ttoArray( dom.background.childNodes ).forEach( function( backgroundh, h ) {\n\n\t\t\tbackgroundh.classList.remove( 'past' );\n\t\t\tbackgroundh.classList.remove( 'present' );\n\t\t\tbackgroundh.classList.remove( 'future' );\n\n\t\t\tif( h < indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalPast );\n\t\t\t}\n\t\t\telse if ( h > indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalFuture );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundh.classList.add( 'present' );\n\n\t\t\t\t// Store a reference to the current background element\n\t\t\t\tcurrentBackground = backgroundh;\n\t\t\t}\n\n\t\t\tif( includeAll || h === indexh ) {\n\t\t\t\ttoArray( backgroundh.querySelectorAll( '.slide-background' ) ).forEach( function( backgroundv, v ) {\n\n\t\t\t\t\tbackgroundv.classList.remove( 'past' );\n\t\t\t\t\tbackgroundv.classList.remove( 'present' );\n\t\t\t\t\tbackgroundv.classList.remove( 'future' );\n\n\t\t\t\t\tif( v < indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'past' );\n\t\t\t\t\t}\n\t\t\t\t\telse if ( v > indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'future' );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tbackgroundv.classList.add( 'present' );\n\n\t\t\t\t\t\t// Only if this is the present horizontal and vertical slide\n\t\t\t\t\t\tif( h === indexh ) currentBackground = backgroundv;\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\t\t\t}\n\n\t\t} );\n\n\t\t// Stop any currently playing video background\n\t\tif( previousBackground ) {\n\n\t\t\tvar previousVideo = previousBackground.querySelector( 'video' );\n\t\t\tif( previousVideo ) previousVideo.pause();\n\n\t\t}\n\n\t\tif( currentBackground ) {\n\n\t\t\t// Start video playback\n\t\t\tvar currentVideo = currentBackground.querySelector( 'video' );\n\t\t\tif( currentVideo ) {\n\t\t\t\tif( currentVideo.currentTime > 0 ) currentVideo.currentTime = 0;\n\t\t\t\tcurrentVideo.play();\n\t\t\t}\n\n\t\t\tvar backgroundImageURL = currentBackground.style.backgroundImage || '';\n\n\t\t\t// Restart GIFs (doesn't work in Firefox)\n\t\t\tif( /\\.gif/i.test( backgroundImageURL ) ) {\n\t\t\t\tcurrentBackground.style.backgroundImage = '';\n\t\t\t\twindow.getComputedStyle( currentBackground ).opacity;\n\t\t\t\tcurrentBackground.style.backgroundImage = backgroundImageURL;\n\t\t\t}\n\n\t\t\t// Don't transition between identical backgrounds. This\n\t\t\t// prevents unwanted flicker.\n\t\t\tvar previousBackgroundHash = previousBackground ? previousBackground.getAttribute( 'data-background-hash' ) : null;\n\t\t\tvar currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' );\n\t\t\tif( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== previousBackground ) {\n\t\t\t\tdom.background.classList.add( 'no-transition' );\n\t\t\t}\n\n\t\t\tpreviousBackground = currentBackground;\n\n\t\t}\n\n\t\t// If there's a background brightness flag for this slide,\n\t\t// bubble it to the .reveal container\n\t\tif( currentSlide ) {\n\t\t\t[ 'has-light-background', 'has-dark-background' ].forEach( function( classToBubble ) {\n\t\t\t\tif( currentSlide.classList.contains( classToBubble ) ) {\n\t\t\t\t\tdom.wrapper.classList.add( classToBubble );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tdom.wrapper.classList.remove( classToBubble );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Allow the first background to apply without transition\n\t\tsetTimeout( function() {\n\t\t\tdom.background.classList.remove( 'no-transition' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Updates the position of the parallax background based\n\t * on the current slide index.\n\t */\n\tfunction updateParallax() {\n\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\t\tvar backgroundSize = dom.background.style.backgroundSize.split( ' ' ),\n\t\t\t\tbackgroundWidth, backgroundHeight;\n\n\t\t\tif( backgroundSize.length === 1 ) {\n\t\t\t\tbackgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundWidth = parseInt( backgroundSize[0], 10 );\n\t\t\t\tbackgroundHeight = parseInt( backgroundSize[1], 10 );\n\t\t\t}\n\n\t\t\tvar slideWidth = dom.background.offsetWidth,\n\t\t\t\thorizontalSlideCount = horizontalSlides.length,\n\t\t\t\thorizontalOffsetMultiplier,\n\t\t\t\thorizontalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundHorizontal === 'number' ) {\n\t\t\t\thorizontalOffsetMultiplier = config.parallaxBackgroundHorizontal;\n\t\t\t}\n\t\t\telse {\n\t\t\t\thorizontalOffsetMultiplier = ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 );\n\t\t\t}\n\n\t\t\thorizontalOffset = horizontalOffsetMultiplier * indexh * -1;\n\n\t\t\tvar slideHeight = dom.background.offsetHeight,\n\t\t\t\tverticalSlideCount = verticalSlides.length,\n\t\t\t\tverticalOffsetMultiplier,\n\t\t\t\tverticalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundVertical === 'number' ) {\n\t\t\t\tverticalOffsetMultiplier = config.parallaxBackgroundVertical;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tverticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 );\n\t\t\t}\n\n\t\t\tverticalOffset = verticalSlideCount > 0 ?  verticalOffsetMultiplier * indexv * 1 : 0;\n\n\t\t\tdom.background.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is within the configured view\n\t * distance. Shows the slide element and loads any content\n\t * that is set to load lazily (data-src).\n\t */\n\tfunction showSlide( slide ) {\n\n\t\t// Show the slide element\n\t\tslide.style.display = 'block';\n\n\t\t// Media elements with data-src attributes\n\t\ttoArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src]' ) ).forEach( function( element ) {\n\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\telement.removeAttribute( 'data-src' );\n\t\t} );\n\n\t\t// Media elements with <source> children\n\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( media ) {\n\t\t\tvar sources = 0;\n\n\t\t\ttoArray( media.querySelectorAll( 'source[data-src]' ) ).forEach( function( source ) {\n\t\t\t\tsource.setAttribute( 'src', source.getAttribute( 'data-src' ) );\n\t\t\t\tsource.removeAttribute( 'data-src' );\n\t\t\t\tsources += 1;\n\t\t\t} );\n\n\t\t\t// If we rewrote sources for this video/audio element, we need\n\t\t\t// to manually tell it to load from its new origin\n\t\t\tif( sources > 0 ) {\n\t\t\t\tmedia.load();\n\t\t\t}\n\t\t} );\n\n\n\t\t// Show the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'block';\n\n\t\t\t// If the background contains media, load it\n\t\t\tif( background.hasAttribute( 'data-loaded' ) === false ) {\n\t\t\t\tbackground.setAttribute( 'data-loaded', 'true' );\n\n\t\t\t\tvar backgroundImage = slide.getAttribute( 'data-background-image' ),\n\t\t\t\t\tbackgroundVideo = slide.getAttribute( 'data-background-video' ),\n\t\t\t\t\tbackgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ),\n\t\t\t\t\tbackgroundIframe = slide.getAttribute( 'data-background-iframe' );\n\n\t\t\t\t// Images\n\t\t\t\tif( backgroundImage ) {\n\t\t\t\t\tbackground.style.backgroundImage = 'url('+ backgroundImage +')';\n\t\t\t\t}\n\t\t\t\t// Videos\n\t\t\t\telse if ( backgroundVideo && !isSpeakerNotes() ) {\n\t\t\t\t\tvar video = document.createElement( 'video' );\n\n\t\t\t\t\tif( backgroundVideoLoop ) {\n\t\t\t\t\t\tvideo.setAttribute( 'loop', '' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support comma separated lists of video sources\n\t\t\t\t\tbackgroundVideo.split( ',' ).forEach( function( source ) {\n\t\t\t\t\t\tvideo.innerHTML += '<source src=\"'+ source +'\">';\n\t\t\t\t\t} );\n\n\t\t\t\t\tbackground.appendChild( video );\n\t\t\t\t}\n\t\t\t\t// Iframes\n\t\t\t\telse if( backgroundIframe ) {\n\t\t\t\t\tvar iframe = document.createElement( 'iframe' );\n\t\t\t\t\t\tiframe.setAttribute( 'src', backgroundIframe );\n\t\t\t\t\t\tiframe.style.width  = '100%';\n\t\t\t\t\t\tiframe.style.height = '100%';\n\t\t\t\t\t\tiframe.style.maxHeight = '100%';\n\t\t\t\t\t\tiframe.style.maxWidth = '100%';\n\n\t\t\t\t\tbackground.appendChild( iframe );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is moved outside of the\n\t * configured view distance.\n\t */\n\tfunction hideSlide( slide ) {\n\n\t\t// Hide the slide element\n\t\tslide.style.display = 'none';\n\n\t\t// Hide the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'none';\n\t\t}\n\n\t}\n\n\t/**\n\t * Determine what available routes there are for navigation.\n\t *\n\t * @return {Object} containing four booleans: left/right/up/down\n\t */\n\tfunction availableRoutes() {\n\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\tvar routes = {\n\t\t\tleft: indexh > 0 || config.loop,\n\t\t\tright: indexh < horizontalSlides.length - 1 || config.loop,\n\t\t\tup: indexv > 0,\n\t\t\tdown: indexv < verticalSlides.length - 1\n\t\t};\n\n\t\t// reverse horizontal controls for rtl\n\t\tif( config.rtl ) {\n\t\t\tvar left = routes.left;\n\t\t\troutes.left = routes.right;\n\t\t\troutes.right = left;\n\t\t}\n\n\t\treturn routes;\n\n\t}\n\n\t/**\n\t * Returns an object describing the available fragment\n\t * directions.\n\t *\n\t * @return {Object} two boolean properties: prev/next\n\t */\n\tfunction availableFragments() {\n\n\t\tif( currentSlide && config.fragments ) {\n\t\t\tvar fragments = currentSlide.querySelectorAll( '.fragment' );\n\t\t\tvar hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' );\n\n\t\t\treturn {\n\t\t\t\tprev: fragments.length - hiddenFragments.length > 0,\n\t\t\t\tnext: !!hiddenFragments.length\n\t\t\t};\n\t\t}\n\t\telse {\n\t\t\treturn { prev: false, next: false };\n\t\t}\n\n\t}\n\n\t/**\n\t * Enforces origin-specific format rules for embedded media.\n\t */\n\tfunction formatEmbeddedContent() {\n\n\t\tvar _appendParamToIframeSource = function( sourceAttribute, sourceURL, param ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( 'iframe['+ sourceAttribute +'*=\"'+ sourceURL +'\"]' ) ).forEach( function( el ) {\n\t\t\t\tvar src = el.getAttribute( sourceAttribute );\n\t\t\t\tif( src && src.indexOf( param ) === -1 ) {\n\t\t\t\t\tel.setAttribute( sourceAttribute, src + ( !/\\?/.test( src ) ? '?' : '&' ) + param );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\t// YouTube frames must include \"?enablejsapi=1\"\n\t\t_appendParamToIframeSource( 'src', 'youtube.com/embed/', 'enablejsapi=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'youtube.com/embed/', 'enablejsapi=1' );\n\n\t\t// Vimeo frames must include \"?api=1\"\n\t\t_appendParamToIframeSource( 'src', 'player.vimeo.com/', 'api=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'player.vimeo.com/', 'api=1' );\n\n\t}\n\n\t/**\n\t * Start playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction startEmbeddedContent( slide ) {\n\n\t\tif( slide && !isSpeakerNotes() ) {\n\t\t\t// Restart GIFs\n\t\t\ttoArray( slide.querySelectorAll( 'img[src$=\".gif\"]' ) ).forEach( function( el ) {\n\t\t\t\t// Setting the same unchanged source like this was confirmed\n\t\t\t\t// to work in Chrome, FF & Safari\n\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'src' ) );\n\t\t\t} );\n\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) && typeof el.play === 'function' ) {\n\t\t\t\t\tel.play();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Normal iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src]' ) ).forEach( function( el ) {\n\t\t\t\tstartEmbeddedIframe( { target: el } );\n\t\t\t} );\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\tif( el.getAttribute( 'src' ) !== el.getAttribute( 'data-src' ) ) {\n\t\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe ); // remove first to avoid dupes\n\t\t\t\t\tel.addEventListener( 'load', startEmbeddedIframe );\n\t\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'data-src' ) );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * \"Starts\" the content of an embedded iframe using the\n\t * postmessage API.\n\t */\n\tfunction startEmbeddedIframe( event ) {\n\n\t\tvar iframe = event.target;\n\n\t\t// YouTube postMessage API\n\t\tif( /youtube\\.com\\/embed\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"playVideo\",\"args\":\"\"}', '*' );\n\t\t}\n\t\t// Vimeo postMessage API\n\t\telse if( /player\\.vimeo\\.com\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"method\":\"play\"}', '*' );\n\t\t}\n\t\t// Generic postMessage API\n\t\telse {\n\t\t\tiframe.contentWindow.postMessage( 'slide:start', '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Stop playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction stopEmbeddedContent( slide ) {\n\n\t\tif( slide && slide.parentNode ) {\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) {\n\t\t\t\t\tel.pause();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Generic postMessage API for non-lazy loaded iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe' ) ).forEach( function( el ) {\n\t\t\t\tel.contentWindow.postMessage( 'slide:stop', '*' );\n\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe );\n\t\t\t});\n\n\t\t\t// YouTube postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"youtube.com/embed/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"pauseVideo\",\"args\":\"\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Vimeo postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"player.vimeo.com/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"method\":\"pause\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\t// Only removing the src doesn't actually unload the frame\n\t\t\t\t// in all browsers (Firefox) so we set it to blank first\n\t\t\t\tel.setAttribute( 'src', 'about:blank' );\n\t\t\t\tel.removeAttribute( 'src' );\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Returns the number of past slides. This can be used as a global\n\t * flattened index for slides.\n\t */\n\tfunction getSlidePastCount() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t// The number of past slides\n\t\tvar pastCount = 0;\n\n\t\t// Step through all slides and count the past ones\n\t\tmainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) {\n\n\t\t\tvar horizontalSlide = horizontalSlides[i];\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\n\t\t\tfor( var j = 0; j < verticalSlides.length; j++ ) {\n\n\t\t\t\t// Stop as soon as we arrive at the present\n\t\t\t\tif( verticalSlides[j].classList.contains( 'present' ) ) {\n\t\t\t\t\tbreak mainLoop;\n\t\t\t\t}\n\n\t\t\t\tpastCount++;\n\n\t\t\t}\n\n\t\t\t// Stop as soon as we arrive at the present\n\t\t\tif( horizontalSlide.classList.contains( 'present' ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// Don't count the wrapping section for vertical slides\n\t\t\tif( horizontalSlide.classList.contains( 'stack' ) === false ) {\n\t\t\t\tpastCount++;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount;\n\n\t}\n\n\t/**\n\t * Returns a value ranging from 0-1 that represents\n\t * how far into the presentation we have navigated.\n\t */\n\tfunction getProgress() {\n\n\t\t// The number of past and total slides\n\t\tvar totalCount = getTotalSlides();\n\t\tvar pastCount = getSlidePastCount();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar allFragments = currentSlide.querySelectorAll( '.fragment' );\n\n\t\t\t// If there are fragments in the current slide those should be\n\t\t\t// accounted for in the progress.\n\t\t\tif( allFragments.length > 0 ) {\n\t\t\t\tvar visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );\n\n\t\t\t\t// This value represents how big a portion of the slide progress\n\t\t\t\t// that is made up by its fragments (0-1)\n\t\t\t\tvar fragmentWeight = 0.9;\n\n\t\t\t\t// Add fragment progress to the past slide count\n\t\t\t\tpastCount += ( visibleFragments.length / allFragments.length ) * fragmentWeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount / ( totalCount - 1 );\n\n\t}\n\n\t/**\n\t * Checks if this presentation is running inside of the\n\t * speaker notes window.\n\t */\n\tfunction isSpeakerNotes() {\n\n\t\treturn !!window.location.search.match( /receiver/gi );\n\n\t}\n\n\t/**\n\t * Reads the current URL (hash) and navigates accordingly.\n\t */\n\tfunction readURL() {\n\n\t\tvar hash = window.location.hash;\n\n\t\t// Attempt to parse the hash as either an index or name\n\t\tvar bits = hash.slice( 2 ).split( '/' ),\n\t\t\tname = hash.replace( /#|\\//gi, '' );\n\n\t\t// If the first bit is invalid and there is a name we can\n\t\t// assume that this is a named link\n\t\tif( isNaN( parseInt( bits[0], 10 ) ) && name.length ) {\n\t\t\tvar element;\n\n\t\t\t// Ensure the named link is a valid HTML ID attribute\n\t\t\tif( /^[a-zA-Z][\\w:.-]*$/.test( name ) ) {\n\t\t\t\t// Find the slide with the specified ID\n\t\t\t\telement = document.getElementById( name );\n\t\t\t}\n\n\t\t\tif( element ) {\n\t\t\t\t// Find the position of the named slide and navigate to it\n\t\t\t\tvar indices = Reveal.getIndices( element );\n\t\t\t\tslide( indices.h, indices.v );\n\t\t\t}\n\t\t\t// If the slide doesn't exist, navigate to the current slide\n\t\t\telse {\n\t\t\t\tslide( indexh || 0, indexv || 0 );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Read the index components of the hash\n\t\t\tvar h = parseInt( bits[0], 10 ) || 0,\n\t\t\t\tv = parseInt( bits[1], 10 ) || 0;\n\n\t\t\tif( h !== indexh || v !== indexv ) {\n\t\t\t\tslide( h, v );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the page URL (hash) to reflect the current\n\t * state.\n\t *\n\t * @param {Number} delay The time in ms to wait before\n\t * writing the hash\n\t */\n\tfunction writeURL( delay ) {\n\n\t\tif( config.history ) {\n\n\t\t\t// Make sure there's never more than one timeout running\n\t\t\tclearTimeout( writeURLTimeout );\n\n\t\t\t// If a delay is specified, timeout this call\n\t\t\tif( typeof delay === 'number' ) {\n\t\t\t\twriteURLTimeout = setTimeout( writeURL, delay );\n\t\t\t}\n\t\t\telse if( currentSlide ) {\n\t\t\t\tvar url = '/';\n\n\t\t\t\t// Attempt to create a named link based on the slide's ID\n\t\t\t\tvar id = currentSlide.getAttribute( 'id' );\n\t\t\t\tif( id ) {\n\t\t\t\t\tid = id.replace( /[^a-zA-Z0-9\\-\\_\\:\\.]/g, '' );\n\t\t\t\t}\n\n\t\t\t\t// If the current slide has an ID, use that as a named link\n\t\t\t\tif( typeof id === 'string' && id.length ) {\n\t\t\t\t\turl = '/' + id;\n\t\t\t\t}\n\t\t\t\t// Otherwise use the /h/v index\n\t\t\t\telse {\n\t\t\t\t\tif( indexh > 0 || indexv > 0 ) url += indexh;\n\t\t\t\t\tif( indexv > 0 ) url += '/' + indexv;\n\t\t\t\t}\n\n\t\t\t\twindow.location.hash = url;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the h/v location of the current, or specified,\n\t * slide.\n\t *\n\t * @param {HTMLElement} slide If specified, the returned\n\t * index will be for this slide rather than the currently\n\t * active one\n\t *\n\t * @return {Object} { h: <int>, v: <int>, f: <int> }\n\t */\n\tfunction getIndices( slide ) {\n\n\t\t// By default, return the current indices\n\t\tvar h = indexh,\n\t\t\tv = indexv,\n\t\t\tf;\n\n\t\t// If a slide is specified, return the indices of that slide\n\t\tif( slide ) {\n\t\t\tvar isVertical = isVerticalSlide( slide );\n\t\t\tvar slideh = isVertical ? slide.parentNode : slide;\n\n\t\t\t// Select all horizontal slides\n\t\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t\t// Now that we know which the horizontal slide is, get its index\n\t\t\th = Math.max( horizontalSlides.indexOf( slideh ), 0 );\n\n\t\t\t// Assume we're not vertical\n\t\t\tv = undefined;\n\n\t\t\t// If this is a vertical slide, grab the vertical index\n\t\t\tif( isVertical ) {\n\t\t\t\tv = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 );\n\t\t\t}\n\t\t}\n\n\t\tif( !slide && currentSlide ) {\n\t\t\tvar hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0;\n\t\t\tif( hasFragments ) {\n\t\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\t\t\t\tif( currentFragment && currentFragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\tf = parseInt( currentFragment.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tf = currentSlide.querySelectorAll( '.fragment.visible' ).length - 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn { h: h, v: v, f: f };\n\n\t}\n\n\t/**\n\t * Retrieves the total number of slides in this presentation.\n\t */\n\tfunction getTotalSlides() {\n\n\t\treturn dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;\n\n\t}\n\n\t/**\n\t * Returns the slide element matching the specified index.\n\t */\n\tfunction getSlide( x, y ) {\n\n\t\tvar horizontalSlide = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];\n\t\tvar verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );\n\n\t\tif( verticalSlides && verticalSlides.length && typeof y === 'number' ) {\n\t\t\treturn verticalSlides ? verticalSlides[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalSlide;\n\n\t}\n\n\t/**\n\t * Returns the background element for the given slide.\n\t * All slides, even the ones with no background properties\n\t * defined, have a background element so as long as the\n\t * index is valid an element will be returned.\n\t */\n\tfunction getSlideBackground( x, y ) {\n\n\t\t// When printing to PDF the slide backgrounds are nested\n\t\t// inside of the slides\n\t\tif( isPrintingPDF() ) {\n\t\t\tvar slide = getSlide( x, y );\n\t\t\tif( slide ) {\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background && background.parentNode === slide ) {\n\t\t\t\t\treturn background;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn undefined;\n\t\t}\n\n\t\tvar horizontalBackground = dom.wrapper.querySelectorAll( '.backgrounds>.slide-background' )[ x ];\n\t\tvar verticalBackgrounds = horizontalBackground && horizontalBackground.querySelectorAll( '.slide-background' );\n\n\t\tif( verticalBackgrounds && verticalBackgrounds.length && typeof y === 'number' ) {\n\t\t\treturn verticalBackgrounds ? verticalBackgrounds[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalBackground;\n\n\t}\n\n\t/**\n\t * Retrieves the speaker notes from a slide. Notes can be\n\t * defined in two ways:\n\t * 1. As a data-notes attribute on the slide <section>\n\t * 2. As an <aside class=\"notes\"> inside of the slide\n\t */\n\tfunction getSlideNotes( slide ) {\n\n\t\t// Default to the current slide\n\t\tslide = slide || currentSlide;\n\n\t\t// Notes can be specified via the data-notes attribute...\n\t\tif( slide.hasAttribute( 'data-notes' ) ) {\n\t\t\treturn slide.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// ... or using an <aside class=\"notes\"> element\n\t\tvar notesElement = slide.querySelector( 'aside.notes' );\n\t\tif( notesElement ) {\n\t\t\treturn notesElement.innerHTML;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the current state of the presentation as\n\t * an object. This state can then be restored at any\n\t * time.\n\t */\n\tfunction getState() {\n\n\t\tvar indices = getIndices();\n\n\t\treturn {\n\t\t\tindexh: indices.h,\n\t\t\tindexv: indices.v,\n\t\t\tindexf: indices.f,\n\t\t\tpaused: isPaused(),\n\t\t\toverview: isOverview()\n\t\t};\n\n\t}\n\n\t/**\n\t * Restores the presentation to the given state.\n\t *\n\t * @param {Object} state As generated by getState()\n\t */\n\tfunction setState( state ) {\n\n\t\tif( typeof state === 'object' ) {\n\t\t\tslide( deserialize( state.indexh ), deserialize( state.indexv ), deserialize( state.indexf ) );\n\n\t\t\tvar pausedFlag = deserialize( state.paused ),\n\t\t\t\toverviewFlag = deserialize( state.overview );\n\n\t\t\tif( typeof pausedFlag === 'boolean' && pausedFlag !== isPaused() ) {\n\t\t\t\ttogglePause( pausedFlag );\n\t\t\t}\n\n\t\t\tif( typeof overviewFlag === 'boolean' && overviewFlag !== isOverview() ) {\n\t\t\t\ttoggleOverview( overviewFlag );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Return a sorted fragments list, ordered by an increasing\n\t * \"data-fragment-index\" attribute.\n\t *\n\t * Fragments will be revealed in the order that they are returned by\n\t * this function, so you can use the index attributes to control the\n\t * order of fragment appearance.\n\t *\n\t * To maintain a sensible default fragment order, fragments are presumed\n\t * to be passed in document order. This function adds a \"fragment-index\"\n\t * attribute to each node if such an attribute is not already present,\n\t * and sets that attribute to an integer value which is the position of\n\t * the fragment within the fragments list.\n\t */\n\tfunction sortFragments( fragments ) {\n\n\t\tfragments = toArray( fragments );\n\n\t\tvar ordered = [],\n\t\t\tunordered = [],\n\t\t\tsorted = [];\n\n\t\t// Group ordered and unordered elements\n\t\tfragments.forEach( function( fragment, i ) {\n\t\t\tif( fragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\tvar index = parseInt( fragment.getAttribute( 'data-fragment-index' ), 10 );\n\n\t\t\t\tif( !ordered[index] ) {\n\t\t\t\t\tordered[index] = [];\n\t\t\t\t}\n\n\t\t\t\tordered[index].push( fragment );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tunordered.push( [ fragment ] );\n\t\t\t}\n\t\t} );\n\n\t\t// Append fragments without explicit indices in their\n\t\t// DOM order\n\t\tordered = ordered.concat( unordered );\n\n\t\t// Manually count the index up per group to ensure there\n\t\t// are no gaps\n\t\tvar index = 0;\n\n\t\t// Push all fragments in their sorted order to an array,\n\t\t// this flattens the groups\n\t\tordered.forEach( function( group ) {\n\t\t\tgroup.forEach( function( fragment ) {\n\t\t\t\tsorted.push( fragment );\n\t\t\t\tfragment.setAttribute( 'data-fragment-index', index );\n\t\t\t} );\n\n\t\t\tindex ++;\n\t\t} );\n\n\t\treturn sorted;\n\n\t}\n\n\t/**\n\t * Navigate to the specified slide fragment.\n\t *\n\t * @param {Number} index The index of the fragment that\n\t * should be shown, -1 means all are invisible\n\t * @param {Number} offset Integer offset to apply to the\n\t * fragment index\n\t *\n\t * @return {Boolean} true if a change was made in any\n\t * fragments visibility as part of this call\n\t */\n\tfunction navigateFragment( index, offset ) {\n\n\t\tif( currentSlide && config.fragments ) {\n\n\t\t\tvar fragments = sortFragments( currentSlide.querySelectorAll( '.fragment' ) );\n\t\t\tif( fragments.length ) {\n\n\t\t\t\t// If no index is specified, find the current\n\t\t\t\tif( typeof index !== 'number' ) {\n\t\t\t\t\tvar lastVisibleFragment = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) ).pop();\n\n\t\t\t\t\tif( lastVisibleFragment ) {\n\t\t\t\t\t\tindex = parseInt( lastVisibleFragment.getAttribute( 'data-fragment-index' ) || 0, 10 );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tindex = -1;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If an offset is specified, apply it to the index\n\t\t\t\tif( typeof offset === 'number' ) {\n\t\t\t\t\tindex += offset;\n\t\t\t\t}\n\n\t\t\t\tvar fragmentsShown = [],\n\t\t\t\t\tfragmentsHidden = [];\n\n\t\t\t\ttoArray( fragments ).forEach( function( element, i ) {\n\n\t\t\t\t\tif( element.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\t\ti = parseInt( element.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Visible fragments\n\t\t\t\t\tif( i <= index ) {\n\t\t\t\t\t\tif( !element.classList.contains( 'visible' ) ) fragmentsShown.push( element );\n\t\t\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\n\t\t\t\t\t\t// Announce the fragments one by one to the Screen Reader\n\t\t\t\t\t\tdom.statusDiv.textContent = element.textContent;\n\n\t\t\t\t\t\tif( i === index ) {\n\t\t\t\t\t\t\telement.classList.add( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Hidden fragments\n\t\t\t\t\telse {\n\t\t\t\t\t\tif( element.classList.contains( 'visible' ) ) fragmentsHidden.push( element );\n\t\t\t\t\t\telement.classList.remove( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t\t\t}\n\n\n\t\t\t\t} );\n\n\t\t\t\tif( fragmentsHidden.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmenthidden', { fragment: fragmentsHidden[0], fragments: fragmentsHidden } );\n\t\t\t\t}\n\n\t\t\t\tif( fragmentsShown.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmentshown', { fragment: fragmentsShown[0], fragments: fragmentsShown } );\n\t\t\t\t}\n\n\t\t\t\tupdateControls();\n\t\t\t\tupdateProgress();\n\n\t\t\t\treturn !!( fragmentsShown.length || fragmentsHidden.length );\n\n\t\t\t}\n\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Navigate to the next slide fragment.\n\t *\n\t * @return {Boolean} true if there was a next fragment,\n\t * false otherwise\n\t */\n\tfunction nextFragment() {\n\n\t\treturn navigateFragment( null, 1 );\n\n\t}\n\n\t/**\n\t * Navigate to the previous slide fragment.\n\t *\n\t * @return {Boolean} true if there was a previous fragment,\n\t * false otherwise\n\t */\n\tfunction previousFragment() {\n\n\t\treturn navigateFragment( null, -1 );\n\n\t}\n\n\t/**\n\t * Cues a new automated slide if enabled in the config.\n\t */\n\tfunction cueAutoSlide() {\n\n\t\tcancelAutoSlide();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\n\t\t\tvar fragmentAutoSlide = currentFragment ? currentFragment.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar parentAutoSlide = currentSlide.parentNode ? currentSlide.parentNode.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar slideAutoSlide = currentSlide.getAttribute( 'data-autoslide' );\n\n\t\t\t// Pick value in the following priority order:\n\t\t\t// 1. Current fragment's data-autoslide\n\t\t\t// 2. Current slide's data-autoslide\n\t\t\t// 3. Parent slide's data-autoslide\n\t\t\t// 4. Global autoSlide setting\n\t\t\tif( fragmentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( fragmentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( slideAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( slideAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( parentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( parentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tautoSlide = config.autoSlide;\n\t\t\t}\n\n\t\t\t// If there are media elements with data-autoplay,\n\t\t\t// automatically set the autoSlide duration to the\n\t\t\t// length of that media. Not applicable if the slide\n\t\t\t// is divided up into fragments.\n\t\t\tif( currentSlide.querySelectorAll( '.fragment' ).length === 0 ) {\n\t\t\t\ttoArray( currentSlide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) ) {\n\t\t\t\t\t\tif( autoSlide && el.duration * 1000 > autoSlide ) {\n\t\t\t\t\t\t\tautoSlide = ( el.duration * 1000 ) + 1000;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Cue the next auto-slide if:\n\t\t\t// - There is an autoSlide value\n\t\t\t// - Auto-sliding isn't paused by the user\n\t\t\t// - The presentation isn't paused\n\t\t\t// - The overview isn't active\n\t\t\t// - The presentation isn't over\n\t\t\tif( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || availableFragments().next || config.loop === true ) ) {\n\t\t\t\tautoSlideTimeout = setTimeout( navigateNext, autoSlide );\n\t\t\t\tautoSlideStartTime = Date.now();\n\t\t\t}\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( autoSlideTimeout !== -1 );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Cancels any ongoing request to auto-slide.\n\t */\n\tfunction cancelAutoSlide() {\n\n\t\tclearTimeout( autoSlideTimeout );\n\t\tautoSlideTimeout = -1;\n\n\t}\n\n\tfunction pauseAutoSlide() {\n\n\t\tif( autoSlide && !autoSlidePaused ) {\n\t\t\tautoSlidePaused = true;\n\t\t\tdispatchEvent( 'autoslidepaused' );\n\t\t\tclearTimeout( autoSlideTimeout );\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( false );\n\t\t\t}\n\t\t}\n\n\t}\n\n\tfunction resumeAutoSlide() {\n\n\t\tif( autoSlide && autoSlidePaused ) {\n\t\t\tautoSlidePaused = false;\n\t\t\tdispatchEvent( 'autoslideresumed' );\n\t\t\tcueAutoSlide();\n\t\t}\n\n\t}\n\n\tfunction navigateLeft() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().left ) {\n\t\t\t\tslide( indexh + 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || previousFragment() === false ) && availableRoutes().left ) {\n\t\t\tslide( indexh - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateRight() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().right ) {\n\t\t\t\tslide( indexh - 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || nextFragment() === false ) && availableRoutes().right ) {\n\t\t\tslide( indexh + 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateUp() {\n\n\t\t// Prioritize hiding fragments\n\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().up ) {\n\t\t\tslide( indexh, indexv - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateDown() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().down ) {\n\t\t\tslide( indexh, indexv + 1 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Navigates backwards, prioritized in the following order:\n\t * 1) Previous fragment\n\t * 2) Previous vertical slide\n\t * 3) Previous horizontal slide\n\t */\n\tfunction navigatePrev() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( previousFragment() === false ) {\n\t\t\tif( availableRoutes().up ) {\n\t\t\t\tnavigateUp();\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Fetch the previous horizontal slide, if there is one\n\t\t\t\tvar previousSlide;\n\n\t\t\t\tif( config.rtl ) {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.future' ) ).pop();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.past' ) ).pop();\n\t\t\t\t}\n\n\t\t\t\tif( previousSlide ) {\n\t\t\t\t\tvar v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;\n\t\t\t\t\tvar h = indexh - 1;\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * The reverse of #navigatePrev().\n\t */\n\tfunction navigateNext() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( nextFragment() === false ) {\n\t\t\tif( availableRoutes().down ) {\n\t\t\t\tnavigateDown();\n\t\t\t}\n\t\t\telse if( config.rtl ) {\n\t\t\t\tnavigateLeft();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigateRight();\n\t\t\t}\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Checks if the target element prevents the triggering of\n\t * swipe navigation.\n\t */\n\tfunction isSwipePrevented( target ) {\n\n\t\twhile( target && typeof target.hasAttribute === 'function' ) {\n\t\t\tif( target.hasAttribute( 'data-prevent-swipe' ) ) return true;\n\t\t\ttarget = target.parentNode;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ----------------------------- EVENTS -------------------------------//\n\t// --------------------------------------------------------------------//\n\n\t/**\n\t * Called by all event handlers that are based on user\n\t * input.\n\t */\n\tfunction onUserInput( event ) {\n\n\t\tif( config.autoSlideStoppable ) {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keypress' event.\n\t */\n\tfunction onDocumentKeyPress( event ) {\n\n\t\t// Check if the pressed key is question mark\n\t\tif( event.shiftKey && event.charCode === 63 ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tshowHelp( true );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keydown' event.\n\t */\n\tfunction onDocumentKeyDown( event ) {\n\n\t\t// If there's a condition specified and it returns false,\n\t\t// ignore this event\n\t\tif( typeof config.keyboardCondition === 'function' && config.keyboardCondition() === false ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Remember if auto-sliding was paused so we can toggle it\n\t\tvar autoSlideWasPaused = autoSlidePaused;\n\n\t\tonUserInput( event );\n\n\t\t// Check if there's a focused element that could be using\n\t\t// the keyboard\n\t\tvar activeElementIsCE = document.activeElement && document.activeElement.contentEditable !== 'inherit';\n\t\tvar activeElementIsInput = document.activeElement && document.activeElement.tagName && /input|textarea/i.test( document.activeElement.tagName );\n\n\t\t// Disregard the event if there's a focused element or a\n\t\t// keyboard modifier key is present\n\t\tif( activeElementIsCE || activeElementIsInput || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t// While paused only allow resume keyboard events; 'b', '.''\n\t\tvar resumeKeyCodes = [66,190,191];\n\t\tvar key;\n\n\t\t// Custom key bindings for togglePause should be able to resume\n\t\tif( typeof config.keyboard === 'object' ) {\n\t\t\tfor( key in config.keyboard ) {\n\t\t\t\tif( config.keyboard[key] === 'togglePause' ) {\n\t\t\t\t\tresumeKeyCodes.push( parseInt( key, 10 ) );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif( isPaused() && resumeKeyCodes.indexOf( event.keyCode ) === -1 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar triggered = false;\n\n\t\t// 1. User defined key bindings\n\t\tif( typeof config.keyboard === 'object' ) {\n\n\t\t\tfor( key in config.keyboard ) {\n\n\t\t\t\t// Check if this binding matches the pressed key\n\t\t\t\tif( parseInt( key, 10 ) === event.keyCode ) {\n\n\t\t\t\t\tvar value = config.keyboard[ key ];\n\n\t\t\t\t\t// Callback function\n\t\t\t\t\tif( typeof value === 'function' ) {\n\t\t\t\t\t\tvalue.apply( null, [ event ] );\n\t\t\t\t\t}\n\t\t\t\t\t// String shortcuts to reveal.js API\n\t\t\t\t\telse if( typeof value === 'string' && typeof Reveal[ value ] === 'function' ) {\n\t\t\t\t\t\tReveal[ value ].call();\n\t\t\t\t\t}\n\n\t\t\t\t\ttriggered = true;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// 2. System defined key bindings\n\t\tif( triggered === false ) {\n\n\t\t\t// Assume true and try to prove false\n\t\t\ttriggered = true;\n\n\t\t\tswitch( event.keyCode ) {\n\t\t\t\t// p, page up\n\t\t\t\tcase 80: case 33: navigatePrev(); break;\n\t\t\t\t// n, page down\n\t\t\t\tcase 78: case 34: navigateNext(); break;\n\t\t\t\t// h, left\n\t\t\t\tcase 72: case 37: navigateLeft(); break;\n\t\t\t\t// l, right\n\t\t\t\tcase 76: case 39: navigateRight(); break;\n\t\t\t\t// k, up\n\t\t\t\tcase 75: case 38: navigateUp(); break;\n\t\t\t\t// j, down\n\t\t\t\tcase 74: case 40: navigateDown(); break;\n\t\t\t\t// home\n\t\t\t\tcase 36: slide( 0 ); break;\n\t\t\t\t// end\n\t\t\t\tcase 35: slide( Number.MAX_VALUE ); break;\n\t\t\t\t// space\n\t\t\t\tcase 32: isOverview() ? deactivateOverview() : event.shiftKey ? navigatePrev() : navigateNext(); break;\n\t\t\t\t// return\n\t\t\t\tcase 13: isOverview() ? deactivateOverview() : triggered = false; break;\n\t\t\t\t// two-spot, semicolon, b, period, Logitech presenter tools \"black screen\" button\n\t\t\t\tcase 58: case 59: case 66: case 190: case 191: togglePause(); break;\n\t\t\t\t// f\n\t\t\t\tcase 70: enterFullscreen(); break;\n\t\t\t\t// a\n\t\t\t\tcase 65: if ( config.autoSlideStoppable ) toggleAutoSlide( autoSlideWasPaused ); break;\n\t\t\t\tdefault:\n\t\t\t\t\ttriggered = false;\n\t\t\t}\n\n\t\t}\n\n\t\t// If the input resulted in a triggered action we should prevent\n\t\t// the browsers default behavior\n\t\tif( triggered ) {\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\t\t// ESC or O key\n\t\telse if ( ( event.keyCode === 27 || event.keyCode === 79 ) && features.transforms3d ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\ttoggleOverview();\n\t\t\t}\n\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Handler for the 'touchstart' event, enables support for\n\t * swipe and pinch gestures.\n\t */\n\tfunction onTouchStart( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\ttouch.startX = event.touches[0].clientX;\n\t\ttouch.startY = event.touches[0].clientY;\n\t\ttouch.startCount = event.touches.length;\n\n\t\t// If there's two touches we need to memorize the distance\n\t\t// between those two points to detect pinching\n\t\tif( event.touches.length === 2 && config.overview ) {\n\t\t\ttouch.startSpan = distanceBetween( {\n\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\ty: event.touches[1].clientY\n\t\t\t}, {\n\t\t\t\tx: touch.startX,\n\t\t\t\ty: touch.startY\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchmove' event.\n\t */\n\tfunction onTouchMove( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\t// Each touch should only trigger one action\n\t\tif( !touch.captured ) {\n\t\t\tonUserInput( event );\n\n\t\t\tvar currentX = event.touches[0].clientX;\n\t\t\tvar currentY = event.touches[0].clientY;\n\n\t\t\t// If the touch started with two points and still has\n\t\t\t// two active touches; test for the pinch gesture\n\t\t\tif( event.touches.length === 2 && touch.startCount === 2 && config.overview ) {\n\n\t\t\t\t// The current distance in pixels between the two touch points\n\t\t\t\tvar currentSpan = distanceBetween( {\n\t\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\t\ty: event.touches[1].clientY\n\t\t\t\t}, {\n\t\t\t\t\tx: touch.startX,\n\t\t\t\t\ty: touch.startY\n\t\t\t\t} );\n\n\t\t\t\t// If the span is larger than the desire amount we've got\n\t\t\t\t// ourselves a pinch\n\t\t\t\tif( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\n\t\t\t\t\tif( currentSpan < touch.startSpan ) {\n\t\t\t\t\t\tactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tdeactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tevent.preventDefault();\n\n\t\t\t}\n\t\t\t// There was only one touch point, look for a swipe\n\t\t\telse if( event.touches.length === 1 && touch.startCount !== 2 ) {\n\n\t\t\t\tvar deltaX = currentX - touch.startX,\n\t\t\t\t\tdeltaY = currentY - touch.startY;\n\n\t\t\t\tif( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateLeft();\n\t\t\t\t}\n\t\t\t\telse if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateRight();\n\t\t\t\t}\n\t\t\t\telse if( deltaY > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateUp();\n\t\t\t\t}\n\t\t\t\telse if( deltaY < -touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateDown();\n\t\t\t\t}\n\n\t\t\t\t// If we're embedded, only block touch events if they have\n\t\t\t\t// triggered an action\n\t\t\t\tif( config.embedded ) {\n\t\t\t\t\tif( touch.captured || isVerticalSlide( currentSlide ) ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Not embedded? Block them all to avoid needless tossing\n\t\t\t\t// around of the viewport in iOS\n\t\t\t\telse {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t\t// There's a bug with swiping on some Android devices unless\n\t\t// the default action is always prevented\n\t\telse if( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchend' event.\n\t */\n\tfunction onTouchEnd( event ) {\n\n\t\ttouch.captured = false;\n\n\t}\n\n\t/**\n\t * Convert pointer down to touch start.\n\t */\n\tfunction onPointerDown( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" ) {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchStart( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer move to touch move.\n\t */\n\tfunction onPointerMove( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchMove( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer up to touch end.\n\t */\n\tfunction onPointerUp( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchEnd( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles mouse wheel scrolling, throttled to avoid skipping\n\t * multiple slides.\n\t */\n\tfunction onDocumentMouseScroll( event ) {\n\n\t\tif( Date.now() - lastMouseWheelStep > 600 ) {\n\n\t\t\tlastMouseWheelStep = Date.now();\n\n\t\t\tvar delta = event.detail || -event.wheelDelta;\n\t\t\tif( delta > 0 ) {\n\t\t\t\tnavigateNext();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigatePrev();\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Clicking on the progress bar results in a navigation to the\n\t * closest approximate horizontal slide using this equation:\n\t *\n\t * ( clickX / presentationWidth ) * numberOfSlides\n\t */\n\tfunction onProgressClicked( event ) {\n\n\t\tonUserInput( event );\n\n\t\tevent.preventDefault();\n\n\t\tvar slidesTotal = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length;\n\t\tvar slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal );\n\n\t\tif( config.rtl ) {\n\t\t\tslideIndex = slidesTotal - slideIndex;\n\t\t}\n\n\t\tslide( slideIndex );\n\n\t}\n\n\t/**\n\t * Event handler for navigation control buttons.\n\t */\n\tfunction onNavigateLeftClicked( event ) { event.preventDefault(); onUserInput(); navigateLeft(); }\n\tfunction onNavigateRightClicked( event ) { event.preventDefault(); onUserInput(); navigateRight(); }\n\tfunction onNavigateUpClicked( event ) { event.preventDefault(); onUserInput(); navigateUp(); }\n\tfunction onNavigateDownClicked( event ) { event.preventDefault(); onUserInput(); navigateDown(); }\n\tfunction onNavigatePrevClicked( event ) { event.preventDefault(); onUserInput(); navigatePrev(); }\n\tfunction onNavigateNextClicked( event ) { event.preventDefault(); onUserInput(); navigateNext(); }\n\n\t/**\n\t * Handler for the window level 'hashchange' event.\n\t */\n\tfunction onWindowHashChange( event ) {\n\n\t\treadURL();\n\n\t}\n\n\t/**\n\t * Handler for the window level 'resize' event.\n\t */\n\tfunction onWindowResize( event ) {\n\n\t\tlayout();\n\n\t}\n\n\t/**\n\t * Handle for the window level 'visibilitychange' event.\n\t */\n\tfunction onPageVisibilityChange( event ) {\n\n\t\tvar isHidden =  document.webkitHidden ||\n\t\t\t\t\t\tdocument.msHidden ||\n\t\t\t\t\t\tdocument.hidden;\n\n\t\t// If, after clicking a link or similar and we're coming back,\n\t\t// focus the document.body to ensure we can use keyboard shortcuts\n\t\tif( isHidden === false && document.activeElement !== document.body ) {\n\t\t\t// Not all elements support .blur() - SVGs among them.\n\t\t\tif( typeof document.activeElement.blur === 'function' ) {\n\t\t\t\tdocument.activeElement.blur();\n\t\t\t}\n\t\t\tdocument.body.focus();\n\t\t}\n\n\t}\n\n\t/**\n\t * Invoked when a slide is and we're in the overview.\n\t */\n\tfunction onOverviewSlideClicked( event ) {\n\n\t\t// TODO There's a bug here where the event listeners are not\n\t\t// removed after deactivating the overview.\n\t\tif( eventsAreBound && isOverview() ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar element = event.target;\n\n\t\t\twhile( element && !element.nodeName.match( /section/gi ) ) {\n\t\t\t\telement = element.parentNode;\n\t\t\t}\n\n\t\t\tif( element && !element.classList.contains( 'disabled' ) ) {\n\n\t\t\t\tdeactivateOverview();\n\n\t\t\t\tif( element.nodeName.match( /section/gi ) ) {\n\t\t\t\t\tvar h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),\n\t\t\t\t\t\tv = parseInt( element.getAttribute( 'data-index-v' ), 10 );\n\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles clicks on links that are set to preview in the\n\t * iframe overlay.\n\t */\n\tfunction onPreviewLinkClicked( event ) {\n\n\t\tif( event.currentTarget && event.currentTarget.hasAttribute( 'href' ) ) {\n\t\t\tvar url = event.currentTarget.getAttribute( 'href' );\n\t\t\tif( url ) {\n\t\t\t\tshowPreview( url );\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles click on the auto-sliding controls element.\n\t */\n\tfunction onAutoSlidePlayerClick( event ) {\n\n\t\t// Replay\n\t\tif( Reveal.isLastSlide() && config.loop === false ) {\n\t\t\tslide( 0, 0 );\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Resume\n\t\telse if( autoSlidePaused ) {\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Pause\n\t\telse {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------ PLAYBACK COMPONENT ------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\t/**\n\t * Constructor for the playback component, which displays\n\t * play/pause/progress controls.\n\t *\n\t * @param {HTMLElement} container The component will append\n\t * itself to this\n\t * @param {Function} progressCheck A method which will be\n\t * called frequently to get the current progress on a range\n\t * of 0-1\n\t */\n\tfunction Playback( container, progressCheck ) {\n\n\t\t// Cosmetics\n\t\tthis.diameter = 50;\n\t\tthis.thickness = 3;\n\n\t\t// Flags if we are currently playing\n\t\tthis.playing = false;\n\n\t\t// Current progress on a 0-1 range\n\t\tthis.progress = 0;\n\n\t\t// Used to loop the animation smoothly\n\t\tthis.progressOffset = 1;\n\n\t\tthis.container = container;\n\t\tthis.progressCheck = progressCheck;\n\n\t\tthis.canvas = document.createElement( 'canvas' );\n\t\tthis.canvas.className = 'playback';\n\t\tthis.canvas.width = this.diameter;\n\t\tthis.canvas.height = this.diameter;\n\t\tthis.context = this.canvas.getContext( '2d' );\n\n\t\tthis.container.appendChild( this.canvas );\n\n\t\tthis.render();\n\n\t}\n\n\tPlayback.prototype.setPlaying = function( value ) {\n\n\t\tvar wasPlaying = this.playing;\n\n\t\tthis.playing = value;\n\n\t\t// Start repainting if we weren't already\n\t\tif( !wasPlaying && this.playing ) {\n\t\t\tthis.animate();\n\t\t}\n\t\telse {\n\t\t\tthis.render();\n\t\t}\n\n\t};\n\n\tPlayback.prototype.animate = function() {\n\n\t\tvar progressBefore = this.progress;\n\n\t\tthis.progress = this.progressCheck();\n\n\t\t// When we loop, offset the progress so that it eases\n\t\t// smoothly rather than immediately resetting\n\t\tif( progressBefore > 0.8 && this.progress < 0.2 ) {\n\t\t\tthis.progressOffset = this.progress;\n\t\t}\n\n\t\tthis.render();\n\n\t\tif( this.playing ) {\n\t\t\tfeatures.requestAnimationFrameMethod.call( window, this.animate.bind( this ) );\n\t\t}\n\n\t};\n\n\t/**\n\t * Renders the current progress and playback state.\n\t */\n\tPlayback.prototype.render = function() {\n\n\t\tvar progress = this.playing ? this.progress : 0,\n\t\t\tradius = ( this.diameter / 2 ) - this.thickness,\n\t\t\tx = this.diameter / 2,\n\t\t\ty = this.diameter / 2,\n\t\t\ticonSize = 14;\n\n\t\t// Ease towards 1\n\t\tthis.progressOffset += ( 1 - this.progressOffset ) * 0.1;\n\n\t\tvar endAngle = ( - Math.PI / 2 ) + ( progress * ( Math.PI * 2 ) );\n\t\tvar startAngle = ( - Math.PI / 2 ) + ( this.progressOffset * ( Math.PI * 2 ) );\n\n\t\tthis.context.save();\n\t\tthis.context.clearRect( 0, 0, this.diameter, this.diameter );\n\n\t\t// Solid background color\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius + 2, 0, Math.PI * 2, false );\n\t\tthis.context.fillStyle = 'rgba( 0, 0, 0, 0.4 )';\n\t\tthis.context.fill();\n\n\t\t// Draw progress track\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius, 0, Math.PI * 2, false );\n\t\tthis.context.lineWidth = this.thickness;\n\t\tthis.context.strokeStyle = '#666';\n\t\tthis.context.stroke();\n\n\t\tif( this.playing ) {\n\t\t\t// Draw progress on top of track\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.arc( x, y, radius, startAngle, endAngle, false );\n\t\t\tthis.context.lineWidth = this.thickness;\n\t\t\tthis.context.strokeStyle = '#fff';\n\t\t\tthis.context.stroke();\n\t\t}\n\n\t\tthis.context.translate( x - ( iconSize / 2 ), y - ( iconSize / 2 ) );\n\n\t\t// Draw play/pause icons\n\t\tif( this.playing ) {\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fillRect( 0, 0, iconSize / 2 - 2, iconSize );\n\t\t\tthis.context.fillRect( iconSize / 2 + 2, 0, iconSize / 2 - 2, iconSize );\n\t\t}\n\t\telse {\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.translate( 2, 0 );\n\t\t\tthis.context.moveTo( 0, 0 );\n\t\t\tthis.context.lineTo( iconSize - 2, iconSize / 2 );\n\t\t\tthis.context.lineTo( 0, iconSize );\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fill();\n\t\t}\n\n\t\tthis.context.restore();\n\n\t};\n\n\tPlayback.prototype.on = function( type, listener ) {\n\t\tthis.canvas.addEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.off = function( type, listener ) {\n\t\tthis.canvas.removeEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.destroy = function() {\n\n\t\tthis.playing = false;\n\n\t\tif( this.canvas.parentNode ) {\n\t\t\tthis.container.removeChild( this.canvas );\n\t\t}\n\n\t};\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------------- API --------------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\tReveal = {\n\t\tinitialize: initialize,\n\t\tconfigure: configure,\n\t\tsync: sync,\n\n\t\t// Navigation methods\n\t\tslide: slide,\n\t\tleft: navigateLeft,\n\t\tright: navigateRight,\n\t\tup: navigateUp,\n\t\tdown: navigateDown,\n\t\tprev: navigatePrev,\n\t\tnext: navigateNext,\n\n\t\t// Fragment methods\n\t\tnavigateFragment: navigateFragment,\n\t\tprevFragment: previousFragment,\n\t\tnextFragment: nextFragment,\n\n\t\t// Deprecated aliases\n\t\tnavigateTo: slide,\n\t\tnavigateLeft: navigateLeft,\n\t\tnavigateRight: navigateRight,\n\t\tnavigateUp: navigateUp,\n\t\tnavigateDown: navigateDown,\n\t\tnavigatePrev: navigatePrev,\n\t\tnavigateNext: navigateNext,\n\n\t\t// Forces an update in slide layout\n\t\tlayout: layout,\n\n\t\t// Returns an object with the available routes as booleans (left/right/top/bottom)\n\t\tavailableRoutes: availableRoutes,\n\n\t\t// Returns an object with the available fragments as booleans (prev/next)\n\t\tavailableFragments: availableFragments,\n\n\t\t// Toggles the overview mode on/off\n\t\ttoggleOverview: toggleOverview,\n\n\t\t// Toggles the \"black screen\" mode on/off\n\t\ttogglePause: togglePause,\n\n\t\t// Toggles the auto slide mode on/off\n\t\ttoggleAutoSlide: toggleAutoSlide,\n\n\t\t// State checks\n\t\tisOverview: isOverview,\n\t\tisPaused: isPaused,\n\t\tisAutoSliding: isAutoSliding,\n\n\t\t// Adds or removes all internal event listeners (such as keyboard)\n\t\taddEventListeners: addEventListeners,\n\t\tremoveEventListeners: removeEventListeners,\n\n\t\t// Facility for persisting and restoring the presentation state\n\t\tgetState: getState,\n\t\tsetState: setState,\n\n\t\t// Presentation progress on range of 0-1\n\t\tgetProgress: getProgress,\n\n\t\t// Returns the indices of the current, or specified, slide\n\t\tgetIndices: getIndices,\n\n\t\tgetTotalSlides: getTotalSlides,\n\n\t\t// Returns the slide element at the specified index\n\t\tgetSlide: getSlide,\n\n\t\t// Returns the slide background element at the specified index\n\t\tgetSlideBackground: getSlideBackground,\n\n\t\t// Returns the speaker notes string for a slide, or null\n\t\tgetSlideNotes: getSlideNotes,\n\n\t\t// Returns the previous slide element, may be null\n\t\tgetPreviousSlide: function() {\n\t\t\treturn previousSlide;\n\t\t},\n\n\t\t// Returns the current slide element\n\t\tgetCurrentSlide: function() {\n\t\t\treturn currentSlide;\n\t\t},\n\n\t\t// Returns the current scale of the presentation content\n\t\tgetScale: function() {\n\t\t\treturn scale;\n\t\t},\n\n\t\t// Returns the current configuration object\n\t\tgetConfig: function() {\n\t\t\treturn config;\n\t\t},\n\n\t\t// Helper method, retrieves query string as a key/value hash\n\t\tgetQueryHash: function() {\n\t\t\tvar query = {};\n\n\t\t\tlocation.search.replace( /[A-Z0-9]+?=([\\w\\.%-]*)/gi, function(a) {\n\t\t\t\tquery[ a.split( '=' ).shift() ] = a.split( '=' ).pop();\n\t\t\t} );\n\n\t\t\t// Basic deserialization\n\t\t\tfor( var i in query ) {\n\t\t\t\tvar value = query[ i ];\n\n\t\t\t\tquery[ i ] = deserialize( unescape( value ) );\n\t\t\t}\n\n\t\t\treturn query;\n\t\t},\n\n\t\t// Returns true if we're currently on the first slide\n\t\tisFirstSlide: function() {\n\t\t\treturn ( indexh === 0 && indexv === 0 );\n\t\t},\n\n\t\t// Returns true if we're currently on the last slide\n\t\tisLastSlide: function() {\n\t\t\tif( currentSlide ) {\n\t\t\t\t// Does this slide has next a sibling?\n\t\t\t\tif( currentSlide.nextElementSibling ) return false;\n\n\t\t\t\t// If it's vertical, does its parent have a next sibling?\n\t\t\t\tif( isVerticalSlide( currentSlide ) && currentSlide.parentNode.nextElementSibling ) return false;\n\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\n\t\t// Checks if reveal.js has been loaded and is ready for use\n\t\tisReady: function() {\n\t\t\treturn loaded;\n\t\t},\n\n\t\t// Forward event binding to the reveal DOM element\n\t\taddEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\t\tremoveEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\n\t\t// Programatically triggers a keyboard event\n\t\ttriggerKey: function( keyCode ) {\n\t\t\tonDocumentKeyDown( { keyCode: keyCode } );\n\t\t}\n\t};\n\n\treturn Reveal;\n\n}));\n"
  },
  {
    "path": "doc/cppnow-2017/lib/css/zenburn.css",
    "content": "/*\nZenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>\nbased on dark.css by Ivan Sagalaev\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #3f3f3f;\n  color: #dcdcdc;\n  -webkit-text-size-adjust: none;\n}\n\n.hljs-keyword,\n.hljs-tag,\n.css .hljs-class,\n.css .hljs-id,\n.lisp .hljs-title,\n.nginx .hljs-title,\n.hljs-request,\n.hljs-status,\n.clojure .hljs-attribute {\n  color: #e3ceab;\n}\n\n.django .hljs-template_tag,\n.django .hljs-variable,\n.django .hljs-filter .hljs-argument {\n  color: #dcdcdc;\n}\n\n.hljs-number,\n.hljs-date {\n  color: #8cd0d3;\n}\n\n.dos .hljs-envvar,\n.dos .hljs-stream,\n.hljs-variable,\n.apache .hljs-sqbracket,\n.hljs-name {\n  color: #efdcbc;\n}\n\n.dos .hljs-flow,\n.diff .hljs-change,\n.python .exception,\n.python .hljs-built_in,\n.hljs-literal,\n.tex .hljs-special {\n  color: #efefaf;\n}\n\n.diff .hljs-chunk,\n.hljs-subst {\n  color: #8f8f8f;\n}\n\n.dos .hljs-keyword,\n.hljs-decorator,\n.hljs-title,\n.hljs-type,\n.diff .hljs-header,\n.ruby .hljs-class .hljs-parent,\n.apache .hljs-tag,\n.nginx .hljs-built_in,\n.tex .hljs-command,\n.hljs-prompt {\n  color: #efef8f;\n}\n\n.dos .hljs-winutils,\n.ruby .hljs-symbol,\n.ruby .hljs-symbol .hljs-string,\n.ruby .hljs-string {\n  color: #dca3a3;\n}\n\n.diff .hljs-deletion,\n.hljs-string,\n.hljs-tag .hljs-value,\n.hljs-preprocessor,\n.hljs-pragma,\n.hljs-built_in,\n.smalltalk .hljs-class,\n.smalltalk .hljs-localvars,\n.smalltalk .hljs-array,\n.css .hljs-rule .hljs-value,\n.hljs-attr_selector,\n.hljs-pseudo,\n.apache .hljs-cbracket,\n.tex .hljs-formula,\n.coffeescript .hljs-attribute {\n  color: #cc9393;\n}\n\n.hljs-shebang,\n.diff .hljs-addition,\n.hljs-comment,\n.hljs-annotation,\n.hljs-pi,\n.hljs-doctype {\n  color: #7f9f7f;\n}\n\n.coffeescript .javascript,\n.javascript .xml,\n.tex .hljs-formula,\n.xml .javascript,\n.xml .vbscript,\n.xml .css,\n.xml .hljs-cdata {\n  opacity: 0.5;\n}"
  },
  {
    "path": "doc/cppnow-2017/lib/font/league-gothic/LICENSE",
    "content": "SIL Open Font License (OFL)\nhttp://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL\n"
  },
  {
    "path": "doc/cppnow-2017/lib/font/league-gothic/league-gothic.css",
    "content": "@font-face {\n    font-family: 'League Gothic';\n    src: url('league-gothic.eot');\n    src: url('league-gothic.eot?#iefix') format('embedded-opentype'),\n         url('league-gothic.woff') format('woff'),\n         url('league-gothic.ttf') format('truetype');\n\n    font-weight: normal;\n    font-style: normal;\n}"
  },
  {
    "path": "doc/cppnow-2017/lib/font/source-sans-pro/LICENSE",
    "content": "SIL Open Font License\n\nCopyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL\n\n—————————————————————————————-\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n—————————————————————————————-\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.\n\nDEFINITIONS\n“Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.\n\n“Reserved Font Name” refers to any names specified as such after the copyright statement(s).\n\n“Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).\n\n“Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.\n\n“Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.\n\n5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are not met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE."
  },
  {
    "path": "doc/cppnow-2017/lib/font/source-sans-pro/source-sans-pro.css",
    "content": "@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-regular.eot');\n    src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-regular.woff') format('woff'),\n         url('source-sans-pro-regular.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-italic.eot');\n    src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-italic.woff') format('woff'),\n         url('source-sans-pro-italic.ttf') format('truetype');\n    font-weight: normal;\n    font-style: italic;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibold.eot');\n    src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibold.woff') format('woff'),\n         url('source-sans-pro-semibold.ttf') format('truetype');\n    font-weight: 600;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibolditalic.eot');\n    src: url('source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibolditalic.woff') format('woff'),\n         url('source-sans-pro-semibolditalic.ttf') format('truetype');\n    font-weight: 600;\n    font-style: italic;\n}"
  },
  {
    "path": "doc/cppnow-2017/lib/js/classList.js",
    "content": "/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/\nif(typeof document!==\"undefined\"&&!(\"classList\" in document.createElement(\"a\"))){(function(j){var a=\"classList\",f=\"prototype\",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\\s+|\\s+$/g,\"\")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p<o;p++){if(p in this&&this[p]===q){return p}}return -1},n=function(o,p){this.name=o;this.code=DOMException[o];this.message=p},g=function(p,o){if(o===\"\"){throw new n(\"SYNTAX_ERR\",\"An invalid or illegal string was specified\")}if(/\\s/.test(o)){throw new n(\"INVALID_CHARACTER_ERR\",\"String contains an invalid character\")}return c.call(p,o)},d=function(s){var r=k.call(s.className),q=r?r.split(/\\s+/):[],p=0,o=q.length;for(;p<o;p++){this.push(q[p])}this._updateClassName=function(){s.className=this.toString()}},e=d[f]=[],i=function(){return new d(this)};n[f]=Error[f];e.item=function(o){return this[o]||null};e.contains=function(o){o+=\"\";return g(this,o)!==-1};e.add=function(o){o+=\"\";if(g(this,o)===-1){this.push(o);this._updateClassName()}};e.remove=function(p){p+=\"\";var o=g(this,p);if(o!==-1){this.splice(o,1);this._updateClassName()}};e.toggle=function(o){o+=\"\";if(g(this,o)===-1){this.add(o)}else{this.remove(o)}};e.toString=function(){return this.join(\" \")};if(b.defineProperty){var l={get:i,enumerable:true,configurable:true};try{b.defineProperty(m,a,l)}catch(h){if(h.number===-2146823252){l.enumerable=false;b.defineProperty(m,a,l)}}}else{if(b[f].__defineGetter__){m.__defineGetter__(a,i)}}}(self))};"
  },
  {
    "path": "doc/cppnow-2017/lib/js/html5shiv.js",
    "content": "document.createElement('header');\ndocument.createElement('nav');\ndocument.createElement('section');\ndocument.createElement('article');\ndocument.createElement('aside');\ndocument.createElement('footer');\ndocument.createElement('hgroup');"
  },
  {
    "path": "doc/cppnow-2017/package.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"homepage\": \"http://lab.hakim.se/reveal-js\",\n  \"subdomain\": \"revealjs\",\n  \"main\": \"js/reveal.js\",\n  \"scripts\": {\n    \"test\": \"grunt test\",\n    \"start\": \"grunt serve\"\n  },\n  \"author\": {\n    \"name\": \"Hakim El Hattab\",\n    \"email\": \"hakim.elhattab@gmail.com\",\n    \"web\": \"http://hakim.se\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"engines\": {\n    \"node\": \"~4.1.1\"\n  },\n  \"dependencies\": {\n    \"underscore\": \"~1.8.3\",\n    \"express\": \"~4.13.3\",\n    \"mustache\": \"~2.1.3\",\n    \"socket.io\": \"~1.3.7\"\n  },\n  \"devDependencies\": {\n    \"grunt-contrib-qunit\": \"~0.7.0\",\n    \"grunt-contrib-jshint\": \"~0.11.3\",\n    \"grunt-contrib-cssmin\": \"~0.14.0\",\n    \"grunt-contrib-uglify\": \"~0.9.2\",\n    \"grunt-contrib-watch\": \"~0.6.1\",\n    \"grunt-sass\": \"~1.1.0-beta\",\n    \"grunt-contrib-connect\": \"~0.11.2\",\n    \"grunt-autoprefixer\": \"~3.0.3\",\n    \"grunt-zip\": \"~0.17.1\",\n    \"grunt\": \"~0.4.5\",\n    \"node-sass\": \"~3.3.3\"\n  },\n  \n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/highlight/highlight.js",
    "content": "// START CUSTOM REVEAL.JS INTEGRATION\n(function() {\n\tif( typeof window.addEventListener === 'function' ) {\n\t\tvar hljs_nodes = document.querySelectorAll( 'pre code' );\n\n\t\tfor( var i = 0, len = hljs_nodes.length; i < len; i++ ) {\n\t\t\tvar element = hljs_nodes[i];\n\n\t\t\t// trim whitespace if data-trim attribute is present\n\t\t\tif( element.hasAttribute( 'data-trim' ) && typeof element.innerHTML.trim === 'function' ) {\n\t\t\t\telement.innerHTML = element.innerHTML.trim();\n\t\t\t}\n\n\t\t\t// Now escape html unless prevented by author\n\t\t\tif( ! element.hasAttribute( 'data-noescape' )) {\n\t\t\t\telement.innerHTML = element.innerHTML.replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\");\n\t\t\t}\n\n\t\t\t// re-highlight when focus is lost (for edited code)\n\t\t\telement.addEventListener( 'focusout', function( event ) {\n\t\t\t\thljs.highlightBlock( event.currentTarget );\n\t\t\t}, false );\n\t\t}\n\t}\n})();\n// END CUSTOM REVEAL.JS INTEGRATION\n\n// highlight.js v8.9.1 with support for all available languages\n\n!function(e){\"undefined\"!=typeof exports?e(exports):(window.hljs=e({}),\"function\"==typeof define&&define.amd&&define(\"hljs\",[],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var n,t,r,i=e.className+\" \";if(i+=e.parentNode?e.parentNode.className:\"\",t=/\\blang(?:uage)?-([\\w-]+)\\b/i.exec(i))return w(t[1])?t[1]:\"no-highlight\";for(i=i.split(/\\s+/),n=0,r=i.length;r>n;n++)if(w(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+Array.prototype.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"==e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else\"start\"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\b\\w+\\b/,!0),i&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&i.tE&&(a.tE+=(a.e?\"|\":\"\")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push(\"self\"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?\"\":E.classPrefix,i='<span class=\"'+a,o=t?\"\":\"</span>\";return i+=e+'\">',i+n+o}function p(){if(!L.k)return n(M);var e=\"\",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(M);r;){e+=n(M.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=h(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(M)}return e+n(M.substr(t))}function d(){var e=\"string\"==typeof L.sL;if(e&&!x[L.sL])return n(M);var t=e?l(L.sL,M,!0,y[L.sL]):f(M,L.sL.length?L.sL:void 0);return L.r>0&&(B+=t.r),e&&(y[L.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){return void 0!==L.sL?d():p()}function v(e,t){var r=e.cN?h(e.cN,\"\",!0):\"\";e.rB?(k+=r,M=\"\"):e.eB?(k+=n(t)+r,M=\"\"):(k+=r,M=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(M+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(M+=t),k+=b();do L.cN&&(k+=\"</span>\"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),M=\"\",a.starts&&v(a.starts,\"\"),i.rE?0:t.length}if(c(t,L))throw new Error('Illegal lexeme \"'+t+'\" for mode \"'+(L.cN||\"<unnamed>\")+'\"');return M+=t,t.length||1}var N=w(e);if(!N)throw new Error('Unknown language: \"'+e+'\"');s(N);var R,L=i||N,y={},k=\"\";for(R=L;R!=N;R=R.parent)R.cN&&(k=h(R.cN,\"\",!0)+k);var M=\"\",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+=\"</span>\");return{r:B,value:k,language:e,top:L}}catch(O){if(-1!=O.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw O}}function f(e,t){t=t||E.languages||Object.keys(x);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(w(n)){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return E.tabReplace&&(e=e.replace(/^((<[^>]+>|\\t)+)/gm,function(e,n){return n.replace(/\\t/g,E.tabReplace)})),E.useBR&&(e=e.replace(/\\n/g,\"<br>\")),e}function h(e,n,t){var r=n?R[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n=i(e);if(!a(n)){var t;E.useBR?(t=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),t.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):t=e;var r=t.textContent,o=n?l(n,r,!0):f(r),s=u(t);if(s.length){var p=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\");p.innerHTML=o.value,o.value=c(s,u(p),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=h(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){E=o(E,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll(\"pre code\");Array.prototype.forEach.call(e,p)}}function v(){addEventListener(\"DOMContentLoaded\",b,!1),addEventListener(\"load\",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){R[e]=n})}function N(){return Object.keys(x)}function w(e){return e=(e||\"\").toLowerCase(),x[e]||x[R[e]]}var E={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},x={},R={};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=w,e.inherit=o,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:\"doctag\",b:\"(?:TODO|FIXME|NOTE|BUG|XXX):\",r:0}),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e});hljs.registerLanguage(\"cs\",function(e){var r=\"abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield\",t=e.IR+\"(<\"+e.IR+\">)?\";return{aliases:[\"csharp\"],k:r,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line region endregion pragma checksum\"},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},e.ASM,e.QSM,e.CNM,{bK:\"class interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"namespace\",e:/[{;=]/,i:/[^\\s:]/,c:[{cN:\"title\",b:\"[a-zA-Z](\\\\.?\\\\w)*\",r:0},e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage(\"tp\",function(O){var R={cN:\"number\",b:\"[1-9][0-9]*\",r:0},E={cN:\"comment\",b:\":[^\\\\]]+\"},T={cN:\"built_in\",b:\"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|    TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\\\[\",e:\"\\\\]\",c:[\"self\",R,E]},N={cN:\"built_in\",b:\"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\\\[\",e:\"\\\\]\",c:[\"self\",R,O.QSM,E]};return{k:{keyword:\"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET\",constant:\"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET\"},c:[T,N,{cN:\"keyword\",b:\"/(PROG|ATTR|MN|POS|END)\\\\b\"},{cN:\"keyword\",b:\"(CALL|RUN|POINT_LOGIC|LBL)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)\"},{cN:\"number\",b:\"\\\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\\\b\",r:0},O.C(\"//\",\"[;$]\"),O.C(\"!\",\"[;$]\"),O.C(\"--eg:\",\"$\"),O.QSM,{cN:\"string\",b:\"'\",e:\"'\"},O.CNM,{cN:\"variable\",b:\"\\\\$[A-Za-z0-9_]+\"}]}});hljs.registerLanguage(\"irpf90\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here\"};return{cI:!0,k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),e.C(\"begin_doc\",\"end_doc\",{r:10}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"groovy\",function(e){return{k:{typename:\"byte short char int long boolean float double void\",literal:\"true false null\",keyword:\"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},{cN:\"string\",b:\"'''\",e:\"'''\"},{cN:\"string\",b:\"\\\\$/\",e:\"/\\\\$\",r:10},e.ASM,{cN:\"regexp\",b:/~?\\/[^\\/\\n]+\\//,c:[e.BE]},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.BNM,{cN:\"class\",bK:\"class interface trait enum\",e:\"{\",i:\":\",c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{cN:\"string\",b:/[^\\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\\?/,e:/\\:/},{cN:\"label\",b:\"^\\\\s*[A-Za-z0-9_$]+:\",r:0}],i:/#/}});hljs.registerLanguage(\"stata\",function(e){return{aliases:[\"do\",\"ado\"],cI:!0,k:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",c:[{cN:\"label\",v:[{b:\"\\\\$\\\\{?[a-zA-Z0-9_]+\\\\}?\"},{b:\"`[a-zA-Z0-9_]+'\"}]},{cN:\"string\",v:[{b:'`\"[^\\r\\n]*?\"\\''},{b:'\"[^\\r\\n\"]*\"'}]},{cN:\"literal\",v:[{b:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\(|$)\"}]},e.C(\"^[ \t]*\\\\*.*$\",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\.]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",operator:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"shebang\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage(\"handlebars\",function(e){var a=\"each in with if else unless bindattr action collection debugger log outlet template unbound view yield\";return{aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{{\",e:\"}}\",c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a}]}]}});hljs.registerLanguage(\"elm\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],i={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"}].concat(c)},t={cN:\"container\",b:\"{\",e:\"}\",c:n.c};return{k:\"let in if then else case of where module import exposing type alias as infix infixl infixr port\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 as exposing\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"typedef\",b:\"\\\\btype\\\\b\",e:\"$\",k:\"type alias\",c:[i,n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bport\\\\b\",e:\"$\",k:\"port\",c:c},e.QSM,e.CNM,i,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"javascript\",function(e){return{aliases:[\"js\"],k:{keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},c:[{cN:\"pi\",r:10,b:/^\\s*['\"]use (strict|asm)['\"]/},e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,{cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\"}]},e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\\s*[);\\]]/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\\[|%/},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0},{bK:\"import\",e:\"[;$]\",k:\"import from as\",c:[e.ASM,e.QSM]},{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]}],i:/#/}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"tag\",b:\"</?\",e:\">\"},{cN:\"keyword\",b:/\\w+/,r:0,k:{common:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"sqbracket\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"cbracket\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"vhdl\",function(e){var t=\"\\\\d(_|\\\\d)*\",r=\"[eE][-+]?\"+t,n=t+\"(\\\\.\"+t+\")?(\"+r+\")?\",o=\"\\\\w+\",i=t+\"#\"+o+\"(\\\\.\"+o+\")?#(\"+r+\")?\",a=\"\\\\b(\"+i+\"|\"+n+\")\";return{cI:!0,k:{keyword:\"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor\",typename:\"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector\"},i:\"{\",c:[e.CBCM,e.C(\"--\",\"$\"),e.QSM,{cN:\"number\",b:a,r:0},{cN:\"literal\",b:\"'(U|X|0|1|Z|W|L|H|-)'\",c:[e.BE]},{cN:\"attribute\",b:\"'[A-Za-z](_?[A-Za-z0-9])*\",c:[e.BE]}]}});hljs.registerLanguage(\"typescript\",function(e){var r={keyword:\"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void\"};return{aliases:[\"ts\"],k:r,c:[{cN:\"pi\",b:/^\\s*['\"]use strict['\"]/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM],r:0},{cN:\"function\",b:\"function\",e:/[\\{;]/,eE:!0,k:r,c:[\"self\",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/,r:0},{cN:\"constructor\",bK:\"constructor\",e:/\\{/,eE:!0,r:10},{cN:\"module\",bK:\"module\",e:/\\{/,eE:!0},{cN:\"interface\",bK:\"interface\",e:/\\{/,eE:!0,k:\"interface extends\"},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0}]}});hljs.registerLanguage(\"x86asm\",function(s){return{cI:!0,l:\"\\\\.?\"+s.IR,k:{keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",literal:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0  xmm1  xmm2  xmm3  xmm4  xmm5  xmm6  xmm7  xmm8  xmm9 xmm10  xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0  ymm1  ymm2  ymm3  ymm4  ymm5  ymm6  ymm7  ymm8  ymm9 ymm10  ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0  zmm1  zmm2  zmm3  zmm4  zmm5  zmm6  zmm7  zmm8  zmm9 zmm10  zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l\",pseudo:\"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times\",preprocessor:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__  __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__  __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public \",built_in:\"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},c:[s.C(\";\",\"$\",{r:0}),{cN:\"number\",v:[{b:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",r:0},{b:\"\\\\$[0-9][0-9A-Fa-f]*\",r:0},{b:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{b:\"\\\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"}]},s.QSM,{cN:\"string\",v:[{b:\"'\",e:\"[^\\\\\\\\]'\"},{b:\"`\",e:\"[^\\\\\\\\]`\"},{b:\"\\\\.[A-Za-z0-9]+\"}],r:0},{cN:\"label\",v:[{b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\"},{b:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\"}],r:0},{cN:\"argument\",b:\"%[0-9]+\",r:0},{cN:\"built_in\",b:\"%!S+\",r:0}]}});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{cN:\"constant\",e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"title\",b:/^[\\w]+:\\s*$/},{cN:\"phony\",b:/^\\.PHONY:/,e:/$/,k:\".PHONY\",l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"delphi\",function(e){var r=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure\",t=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],i={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:\"string\",b:/(#\\d+)+/},o={b:e.IR+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",rB:!0,c:[e.TM]},n={cN:\"function\",bK:\"function constructor destructor procedure\",e:/[:;]/,k:\"function constructor|10 destructor|10 procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage(\"erb\",function(e){return{sL:\"xml\",c:[e.C(\"<%#\",\"%>\"),{b:\"<%[%=-]?\",e:\"[%-]?%>\",sL:\"ruby\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\\\w+\"},i={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n=\"@interface @class @protocol @implementation\";return{aliases:[\"mm\",\"objc\",\"obj-c\"],k:i,l:o,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"preprocessor\",b:\"#\",e:\"$\",c:[{cN:\"title\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+n.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:n,l:o,c:[e.UTM]},{cN:\"variable\",b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"fortran\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image\"};return{cI:!0,aliases:[\"f90\",\"f95\"],k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"swift\",function(e){var i={keyword:\"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet\",literal:\"true false nil\",built_in:\"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip\"},t={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n=e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),r={cN:\"subst\",b:/\\\\\\(/,e:\"\\\\)\",k:i,c:[]},a={cN:\"number\",b:\"\\\\b([\\\\d_]+(\\\\.[\\\\deE_]+)?|0x[a-fA-F0-9_]+(\\\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\\\b\",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[a],{k:i,c:[o,e.CLCM,n,t,a,{cN:\"func\",bK:\"func\",e:\"{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\\(/}),{cN:\"generics\",b:/</,e:/>/,i:/>/},{cN:\"params\",b:/\\(/,e:/\\)/,endsParent:!0,k:i,c:[\"self\",a,o,e.CBCM,{b:\":\"}],i:/[\"']/}],i:/\\[|%/},{cN:\"class\",bK:\"struct protocol class extension enum\",k:i,e:\"\\\\{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:\"preprocessor\",b:\"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)\"},{bK:\"import\",e:/$/,c:[e.CLCM,n]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",r={cN:\"subst\",b:/#\\{/,e:/}/,k:c},t=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,r]},{b:/\"/,e:/\"/,c:[e.BE,r]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[r,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];r.c=t;var s=e.inherit(e.TM,{b:n}),i=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(t)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:t.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+i,e:\"[-=]>\",rB:!0,c:[s,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:i,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[s]},s]},{cN:\"attribute\",b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"puppet\",function(e){var s={keyword:\"and case default else elsif false if in import enherits node or true undef unless main settings $string \",literal:\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},r=e.C(\"#\",\"$\"),a=\"([A-Za-z_]|::)(\\\\w|::)*\",i=e.inherit(e.TM,{b:a}),o={cN:\"variable\",b:\"\\\\$\"+a},t={cN:\"string\",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]};return{aliases:[\"pp\"],c:[r,o,t,{bK:\"class\",e:\"\\\\{|;\",i:/=/,c:[i,r]},{bK:\"define\",e:/\\{/,c:[{cN:\"title\",b:e.IR,endsParent:!0}]},{b:e.IR+\"\\\\s+\\\\{\",rB:!0,e:/\\S/,c:[{cN:\"name\",b:e.IR},{b:/\\{/,e:/\\}/,k:s,r:0,c:[t,r,{b:\"[a-zA-Z_]+\\\\s*=>\"},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},o]}],r:0}]}});hljs.registerLanguage(\"tex\",function(c){var e={cN:\"command\",b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]?\"},m={cN:\"command\",b:\"\\\\\\\\[^a-zA-Zа-яА-я0-9]\"},r={cN:\"special\",b:\"[{}\\\\[\\\\]\\\\&#~]\",r:0};return{c:[{b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]? *= *-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",rB:!0,c:[e,m,{cN:\"number\",b:\" *=\",e:\"-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",eB:!0}],r:10},e,m,r,{cN:\"formula\",b:\"\\\\$\\\\$\",e:\"\\\\$\\\\$\",c:[e,m,r],r:0},{cN:\"formula\",b:\"\\\\$\",e:\"\\\\$\",c:[e,m,r],r:0},c.C(\"%\",\"$\",{r:0})]}});hljs.registerLanguage(\"glsl\",function(e){return{k:{keyword:\"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly\",built_in:\"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse\",literal:\"true false\"},i:'\"',c:[e.CLCM,e.CBCM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"}]}});hljs.registerLanguage(\"1c\",function(c){var e=\"[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*\",r=\"возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт\",t=\"ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку  стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон\",i={cN:\"dquote\",b:'\"\"'},n={cN:\"string\",b:'\"',e:'\"|$',c:[i]},a={cN:\"string\",b:\"\\\\|\",e:'\"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:\"function\",b:\"(процедура|функция)\",e:\"$\",l:e,k:\"процедура функция\",c:[c.inherit(c.TM,{b:e}),{cN:\"tail\",eW:!0,c:[{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:e,k:\"знач\",c:[n,a]},{cN:\"export\",b:\"экспорт\",eW:!0,l:e,k:\"экспорт\",c:[c.CLCM]}]},c.CLCM]},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"date\",b:\"'\\\\d{2}\\\\.\\\\d{2}\\\\.(\\\\d{2}|\\\\d{4})'\"}]}});hljs.registerLanguage(\"nsis\",function(e){var t={cN:\"symbol\",b:\"\\\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)\"},n={cN:\"constant\",b:\"\\\\$+{[a-zA-Z0-9_]+}\"},i={cN:\"variable\",b:\"\\\\$+[a-zA-Z0-9_]+\",i:\"\\\\(\\\\){}\"},r={cN:\"constant\",b:\"\\\\$+\\\\([a-zA-Z0-9_]+\\\\)\"},o={cN:\"params\",b:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},l={cN:\"constant\",b:\"\\\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)\"};return{cI:!1,k:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user \"},c:[e.HCM,e.CBCM,{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[{cN:\"symbol\",b:\"\\\\$(\\\\\\\\(n|r|t)|\\\\$)\"},t,n,i,r]},e.C(\";\",\"$\",{r:0}),{cN:\"function\",bK:\"Function PageEx Section SectionGroup SubSection\",e:\"$\"},l,n,i,r,o,e.NM,{cN:\"literal\",b:e.IR+\"::\"+e.IR}]}});hljs.registerLanguage(\"axapta\",function(e){return{k:\"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod\",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:\":\",c:[{bK:\"extends implements\"},e.UTM]}]}});hljs.registerLanguage(\"php\",function(e){var c={cN:\"variable\",b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},a={cN:\"preprocessor\",b:/<\\?(php)?|\\?>/},i={cN:\"string\",c:[e.BE,a],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},t={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"},a]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:/<<<['\"]?\\w+['\"]?$/,e:/^\\w+;?$/,c:[e.BE,{cN:\"subst\",v:[{b:/\\$\\w+/},{b:/\\{\\$/,e:/\\}/}]}]},a,c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,i,t]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,t]}});hljs.registerLanguage(\"go\",function(e){var t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer\",constant:\"true false iota nil\",typename:\"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{aliases:[\"golang\"],k:t,i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\"},{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"number\",b:e.CNR+\"[dflsi]?\",r:0},e.CNM]}});hljs.registerLanguage(\"dust\",function(e){var t=\"if eq ne lt lte gt gte select default math sep\";return{aliases:[\"dst\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{\",e:\"}\",r:0,c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:t},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:t},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:t,r:0}]}]}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"chunk\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"header\",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\\-\\-\\-/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+\\+\\+/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"haskell\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],a={cN:\"pragma\",b:\"{-#\",e:\"#-}\"},i={cN:\"preprocessor\",b:\"^#\",e:\"$\"},n={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},t={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[a,i,{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TM,{b:\"[_a-z][\\\\w']*\"})].concat(c)},l={cN:\"container\",b:\"{\",e:\"}\",c:t.c};return{aliases:[\"hs\"],k:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 qualified as hiding\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"class\",b:\"^(\\\\s*)?(class|instance)\\\\b\",e:\"where\",k:\"class family instance where\",c:[n,t].concat(c)},{cN:\"typedef\",b:\"\\\\b(data|(new)?type)\\\\b\",e:\"$\",k:\"data family type newtype deriving\",c:[a,n,t,l].concat(c)},{cN:\"default\",bK:\"default\",e:\"$\",c:[n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bforeign\\\\b\",e:\"$\",k:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",c:[n,e.QSM].concat(c)},{cN:\"shebang\",b:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",e:\"$\"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"erlang-repl\",function(r){return{k:{special_functions:\"spawn spawn_link self\",reserved:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},c:[{cN:\"prompt\",b:\"^[0-9]+> \",r:10},r.C(\"%\",\"$\"),{cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},r.ASM,r.QSM,{cN:\"constant\",b:\"\\\\?(::)?([A-Z]\\\\w*(::)?)+\"},{cN:\"arrow\",b:\"->\"},{cN:\"ok\",b:\"ok\"},{cN:\"exclamation_mark\",b:\"!\"},{cN:\"function_or_atom\",b:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",r:0},{cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_']*\",r:0}]}});hljs.registerLanguage(\"haxe\",function(e){var r=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\";return{aliases:[\"hx\"],k:{keyword:\"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while\",literal:\"true false null\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end error\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:\"type\",b:\":\",e:r,r:10}]}]}});hljs.registerLanguage(\"stylus\",function(t){var e={cN:\"variable\",b:\"\\\\$\"+t.IR},o={cN:\"hexcolor\",b:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\",r:10},i=[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"],r=[\"after\",\"before\",\"first-letter\",\"first-line\",\"active\",\"first-child\",\"focus\",\"hover\",\"lang\",\"link\",\"visited\"],n=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],a=\"[\\\\.\\\\s\\\\n\\\\[\\\\:,]\",l=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"],d=[\"\\\\{\",\"\\\\}\",\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"];return{aliases:[\"styl\"],cI:!1,i:\"(\"+d.join(\"|\")+\")\",k:\"if else for in\",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"class\",b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"id\",b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\b(\"+n.join(\"|\")+\")\"+a,rB:!0,c:[{cN:\"tag\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"}]},{cN:\"pseudo\",b:\"&?:?:\\\\b(\"+r.join(\"|\")+\")\"+a},{cN:\"at_rule\",b:\"@(\"+i.join(\"|\")+\")\\\\b\"},e,t.CSSNM,t.NM,{cN:\"function\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",i:\"[\\\\n]\",rB:!0,c:[{cN:\"title\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{cN:\"params\",b:/\\(/,e:/\\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:\"attribute\",b:\"\\\\b(\"+l.reverse().join(\"|\")+\")\\\\b\"}]}});hljs.registerLanguage(\"inform7\",function(e){var r=\"\\\\[\",o=\"\\\\]\";return{aliases:[\"i7\"],cI:!0,k:{keyword:\"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule\"},c:[{cN:\"string\",b:'\"',e:'\"',r:0,c:[{cN:\"subst\",b:r,e:o}]},{cN:\"title\",b:/^(Volume|Book|Part|Chapter|Section|Table)\\b/,e:\"$\"},{b:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b/,e:\":\",c:[{b:\"\\\\b\\\\(This\",e:\"\\\\)\"}]},{cN:\"comment\",b:r,e:o,c:[\"self\"]}]}});hljs.registerLanguage(\"ini\",function(e){var c={cN:\"string\",c:[e.BE],v:[{b:\"'''\",e:\"'''\",r:10},{b:'\"\"\"',e:'\"\"\"',r:10},{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]};return{aliases:[\"toml\"],cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),e.HCM,{cN:\"title\",b:/^\\s*\\[+/,e:/\\]+/},{cN:\"setting\",b:/^[a-z0-9\\[\\]_-]+\\s*=\\s*/,e:\"$\",c:[{cN:\"value\",eW:!0,k:\"on off true false yes no\",c:[{cN:\"variable\",v:[{b:/\\$[\\w\\d\"][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},c,{cN:\"number\",b:/([\\+\\-]+)?[\\d]+_[\\d_]+/},e.NM],r:0}]}]}});hljs.registerLanguage(\"sqf\",function(e){var t=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"or\",\"plus\",\"^\",\":\",\">>\",\"abs\",\"accTime\",\"acos\",\"action\",\"actionKeys\",\"actionKeysImages\",\"actionKeysNames\",\"actionKeysNamesArray\",\"actionName\",\"activateAddons\",\"activatedAddons\",\"activateKey\",\"addAction\",\"addBackpack\",\"addBackpackCargo\",\"addBackpackCargoGlobal\",\"addBackpackGlobal\",\"addCamShake\",\"addCuratorAddons\",\"addCuratorCameraArea\",\"addCuratorEditableObjects\",\"addCuratorEditingArea\",\"addCuratorPoints\",\"addEditorObject\",\"addEventHandler\",\"addGoggles\",\"addGroupIcon\",\"addHandgunItem\",\"addHeadgear\",\"addItem\",\"addItemCargo\",\"addItemCargoGlobal\",\"addItemPool\",\"addItemToBackpack\",\"addItemToUniform\",\"addItemToVest\",\"addLiveStats\",\"addMagazine\",\"addMagazine array\",\"addMagazineAmmoCargo\",\"addMagazineCargo\",\"addMagazineCargoGlobal\",\"addMagazineGlobal\",\"addMagazinePool\",\"addMagazines\",\"addMagazineTurret\",\"addMenu\",\"addMenuItem\",\"addMissionEventHandler\",\"addMPEventHandler\",\"addMusicEventHandler\",\"addPrimaryWeaponItem\",\"addPublicVariableEventHandler\",\"addRating\",\"addResources\",\"addScore\",\"addScoreSide\",\"addSecondaryWeaponItem\",\"addSwitchableUnit\",\"addTeamMember\",\"addToRemainsCollector\",\"addUniform\",\"addVehicle\",\"addVest\",\"addWaypoint\",\"addWeapon\",\"addWeaponCargo\",\"addWeaponCargoGlobal\",\"addWeaponGlobal\",\"addWeaponPool\",\"addWeaponTurret\",\"agent\",\"agents\",\"AGLToASL\",\"aimedAtTarget\",\"aimPos\",\"airDensityRTD\",\"airportSide\",\"AISFinishHeal\",\"alive\",\"allControls\",\"allCurators\",\"allDead\",\"allDeadMen\",\"allDisplays\",\"allGroups\",\"allMapMarkers\",\"allMines\",\"allMissionObjects\",\"allow3DMode\",\"allowCrewInImmobile\",\"allowCuratorLogicIgnoreAreas\",\"allowDamage\",\"allowDammage\",\"allowFileOperations\",\"allowFleeing\",\"allowGetIn\",\"allPlayers\",\"allSites\",\"allTurrets\",\"allUnits\",\"allUnitsUAV\",\"allVariables\",\"ammo\",\"and\",\"animate\",\"animateDoor\",\"animationPhase\",\"animationState\",\"append\",\"armoryPoints\",\"arrayIntersect\",\"asin\",\"ASLToAGL\",\"ASLToATL\",\"assert\",\"assignAsCargo\",\"assignAsCargoIndex\",\"assignAsCommander\",\"assignAsDriver\",\"assignAsGunner\",\"assignAsTurret\",\"assignCurator\",\"assignedCargo\",\"assignedCommander\",\"assignedDriver\",\"assignedGunner\",\"assignedItems\",\"assignedTarget\",\"assignedTeam\",\"assignedVehicle\",\"assignedVehicleRole\",\"assignItem\",\"assignTeam\",\"assignToAirport\",\"atan\",\"atan2\",\"atg\",\"ATLToASL\",\"attachedObject\",\"attachedObjects\",\"attachedTo\",\"attachObject\",\"attachTo\",\"attackEnabled\",\"backpack\",\"backpackCargo\",\"backpackContainer\",\"backpackItems\",\"backpackMagazines\",\"backpackSpaceFor\",\"behaviour\",\"benchmark\",\"binocular\",\"blufor\",\"boundingBox\",\"boundingBoxReal\",\"boundingCenter\",\"breakOut\",\"breakTo\",\"briefingName\",\"buildingExit\",\"buildingPos\",\"buttonAction\",\"buttonSetAction\",\"cadetMode\",\"call\",\"callExtension\",\"camCommand\",\"camCommit\",\"camCommitPrepared\",\"camCommitted\",\"camConstuctionSetParams\",\"camCreate\",\"camDestroy\",\"cameraEffect\",\"cameraEffectEnableHUD\",\"cameraInterest\",\"cameraOn\",\"cameraView\",\"campaignConfigFile\",\"camPreload\",\"camPreloaded\",\"camPrepareBank\",\"camPrepareDir\",\"camPrepareDive\",\"camPrepareFocus\",\"camPrepareFov\",\"camPrepareFovRange\",\"camPreparePos\",\"camPrepareRelPos\",\"camPrepareTarget\",\"camSetBank\",\"camSetDir\",\"camSetDive\",\"camSetFocus\",\"camSetFov\",\"camSetFovRange\",\"camSetPos\",\"camSetRelPos\",\"camSetTarget\",\"camTarget\",\"camUseNVG\",\"canAdd\",\"canAddItemToBackpack\",\"canAddItemToUniform\",\"canAddItemToVest\",\"cancelSimpleTaskDestination\",\"canFire\",\"canMove\",\"canSlingLoad\",\"canStand\",\"canUnloadInCombat\",\"captive\",\"captiveNum\",\"case\",\"catch\",\"cbChecked\",\"cbSetChecked\",\"ceil\",\"cheatsEnabled\",\"checkAIFeature\",\"civilian\",\"className\",\"clearAllItemsFromBackpack\",\"clearBackpackCargo\",\"clearBackpackCargoGlobal\",\"clearGroupIcons\",\"clearItemCargo\",\"clearItemCargoGlobal\",\"clearItemPool\",\"clearMagazineCargo\",\"clearMagazineCargoGlobal\",\"clearMagazinePool\",\"clearOverlay\",\"clearRadio\",\"clearWeaponCargo\",\"clearWeaponCargoGlobal\",\"clearWeaponPool\",\"closeDialog\",\"closeDisplay\",\"closeOverlay\",\"collapseObjectTree\",\"combatMode\",\"commandArtilleryFire\",\"commandChat\",\"commander\",\"commandFire\",\"commandFollow\",\"commandFSM\",\"commandGetOut\",\"commandingMenu\",\"commandMove\",\"commandRadio\",\"commandStop\",\"commandTarget\",\"commandWatch\",\"comment\",\"commitOverlay\",\"compile\",\"compileFinal\",\"completedFSM\",\"composeText\",\"configClasses\",\"configFile\",\"configHierarchy\",\"configName\",\"configProperties\",\"configSourceMod\",\"configSourceModList\",\"connectTerminalToUAV\",\"controlNull\",\"controlsGroupCtrl\",\"copyFromClipboard\",\"copyToClipboard\",\"copyWaypoints\",\"cos\",\"count\",\"countEnemy\",\"countFriendly\",\"countSide\",\"countType\",\"countUnknown\",\"createAgent\",\"createCenter\",\"createDialog\",\"createDiaryLink\",\"createDiaryRecord\",\"createDiarySubject\",\"createDisplay\",\"createGearDialog\",\"createGroup\",\"createGuardedPoint\",\"createLocation\",\"createMarker\",\"createMarkerLocal\",\"createMenu\",\"createMine\",\"createMissionDisplay\",\"createSimpleTask\",\"createSite\",\"createSoundSource\",\"createTask\",\"createTeam\",\"createTrigger\",\"createUnit\",\"createUnit array\",\"createVehicle\",\"createVehicle array\",\"createVehicleCrew\",\"createVehicleLocal\",\"crew\",\"ctrlActivate\",\"ctrlAddEventHandler\",\"ctrlAutoScrollDelay\",\"ctrlAutoScrollRewind\",\"ctrlAutoScrollSpeed\",\"ctrlChecked\",\"ctrlClassName\",\"ctrlCommit\",\"ctrlCommitted\",\"ctrlCreate\",\"ctrlDelete\",\"ctrlEnable\",\"ctrlEnabled\",\"ctrlFade\",\"ctrlHTMLLoaded\",\"ctrlIDC\",\"ctrlIDD\",\"ctrlMapAnimAdd\",\"ctrlMapAnimClear\",\"ctrlMapAnimCommit\",\"ctrlMapAnimDone\",\"ctrlMapCursor\",\"ctrlMapMouseOver\",\"ctrlMapScale\",\"ctrlMapScreenToWorld\",\"ctrlMapWorldToScreen\",\"ctrlModel\",\"ctrlModelDirAndUp\",\"ctrlModelScale\",\"ctrlParent\",\"ctrlPosition\",\"ctrlRemoveAllEventHandlers\",\"ctrlRemoveEventHandler\",\"ctrlScale\",\"ctrlSetActiveColor\",\"ctrlSetAutoScrollDelay\",\"ctrlSetAutoScrollRewind\",\"ctrlSetAutoScrollSpeed\",\"ctrlSetBackgroundColor\",\"ctrlSetChecked\",\"ctrlSetEventHandler\",\"ctrlSetFade\",\"ctrlSetFocus\",\"ctrlSetFont\",\"ctrlSetFontH1\",\"ctrlSetFontH1B\",\"ctrlSetFontH2\",\"ctrlSetFontH2B\",\"ctrlSetFontH3\",\"ctrlSetFontH3B\",\"ctrlSetFontH4\",\"ctrlSetFontH4B\",\"ctrlSetFontH5\",\"ctrlSetFontH5B\",\"ctrlSetFontH6\",\"ctrlSetFontH6B\",\"ctrlSetFontHeight\",\"ctrlSetFontHeightH1\",\"ctrlSetFontHeightH2\",\"ctrlSetFontHeightH3\",\"ctrlSetFontHeightH4\",\"ctrlSetFontHeightH5\",\"ctrlSetFontHeightH6\",\"ctrlSetFontP\",\"ctrlSetFontPB\",\"ctrlSetForegroundColor\",\"ctrlSetModel\",\"ctrlSetModelDirAndUp\",\"ctrlSetModelScale\",\"ctrlSetPosition\",\"ctrlSetScale\",\"ctrlSetStructuredText\",\"ctrlSetText\",\"ctrlSetTextColor\",\"ctrlSetTooltip\",\"ctrlSetTooltipColorBox\",\"ctrlSetTooltipColorShade\",\"ctrlSetTooltipColorText\",\"ctrlShow\",\"ctrlShown\",\"ctrlText\",\"ctrlTextHeight\",\"ctrlType\",\"ctrlVisible\",\"curatorAddons\",\"curatorCamera\",\"curatorCameraArea\",\"curatorCameraAreaCeiling\",\"curatorCoef\",\"curatorEditableObjects\",\"curatorEditingArea\",\"curatorEditingAreaType\",\"curatorMouseOver\",\"curatorPoints\",\"curatorRegisteredObjects\",\"curatorSelected\",\"curatorWaypointCost\",\"currentChannel\",\"currentCommand\",\"currentMagazine\",\"currentMagazineDetail\",\"currentMagazineDetailTurret\",\"currentMagazineTurret\",\"currentMuzzle\",\"currentNamespace\",\"currentTask\",\"currentTasks\",\"currentThrowable\",\"currentVisionMode\",\"currentWaypoint\",\"currentWeapon\",\"currentWeaponMode\",\"currentWeaponTurret\",\"currentZeroing\",\"cursorTarget\",\"customChat\",\"customRadio\",\"cutFadeOut\",\"cutObj\",\"cutRsc\",\"cutText\",\"damage\",\"date\",\"dateToNumber\",\"daytime\",\"deActivateKey\",\"debriefingText\",\"debugFSM\",\"debugLog\",\"default\",\"deg\",\"deleteAt\",\"deleteCenter\",\"deleteCollection\",\"deleteEditorObject\",\"deleteGroup\",\"deleteIdentity\",\"deleteLocation\",\"deleteMarker\",\"deleteMarkerLocal\",\"deleteRange\",\"deleteResources\",\"deleteSite\",\"deleteStatus\",\"deleteTeam\",\"deleteVehicle\",\"deleteVehicleCrew\",\"deleteWaypoint\",\"detach\",\"detectedMines\",\"diag activeMissionFSMs\",\"diag activeSQFScripts\",\"diag activeSQSScripts\",\"diag captureFrame\",\"diag captureSlowFrame\",\"diag fps\",\"diag fpsMin\",\"diag frameNo\",\"diag log\",\"diag logSlowFrame\",\"diag tickTime\",\"dialog\",\"diarySubjectExists\",\"didJIP\",\"didJIPOwner\",\"difficulty\",\"difficultyEnabled\",\"difficultyEnabledRTD\",\"direction\",\"directSay\",\"disableAI\",\"disableCollisionWith\",\"disableConversation\",\"disableDebriefingStats\",\"disableSerialization\",\"disableTIEquipment\",\"disableUAVConnectability\",\"disableUserInput\",\"displayAddEventHandler\",\"displayCtrl\",\"displayNull\",\"displayRemoveAllEventHandlers\",\"displayRemoveEventHandler\",\"displaySetEventHandler\",\"dissolveTeam\",\"distance\",\"distance2D\",\"distanceSqr\",\"distributionRegion\",\"do\",\"doArtilleryFire\",\"doFire\",\"doFollow\",\"doFSM\",\"doGetOut\",\"doMove\",\"doorPhase\",\"doStop\",\"doTarget\",\"doWatch\",\"drawArrow\",\"drawEllipse\",\"drawIcon\",\"drawIcon3D\",\"drawLine\",\"drawLine3D\",\"drawLink\",\"drawLocation\",\"drawRectangle\",\"driver\",\"drop\",\"east\",\"echo\",\"editObject\",\"editorSetEventHandler\",\"effectiveCommander\",\"else\",\"emptyPositions\",\"enableAI\",\"enableAIFeature\",\"enableAttack\",\"enableCamShake\",\"enableCaustics\",\"enableCollisionWith\",\"enableCopilot\",\"enableDebriefingStats\",\"enableDiagLegend\",\"enableEndDialog\",\"enableEngineArtillery\",\"enableEnvironment\",\"enableFatigue\",\"enableGunLights\",\"enableIRLasers\",\"enableMimics\",\"enablePersonTurret\",\"enableRadio\",\"enableReload\",\"enableRopeAttach\",\"enableSatNormalOnDetail\",\"enableSaving\",\"enableSentences\",\"enableSimulation\",\"enableSimulationGlobal\",\"enableTeamSwitch\",\"enableUAVConnectability\",\"enableUAVWaypoints\",\"endLoadingScreen\",\"endMission\",\"engineOn\",\"enginesIsOnRTD\",\"enginesRpmRTD\",\"enginesTorqueRTD\",\"entities\",\"estimatedEndServerTime\",\"estimatedTimeLeft\",\"evalObjectArgument\",\"everyBackpack\",\"everyContainer\",\"exec\",\"execEditorScript\",\"execFSM\",\"execVM\",\"exit\",\"exitWith\",\"exp\",\"expectedDestination\",\"eyeDirection\",\"eyePos\",\"face\",\"faction\",\"fadeMusic\",\"fadeRadio\",\"fadeSound\",\"fadeSpeech\",\"failMission\",\"false\",\"fillWeaponsFromPool\",\"find\",\"findCover\",\"findDisplay\",\"findEditorObject\",\"findEmptyPosition\",\"findEmptyPositionReady\",\"findNearestEnemy\",\"finishMissionInit\",\"finite\",\"fire\",\"fireAtTarget\",\"firstBackpack\",\"flag\",\"flagOwner\",\"fleeing\",\"floor\",\"flyInHeight\",\"fog\",\"fogForecast\",\"fogParams\",\"for\",\"forceAddUniform\",\"forceEnd\",\"forceMap\",\"forceRespawn\",\"forceSpeed\",\"forceWalk\",\"forceWeaponFire\",\"forceWeatherChange\",\"forEach\",\"forEachMember\",\"forEachMemberAgent\",\"forEachMemberTeam\",\"format\",\"formation\",\"formationDirection\",\"formationLeader\",\"formationMembers\",\"formationPosition\",\"formationTask\",\"formatText\",\"formLeader\",\"freeLook\",\"from\",\"fromEditor\",\"fuel\",\"fullCrew\",\"gearSlotAmmoCount\",\"gearSlotData\",\"getAllHitPointsDamage\",\"getAmmoCargo\",\"getArray\",\"getArtilleryAmmo\",\"getArtilleryComputerSettings\",\"getArtilleryETA\",\"getAssignedCuratorLogic\",\"getAssignedCuratorUnit\",\"getBackpackCargo\",\"getBleedingRemaining\",\"getBurningValue\",\"getCargoIndex\",\"getCenterOfMass\",\"getClientState\",\"getConnectedUAV\",\"getDammage\",\"getDescription\",\"getDir\",\"getDirVisual\",\"getDLCs\",\"getEditorCamera\",\"getEditorMode\",\"getEditorObjectScope\",\"getElevationOffset\",\"getFatigue\",\"getFriend\",\"getFSMVariable\",\"getFuelCargo\",\"getGroupIcon\",\"getGroupIconParams\",\"getGroupIcons\",\"getHideFrom\",\"getHit\",\"getHitIndex\",\"getHitPointDamage\",\"getItemCargo\",\"getMagazineCargo\",\"getMarkerColor\",\"getMarkerPos\",\"getMarkerSize\",\"getMarkerType\",\"getMass\",\"getModelInfo\",\"getNumber\",\"getObjectArgument\",\"getObjectChildren\",\"getObjectDLC\",\"getObjectMaterials\",\"getObjectProxy\",\"getObjectTextures\",\"getObjectType\",\"getObjectViewDistance\",\"getOxygenRemaining\",\"getPersonUsedDLCs\",\"getPlayerChannel\",\"getPlayerUID\",\"getPos\",\"getPosASL\",\"getPosASLVisual\",\"getPosASLW\",\"getPosATL\",\"getPosATLVisual\",\"getPosVisual\",\"getPosWorld\",\"getRepairCargo\",\"getResolution\",\"getShadowDistance\",\"getSlingLoad\",\"getSpeed\",\"getSuppression\",\"getTerrainHeightASL\",\"getText\",\"getVariable\",\"getWeaponCargo\",\"getWPPos\",\"glanceAt\",\"globalChat\",\"globalRadio\",\"goggles\",\"goto\",\"group\",\"groupChat\",\"groupFromNetId\",\"groupIconSelectable\",\"groupIconsVisible\",\"groupId\",\"groupOwner\",\"groupRadio\",\"groupSelectedUnits\",\"groupSelectUnit\",\"grpNull\",\"gunner\",\"gusts\",\"halt\",\"handgunItems\",\"handgunMagazine\",\"handgunWeapon\",\"handsHit\",\"hasInterface\",\"hasWeapon\",\"hcAllGroups\",\"hcGroupParams\",\"hcLeader\",\"hcRemoveAllGroups\",\"hcRemoveGroup\",\"hcSelected\",\"hcSelectGroup\",\"hcSetGroup\",\"hcShowBar\",\"hcShownBar\",\"headgear\",\"hideBody\",\"hideObject\",\"hideObjectGlobal\",\"hint\",\"hintC\",\"hintCadet\",\"hintSilent\",\"hmd\",\"hostMission\",\"htmlLoad\",\"HUDMovementLevels\",\"humidity\",\"if\",\"image\",\"importAllGroups\",\"importance\",\"in\",\"incapacitatedState\",\"independent\",\"inflame\",\"inflamed\",\"inGameUISetEventHandler\",\"inheritsFrom\",\"initAmbientLife\",\"inputAction\",\"inRangeOfArtillery\",\"insertEditorObject\",\"intersect\",\"isAbleToBreathe\",\"isAgent\",\"isArray\",\"isAutoHoverOn\",\"isAutonomous\",\"isAutotest\",\"isBleeding\",\"isBurning\",\"isClass\",\"isCollisionLightOn\",\"isCopilotEnabled\",\"isDedicated\",\"isDLCAvailable\",\"isEngineOn\",\"isEqualTo\",\"isFlashlightOn\",\"isFlatEmpty\",\"isForcedWalk\",\"isFormationLeader\",\"isHidden\",\"isInRemainsCollector\",\"isInstructorFigureEnabled\",\"isIRLaserOn\",\"isKeyActive\",\"isKindOf\",\"isLightOn\",\"isLocalized\",\"isManualFire\",\"isMarkedForCollection\",\"isMultiplayer\",\"isNil\",\"isNull\",\"isNumber\",\"isObjectHidden\",\"isObjectRTD\",\"isOnRoad\",\"isPipEnabled\",\"isPlayer\",\"isRealTime\",\"isServer\",\"isShowing3DIcons\",\"isSteamMission\",\"isStreamFriendlyUIEnabled\",\"isText\",\"isTouchingGround\",\"isTurnedOut\",\"isTutHintsEnabled\",\"isUAVConnectable\",\"isUAVConnected\",\"isUniformAllowed\",\"isWalking\",\"isWeaponDeployed\",\"isWeaponRested\",\"itemCargo\",\"items\",\"itemsWithMagazines\",\"join\",\"joinAs\",\"joinAsSilent\",\"joinSilent\",\"joinString\",\"kbAddDatabase\",\"kbAddDatabaseTargets\",\"kbAddTopic\",\"kbHasTopic\",\"kbReact\",\"kbRemoveTopic\",\"kbTell\",\"kbWasSaid\",\"keyImage\",\"keyName\",\"knowsAbout\",\"land\",\"landAt\",\"landResult\",\"language\",\"laserTarget\",\"lbAdd\",\"lbClear\",\"lbColor\",\"lbCurSel\",\"lbData\",\"lbDelete\",\"lbIsSelected\",\"lbPicture\",\"lbSelection\",\"lbSetColor\",\"lbSetCurSel\",\"lbSetData\",\"lbSetPicture\",\"lbSetPictureColor\",\"lbSetPictureColorDisabled\",\"lbSetPictureColorSelected\",\"lbSetSelectColor\",\"lbSetSelectColorRight\",\"lbSetSelected\",\"lbSetTooltip\",\"lbSetValue\",\"lbSize\",\"lbSort\",\"lbSortByValue\",\"lbText\",\"lbValue\",\"leader\",\"leaderboardDeInit\",\"leaderboardGetRows\",\"leaderboardInit\",\"leaveVehicle\",\"libraryCredits\",\"libraryDisclaimers\",\"lifeState\",\"lightAttachObject\",\"lightDetachObject\",\"lightIsOn\",\"lightnings\",\"limitSpeed\",\"linearConversion\",\"lineBreak\",\"lineIntersects\",\"lineIntersectsObjs\",\"lineIntersectsSurfaces\",\"lineIntersectsWith\",\"linkItem\",\"list\",\"listObjects\",\"ln\",\"lnbAddArray\",\"lnbAddColumn\",\"lnbAddRow\",\"lnbClear\",\"lnbColor\",\"lnbCurSelRow\",\"lnbData\",\"lnbDeleteColumn\",\"lnbDeleteRow\",\"lnbGetColumnsPosition\",\"lnbPicture\",\"lnbSetColor\",\"lnbSetColumnsPos\",\"lnbSetCurSelRow\",\"lnbSetData\",\"lnbSetPicture\",\"lnbSetText\",\"lnbSetValue\",\"lnbSize\",\"lnbText\",\"lnbValue\",\"load\",\"loadAbs\",\"loadBackpack\",\"loadFile\",\"loadGame\",\"loadIdentity\",\"loadMagazine\",\"loadOverlay\",\"loadStatus\",\"loadUniform\",\"loadVest\",\"local\",\"localize\",\"locationNull\",\"locationPosition\",\"lock\",\"lockCameraTo\",\"lockCargo\",\"lockDriver\",\"locked\",\"lockedCargo\",\"lockedDriver\",\"lockedTurret\",\"lockTurret\",\"lockWP\",\"log\",\"logEntities\",\"lookAt\",\"lookAtPos\",\"magazineCargo\",\"magazines\",\"magazinesAllTurrets\",\"magazinesAmmo\",\"magazinesAmmoCargo\",\"magazinesAmmoFull\",\"magazinesDetail\",\"magazinesDetailBackpack\",\"magazinesDetailUniform\",\"magazinesDetailVest\",\"magazinesTurret\",\"magazineTurretAmmo\",\"mapAnimAdd\",\"mapAnimClear\",\"mapAnimCommit\",\"mapAnimDone\",\"mapCenterOnCamera\",\"mapGridPosition\",\"markAsFinishedOnSteam\",\"markerAlpha\",\"markerBrush\",\"markerColor\",\"markerDir\",\"markerPos\",\"markerShape\",\"markerSize\",\"markerText\",\"markerType\",\"max\",\"members\",\"min\",\"mineActive\",\"mineDetectedBy\",\"missionConfigFile\",\"missionName\",\"missionNamespace\",\"missionStart\",\"mod\",\"modelToWorld\",\"modelToWorldVisual\",\"moonIntensity\",\"morale\",\"move\",\"moveInAny\",\"moveInCargo\",\"moveInCommander\",\"moveInDriver\",\"moveInGunner\",\"moveInTurret\",\"moveObjectToEnd\",\"moveOut\",\"moveTime\",\"moveTo\",\"moveToCompleted\",\"moveToFailed\",\"musicVolume\",\"name\",\"name location\",\"nameSound\",\"nearEntities\",\"nearestBuilding\",\"nearestLocation\",\"nearestLocations\",\"nearestLocationWithDubbing\",\"nearestObject\",\"nearestObjects\",\"nearObjects\",\"nearObjectsReady\",\"nearRoads\",\"nearSupplies\",\"nearTargets\",\"needReload\",\"netId\",\"netObjNull\",\"newOverlay\",\"nextMenuItemIndex\",\"nextWeatherChange\",\"nil\",\"nMenuItems\",\"not\",\"numberToDate\",\"objectCurators\",\"objectFromNetId\",\"objectParent\",\"objNull\",\"objStatus\",\"onBriefingGroup\",\"onBriefingNotes\",\"onBriefingPlan\",\"onBriefingTeamSwitch\",\"onCommandModeChanged\",\"onDoubleClick\",\"onEachFrame\",\"onGroupIconClick\",\"onGroupIconOverEnter\",\"onGroupIconOverLeave\",\"onHCGroupSelectionChanged\",\"onMapSingleClick\",\"onPlayerConnected\",\"onPlayerDisconnected\",\"onPreloadFinished\",\"onPreloadStarted\",\"onShowNewObject\",\"onTeamSwitch\",\"openCuratorInterface\",\"openMap\",\"openYoutubeVideo\",\"opfor\",\"or\",\"orderGetIn\",\"overcast\",\"overcastForecast\",\"owner\",\"param\",\"params\",\"parseNumber\",\"parseText\",\"parsingNamespace\",\"particlesQuality\",\"pi\",\"pickWeaponPool\",\"pitch\",\"playableSlotsNumber\",\"playableUnits\",\"playAction\",\"playActionNow\",\"player\",\"playerRespawnTime\",\"playerSide\",\"playersNumber\",\"playGesture\",\"playMission\",\"playMove\",\"playMoveNow\",\"playMusic\",\"playScriptedMission\",\"playSound\",\"playSound3D\",\"position\",\"positionCameraToWorld\",\"posScreenToWorld\",\"posWorldToScreen\",\"ppEffectAdjust\",\"ppEffectCommit\",\"ppEffectCommitted\",\"ppEffectCreate\",\"ppEffectDestroy\",\"ppEffectEnable\",\"ppEffectForceInNVG\",\"precision\",\"preloadCamera\",\"preloadObject\",\"preloadSound\",\"preloadTitleObj\",\"preloadTitleRsc\",\"preprocessFile\",\"preprocessFileLineNumbers\",\"primaryWeapon\",\"primaryWeaponItems\",\"primaryWeaponMagazine\",\"priority\",\"private\",\"processDiaryLink\",\"productVersion\",\"profileName\",\"profileNamespace\",\"profileNameSteam\",\"progressLoadingScreen\",\"progressPosition\",\"progressSetPosition\",\"publicVariable\",\"publicVariableClient\",\"publicVariableServer\",\"pushBack\",\"putWeaponPool\",\"queryItemsPool\",\"queryMagazinePool\",\"queryWeaponPool\",\"rad\",\"radioChannelAdd\",\"radioChannelCreate\",\"radioChannelRemove\",\"radioChannelSetCallSign\",\"radioChannelSetLabel\",\"radioVolume\",\"rain\",\"rainbow\",\"random\",\"rank\",\"rankId\",\"rating\",\"rectangular\",\"registeredTasks\",\"registerTask\",\"reload\",\"reloadEnabled\",\"remoteControl\",\"remoteExec\",\"remoteExecCall\",\"removeAction\",\"removeAllActions\",\"removeAllAssignedItems\",\"removeAllContainers\",\"removeAllCuratorAddons\",\"removeAllCuratorCameraAreas\",\"removeAllCuratorEditingAreas\",\"removeAllEventHandlers\",\"removeAllHandgunItems\",\"removeAllItems\",\"removeAllItemsWithMagazines\",\"removeAllMissionEventHandlers\",\"removeAllMPEventHandlers\",\"removeAllMusicEventHandlers\",\"removeAllPrimaryWeaponItems\",\"removeAllWeapons\",\"removeBackpack\",\"removeBackpackGlobal\",\"removeCuratorAddons\",\"removeCuratorCameraArea\",\"removeCuratorEditableObjects\",\"removeCuratorEditingArea\",\"removeDrawIcon\",\"removeDrawLinks\",\"removeEventHandler\",\"removeFromRemainsCollector\",\"removeGoggles\",\"removeGroupIcon\",\"removeHandgunItem\",\"removeHeadgear\",\"removeItem\",\"removeItemFromBackpack\",\"removeItemFromUniform\",\"removeItemFromVest\",\"removeItems\",\"removeMagazine\",\"removeMagazineGlobal\",\"removeMagazines\",\"removeMagazinesTurret\",\"removeMagazineTurret\",\"removeMenuItem\",\"removeMissionEventHandler\",\"removeMPEventHandler\",\"removeMusicEventHandler\",\"removePrimaryWeaponItem\",\"removeSecondaryWeaponItem\",\"removeSimpleTask\",\"removeSwitchableUnit\",\"removeTeamMember\",\"removeUniform\",\"removeVest\",\"removeWeapon\",\"removeWeaponGlobal\",\"removeWeaponTurret\",\"requiredVersion\",\"resetCamShake\",\"resetSubgroupDirection\",\"resistance\",\"resize\",\"resources\",\"respawnVehicle\",\"restartEditorCamera\",\"reveal\",\"revealMine\",\"reverse\",\"reversedMouseY\",\"roadsConnectedTo\",\"roleDescription\",\"ropeAttachedObjects\",\"ropeAttachedTo\",\"ropeAttachEnabled\",\"ropeAttachTo\",\"ropeCreate\",\"ropeCut\",\"ropeEndPosition\",\"ropeLength\",\"ropes\",\"ropeUnwind\",\"ropeUnwound\",\"rotorsForcesRTD\",\"rotorsRpmRTD\",\"round\",\"runInitScript\",\"safeZoneH\",\"safeZoneW\",\"safeZoneWAbs\",\"safeZoneX\",\"safeZoneXAbs\",\"safeZoneY\",\"saveGame\",\"saveIdentity\",\"saveJoysticks\",\"saveOverlay\",\"saveProfileNamespace\",\"saveStatus\",\"saveVar\",\"savingEnabled\",\"say\",\"say2D\",\"say3D\",\"scopeName\",\"score\",\"scoreSide\",\"screenToWorld\",\"scriptDone\",\"scriptName\",\"scriptNull\",\"scudState\",\"secondaryWeapon\",\"secondaryWeaponItems\",\"secondaryWeaponMagazine\",\"select\",\"selectBestPlaces\",\"selectDiarySubject\",\"selectedEditorObjects\",\"selectEditorObject\",\"selectionPosition\",\"selectLeader\",\"selectNoPlayer\",\"selectPlayer\",\"selectWeapon\",\"selectWeaponTurret\",\"sendAUMessage\",\"sendSimpleCommand\",\"sendTask\",\"sendTaskResult\",\"sendUDPMessage\",\"serverCommand\",\"serverCommandAvailable\",\"serverCommandExecutable\",\"serverName\",\"serverTime\",\"set\",\"setAccTime\",\"setAirportSide\",\"setAmmo\",\"setAmmoCargo\",\"setAperture\",\"setApertureNew\",\"setArmoryPoints\",\"setAttributes\",\"setAutonomous\",\"setBehaviour\",\"setBleedingRemaining\",\"setCameraInterest\",\"setCamShakeDefParams\",\"setCamShakeParams\",\"setCamUseTi\",\"setCaptive\",\"setCenterOfMass\",\"setCollisionLight\",\"setCombatMode\",\"setCompassOscillation\",\"setCuratorCameraAreaCeiling\",\"setCuratorCoef\",\"setCuratorEditingAreaType\",\"setCuratorWaypointCost\",\"setCurrentChannel\",\"setCurrentTask\",\"setCurrentWaypoint\",\"setDamage\",\"setDammage\",\"setDate\",\"setDebriefingText\",\"setDefaultCamera\",\"setDestination\",\"setDetailMapBlendPars\",\"setDir\",\"setDirection\",\"setDrawIcon\",\"setDropInterval\",\"setEditorMode\",\"setEditorObjectScope\",\"setEffectCondition\",\"setFace\",\"setFaceAnimation\",\"setFatigue\",\"setFlagOwner\",\"setFlagSide\",\"setFlagTexture\",\"setFog\",\"setFog array\",\"setFormation\",\"setFormationTask\",\"setFormDir\",\"setFriend\",\"setFromEditor\",\"setFSMVariable\",\"setFuel\",\"setFuelCargo\",\"setGroupIcon\",\"setGroupIconParams\",\"setGroupIconsSelectable\",\"setGroupIconsVisible\",\"setGroupId\",\"setGroupIdGlobal\",\"setGroupOwner\",\"setGusts\",\"setHideBehind\",\"setHit\",\"setHitIndex\",\"setHitPointDamage\",\"setHorizonParallaxCoef\",\"setHUDMovementLevels\",\"setIdentity\",\"setImportance\",\"setLeader\",\"setLightAmbient\",\"setLightAttenuation\",\"setLightBrightness\",\"setLightColor\",\"setLightDayLight\",\"setLightFlareMaxDistance\",\"setLightFlareSize\",\"setLightIntensity\",\"setLightnings\",\"setLightUseFlare\",\"setLocalWindParams\",\"setMagazineTurretAmmo\",\"setMarkerAlpha\",\"setMarkerAlphaLocal\",\"setMarkerBrush\",\"setMarkerBrushLocal\",\"setMarkerColor\",\"setMarkerColorLocal\",\"setMarkerDir\",\"setMarkerDirLocal\",\"setMarkerPos\",\"setMarkerPosLocal\",\"setMarkerShape\",\"setMarkerShapeLocal\",\"setMarkerSize\",\"setMarkerSizeLocal\",\"setMarkerText\",\"setMarkerTextLocal\",\"setMarkerType\",\"setMarkerTypeLocal\",\"setMass\",\"setMimic\",\"setMousePosition\",\"setMusicEffect\",\"setMusicEventHandler\",\"setName\",\"setNameSound\",\"setObjectArguments\",\"setObjectMaterial\",\"setObjectProxy\",\"setObjectTexture\",\"setObjectTextureGlobal\",\"setObjectViewDistance\",\"setOvercast\",\"setOwner\",\"setOxygenRemaining\",\"setParticleCircle\",\"setParticleClass\",\"setParticleFire\",\"setParticleParams\",\"setParticleRandom\",\"setPilotLight\",\"setPiPEffect\",\"setPitch\",\"setPlayable\",\"setPlayerRespawnTime\",\"setPos\",\"setPosASL\",\"setPosASL2\",\"setPosASLW\",\"setPosATL\",\"setPosition\",\"setPosWorld\",\"setRadioMsg\",\"setRain\",\"setRainbow\",\"setRandomLip\",\"setRank\",\"setRectangular\",\"setRepairCargo\",\"setShadowDistance\",\"setSide\",\"setSimpleTaskDescription\",\"setSimpleTaskDestination\",\"setSimpleTaskTarget\",\"setSimulWeatherLayers\",\"setSize\",\"setSkill\",\"setSkill array\",\"setSlingLoad\",\"setSoundEffect\",\"setSpeaker\",\"setSpeech\",\"setSpeedMode\",\"setStatValue\",\"setSuppression\",\"setSystemOfUnits\",\"setTargetAge\",\"setTaskResult\",\"setTaskState\",\"setTerrainGrid\",\"setText\",\"setTimeMultiplier\",\"setTitleEffect\",\"setTriggerActivation\",\"setTriggerArea\",\"setTriggerStatements\",\"setTriggerText\",\"setTriggerTimeout\",\"setTriggerType\",\"setType\",\"setUnconscious\",\"setUnitAbility\",\"setUnitPos\",\"setUnitPosWeak\",\"setUnitRank\",\"setUnitRecoilCoefficient\",\"setUnloadInCombat\",\"setUserActionText\",\"setVariable\",\"setVectorDir\",\"setVectorDirAndUp\",\"setVectorUp\",\"setVehicleAmmo\",\"setVehicleAmmoDef\",\"setVehicleArmor\",\"setVehicleId\",\"setVehicleLock\",\"setVehiclePosition\",\"setVehicleTiPars\",\"setVehicleVarName\",\"setVelocity\",\"setVelocityTransformation\",\"setViewDistance\",\"setVisibleIfTreeCollapsed\",\"setWaves\",\"setWaypointBehaviour\",\"setWaypointCombatMode\",\"setWaypointCompletionRadius\",\"setWaypointDescription\",\"setWaypointFormation\",\"setWaypointHousePosition\",\"setWaypointLoiterRadius\",\"setWaypointLoiterType\",\"setWaypointName\",\"setWaypointPosition\",\"setWaypointScript\",\"setWaypointSpeed\",\"setWaypointStatements\",\"setWaypointTimeout\",\"setWaypointType\",\"setWaypointVisible\",\"setWeaponReloadingTime\",\"setWind\",\"setWindDir\",\"setWindForce\",\"setWindStr\",\"setWPPos\",\"show3DIcons\",\"showChat\",\"showCinemaBorder\",\"showCommandingMenu\",\"showCompass\",\"showCuratorCompass\",\"showGPS\",\"showHUD\",\"showLegend\",\"showMap\",\"shownArtilleryComputer\",\"shownChat\",\"shownCompass\",\"shownCuratorCompass\",\"showNewEditorObject\",\"shownGPS\",\"shownHUD\",\"shownMap\",\"shownPad\",\"shownRadio\",\"shownUAVFeed\",\"shownWarrant\",\"shownWatch\",\"showPad\",\"showRadio\",\"showSubtitles\",\"showUAVFeed\",\"showWarrant\",\"showWatch\",\"showWaypoint\",\"side\",\"sideChat\",\"sideEnemy\",\"sideFriendly\",\"sideLogic\",\"sideRadio\",\"sideUnknown\",\"simpleTasks\",\"simulationEnabled\",\"simulCloudDensity\",\"simulCloudOcclusion\",\"simulInClouds\",\"simulWeatherSync\",\"sin\",\"size\",\"sizeOf\",\"skill\",\"skillFinal\",\"skipTime\",\"sleep\",\"sliderPosition\",\"sliderRange\",\"sliderSetPosition\",\"sliderSetRange\",\"sliderSetSpeed\",\"sliderSpeed\",\"slingLoadAssistantShown\",\"soldierMagazines\",\"someAmmo\",\"sort\",\"soundVolume\",\"spawn\",\"speaker\",\"speed\",\"speedMode\",\"splitString\",\"sqrt\",\"squadParams\",\"stance\",\"startLoadingScreen\",\"step\",\"stop\",\"stopped\",\"str\",\"sunOrMoon\",\"supportInfo\",\"suppressFor\",\"surfaceIsWater\",\"surfaceNormal\",\"surfaceType\",\"swimInDepth\",\"switch\",\"switchableUnits\",\"switchAction\",\"switchCamera\",\"switchGesture\",\"switchLight\",\"switchMove\",\"synchronizedObjects\",\"synchronizedTriggers\",\"synchronizedWaypoints\",\"synchronizeObjectsAdd\",\"synchronizeObjectsRemove\",\"synchronizeTrigger\",\"synchronizeWaypoint\",\"synchronizeWaypoint trigger\",\"systemChat\",\"systemOfUnits\",\"tan\",\"targetKnowledge\",\"targetsAggregate\",\"targetsQuery\",\"taskChildren\",\"taskCompleted\",\"taskDescription\",\"taskDestination\",\"taskHint\",\"taskNull\",\"taskParent\",\"taskResult\",\"taskState\",\"teamMember\",\"teamMemberNull\",\"teamName\",\"teams\",\"teamSwitch\",\"teamSwitchEnabled\",\"teamType\",\"terminate\",\"terrainIntersect\",\"terrainIntersectASL\",\"text\",\"text location\",\"textLog\",\"textLogFormat\",\"tg\",\"then\",\"throw\",\"time\",\"timeMultiplier\",\"titleCut\",\"titleFadeOut\",\"titleObj\",\"titleRsc\",\"titleText\",\"to\",\"toArray\",\"toLower\",\"toString\",\"toUpper\",\"triggerActivated\",\"triggerActivation\",\"triggerArea\",\"triggerAttachedVehicle\",\"triggerAttachObject\",\"triggerAttachVehicle\",\"triggerStatements\",\"triggerText\",\"triggerTimeout\",\"triggerTimeoutCurrent\",\"triggerType\",\"true\",\"try\",\"turretLocal\",\"turretOwner\",\"turretUnit\",\"tvAdd\",\"tvClear\",\"tvCollapse\",\"tvCount\",\"tvCurSel\",\"tvData\",\"tvDelete\",\"tvExpand\",\"tvPicture\",\"tvSetCurSel\",\"tvSetData\",\"tvSetPicture\",\"tvSetPictureColor\",\"tvSetTooltip\",\"tvSetValue\",\"tvSort\",\"tvSortByValue\",\"tvText\",\"tvValue\",\"type\",\"typeName\",\"typeOf\",\"UAVControl\",\"uiNamespace\",\"uiSleep\",\"unassignCurator\",\"unassignItem\",\"unassignTeam\",\"unassignVehicle\",\"underwater\",\"uniform\",\"uniformContainer\",\"uniformItems\",\"uniformMagazines\",\"unitAddons\",\"unitBackpack\",\"unitPos\",\"unitReady\",\"unitRecoilCoefficient\",\"units\",\"unitsBelowHeight\",\"unlinkItem\",\"unlockAchievement\",\"unregisterTask\",\"updateDrawIcon\",\"updateMenuItem\",\"updateObjectTree\",\"useAudioTimeForMoves\",\"vectorAdd\",\"vectorCos\",\"vectorCrossProduct\",\"vectorDiff\",\"vectorDir\",\"vectorDirVisual\",\"vectorDistance\",\"vectorDistanceSqr\",\"vectorDotProduct\",\"vectorFromTo\",\"vectorMagnitude\",\"vectorMagnitudeSqr\",\"vectorMultiply\",\"vectorNormalized\",\"vectorUp\",\"vectorUpVisual\",\"vehicle\",\"vehicleChat\",\"vehicleRadio\",\"vehicles\",\"vehicleVarName\",\"velocity\",\"velocityModelSpace\",\"verifySignature\",\"vest\",\"vestContainer\",\"vestItems\",\"vestMagazines\",\"viewDistance\",\"visibleCompass\",\"visibleGPS\",\"visibleMap\",\"visiblePosition\",\"visiblePositionASL\",\"visibleWatch\",\"waitUntil\",\"waves\",\"waypointAttachedObject\",\"waypointAttachedVehicle\",\"waypointAttachObject\",\"waypointAttachVehicle\",\"waypointBehaviour\",\"waypointCombatMode\",\"waypointCompletionRadius\",\"waypointDescription\",\"waypointFormation\",\"waypointHousePosition\",\"waypointLoiterRadius\",\"waypointLoiterType\",\"waypointName\",\"waypointPosition\",\"waypoints\",\"waypointScript\",\"waypointsEnabledUAV\",\"waypointShow\",\"waypointSpeed\",\"waypointStatements\",\"waypointTimeout\",\"waypointTimeoutCurrent\",\"waypointType\",\"waypointVisible\",\"weaponAccessories\",\"weaponCargo\",\"weaponDirection\",\"weaponLowered\",\"weapons\",\"weaponsItems\",\"weaponsItemsCargo\",\"weaponState\",\"weaponsTurret\",\"weightRTD\",\"west\",\"WFSideText\",\"while\",\"wind\",\"windDir\",\"windStr\",\"wingsForcesRTD\",\"with\",\"worldName\",\"worldSize\",\"worldToModel\",\"worldToModelVisual\",\"worldToScreen\"],a=[\"case\",\"catch\",\"default\",\"do\",\"else\",\"exit\",\"exitWith|5\",\"for\",\"forEach\",\"from\",\"if\",\"switch\",\"then\",\"throw\",\"to\",\"try\",\"while\",\"with\"],r=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"^\",\":\",\">>\"],o=[\"_forEachIndex|10\",\"_this|10\",\"_x|10\"],i=[\"true\",\"false\",\"nil\"],n=t.filter(function(e){return-1==a.indexOf(e)&&-1==i.indexOf(e)&&-1==r.indexOf(e)});n=n.concat(o);var s={cN:\"string\",r:0,v:[{b:'\"',e:'\"',c:[{b:'\"\"'}]},{b:\"'\",e:\"'\",c:[{b:\"''\"}]}]},l={cN:\"number\",b:e.NR,r:0},c={cN:\"string\",v:[e.QSM,{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},d={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[c,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},c,l,e.CLCM,e.CBCM]};return{aliases:[\"sqf\"],cI:!0,k:{keyword:a.join(\" \"),built_in:n.join(\" \"),literal:i.join(\" \")},c:[e.CLCM,e.CBCM,l,s,d]}});hljs.registerLanguage(\"vbscript-html\",function(r){return{sL:\"xml\",c:[{b:\"<%\",e:\"%>\",sL:\"vbscript\"}]}});hljs.registerLanguage(\"cal\",function(e){var r=\"div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var\",t=\"false true\",a=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],c={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},o={cN:\"string\",b:/(#\\d+)+/},n={cN:\"date\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(DT|D|T)\",r:0},i={cN:\"variable\",b:'\"',e:'\"'},d={cN:\"function\",bK:\"procedure\",e:/[:;]/,k:\"procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[c,o]}].concat(a)},b={cN:\"class\",b:\"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\\\d+) ([^\\\\r\\\\n]+)\",rB:!0,c:[e.TM,d]};return{cI:!0,k:{keyword:r,literal:t},i:/\\/\\*/,c:[c,o,n,i,e.NM,b,d]}});hljs.registerLanguage(\"mojolicious\",function(e){return{sL:\"xml\",c:[{cN:\"preprocessor\",b:\"^__(END|DATA)__$\"},{b:\"^\\\\s*%{1,2}={0,2}\",e:\"$\",sL:\"perl\"},{b:\"<%{1,2}={0,2}\",e:\"={0,1}%>\",sL:\"perl\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"clojure\",function(e){var t={built_in:\"def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},r=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+r+\"][\"+r+\"0-9/;:]*\",a=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",o={b:n,r:0},s={cN:\"number\",b:a,r:0},c=e.inherit(e.QSM,{i:null}),i=e.C(\";\",\"$\",{r:0}),d={cN:\"literal\",b:/\\b(true|false|nil)\\b/},l={cN:\"collection\",b:\"[\\\\[\\\\{]\",e:\"[\\\\]\\\\}]\"},m={cN:\"comment\",b:\"\\\\^\"+n},p=e.C(\"\\\\^\\\\{\",\"\\\\}\"),u={cN:\"attribute\",b:\"[:]\"+n},f={cN:\"list\",b:\"\\\\(\",e:\"\\\\)\"},h={eW:!0,r:0},y={k:t,l:n,cN:\"keyword\",b:n,starts:h},b=[f,c,m,p,i,u,l,s,d,o];return f.c=[e.C(\"comment\",\"\"),y,h],h.c=b,l.c=b,{aliases:[\"clj\"],i:/\\S/,c:[f,c,m,p,i,u,l,s,d]}});hljs.registerLanguage(\"dart\",function(e){var t={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"}\",k:\"true false null this is new super\"},r={cN:\"string\",v:[{b:\"r'''\",e:\"'''\"},{b:'r\"\"\"',e:'\"\"\"'},{b:\"r'\",e:\"'\",i:\"\\\\n\"},{b:'r\"',e:'\"',i:\"\\\\n\"},{b:\"'''\",e:\"'''\",c:[e.BE,t]},{b:'\"\"\"',e:'\"\"\"',c:[e.BE,t]},{b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE,t]},{b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:\"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with\",literal:\"abstract as dynamic export external factory get implements import library operator part set static typedef\",built_in:\"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList\"};return{k:n,c:[r,e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{sL:\"markdown\"}),e.C(\"///\",\"$\",{sL:\"markdown\"}),e.CLCM,e.CBCM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{b:\"=>\"}]}});hljs.registerLanguage(\"ruleslanguage\",function(T){return{k:{keyword:\"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING\",built_in:\"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME\"},c:[T.CLCM,T.CBCM,T.ASM,T.QSM,T.CNM,{cN:\"array\",v:[{b:\"#\\\\s+[a-zA-Z\\\\ \\\\.]*\",r:0},{b:\"#[a-zA-Z\\\\ \\\\.]+\"}]}]}});hljs.registerLanguage(\"applescript\",function(e){var t=e.inherit(e.QSM,{i:\"\"}),r={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CNM,t]},o=e.C(\"--\",\"$\"),n=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\",o]}),a=[o,n,e.HCM];return{aliases:[\"osascript\"],k:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",constant:\"AppleScript false linefeed return pi quote result space tab true\",type:\"alias application boolean class constant date file integer list number real record string text\",command:\"activate beep count delay launch log offset read round run say summarize write\",property:\"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},c:[t,e.CNM,{cN:\"type\",b:\"\\\\bPOSIX file\\\\b\"},{cN:\"command\",b:\"\\\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\\\b|^\\\\s*return\\\\b\"},{cN:\"constant\",b:\"\\\\b(text item delimiters|current application|missing value)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\\\b\"},{cN:\"property\",b:\"\\\\b(POSIX path|(date|time) string|quoted form)\\\\b\"},{cN:\"function_start\",bK:\"on\",i:\"[${=;\\\\n]\",c:[e.UTM,r]}].concat(a),i:\"//|->|=>|\\\\[\\\\[\"}});hljs.registerLanguage(\"xml\",function(t){var s=\"[A-Za-z0-9\\\\._:-]+\",c={b:/<\\?(php)?(?!\\w)/,e:/\\?>/,sL:\"php\"},e={eW:!0,i:/</,r:0,c:[c,{cN:\"attribute\",b:s,r:0},{b:\"=\",r:0,c:[{cN:\"value\",c:[c],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\\/>]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},t.C(\"<!--\",\"-->\",{r:10}),{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[e],starts:{e:\"</style>\",rE:!0,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[e],starts:{e:\"</script>\",rE:!0,sL:[\"actionscript\",\"javascript\",\"handlebars\"]}},c,{cN:\"pi\",b:/<\\?\\w+/,e:/\\?>/,r:10},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:/[^ \\/><\\n\\t]+/,r:0},e]}]}});hljs.registerLanguage(\"elixir\",function(e){var n=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\",r=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",b=\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote\",c={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:n,k:b},a={cN:\"string\",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},i={cN:\"function\",bK:\"def defp defmacro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:\"class\",bK:\"defmodule defrecord\",e:/\\bdo\\b|$|;/}),l=[a,e.HCM,s,i,{cN:\"constant\",b:\"(\\\\b[A-Z_]\\\\w*(.)?)+\",r:0},{cN:\"symbol\",b:\":\",c:[a,{b:r}],r:0},{cN:\"symbol\",b:n+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"->\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[e.HCM,{cN:\"regexp\",i:\"\\\\n\",c:[e.BE,c],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage(\"autoit\",function(e){var t=\"ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With\",r=\"True False And Null Not Or\",i=\"Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Opt Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown TCPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend UDPShutdown UDPStartup VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait WinWaitActive WinWaitClose WinWaitNotActive Array1DToHistogram ArrayAdd ArrayBinarySearch ArrayColDelete ArrayColInsert ArrayCombinations ArrayConcatenate ArrayDelete ArrayDisplay ArrayExtract ArrayFindAll ArrayInsert ArrayMax ArrayMaxIndex ArrayMin ArrayMinIndex ArrayPermute ArrayPop ArrayPush ArrayReverse ArraySearch ArrayShuffle ArraySort ArraySwap ArrayToClip ArrayToString ArrayTranspose ArrayTrim ArrayUnique Assert ChooseColor ChooseFont ClipBoard_ChangeChain ClipBoard_Close ClipBoard_CountFormats ClipBoard_Empty ClipBoard_EnumFormats ClipBoard_FormatStr ClipBoard_GetData ClipBoard_GetDataEx ClipBoard_GetFormatName ClipBoard_GetOpenWindow ClipBoard_GetOwner ClipBoard_GetPriorityFormat ClipBoard_GetSequenceNumber ClipBoard_GetViewer ClipBoard_IsFormatAvailable ClipBoard_Open ClipBoard_RegisterFormat ClipBoard_SetData ClipBoard_SetDataEx ClipBoard_SetViewer ClipPutFile ColorConvertHSLtoRGB ColorConvertRGBtoHSL ColorGetBlue ColorGetCOLORREF ColorGetGreen ColorGetRed ColorGetRGB ColorSetCOLORREF ColorSetRGB Crypt_DecryptData Crypt_DecryptFile Crypt_DeriveKey Crypt_DestroyKey Crypt_EncryptData Crypt_EncryptFile Crypt_GenRandom Crypt_HashData Crypt_HashFile Crypt_Shutdown Crypt_Startup DateAdd DateDayOfWeek DateDaysInMonth DateDiff DateIsLeapYear DateIsValid DateTimeFormat DateTimeSplit DateToDayOfWeek DateToDayOfWeekISO DateToDayValue DateToMonth Date_Time_CompareFileTime Date_Time_DOSDateTimeToArray Date_Time_DOSDateTimeToFileTime Date_Time_DOSDateTimeToStr Date_Time_DOSDateToArray Date_Time_DOSDateToStr Date_Time_DOSTimeToArray Date_Time_DOSTimeToStr Date_Time_EncodeFileTime Date_Time_EncodeSystemTime Date_Time_FileTimeToArray Date_Time_FileTimeToDOSDateTime Date_Time_FileTimeToLocalFileTime Date_Time_FileTimeToStr Date_Time_FileTimeToSystemTime Date_Time_GetFileTime Date_Time_GetLocalTime Date_Time_GetSystemTime Date_Time_GetSystemTimeAdjustment Date_Time_GetSystemTimeAsFileTime Date_Time_GetSystemTimes Date_Time_GetTickCount Date_Time_GetTimeZoneInformation Date_Time_LocalFileTimeToFileTime Date_Time_SetFileTime Date_Time_SetLocalTime Date_Time_SetSystemTime Date_Time_SetSystemTimeAdjustment Date_Time_SetTimeZoneInformation Date_Time_SystemTimeToArray Date_Time_SystemTimeToDateStr Date_Time_SystemTimeToDateTimeStr Date_Time_SystemTimeToFileTime Date_Time_SystemTimeToTimeStr Date_Time_SystemTimeToTzSpecificLocalTime Date_Time_TzSpecificLocalTimeToSystemTime DayValueToDate DebugBugReportEnv DebugCOMError DebugOut DebugReport DebugReportEx DebugReportVar DebugSetup Degree EventLog__Backup EventLog__Clear EventLog__Close EventLog__Count EventLog__DeregisterSource EventLog__Full EventLog__Notify EventLog__Oldest EventLog__Open EventLog__OpenBackup EventLog__Read EventLog__RegisterSource EventLog__Report Excel_BookAttach Excel_BookClose Excel_BookList Excel_BookNew Excel_BookOpen Excel_BookOpenText Excel_BookSave Excel_BookSaveAs Excel_Close Excel_ColumnToLetter Excel_ColumnToNumber Excel_ConvertFormula Excel_Export Excel_FilterGet Excel_FilterSet Excel_Open Excel_PictureAdd Excel_Print Excel_RangeCopyPaste Excel_RangeDelete Excel_RangeFind Excel_RangeInsert Excel_RangeLinkAddRemove Excel_RangeRead Excel_RangeReplace Excel_RangeSort Excel_RangeValidate Excel_RangeWrite Excel_SheetAdd Excel_SheetCopyMove Excel_SheetDelete Excel_SheetList FileCountLines FileCreate FileListToArray FileListToArrayRec FilePrint FileReadToArray FileWriteFromArray FileWriteLog FileWriteToLine FTP_Close FTP_Command FTP_Connect FTP_DecodeInternetStatus FTP_DirCreate FTP_DirDelete FTP_DirGetCurrent FTP_DirPutContents FTP_DirSetCurrent FTP_FileClose FTP_FileDelete FTP_FileGet FTP_FileGetSize FTP_FileOpen FTP_FilePut FTP_FileRead FTP_FileRename FTP_FileTimeLoHiToStr FTP_FindFileClose FTP_FindFileFirst FTP_FindFileNext FTP_GetLastResponseInfo FTP_ListToArray FTP_ListToArray2D FTP_ListToArrayEx FTP_Open FTP_ProgressDownload FTP_ProgressUpload FTP_SetStatusCallback GDIPlus_ArrowCapCreate GDIPlus_ArrowCapDispose GDIPlus_ArrowCapGetFillState GDIPlus_ArrowCapGetHeight GDIPlus_ArrowCapGetMiddleInset GDIPlus_ArrowCapGetWidth GDIPlus_ArrowCapSetFillState GDIPlus_ArrowCapSetHeight GDIPlus_ArrowCapSetMiddleInset GDIPlus_ArrowCapSetWidth GDIPlus_BitmapApplyEffect GDIPlus_BitmapApplyEffectEx GDIPlus_BitmapCloneArea GDIPlus_BitmapConvertFormat GDIPlus_BitmapCreateApplyEffect GDIPlus_BitmapCreateApplyEffectEx GDIPlus_BitmapCreateDIBFromBitmap GDIPlus_BitmapCreateFromFile GDIPlus_BitmapCreateFromGraphics GDIPlus_BitmapCreateFromHBITMAP GDIPlus_BitmapCreateFromHICON GDIPlus_BitmapCreateFromHICON32 GDIPlus_BitmapCreateFromMemory GDIPlus_BitmapCreateFromResource GDIPlus_BitmapCreateFromScan0 GDIPlus_BitmapCreateFromStream GDIPlus_BitmapCreateHBITMAPFromBitmap GDIPlus_BitmapDispose GDIPlus_BitmapGetHistogram GDIPlus_BitmapGetHistogramEx GDIPlus_BitmapGetHistogramSize GDIPlus_BitmapGetPixel GDIPlus_BitmapLockBits GDIPlus_BitmapSetPixel GDIPlus_BitmapUnlockBits GDIPlus_BrushClone GDIPlus_BrushCreateSolid GDIPlus_BrushDispose GDIPlus_BrushGetSolidColor GDIPlus_BrushGetType GDIPlus_BrushSetSolidColor GDIPlus_ColorMatrixCreate GDIPlus_ColorMatrixCreateGrayScale GDIPlus_ColorMatrixCreateNegative GDIPlus_ColorMatrixCreateSaturation GDIPlus_ColorMatrixCreateScale GDIPlus_ColorMatrixCreateTranslate GDIPlus_CustomLineCapClone GDIPlus_CustomLineCapCreate GDIPlus_CustomLineCapDispose GDIPlus_CustomLineCapGetStrokeCaps GDIPlus_CustomLineCapSetStrokeCaps GDIPlus_Decoders GDIPlus_DecodersGetCount GDIPlus_DecodersGetSize GDIPlus_DrawImageFX GDIPlus_DrawImageFXEx GDIPlus_DrawImagePoints GDIPlus_EffectCreate GDIPlus_EffectCreateBlur GDIPlus_EffectCreateBrightnessContrast GDIPlus_EffectCreateColorBalance GDIPlus_EffectCreateColorCurve GDIPlus_EffectCreateColorLUT GDIPlus_EffectCreateColorMatrix GDIPlus_EffectCreateHueSaturationLightness GDIPlus_EffectCreateLevels GDIPlus_EffectCreateRedEyeCorrection GDIPlus_EffectCreateSharpen GDIPlus_EffectCreateTint GDIPlus_EffectDispose GDIPlus_EffectGetParameters GDIPlus_EffectSetParameters GDIPlus_Encoders GDIPlus_EncodersGetCLSID GDIPlus_EncodersGetCount GDIPlus_EncodersGetParamList GDIPlus_EncodersGetParamListSize GDIPlus_EncodersGetSize GDIPlus_FontCreate GDIPlus_FontDispose GDIPlus_FontFamilyCreate GDIPlus_FontFamilyCreateFromCollection GDIPlus_FontFamilyDispose GDIPlus_FontFamilyGetCellAscent GDIPlus_FontFamilyGetCellDescent GDIPlus_FontFamilyGetEmHeight GDIPlus_FontFamilyGetLineSpacing GDIPlus_FontGetHeight GDIPlus_FontPrivateAddFont GDIPlus_FontPrivateAddMemoryFont GDIPlus_FontPrivateCollectionDispose GDIPlus_FontPrivateCreateCollection GDIPlus_GraphicsClear GDIPlus_GraphicsCreateFromHDC GDIPlus_GraphicsCreateFromHWND GDIPlus_GraphicsDispose GDIPlus_GraphicsDrawArc GDIPlus_GraphicsDrawBezier GDIPlus_GraphicsDrawClosedCurve GDIPlus_GraphicsDrawClosedCurve2 GDIPlus_GraphicsDrawCurve GDIPlus_GraphicsDrawCurve2 GDIPlus_GraphicsDrawEllipse GDIPlus_GraphicsDrawImage GDIPlus_GraphicsDrawImagePointsRect GDIPlus_GraphicsDrawImageRect GDIPlus_GraphicsDrawImageRectRect GDIPlus_GraphicsDrawLine GDIPlus_GraphicsDrawPath GDIPlus_GraphicsDrawPie GDIPlus_GraphicsDrawPolygon GDIPlus_GraphicsDrawRect GDIPlus_GraphicsDrawString GDIPlus_GraphicsDrawStringEx GDIPlus_GraphicsFillClosedCurve GDIPlus_GraphicsFillClosedCurve2 GDIPlus_GraphicsFillEllipse GDIPlus_GraphicsFillPath GDIPlus_GraphicsFillPie GDIPlus_GraphicsFillPolygon GDIPlus_GraphicsFillRect GDIPlus_GraphicsFillRegion GDIPlus_GraphicsGetCompositingMode GDIPlus_GraphicsGetCompositingQuality GDIPlus_GraphicsGetDC GDIPlus_GraphicsGetInterpolationMode GDIPlus_GraphicsGetSmoothingMode GDIPlus_GraphicsGetTransform GDIPlus_GraphicsMeasureCharacterRanges GDIPlus_GraphicsMeasureString GDIPlus_GraphicsReleaseDC GDIPlus_GraphicsResetClip GDIPlus_GraphicsResetTransform GDIPlus_GraphicsRestore GDIPlus_GraphicsRotateTransform GDIPlus_GraphicsSave GDIPlus_GraphicsScaleTransform GDIPlus_GraphicsSetClipPath GDIPlus_GraphicsSetClipRect GDIPlus_GraphicsSetClipRegion GDIPlus_GraphicsSetCompositingMode GDIPlus_GraphicsSetCompositingQuality GDIPlus_GraphicsSetInterpolationMode GDIPlus_GraphicsSetPixelOffsetMode GDIPlus_GraphicsSetSmoothingMode GDIPlus_GraphicsSetTextRenderingHint GDIPlus_GraphicsSetTransform GDIPlus_GraphicsTransformPoints GDIPlus_GraphicsTranslateTransform GDIPlus_HatchBrushCreate GDIPlus_HICONCreateFromBitmap GDIPlus_ImageAttributesCreate GDIPlus_ImageAttributesDispose GDIPlus_ImageAttributesSetColorKeys GDIPlus_ImageAttributesSetColorMatrix GDIPlus_ImageDispose GDIPlus_ImageGetDimension GDIPlus_ImageGetFlags GDIPlus_ImageGetGraphicsContext GDIPlus_ImageGetHeight GDIPlus_ImageGetHorizontalResolution GDIPlus_ImageGetPixelFormat GDIPlus_ImageGetRawFormat GDIPlus_ImageGetThumbnail GDIPlus_ImageGetType GDIPlus_ImageGetVerticalResolution GDIPlus_ImageGetWidth GDIPlus_ImageLoadFromFile GDIPlus_ImageLoadFromStream GDIPlus_ImageResize GDIPlus_ImageRotateFlip GDIPlus_ImageSaveToFile GDIPlus_ImageSaveToFileEx GDIPlus_ImageSaveToStream GDIPlus_ImageScale GDIPlus_LineBrushCreate GDIPlus_LineBrushCreateFromRect GDIPlus_LineBrushCreateFromRectWithAngle GDIPlus_LineBrushGetColors GDIPlus_LineBrushGetRect GDIPlus_LineBrushMultiplyTransform GDIPlus_LineBrushResetTransform GDIPlus_LineBrushSetBlend GDIPlus_LineBrushSetColors GDIPlus_LineBrushSetGammaCorrection GDIPlus_LineBrushSetLinearBlend GDIPlus_LineBrushSetPresetBlend GDIPlus_LineBrushSetSigmaBlend GDIPlus_LineBrushSetTransform GDIPlus_MatrixClone GDIPlus_MatrixCreate GDIPlus_MatrixDispose GDIPlus_MatrixGetElements GDIPlus_MatrixInvert GDIPlus_MatrixMultiply GDIPlus_MatrixRotate GDIPlus_MatrixScale GDIPlus_MatrixSetElements GDIPlus_MatrixShear GDIPlus_MatrixTransformPoints GDIPlus_MatrixTranslate GDIPlus_PaletteInitialize GDIPlus_ParamAdd GDIPlus_ParamInit GDIPlus_ParamSize GDIPlus_PathAddArc GDIPlus_PathAddBezier GDIPlus_PathAddClosedCurve GDIPlus_PathAddClosedCurve2 GDIPlus_PathAddCurve GDIPlus_PathAddCurve2 GDIPlus_PathAddCurve3 GDIPlus_PathAddEllipse GDIPlus_PathAddLine GDIPlus_PathAddLine2 GDIPlus_PathAddPath GDIPlus_PathAddPie GDIPlus_PathAddPolygon GDIPlus_PathAddRectangle GDIPlus_PathAddString GDIPlus_PathBrushCreate GDIPlus_PathBrushCreateFromPath GDIPlus_PathBrushGetCenterPoint GDIPlus_PathBrushGetFocusScales GDIPlus_PathBrushGetPointCount GDIPlus_PathBrushGetRect GDIPlus_PathBrushGetWrapMode GDIPlus_PathBrushMultiplyTransform GDIPlus_PathBrushResetTransform GDIPlus_PathBrushSetBlend GDIPlus_PathBrushSetCenterColor GDIPlus_PathBrushSetCenterPoint GDIPlus_PathBrushSetFocusScales GDIPlus_PathBrushSetGammaCorrection GDIPlus_PathBrushSetLinearBlend GDIPlus_PathBrushSetPresetBlend GDIPlus_PathBrushSetSigmaBlend GDIPlus_PathBrushSetSurroundColor GDIPlus_PathBrushSetSurroundColorsWithCount GDIPlus_PathBrushSetTransform GDIPlus_PathBrushSetWrapMode GDIPlus_PathClone GDIPlus_PathCloseFigure GDIPlus_PathCreate GDIPlus_PathCreate2 GDIPlus_PathDispose GDIPlus_PathFlatten GDIPlus_PathGetData GDIPlus_PathGetFillMode GDIPlus_PathGetLastPoint GDIPlus_PathGetPointCount GDIPlus_PathGetPoints GDIPlus_PathGetWorldBounds GDIPlus_PathIsOutlineVisiblePoint GDIPlus_PathIsVisiblePoint GDIPlus_PathIterCreate GDIPlus_PathIterDispose GDIPlus_PathIterGetSubpathCount GDIPlus_PathIterNextMarkerPath GDIPlus_PathIterNextSubpathPath GDIPlus_PathIterRewind GDIPlus_PathReset GDIPlus_PathReverse GDIPlus_PathSetFillMode GDIPlus_PathSetMarker GDIPlus_PathStartFigure GDIPlus_PathTransform GDIPlus_PathWarp GDIPlus_PathWiden GDIPlus_PathWindingModeOutline GDIPlus_PenCreate GDIPlus_PenCreate2 GDIPlus_PenDispose GDIPlus_PenGetAlignment GDIPlus_PenGetColor GDIPlus_PenGetCustomEndCap GDIPlus_PenGetDashCap GDIPlus_PenGetDashStyle GDIPlus_PenGetEndCap GDIPlus_PenGetMiterLimit GDIPlus_PenGetWidth GDIPlus_PenSetAlignment GDIPlus_PenSetColor GDIPlus_PenSetCustomEndCap GDIPlus_PenSetDashCap GDIPlus_PenSetDashStyle GDIPlus_PenSetEndCap GDIPlus_PenSetLineCap GDIPlus_PenSetLineJoin GDIPlus_PenSetMiterLimit GDIPlus_PenSetStartCap GDIPlus_PenSetWidth GDIPlus_RectFCreate GDIPlus_RegionClone GDIPlus_RegionCombinePath GDIPlus_RegionCombineRect GDIPlus_RegionCombineRegion GDIPlus_RegionCreate GDIPlus_RegionCreateFromPath GDIPlus_RegionCreateFromRect GDIPlus_RegionDispose GDIPlus_RegionGetBounds GDIPlus_RegionGetHRgn GDIPlus_RegionTransform GDIPlus_RegionTranslate GDIPlus_Shutdown GDIPlus_Startup GDIPlus_StringFormatCreate GDIPlus_StringFormatDispose GDIPlus_StringFormatGetMeasurableCharacterRangeCount GDIPlus_StringFormatSetAlign GDIPlus_StringFormatSetLineAlign GDIPlus_StringFormatSetMeasurableCharacterRanges GDIPlus_TextureCreate GDIPlus_TextureCreate2 GDIPlus_TextureCreateIA GetIP GUICtrlAVI_Close GUICtrlAVI_Create GUICtrlAVI_Destroy GUICtrlAVI_IsPlaying GUICtrlAVI_Open GUICtrlAVI_OpenEx GUICtrlAVI_Play GUICtrlAVI_Seek GUICtrlAVI_Show GUICtrlAVI_Stop GUICtrlButton_Click GUICtrlButton_Create GUICtrlButton_Destroy GUICtrlButton_Enable GUICtrlButton_GetCheck GUICtrlButton_GetFocus GUICtrlButton_GetIdealSize GUICtrlButton_GetImage GUICtrlButton_GetImageList GUICtrlButton_GetNote GUICtrlButton_GetNoteLength GUICtrlButton_GetSplitInfo GUICtrlButton_GetState GUICtrlButton_GetText GUICtrlButton_GetTextMargin GUICtrlButton_SetCheck GUICtrlButton_SetDontClick GUICtrlButton_SetFocus GUICtrlButton_SetImage GUICtrlButton_SetImageList GUICtrlButton_SetNote GUICtrlButton_SetShield GUICtrlButton_SetSize GUICtrlButton_SetSplitInfo GUICtrlButton_SetState GUICtrlButton_SetStyle GUICtrlButton_SetText GUICtrlButton_SetTextMargin GUICtrlButton_Show GUICtrlComboBoxEx_AddDir GUICtrlComboBoxEx_AddString GUICtrlComboBoxEx_BeginUpdate GUICtrlComboBoxEx_Create GUICtrlComboBoxEx_CreateSolidBitMap GUICtrlComboBoxEx_DeleteString GUICtrlComboBoxEx_Destroy GUICtrlComboBoxEx_EndUpdate GUICtrlComboBoxEx_FindStringExact GUICtrlComboBoxEx_GetComboBoxInfo GUICtrlComboBoxEx_GetComboControl GUICtrlComboBoxEx_GetCount GUICtrlComboBoxEx_GetCurSel GUICtrlComboBoxEx_GetDroppedControlRect GUICtrlComboBoxEx_GetDroppedControlRectEx GUICtrlComboBoxEx_GetDroppedState GUICtrlComboBoxEx_GetDroppedWidth GUICtrlComboBoxEx_GetEditControl GUICtrlComboBoxEx_GetEditSel GUICtrlComboBoxEx_GetEditText GUICtrlComboBoxEx_GetExtendedStyle GUICtrlComboBoxEx_GetExtendedUI GUICtrlComboBoxEx_GetImageList GUICtrlComboBoxEx_GetItem GUICtrlComboBoxEx_GetItemEx GUICtrlComboBoxEx_GetItemHeight GUICtrlComboBoxEx_GetItemImage GUICtrlComboBoxEx_GetItemIndent GUICtrlComboBoxEx_GetItemOverlayImage GUICtrlComboBoxEx_GetItemParam GUICtrlComboBoxEx_GetItemSelectedImage GUICtrlComboBoxEx_GetItemText GUICtrlComboBoxEx_GetItemTextLen GUICtrlComboBoxEx_GetList GUICtrlComboBoxEx_GetListArray GUICtrlComboBoxEx_GetLocale GUICtrlComboBoxEx_GetLocaleCountry GUICtrlComboBoxEx_GetLocaleLang GUICtrlComboBoxEx_GetLocalePrimLang GUICtrlComboBoxEx_GetLocaleSubLang GUICtrlComboBoxEx_GetMinVisible GUICtrlComboBoxEx_GetTopIndex GUICtrlComboBoxEx_GetUnicode GUICtrlComboBoxEx_InitStorage GUICtrlComboBoxEx_InsertString GUICtrlComboBoxEx_LimitText GUICtrlComboBoxEx_ReplaceEditSel GUICtrlComboBoxEx_ResetContent GUICtrlComboBoxEx_SetCurSel GUICtrlComboBoxEx_SetDroppedWidth GUICtrlComboBoxEx_SetEditSel GUICtrlComboBoxEx_SetEditText GUICtrlComboBoxEx_SetExtendedStyle GUICtrlComboBoxEx_SetExtendedUI GUICtrlComboBoxEx_SetImageList GUICtrlComboBoxEx_SetItem GUICtrlComboBoxEx_SetItemEx GUICtrlComboBoxEx_SetItemHeight GUICtrlComboBoxEx_SetItemImage GUICtrlComboBoxEx_SetItemIndent GUICtrlComboBoxEx_SetItemOverlayImage GUICtrlComboBoxEx_SetItemParam GUICtrlComboBoxEx_SetItemSelectedImage GUICtrlComboBoxEx_SetMinVisible GUICtrlComboBoxEx_SetTopIndex GUICtrlComboBoxEx_SetUnicode GUICtrlComboBoxEx_ShowDropDown GUICtrlComboBox_AddDir GUICtrlComboBox_AddString GUICtrlComboBox_AutoComplete GUICtrlComboBox_BeginUpdate GUICtrlComboBox_Create GUICtrlComboBox_DeleteString GUICtrlComboBox_Destroy GUICtrlComboBox_EndUpdate GUICtrlComboBox_FindString GUICtrlComboBox_FindStringExact GUICtrlComboBox_GetComboBoxInfo GUICtrlComboBox_GetCount GUICtrlComboBox_GetCueBanner GUICtrlComboBox_GetCurSel GUICtrlComboBox_GetDroppedControlRect GUICtrlComboBox_GetDroppedControlRectEx GUICtrlComboBox_GetDroppedState GUICtrlComboBox_GetDroppedWidth GUICtrlComboBox_GetEditSel GUICtrlComboBox_GetEditText GUICtrlComboBox_GetExtendedUI GUICtrlComboBox_GetHorizontalExtent GUICtrlComboBox_GetItemHeight GUICtrlComboBox_GetLBText GUICtrlComboBox_GetLBTextLen GUICtrlComboBox_GetList GUICtrlComboBox_GetListArray GUICtrlComboBox_GetLocale GUICtrlComboBox_GetLocaleCountry GUICtrlComboBox_GetLocaleLang GUICtrlComboBox_GetLocalePrimLang GUICtrlComboBox_GetLocaleSubLang GUICtrlComboBox_GetMinVisible GUICtrlComboBox_GetTopIndex GUICtrlComboBox_InitStorage GUICtrlComboBox_InsertString GUICtrlComboBox_LimitText GUICtrlComboBox_ReplaceEditSel GUICtrlComboBox_ResetContent GUICtrlComboBox_SelectString GUICtrlComboBox_SetCueBanner GUICtrlComboBox_SetCurSel GUICtrlComboBox_SetDroppedWidth GUICtrlComboBox_SetEditSel GUICtrlComboBox_SetEditText GUICtrlComboBox_SetExtendedUI GUICtrlComboBox_SetHorizontalExtent GUICtrlComboBox_SetItemHeight GUICtrlComboBox_SetMinVisible GUICtrlComboBox_SetTopIndex GUICtrlComboBox_ShowDropDown GUICtrlDTP_Create GUICtrlDTP_Destroy GUICtrlDTP_GetMCColor GUICtrlDTP_GetMCFont GUICtrlDTP_GetMonthCal GUICtrlDTP_GetRange GUICtrlDTP_GetRangeEx GUICtrlDTP_GetSystemTime GUICtrlDTP_GetSystemTimeEx GUICtrlDTP_SetFormat GUICtrlDTP_SetMCColor GUICtrlDTP_SetMCFont GUICtrlDTP_SetRange GUICtrlDTP_SetRangeEx GUICtrlDTP_SetSystemTime GUICtrlDTP_SetSystemTimeEx GUICtrlEdit_AppendText GUICtrlEdit_BeginUpdate GUICtrlEdit_CanUndo GUICtrlEdit_CharFromPos GUICtrlEdit_Create GUICtrlEdit_Destroy GUICtrlEdit_EmptyUndoBuffer GUICtrlEdit_EndUpdate GUICtrlEdit_Find GUICtrlEdit_FmtLines GUICtrlEdit_GetCueBanner GUICtrlEdit_GetFirstVisibleLine GUICtrlEdit_GetLimitText GUICtrlEdit_GetLine GUICtrlEdit_GetLineCount GUICtrlEdit_GetMargins GUICtrlEdit_GetModify GUICtrlEdit_GetPasswordChar GUICtrlEdit_GetRECT GUICtrlEdit_GetRECTEx GUICtrlEdit_GetSel GUICtrlEdit_GetText GUICtrlEdit_GetTextLen GUICtrlEdit_HideBalloonTip GUICtrlEdit_InsertText GUICtrlEdit_LineFromChar GUICtrlEdit_LineIndex GUICtrlEdit_LineLength GUICtrlEdit_LineScroll GUICtrlEdit_PosFromChar GUICtrlEdit_ReplaceSel GUICtrlEdit_Scroll GUICtrlEdit_SetCueBanner GUICtrlEdit_SetLimitText GUICtrlEdit_SetMargins GUICtrlEdit_SetModify GUICtrlEdit_SetPasswordChar GUICtrlEdit_SetReadOnly GUICtrlEdit_SetRECT GUICtrlEdit_SetRECTEx GUICtrlEdit_SetRECTNP GUICtrlEdit_SetRectNPEx GUICtrlEdit_SetSel GUICtrlEdit_SetTabStops GUICtrlEdit_SetText GUICtrlEdit_ShowBalloonTip GUICtrlEdit_Undo GUICtrlHeader_AddItem GUICtrlHeader_ClearFilter GUICtrlHeader_ClearFilterAll GUICtrlHeader_Create GUICtrlHeader_CreateDragImage GUICtrlHeader_DeleteItem GUICtrlHeader_Destroy GUICtrlHeader_EditFilter GUICtrlHeader_GetBitmapMargin GUICtrlHeader_GetImageList GUICtrlHeader_GetItem GUICtrlHeader_GetItemAlign GUICtrlHeader_GetItemBitmap GUICtrlHeader_GetItemCount GUICtrlHeader_GetItemDisplay GUICtrlHeader_GetItemFlags GUICtrlHeader_GetItemFormat GUICtrlHeader_GetItemImage GUICtrlHeader_GetItemOrder GUICtrlHeader_GetItemParam GUICtrlHeader_GetItemRect GUICtrlHeader_GetItemRectEx GUICtrlHeader_GetItemText GUICtrlHeader_GetItemWidth GUICtrlHeader_GetOrderArray GUICtrlHeader_GetUnicodeFormat GUICtrlHeader_HitTest GUICtrlHeader_InsertItem GUICtrlHeader_Layout GUICtrlHeader_OrderToIndex GUICtrlHeader_SetBitmapMargin GUICtrlHeader_SetFilterChangeTimeout GUICtrlHeader_SetHotDivider GUICtrlHeader_SetImageList GUICtrlHeader_SetItem GUICtrlHeader_SetItemAlign GUICtrlHeader_SetItemBitmap GUICtrlHeader_SetItemDisplay GUICtrlHeader_SetItemFlags GUICtrlHeader_SetItemFormat GUICtrlHeader_SetItemImage GUICtrlHeader_SetItemOrder GUICtrlHeader_SetItemParam GUICtrlHeader_SetItemText GUICtrlHeader_SetItemWidth GUICtrlHeader_SetOrderArray GUICtrlHeader_SetUnicodeFormat GUICtrlIpAddress_ClearAddress GUICtrlIpAddress_Create GUICtrlIpAddress_Destroy GUICtrlIpAddress_Get GUICtrlIpAddress_GetArray GUICtrlIpAddress_GetEx GUICtrlIpAddress_IsBlank GUICtrlIpAddress_Set GUICtrlIpAddress_SetArray GUICtrlIpAddress_SetEx GUICtrlIpAddress_SetFocus GUICtrlIpAddress_SetFont GUICtrlIpAddress_SetRange GUICtrlIpAddress_ShowHide GUICtrlListBox_AddFile GUICtrlListBox_AddString GUICtrlListBox_BeginUpdate GUICtrlListBox_ClickItem GUICtrlListBox_Create GUICtrlListBox_DeleteString GUICtrlListBox_Destroy GUICtrlListBox_Dir GUICtrlListBox_EndUpdate GUICtrlListBox_FindInText GUICtrlListBox_FindString GUICtrlListBox_GetAnchorIndex GUICtrlListBox_GetCaretIndex GUICtrlListBox_GetCount GUICtrlListBox_GetCurSel GUICtrlListBox_GetHorizontalExtent GUICtrlListBox_GetItemData GUICtrlListBox_GetItemHeight GUICtrlListBox_GetItemRect GUICtrlListBox_GetItemRectEx GUICtrlListBox_GetListBoxInfo GUICtrlListBox_GetLocale GUICtrlListBox_GetLocaleCountry GUICtrlListBox_GetLocaleLang GUICtrlListBox_GetLocalePrimLang GUICtrlListBox_GetLocaleSubLang GUICtrlListBox_GetSel GUICtrlListBox_GetSelCount GUICtrlListBox_GetSelItems GUICtrlListBox_GetSelItemsText GUICtrlListBox_GetText GUICtrlListBox_GetTextLen GUICtrlListBox_GetTopIndex GUICtrlListBox_InitStorage GUICtrlListBox_InsertString GUICtrlListBox_ItemFromPoint GUICtrlListBox_ReplaceString GUICtrlListBox_ResetContent GUICtrlListBox_SelectString GUICtrlListBox_SelItemRange GUICtrlListBox_SelItemRangeEx GUICtrlListBox_SetAnchorIndex GUICtrlListBox_SetCaretIndex GUICtrlListBox_SetColumnWidth GUICtrlListBox_SetCurSel GUICtrlListBox_SetHorizontalExtent GUICtrlListBox_SetItemData GUICtrlListBox_SetItemHeight GUICtrlListBox_SetLocale GUICtrlListBox_SetSel GUICtrlListBox_SetTabStops GUICtrlListBox_SetTopIndex GUICtrlListBox_Sort GUICtrlListBox_SwapString GUICtrlListBox_UpdateHScroll GUICtrlListView_AddArray GUICtrlListView_AddColumn GUICtrlListView_AddItem GUICtrlListView_AddSubItem GUICtrlListView_ApproximateViewHeight GUICtrlListView_ApproximateViewRect GUICtrlListView_ApproximateViewWidth GUICtrlListView_Arrange GUICtrlListView_BeginUpdate GUICtrlListView_CancelEditLabel GUICtrlListView_ClickItem GUICtrlListView_CopyItems GUICtrlListView_Create GUICtrlListView_CreateDragImage GUICtrlListView_CreateSolidBitMap GUICtrlListView_DeleteAllItems GUICtrlListView_DeleteColumn GUICtrlListView_DeleteItem GUICtrlListView_DeleteItemsSelected GUICtrlListView_Destroy GUICtrlListView_DrawDragImage GUICtrlListView_EditLabel GUICtrlListView_EnableGroupView GUICtrlListView_EndUpdate GUICtrlListView_EnsureVisible GUICtrlListView_FindInText GUICtrlListView_FindItem GUICtrlListView_FindNearest GUICtrlListView_FindParam GUICtrlListView_FindText GUICtrlListView_GetBkColor GUICtrlListView_GetBkImage GUICtrlListView_GetCallbackMask GUICtrlListView_GetColumn GUICtrlListView_GetColumnCount GUICtrlListView_GetColumnOrder GUICtrlListView_GetColumnOrderArray GUICtrlListView_GetColumnWidth GUICtrlListView_GetCounterPage GUICtrlListView_GetEditControl GUICtrlListView_GetExtendedListViewStyle GUICtrlListView_GetFocusedGroup GUICtrlListView_GetGroupCount GUICtrlListView_GetGroupInfo GUICtrlListView_GetGroupInfoByIndex GUICtrlListView_GetGroupRect GUICtrlListView_GetGroupViewEnabled GUICtrlListView_GetHeader GUICtrlListView_GetHotCursor GUICtrlListView_GetHotItem GUICtrlListView_GetHoverTime GUICtrlListView_GetImageList GUICtrlListView_GetISearchString GUICtrlListView_GetItem GUICtrlListView_GetItemChecked GUICtrlListView_GetItemCount GUICtrlListView_GetItemCut GUICtrlListView_GetItemDropHilited GUICtrlListView_GetItemEx GUICtrlListView_GetItemFocused GUICtrlListView_GetItemGroupID GUICtrlListView_GetItemImage GUICtrlListView_GetItemIndent GUICtrlListView_GetItemParam GUICtrlListView_GetItemPosition GUICtrlListView_GetItemPositionX GUICtrlListView_GetItemPositionY GUICtrlListView_GetItemRect GUICtrlListView_GetItemRectEx GUICtrlListView_GetItemSelected GUICtrlListView_GetItemSpacing GUICtrlListView_GetItemSpacingX GUICtrlListView_GetItemSpacingY GUICtrlListView_GetItemState GUICtrlListView_GetItemStateImage GUICtrlListView_GetItemText GUICtrlListView_GetItemTextArray GUICtrlListView_GetItemTextString GUICtrlListView_GetNextItem GUICtrlListView_GetNumberOfWorkAreas GUICtrlListView_GetOrigin GUICtrlListView_GetOriginX GUICtrlListView_GetOriginY GUICtrlListView_GetOutlineColor GUICtrlListView_GetSelectedColumn GUICtrlListView_GetSelectedCount GUICtrlListView_GetSelectedIndices GUICtrlListView_GetSelectionMark GUICtrlListView_GetStringWidth GUICtrlListView_GetSubItemRect GUICtrlListView_GetTextBkColor GUICtrlListView_GetTextColor GUICtrlListView_GetToolTips GUICtrlListView_GetTopIndex GUICtrlListView_GetUnicodeFormat GUICtrlListView_GetView GUICtrlListView_GetViewDetails GUICtrlListView_GetViewLarge GUICtrlListView_GetViewList GUICtrlListView_GetViewRect GUICtrlListView_GetViewSmall GUICtrlListView_GetViewTile GUICtrlListView_HideColumn GUICtrlListView_HitTest GUICtrlListView_InsertColumn GUICtrlListView_InsertGroup GUICtrlListView_InsertItem GUICtrlListView_JustifyColumn GUICtrlListView_MapIDToIndex GUICtrlListView_MapIndexToID GUICtrlListView_RedrawItems GUICtrlListView_RegisterSortCallBack GUICtrlListView_RemoveAllGroups GUICtrlListView_RemoveGroup GUICtrlListView_Scroll GUICtrlListView_SetBkColor GUICtrlListView_SetBkImage GUICtrlListView_SetCallBackMask GUICtrlListView_SetColumn GUICtrlListView_SetColumnOrder GUICtrlListView_SetColumnOrderArray GUICtrlListView_SetColumnWidth GUICtrlListView_SetExtendedListViewStyle GUICtrlListView_SetGroupInfo GUICtrlListView_SetHotItem GUICtrlListView_SetHoverTime GUICtrlListView_SetIconSpacing GUICtrlListView_SetImageList GUICtrlListView_SetItem GUICtrlListView_SetItemChecked GUICtrlListView_SetItemCount GUICtrlListView_SetItemCut GUICtrlListView_SetItemDropHilited GUICtrlListView_SetItemEx GUICtrlListView_SetItemFocused GUICtrlListView_SetItemGroupID GUICtrlListView_SetItemImage GUICtrlListView_SetItemIndent GUICtrlListView_SetItemParam GUICtrlListView_SetItemPosition GUICtrlListView_SetItemPosition32 GUICtrlListView_SetItemSelected GUICtrlListView_SetItemState GUICtrlListView_SetItemStateImage GUICtrlListView_SetItemText GUICtrlListView_SetOutlineColor GUICtrlListView_SetSelectedColumn GUICtrlListView_SetSelectionMark GUICtrlListView_SetTextBkColor GUICtrlListView_SetTextColor GUICtrlListView_SetToolTips GUICtrlListView_SetUnicodeFormat GUICtrlListView_SetView GUICtrlListView_SetWorkAreas GUICtrlListView_SimpleSort GUICtrlListView_SortItems GUICtrlListView_SubItemHitTest GUICtrlListView_UnRegisterSortCallBack GUICtrlMenu_AddMenuItem GUICtrlMenu_AppendMenu GUICtrlMenu_CalculatePopupWindowPosition GUICtrlMenu_CheckMenuItem GUICtrlMenu_CheckRadioItem GUICtrlMenu_CreateMenu GUICtrlMenu_CreatePopup GUICtrlMenu_DeleteMenu GUICtrlMenu_DestroyMenu GUICtrlMenu_DrawMenuBar GUICtrlMenu_EnableMenuItem GUICtrlMenu_FindItem GUICtrlMenu_FindParent GUICtrlMenu_GetItemBmp GUICtrlMenu_GetItemBmpChecked GUICtrlMenu_GetItemBmpUnchecked GUICtrlMenu_GetItemChecked GUICtrlMenu_GetItemCount GUICtrlMenu_GetItemData GUICtrlMenu_GetItemDefault GUICtrlMenu_GetItemDisabled GUICtrlMenu_GetItemEnabled GUICtrlMenu_GetItemGrayed GUICtrlMenu_GetItemHighlighted GUICtrlMenu_GetItemID GUICtrlMenu_GetItemInfo GUICtrlMenu_GetItemRect GUICtrlMenu_GetItemRectEx GUICtrlMenu_GetItemState GUICtrlMenu_GetItemStateEx GUICtrlMenu_GetItemSubMenu GUICtrlMenu_GetItemText GUICtrlMenu_GetItemType GUICtrlMenu_GetMenu GUICtrlMenu_GetMenuBackground GUICtrlMenu_GetMenuBarInfo GUICtrlMenu_GetMenuContextHelpID GUICtrlMenu_GetMenuData GUICtrlMenu_GetMenuDefaultItem GUICtrlMenu_GetMenuHeight GUICtrlMenu_GetMenuInfo GUICtrlMenu_GetMenuStyle GUICtrlMenu_GetSystemMenu GUICtrlMenu_InsertMenuItem GUICtrlMenu_InsertMenuItemEx GUICtrlMenu_IsMenu GUICtrlMenu_LoadMenu GUICtrlMenu_MapAccelerator GUICtrlMenu_MenuItemFromPoint GUICtrlMenu_RemoveMenu GUICtrlMenu_SetItemBitmaps GUICtrlMenu_SetItemBmp GUICtrlMenu_SetItemBmpChecked GUICtrlMenu_SetItemBmpUnchecked GUICtrlMenu_SetItemChecked GUICtrlMenu_SetItemData GUICtrlMenu_SetItemDefault GUICtrlMenu_SetItemDisabled GUICtrlMenu_SetItemEnabled GUICtrlMenu_SetItemGrayed GUICtrlMenu_SetItemHighlighted GUICtrlMenu_SetItemID GUICtrlMenu_SetItemInfo GUICtrlMenu_SetItemState GUICtrlMenu_SetItemSubMenu GUICtrlMenu_SetItemText GUICtrlMenu_SetItemType GUICtrlMenu_SetMenu GUICtrlMenu_SetMenuBackground GUICtrlMenu_SetMenuContextHelpID GUICtrlMenu_SetMenuData GUICtrlMenu_SetMenuDefaultItem GUICtrlMenu_SetMenuHeight GUICtrlMenu_SetMenuInfo GUICtrlMenu_SetMenuStyle GUICtrlMenu_TrackPopupMenu GUICtrlMonthCal_Create GUICtrlMonthCal_Destroy GUICtrlMonthCal_GetCalendarBorder GUICtrlMonthCal_GetCalendarCount GUICtrlMonthCal_GetColor GUICtrlMonthCal_GetColorArray GUICtrlMonthCal_GetCurSel GUICtrlMonthCal_GetCurSelStr GUICtrlMonthCal_GetFirstDOW GUICtrlMonthCal_GetFirstDOWStr GUICtrlMonthCal_GetMaxSelCount GUICtrlMonthCal_GetMaxTodayWidth GUICtrlMonthCal_GetMinReqHeight GUICtrlMonthCal_GetMinReqRect GUICtrlMonthCal_GetMinReqRectArray GUICtrlMonthCal_GetMinReqWidth GUICtrlMonthCal_GetMonthDelta GUICtrlMonthCal_GetMonthRange GUICtrlMonthCal_GetMonthRangeMax GUICtrlMonthCal_GetMonthRangeMaxStr GUICtrlMonthCal_GetMonthRangeMin GUICtrlMonthCal_GetMonthRangeMinStr GUICtrlMonthCal_GetMonthRangeSpan GUICtrlMonthCal_GetRange GUICtrlMonthCal_GetRangeMax GUICtrlMonthCal_GetRangeMaxStr GUICtrlMonthCal_GetRangeMin GUICtrlMonthCal_GetRangeMinStr GUICtrlMonthCal_GetSelRange GUICtrlMonthCal_GetSelRangeMax GUICtrlMonthCal_GetSelRangeMaxStr GUICtrlMonthCal_GetSelRangeMin GUICtrlMonthCal_GetSelRangeMinStr GUICtrlMonthCal_GetToday GUICtrlMonthCal_GetTodayStr GUICtrlMonthCal_GetUnicodeFormat GUICtrlMonthCal_HitTest GUICtrlMonthCal_SetCalendarBorder GUICtrlMonthCal_SetColor GUICtrlMonthCal_SetCurSel GUICtrlMonthCal_SetDayState GUICtrlMonthCal_SetFirstDOW GUICtrlMonthCal_SetMaxSelCount GUICtrlMonthCal_SetMonthDelta GUICtrlMonthCal_SetRange GUICtrlMonthCal_SetSelRange GUICtrlMonthCal_SetToday GUICtrlMonthCal_SetUnicodeFormat GUICtrlRebar_AddBand GUICtrlRebar_AddToolBarBand GUICtrlRebar_BeginDrag GUICtrlRebar_Create GUICtrlRebar_DeleteBand GUICtrlRebar_Destroy GUICtrlRebar_DragMove GUICtrlRebar_EndDrag GUICtrlRebar_GetBandBackColor GUICtrlRebar_GetBandBorders GUICtrlRebar_GetBandBordersEx GUICtrlRebar_GetBandChildHandle GUICtrlRebar_GetBandChildSize GUICtrlRebar_GetBandCount GUICtrlRebar_GetBandForeColor GUICtrlRebar_GetBandHeaderSize GUICtrlRebar_GetBandID GUICtrlRebar_GetBandIdealSize GUICtrlRebar_GetBandLength GUICtrlRebar_GetBandLParam GUICtrlRebar_GetBandMargins GUICtrlRebar_GetBandMarginsEx GUICtrlRebar_GetBandRect GUICtrlRebar_GetBandRectEx GUICtrlRebar_GetBandStyle GUICtrlRebar_GetBandStyleBreak GUICtrlRebar_GetBandStyleChildEdge GUICtrlRebar_GetBandStyleFixedBMP GUICtrlRebar_GetBandStyleFixedSize GUICtrlRebar_GetBandStyleGripperAlways GUICtrlRebar_GetBandStyleHidden GUICtrlRebar_GetBandStyleHideTitle GUICtrlRebar_GetBandStyleNoGripper GUICtrlRebar_GetBandStyleTopAlign GUICtrlRebar_GetBandStyleUseChevron GUICtrlRebar_GetBandStyleVariableHeight GUICtrlRebar_GetBandText GUICtrlRebar_GetBarHeight GUICtrlRebar_GetBarInfo GUICtrlRebar_GetBKColor GUICtrlRebar_GetColorScheme GUICtrlRebar_GetRowCount GUICtrlRebar_GetRowHeight GUICtrlRebar_GetTextColor GUICtrlRebar_GetToolTips GUICtrlRebar_GetUnicodeFormat GUICtrlRebar_HitTest GUICtrlRebar_IDToIndex GUICtrlRebar_MaximizeBand GUICtrlRebar_MinimizeBand GUICtrlRebar_MoveBand GUICtrlRebar_SetBandBackColor GUICtrlRebar_SetBandForeColor GUICtrlRebar_SetBandHeaderSize GUICtrlRebar_SetBandID GUICtrlRebar_SetBandIdealSize GUICtrlRebar_SetBandLength GUICtrlRebar_SetBandLParam GUICtrlRebar_SetBandStyle GUICtrlRebar_SetBandStyleBreak GUICtrlRebar_SetBandStyleChildEdge GUICtrlRebar_SetBandStyleFixedBMP GUICtrlRebar_SetBandStyleFixedSize GUICtrlRebar_SetBandStyleGripperAlways GUICtrlRebar_SetBandStyleHidden GUICtrlRebar_SetBandStyleHideTitle GUICtrlRebar_SetBandStyleNoGripper GUICtrlRebar_SetBandStyleTopAlign GUICtrlRebar_SetBandStyleUseChevron GUICtrlRebar_SetBandStyleVariableHeight GUICtrlRebar_SetBandText GUICtrlRebar_SetBarInfo GUICtrlRebar_SetBKColor GUICtrlRebar_SetColorScheme GUICtrlRebar_SetTextColor GUICtrlRebar_SetToolTips GUICtrlRebar_SetUnicodeFormat GUICtrlRebar_ShowBand GUICtrlRichEdit_AppendText GUICtrlRichEdit_AutoDetectURL GUICtrlRichEdit_CanPaste GUICtrlRichEdit_CanPasteSpecial GUICtrlRichEdit_CanRedo GUICtrlRichEdit_CanUndo GUICtrlRichEdit_ChangeFontSize GUICtrlRichEdit_Copy GUICtrlRichEdit_Create GUICtrlRichEdit_Cut GUICtrlRichEdit_Deselect GUICtrlRichEdit_Destroy GUICtrlRichEdit_EmptyUndoBuffer GUICtrlRichEdit_FindText GUICtrlRichEdit_FindTextInRange GUICtrlRichEdit_GetBkColor GUICtrlRichEdit_GetCharAttributes GUICtrlRichEdit_GetCharBkColor GUICtrlRichEdit_GetCharColor GUICtrlRichEdit_GetCharPosFromXY GUICtrlRichEdit_GetCharPosOfNextWord GUICtrlRichEdit_GetCharPosOfPreviousWord GUICtrlRichEdit_GetCharWordBreakInfo GUICtrlRichEdit_GetFirstCharPosOnLine GUICtrlRichEdit_GetFont GUICtrlRichEdit_GetLineCount GUICtrlRichEdit_GetLineLength GUICtrlRichEdit_GetLineNumberFromCharPos GUICtrlRichEdit_GetNextRedo GUICtrlRichEdit_GetNextUndo GUICtrlRichEdit_GetNumberOfFirstVisibleLine GUICtrlRichEdit_GetParaAlignment GUICtrlRichEdit_GetParaAttributes GUICtrlRichEdit_GetParaBorder GUICtrlRichEdit_GetParaIndents GUICtrlRichEdit_GetParaNumbering GUICtrlRichEdit_GetParaShading GUICtrlRichEdit_GetParaSpacing GUICtrlRichEdit_GetParaTabStops GUICtrlRichEdit_GetPasswordChar GUICtrlRichEdit_GetRECT GUICtrlRichEdit_GetScrollPos GUICtrlRichEdit_GetSel GUICtrlRichEdit_GetSelAA GUICtrlRichEdit_GetSelText GUICtrlRichEdit_GetSpaceUnit GUICtrlRichEdit_GetText GUICtrlRichEdit_GetTextInLine GUICtrlRichEdit_GetTextInRange GUICtrlRichEdit_GetTextLength GUICtrlRichEdit_GetVersion GUICtrlRichEdit_GetXYFromCharPos GUICtrlRichEdit_GetZoom GUICtrlRichEdit_GotoCharPos GUICtrlRichEdit_HideSelection GUICtrlRichEdit_InsertText GUICtrlRichEdit_IsModified GUICtrlRichEdit_IsTextSelected GUICtrlRichEdit_Paste GUICtrlRichEdit_PasteSpecial GUICtrlRichEdit_PauseRedraw GUICtrlRichEdit_Redo GUICtrlRichEdit_ReplaceText GUICtrlRichEdit_ResumeRedraw GUICtrlRichEdit_ScrollLineOrPage GUICtrlRichEdit_ScrollLines GUICtrlRichEdit_ScrollToCaret GUICtrlRichEdit_SetBkColor GUICtrlRichEdit_SetCharAttributes GUICtrlRichEdit_SetCharBkColor GUICtrlRichEdit_SetCharColor GUICtrlRichEdit_SetEventMask GUICtrlRichEdit_SetFont GUICtrlRichEdit_SetLimitOnText GUICtrlRichEdit_SetModified GUICtrlRichEdit_SetParaAlignment GUICtrlRichEdit_SetParaAttributes GUICtrlRichEdit_SetParaBorder GUICtrlRichEdit_SetParaIndents GUICtrlRichEdit_SetParaNumbering GUICtrlRichEdit_SetParaShading GUICtrlRichEdit_SetParaSpacing GUICtrlRichEdit_SetParaTabStops GUICtrlRichEdit_SetPasswordChar GUICtrlRichEdit_SetReadOnly GUICtrlRichEdit_SetRECT GUICtrlRichEdit_SetScrollPos GUICtrlRichEdit_SetSel GUICtrlRichEdit_SetSpaceUnit GUICtrlRichEdit_SetTabStops GUICtrlRichEdit_SetText GUICtrlRichEdit_SetUndoLimit GUICtrlRichEdit_SetZoom GUICtrlRichEdit_StreamFromFile GUICtrlRichEdit_StreamFromVar GUICtrlRichEdit_StreamToFile GUICtrlRichEdit_StreamToVar GUICtrlRichEdit_Undo GUICtrlSlider_ClearSel GUICtrlSlider_ClearTics GUICtrlSlider_Create GUICtrlSlider_Destroy GUICtrlSlider_GetBuddy GUICtrlSlider_GetChannelRect GUICtrlSlider_GetChannelRectEx GUICtrlSlider_GetLineSize GUICtrlSlider_GetLogicalTics GUICtrlSlider_GetNumTics GUICtrlSlider_GetPageSize GUICtrlSlider_GetPos GUICtrlSlider_GetRange GUICtrlSlider_GetRangeMax GUICtrlSlider_GetRangeMin GUICtrlSlider_GetSel GUICtrlSlider_GetSelEnd GUICtrlSlider_GetSelStart GUICtrlSlider_GetThumbLength GUICtrlSlider_GetThumbRect GUICtrlSlider_GetThumbRectEx GUICtrlSlider_GetTic GUICtrlSlider_GetTicPos GUICtrlSlider_GetToolTips GUICtrlSlider_GetUnicodeFormat GUICtrlSlider_SetBuddy GUICtrlSlider_SetLineSize GUICtrlSlider_SetPageSize GUICtrlSlider_SetPos GUICtrlSlider_SetRange GUICtrlSlider_SetRangeMax GUICtrlSlider_SetRangeMin GUICtrlSlider_SetSel GUICtrlSlider_SetSelEnd GUICtrlSlider_SetSelStart GUICtrlSlider_SetThumbLength GUICtrlSlider_SetTic GUICtrlSlider_SetTicFreq GUICtrlSlider_SetTipSide GUICtrlSlider_SetToolTips GUICtrlSlider_SetUnicodeFormat GUICtrlStatusBar_Create GUICtrlStatusBar_Destroy GUICtrlStatusBar_EmbedControl GUICtrlStatusBar_GetBorders GUICtrlStatusBar_GetBordersHorz GUICtrlStatusBar_GetBordersRect GUICtrlStatusBar_GetBordersVert GUICtrlStatusBar_GetCount GUICtrlStatusBar_GetHeight GUICtrlStatusBar_GetIcon GUICtrlStatusBar_GetParts GUICtrlStatusBar_GetRect GUICtrlStatusBar_GetRectEx GUICtrlStatusBar_GetText GUICtrlStatusBar_GetTextFlags GUICtrlStatusBar_GetTextLength GUICtrlStatusBar_GetTextLengthEx GUICtrlStatusBar_GetTipText GUICtrlStatusBar_GetUnicodeFormat GUICtrlStatusBar_GetWidth GUICtrlStatusBar_IsSimple GUICtrlStatusBar_Resize GUICtrlStatusBar_SetBkColor GUICtrlStatusBar_SetIcon GUICtrlStatusBar_SetMinHeight GUICtrlStatusBar_SetParts GUICtrlStatusBar_SetSimple GUICtrlStatusBar_SetText GUICtrlStatusBar_SetTipText GUICtrlStatusBar_SetUnicodeFormat GUICtrlStatusBar_ShowHide GUICtrlTab_ActivateTab GUICtrlTab_ClickTab GUICtrlTab_Create GUICtrlTab_DeleteAllItems GUICtrlTab_DeleteItem GUICtrlTab_DeselectAll GUICtrlTab_Destroy GUICtrlTab_FindTab GUICtrlTab_GetCurFocus GUICtrlTab_GetCurSel GUICtrlTab_GetDisplayRect GUICtrlTab_GetDisplayRectEx GUICtrlTab_GetExtendedStyle GUICtrlTab_GetImageList GUICtrlTab_GetItem GUICtrlTab_GetItemCount GUICtrlTab_GetItemImage GUICtrlTab_GetItemParam GUICtrlTab_GetItemRect GUICtrlTab_GetItemRectEx GUICtrlTab_GetItemState GUICtrlTab_GetItemText GUICtrlTab_GetRowCount GUICtrlTab_GetToolTips GUICtrlTab_GetUnicodeFormat GUICtrlTab_HighlightItem GUICtrlTab_HitTest GUICtrlTab_InsertItem GUICtrlTab_RemoveImage GUICtrlTab_SetCurFocus GUICtrlTab_SetCurSel GUICtrlTab_SetExtendedStyle GUICtrlTab_SetImageList GUICtrlTab_SetItem GUICtrlTab_SetItemImage GUICtrlTab_SetItemParam GUICtrlTab_SetItemSize GUICtrlTab_SetItemState GUICtrlTab_SetItemText GUICtrlTab_SetMinTabWidth GUICtrlTab_SetPadding GUICtrlTab_SetToolTips GUICtrlTab_SetUnicodeFormat GUICtrlToolbar_AddBitmap GUICtrlToolbar_AddButton GUICtrlToolbar_AddButtonSep GUICtrlToolbar_AddString GUICtrlToolbar_ButtonCount GUICtrlToolbar_CheckButton GUICtrlToolbar_ClickAccel GUICtrlToolbar_ClickButton GUICtrlToolbar_ClickIndex GUICtrlToolbar_CommandToIndex GUICtrlToolbar_Create GUICtrlToolbar_Customize GUICtrlToolbar_DeleteButton GUICtrlToolbar_Destroy GUICtrlToolbar_EnableButton GUICtrlToolbar_FindToolbar GUICtrlToolbar_GetAnchorHighlight GUICtrlToolbar_GetBitmapFlags GUICtrlToolbar_GetButtonBitmap GUICtrlToolbar_GetButtonInfo GUICtrlToolbar_GetButtonInfoEx GUICtrlToolbar_GetButtonParam GUICtrlToolbar_GetButtonRect GUICtrlToolbar_GetButtonRectEx GUICtrlToolbar_GetButtonSize GUICtrlToolbar_GetButtonState GUICtrlToolbar_GetButtonStyle GUICtrlToolbar_GetButtonText GUICtrlToolbar_GetColorScheme GUICtrlToolbar_GetDisabledImageList GUICtrlToolbar_GetExtendedStyle GUICtrlToolbar_GetHotImageList GUICtrlToolbar_GetHotItem GUICtrlToolbar_GetImageList GUICtrlToolbar_GetInsertMark GUICtrlToolbar_GetInsertMarkColor GUICtrlToolbar_GetMaxSize GUICtrlToolbar_GetMetrics GUICtrlToolbar_GetPadding GUICtrlToolbar_GetRows GUICtrlToolbar_GetString GUICtrlToolbar_GetStyle GUICtrlToolbar_GetStyleAltDrag GUICtrlToolbar_GetStyleCustomErase GUICtrlToolbar_GetStyleFlat GUICtrlToolbar_GetStyleList GUICtrlToolbar_GetStyleRegisterDrop GUICtrlToolbar_GetStyleToolTips GUICtrlToolbar_GetStyleTransparent GUICtrlToolbar_GetStyleWrapable GUICtrlToolbar_GetTextRows GUICtrlToolbar_GetToolTips GUICtrlToolbar_GetUnicodeFormat GUICtrlToolbar_HideButton GUICtrlToolbar_HighlightButton GUICtrlToolbar_HitTest GUICtrlToolbar_IndexToCommand GUICtrlToolbar_InsertButton GUICtrlToolbar_InsertMarkHitTest GUICtrlToolbar_IsButtonChecked GUICtrlToolbar_IsButtonEnabled GUICtrlToolbar_IsButtonHidden GUICtrlToolbar_IsButtonHighlighted GUICtrlToolbar_IsButtonIndeterminate GUICtrlToolbar_IsButtonPressed GUICtrlToolbar_LoadBitmap GUICtrlToolbar_LoadImages GUICtrlToolbar_MapAccelerator GUICtrlToolbar_MoveButton GUICtrlToolbar_PressButton GUICtrlToolbar_SetAnchorHighlight GUICtrlToolbar_SetBitmapSize GUICtrlToolbar_SetButtonBitMap GUICtrlToolbar_SetButtonInfo GUICtrlToolbar_SetButtonInfoEx GUICtrlToolbar_SetButtonParam GUICtrlToolbar_SetButtonSize GUICtrlToolbar_SetButtonState GUICtrlToolbar_SetButtonStyle GUICtrlToolbar_SetButtonText GUICtrlToolbar_SetButtonWidth GUICtrlToolbar_SetCmdID GUICtrlToolbar_SetColorScheme GUICtrlToolbar_SetDisabledImageList GUICtrlToolbar_SetDrawTextFlags GUICtrlToolbar_SetExtendedStyle GUICtrlToolbar_SetHotImageList GUICtrlToolbar_SetHotItem GUICtrlToolbar_SetImageList GUICtrlToolbar_SetIndent GUICtrlToolbar_SetIndeterminate GUICtrlToolbar_SetInsertMark GUICtrlToolbar_SetInsertMarkColor GUICtrlToolbar_SetMaxTextRows GUICtrlToolbar_SetMetrics GUICtrlToolbar_SetPadding GUICtrlToolbar_SetParent GUICtrlToolbar_SetRows GUICtrlToolbar_SetStyle GUICtrlToolbar_SetStyleAltDrag GUICtrlToolbar_SetStyleCustomErase GUICtrlToolbar_SetStyleFlat GUICtrlToolbar_SetStyleList GUICtrlToolbar_SetStyleRegisterDrop GUICtrlToolbar_SetStyleToolTips GUICtrlToolbar_SetStyleTransparent GUICtrlToolbar_SetStyleWrapable GUICtrlToolbar_SetToolTips GUICtrlToolbar_SetUnicodeFormat GUICtrlToolbar_SetWindowTheme GUICtrlTreeView_Add GUICtrlTreeView_AddChild GUICtrlTreeView_AddChildFirst GUICtrlTreeView_AddFirst GUICtrlTreeView_BeginUpdate GUICtrlTreeView_ClickItem GUICtrlTreeView_Create GUICtrlTreeView_CreateDragImage GUICtrlTreeView_CreateSolidBitMap GUICtrlTreeView_Delete GUICtrlTreeView_DeleteAll GUICtrlTreeView_DeleteChildren GUICtrlTreeView_Destroy GUICtrlTreeView_DisplayRect GUICtrlTreeView_DisplayRectEx GUICtrlTreeView_EditText GUICtrlTreeView_EndEdit GUICtrlTreeView_EndUpdate GUICtrlTreeView_EnsureVisible GUICtrlTreeView_Expand GUICtrlTreeView_ExpandedOnce GUICtrlTreeView_FindItem GUICtrlTreeView_FindItemEx GUICtrlTreeView_GetBkColor GUICtrlTreeView_GetBold GUICtrlTreeView_GetChecked GUICtrlTreeView_GetChildCount GUICtrlTreeView_GetChildren GUICtrlTreeView_GetCount GUICtrlTreeView_GetCut GUICtrlTreeView_GetDropTarget GUICtrlTreeView_GetEditControl GUICtrlTreeView_GetExpanded GUICtrlTreeView_GetFirstChild GUICtrlTreeView_GetFirstItem GUICtrlTreeView_GetFirstVisible GUICtrlTreeView_GetFocused GUICtrlTreeView_GetHeight GUICtrlTreeView_GetImageIndex GUICtrlTreeView_GetImageListIconHandle GUICtrlTreeView_GetIndent GUICtrlTreeView_GetInsertMarkColor GUICtrlTreeView_GetISearchString GUICtrlTreeView_GetItemByIndex GUICtrlTreeView_GetItemHandle GUICtrlTreeView_GetItemParam GUICtrlTreeView_GetLastChild GUICtrlTreeView_GetLineColor GUICtrlTreeView_GetNext GUICtrlTreeView_GetNextChild GUICtrlTreeView_GetNextSibling GUICtrlTreeView_GetNextVisible GUICtrlTreeView_GetNormalImageList GUICtrlTreeView_GetParentHandle GUICtrlTreeView_GetParentParam GUICtrlTreeView_GetPrev GUICtrlTreeView_GetPrevChild GUICtrlTreeView_GetPrevSibling GUICtrlTreeView_GetPrevVisible GUICtrlTreeView_GetScrollTime GUICtrlTreeView_GetSelected GUICtrlTreeView_GetSelectedImageIndex GUICtrlTreeView_GetSelection GUICtrlTreeView_GetSiblingCount GUICtrlTreeView_GetState GUICtrlTreeView_GetStateImageIndex GUICtrlTreeView_GetStateImageList GUICtrlTreeView_GetText GUICtrlTreeView_GetTextColor GUICtrlTreeView_GetToolTips GUICtrlTreeView_GetTree GUICtrlTreeView_GetUnicodeFormat GUICtrlTreeView_GetVisible GUICtrlTreeView_GetVisibleCount GUICtrlTreeView_HitTest GUICtrlTreeView_HitTestEx GUICtrlTreeView_HitTestItem GUICtrlTreeView_Index GUICtrlTreeView_InsertItem GUICtrlTreeView_IsFirstItem GUICtrlTreeView_IsParent GUICtrlTreeView_Level GUICtrlTreeView_SelectItem GUICtrlTreeView_SelectItemByIndex GUICtrlTreeView_SetBkColor GUICtrlTreeView_SetBold GUICtrlTreeView_SetChecked GUICtrlTreeView_SetCheckedByIndex GUICtrlTreeView_SetChildren GUICtrlTreeView_SetCut GUICtrlTreeView_SetDropTarget GUICtrlTreeView_SetFocused GUICtrlTreeView_SetHeight GUICtrlTreeView_SetIcon GUICtrlTreeView_SetImageIndex GUICtrlTreeView_SetIndent GUICtrlTreeView_SetInsertMark GUICtrlTreeView_SetInsertMarkColor GUICtrlTreeView_SetItemHeight GUICtrlTreeView_SetItemParam GUICtrlTreeView_SetLineColor GUICtrlTreeView_SetNormalImageList GUICtrlTreeView_SetScrollTime GUICtrlTreeView_SetSelected GUICtrlTreeView_SetSelectedImageIndex GUICtrlTreeView_SetState GUICtrlTreeView_SetStateImageIndex GUICtrlTreeView_SetStateImageList GUICtrlTreeView_SetText GUICtrlTreeView_SetTextColor GUICtrlTreeView_SetToolTips GUICtrlTreeView_SetUnicodeFormat GUICtrlTreeView_Sort GUIImageList_Add GUIImageList_AddBitmap GUIImageList_AddIcon GUIImageList_AddMasked GUIImageList_BeginDrag GUIImageList_Copy GUIImageList_Create GUIImageList_Destroy GUIImageList_DestroyIcon GUIImageList_DragEnter GUIImageList_DragLeave GUIImageList_DragMove GUIImageList_Draw GUIImageList_DrawEx GUIImageList_Duplicate GUIImageList_EndDrag GUIImageList_GetBkColor GUIImageList_GetIcon GUIImageList_GetIconHeight GUIImageList_GetIconSize GUIImageList_GetIconSizeEx GUIImageList_GetIconWidth GUIImageList_GetImageCount GUIImageList_GetImageInfoEx GUIImageList_Remove GUIImageList_ReplaceIcon GUIImageList_SetBkColor GUIImageList_SetIconSize GUIImageList_SetImageCount GUIImageList_Swap GUIScrollBars_EnableScrollBar GUIScrollBars_GetScrollBarInfoEx GUIScrollBars_GetScrollBarRect GUIScrollBars_GetScrollBarRGState GUIScrollBars_GetScrollBarXYLineButton GUIScrollBars_GetScrollBarXYThumbBottom GUIScrollBars_GetScrollBarXYThumbTop GUIScrollBars_GetScrollInfo GUIScrollBars_GetScrollInfoEx GUIScrollBars_GetScrollInfoMax GUIScrollBars_GetScrollInfoMin GUIScrollBars_GetScrollInfoPage GUIScrollBars_GetScrollInfoPos GUIScrollBars_GetScrollInfoTrackPos GUIScrollBars_GetScrollPos GUIScrollBars_GetScrollRange GUIScrollBars_Init GUIScrollBars_ScrollWindow GUIScrollBars_SetScrollInfo GUIScrollBars_SetScrollInfoMax GUIScrollBars_SetScrollInfoMin GUIScrollBars_SetScrollInfoPage GUIScrollBars_SetScrollInfoPos GUIScrollBars_SetScrollRange GUIScrollBars_ShowScrollBar GUIToolTip_Activate GUIToolTip_AddTool GUIToolTip_AdjustRect GUIToolTip_BitsToTTF GUIToolTip_Create GUIToolTip_Deactivate GUIToolTip_DelTool GUIToolTip_Destroy GUIToolTip_EnumTools GUIToolTip_GetBubbleHeight GUIToolTip_GetBubbleSize GUIToolTip_GetBubbleWidth GUIToolTip_GetCurrentTool GUIToolTip_GetDelayTime GUIToolTip_GetMargin GUIToolTip_GetMarginEx GUIToolTip_GetMaxTipWidth GUIToolTip_GetText GUIToolTip_GetTipBkColor GUIToolTip_GetTipTextColor GUIToolTip_GetTitleBitMap GUIToolTip_GetTitleText GUIToolTip_GetToolCount GUIToolTip_GetToolInfo GUIToolTip_HitTest GUIToolTip_NewToolRect GUIToolTip_Pop GUIToolTip_PopUp GUIToolTip_SetDelayTime GUIToolTip_SetMargin GUIToolTip_SetMaxTipWidth GUIToolTip_SetTipBkColor GUIToolTip_SetTipTextColor GUIToolTip_SetTitle GUIToolTip_SetToolInfo GUIToolTip_SetWindowTheme GUIToolTip_ToolExists GUIToolTip_ToolToArray GUIToolTip_TrackActivate GUIToolTip_TrackPosition GUIToolTip_Update GUIToolTip_UpdateTipText HexToString IEAction IEAttach IEBodyReadHTML IEBodyReadText IEBodyWriteHTML IECreate IECreateEmbedded IEDocGetObj IEDocInsertHTML IEDocInsertText IEDocReadHTML IEDocWriteHTML IEErrorNotify IEFormElementCheckBoxSelect IEFormElementGetCollection IEFormElementGetObjByName IEFormElementGetValue IEFormElementOptionSelect IEFormElementRadioSelect IEFormElementSetValue IEFormGetCollection IEFormGetObjByName IEFormImageClick IEFormReset IEFormSubmit IEFrameGetCollection IEFrameGetObjByName IEGetObjById IEGetObjByName IEHeadInsertEventScript IEImgClick IEImgGetCollection IEIsFrameSet IELinkClickByIndex IELinkClickByText IELinkGetCollection IELoadWait IELoadWaitTimeout IENavigate IEPropertyGet IEPropertySet IEQuit IETableGetCollection IETableWriteToArray IETagNameAllGetCollection IETagNameGetCollection IE_Example IE_Introduction IE_VersionInfo INetExplorerCapable INetGetSource INetMail INetSmtpMail IsPressed MathCheckDiv Max MemGlobalAlloc MemGlobalFree MemGlobalLock MemGlobalSize MemGlobalUnlock MemMoveMemory MemVirtualAlloc MemVirtualAllocEx MemVirtualFree MemVirtualFreeEx Min MouseTrap NamedPipes_CallNamedPipe NamedPipes_ConnectNamedPipe NamedPipes_CreateNamedPipe NamedPipes_CreatePipe NamedPipes_DisconnectNamedPipe NamedPipes_GetNamedPipeHandleState NamedPipes_GetNamedPipeInfo NamedPipes_PeekNamedPipe NamedPipes_SetNamedPipeHandleState NamedPipes_TransactNamedPipe NamedPipes_WaitNamedPipe Net_Share_ConnectionEnum Net_Share_FileClose Net_Share_FileEnum Net_Share_FileGetInfo Net_Share_PermStr Net_Share_ResourceStr Net_Share_SessionDel Net_Share_SessionEnum Net_Share_SessionGetInfo Net_Share_ShareAdd Net_Share_ShareCheck Net_Share_ShareDel Net_Share_ShareEnum Net_Share_ShareGetInfo Net_Share_ShareSetInfo Net_Share_StatisticsGetSvr Net_Share_StatisticsGetWrk Now NowCalc NowCalcDate NowDate NowTime PathFull PathGetRelative PathMake PathSplit ProcessGetName ProcessGetPriority Radian ReplaceStringInFile RunDos ScreenCapture_Capture ScreenCapture_CaptureWnd ScreenCapture_SaveImage ScreenCapture_SetBMPFormat ScreenCapture_SetJPGQuality ScreenCapture_SetTIFColorDepth ScreenCapture_SetTIFCompression Security__AdjustTokenPrivileges Security__CreateProcessWithToken Security__DuplicateTokenEx Security__GetAccountSid Security__GetLengthSid Security__GetTokenInformation Security__ImpersonateSelf Security__IsValidSid Security__LookupAccountName Security__LookupAccountSid Security__LookupPrivilegeValue Security__OpenProcessToken Security__OpenThreadToken Security__OpenThreadTokenEx Security__SetPrivilege Security__SetTokenInformation Security__SidToStringSid Security__SidTypeStr Security__StringSidToSid SendMessage SendMessageA SetDate SetTime Singleton SoundClose SoundLength SoundOpen SoundPause SoundPlay SoundPos SoundResume SoundSeek SoundStatus SoundStop SQLite_Changes SQLite_Close SQLite_Display2DResult SQLite_Encode SQLite_ErrCode SQLite_ErrMsg SQLite_Escape SQLite_Exec SQLite_FastEncode SQLite_FastEscape SQLite_FetchData SQLite_FetchNames SQLite_GetTable SQLite_GetTable2d SQLite_LastInsertRowID SQLite_LibVersion SQLite_Open SQLite_Query SQLite_QueryFinalize SQLite_QueryReset SQLite_QuerySingleRow SQLite_SafeMode SQLite_SetTimeout SQLite_Shutdown SQLite_SQLiteExe SQLite_Startup SQLite_TotalChanges StringBetween StringExplode StringInsert StringProper StringRepeat StringTitleCase StringToHex TCPIpToName TempFile TicksToTime Timer_Diff Timer_GetIdleTime Timer_GetTimerID Timer_Init Timer_KillAllTimers Timer_KillTimer Timer_SetTimer TimeToTicks VersionCompare viClose viExecCommand viFindGpib viGpibBusReset viGTL viInteractiveControl viOpen viSetAttribute viSetTimeout WeekNumberISO WinAPI_AbortPath WinAPI_ActivateKeyboardLayout WinAPI_AddClipboardFormatListener WinAPI_AddFontMemResourceEx WinAPI_AddFontResourceEx WinAPI_AddIconOverlay WinAPI_AddIconTransparency WinAPI_AddMRUString WinAPI_AdjustBitmap WinAPI_AdjustTokenPrivileges WinAPI_AdjustWindowRectEx WinAPI_AlphaBlend WinAPI_AngleArc WinAPI_AnimateWindow WinAPI_Arc WinAPI_ArcTo WinAPI_ArrayToStruct WinAPI_AssignProcessToJobObject WinAPI_AssocGetPerceivedType WinAPI_AssocQueryString WinAPI_AttachConsole WinAPI_AttachThreadInput WinAPI_BackupRead WinAPI_BackupReadAbort WinAPI_BackupSeek WinAPI_BackupWrite WinAPI_BackupWriteAbort WinAPI_Beep WinAPI_BeginBufferedPaint WinAPI_BeginDeferWindowPos WinAPI_BeginPaint WinAPI_BeginPath WinAPI_BeginUpdateResource WinAPI_BitBlt WinAPI_BringWindowToTop WinAPI_BroadcastSystemMessage WinAPI_BrowseForFolderDlg WinAPI_BufferedPaintClear WinAPI_BufferedPaintInit WinAPI_BufferedPaintSetAlpha WinAPI_BufferedPaintUnInit WinAPI_CallNextHookEx WinAPI_CallWindowProc WinAPI_CallWindowProcW WinAPI_CascadeWindows WinAPI_ChangeWindowMessageFilterEx WinAPI_CharToOem WinAPI_ChildWindowFromPointEx WinAPI_ClientToScreen WinAPI_ClipCursor WinAPI_CloseDesktop WinAPI_CloseEnhMetaFile WinAPI_CloseFigure WinAPI_CloseHandle WinAPI_CloseThemeData WinAPI_CloseWindow WinAPI_CloseWindowStation WinAPI_CLSIDFromProgID WinAPI_CoInitialize WinAPI_ColorAdjustLuma WinAPI_ColorHLSToRGB WinAPI_ColorRGBToHLS WinAPI_CombineRgn WinAPI_CombineTransform WinAPI_CommandLineToArgv WinAPI_CommDlgExtendedError WinAPI_CommDlgExtendedErrorEx WinAPI_CompareString WinAPI_CompressBitmapBits WinAPI_CompressBuffer WinAPI_ComputeCrc32 WinAPI_ConfirmCredentials WinAPI_CopyBitmap WinAPI_CopyCursor WinAPI_CopyEnhMetaFile WinAPI_CopyFileEx WinAPI_CopyIcon WinAPI_CopyImage WinAPI_CopyRect WinAPI_CopyStruct WinAPI_CoTaskMemAlloc WinAPI_CoTaskMemFree WinAPI_CoTaskMemRealloc WinAPI_CoUninitialize WinAPI_Create32BitHBITMAP WinAPI_Create32BitHICON WinAPI_CreateANDBitmap WinAPI_CreateBitmap WinAPI_CreateBitmapIndirect WinAPI_CreateBrushIndirect WinAPI_CreateBuffer WinAPI_CreateBufferFromStruct WinAPI_CreateCaret WinAPI_CreateColorAdjustment WinAPI_CreateCompatibleBitmap WinAPI_CreateCompatibleBitmapEx WinAPI_CreateCompatibleDC WinAPI_CreateDesktop WinAPI_CreateDIB WinAPI_CreateDIBColorTable WinAPI_CreateDIBitmap WinAPI_CreateDIBSection WinAPI_CreateDirectory WinAPI_CreateDirectoryEx WinAPI_CreateEllipticRgn WinAPI_CreateEmptyIcon WinAPI_CreateEnhMetaFile WinAPI_CreateEvent WinAPI_CreateFile WinAPI_CreateFileEx WinAPI_CreateFileMapping WinAPI_CreateFont WinAPI_CreateFontEx WinAPI_CreateFontIndirect WinAPI_CreateGUID WinAPI_CreateHardLink WinAPI_CreateIcon WinAPI_CreateIconFromResourceEx WinAPI_CreateIconIndirect WinAPI_CreateJobObject WinAPI_CreateMargins WinAPI_CreateMRUList WinAPI_CreateMutex WinAPI_CreateNullRgn WinAPI_CreateNumberFormatInfo WinAPI_CreateObjectID WinAPI_CreatePen WinAPI_CreatePoint WinAPI_CreatePolygonRgn WinAPI_CreateProcess WinAPI_CreateProcessWithToken WinAPI_CreateRect WinAPI_CreateRectEx WinAPI_CreateRectRgn WinAPI_CreateRectRgnIndirect WinAPI_CreateRoundRectRgn WinAPI_CreateSemaphore WinAPI_CreateSize WinAPI_CreateSolidBitmap WinAPI_CreateSolidBrush WinAPI_CreateStreamOnHGlobal WinAPI_CreateString WinAPI_CreateSymbolicLink WinAPI_CreateTransform WinAPI_CreateWindowEx WinAPI_CreateWindowStation WinAPI_DecompressBuffer WinAPI_DecryptFile WinAPI_DeferWindowPos WinAPI_DefineDosDevice WinAPI_DefRawInputProc WinAPI_DefSubclassProc WinAPI_DefWindowProc WinAPI_DefWindowProcW WinAPI_DeleteDC WinAPI_DeleteEnhMetaFile WinAPI_DeleteFile WinAPI_DeleteObject WinAPI_DeleteObjectID WinAPI_DeleteVolumeMountPoint WinAPI_DeregisterShellHookWindow WinAPI_DestroyCaret WinAPI_DestroyCursor WinAPI_DestroyIcon WinAPI_DestroyWindow WinAPI_DeviceIoControl WinAPI_DisplayStruct WinAPI_DllGetVersion WinAPI_DllInstall WinAPI_DllUninstall WinAPI_DPtoLP WinAPI_DragAcceptFiles WinAPI_DragFinish WinAPI_DragQueryFileEx WinAPI_DragQueryPoint WinAPI_DrawAnimatedRects WinAPI_DrawBitmap WinAPI_DrawEdge WinAPI_DrawFocusRect WinAPI_DrawFrameControl WinAPI_DrawIcon WinAPI_DrawIconEx WinAPI_DrawLine WinAPI_DrawShadowText WinAPI_DrawText WinAPI_DrawThemeBackground WinAPI_DrawThemeEdge WinAPI_DrawThemeIcon WinAPI_DrawThemeParentBackground WinAPI_DrawThemeText WinAPI_DrawThemeTextEx WinAPI_DuplicateEncryptionInfoFile WinAPI_DuplicateHandle WinAPI_DuplicateTokenEx WinAPI_DwmDefWindowProc WinAPI_DwmEnableBlurBehindWindow WinAPI_DwmEnableComposition WinAPI_DwmExtendFrameIntoClientArea WinAPI_DwmGetColorizationColor WinAPI_DwmGetColorizationParameters WinAPI_DwmGetWindowAttribute WinAPI_DwmInvalidateIconicBitmaps WinAPI_DwmIsCompositionEnabled WinAPI_DwmQueryThumbnailSourceSize WinAPI_DwmRegisterThumbnail WinAPI_DwmSetColorizationParameters WinAPI_DwmSetIconicLivePreviewBitmap WinAPI_DwmSetIconicThumbnail WinAPI_DwmSetWindowAttribute WinAPI_DwmUnregisterThumbnail WinAPI_DwmUpdateThumbnailProperties WinAPI_DWordToFloat WinAPI_DWordToInt WinAPI_EjectMedia WinAPI_Ellipse WinAPI_EmptyWorkingSet WinAPI_EnableWindow WinAPI_EncryptFile WinAPI_EncryptionDisable WinAPI_EndBufferedPaint WinAPI_EndDeferWindowPos WinAPI_EndPaint WinAPI_EndPath WinAPI_EndUpdateResource WinAPI_EnumChildProcess WinAPI_EnumChildWindows WinAPI_EnumDesktops WinAPI_EnumDesktopWindows WinAPI_EnumDeviceDrivers WinAPI_EnumDisplayDevices WinAPI_EnumDisplayMonitors WinAPI_EnumDisplaySettings WinAPI_EnumDllProc WinAPI_EnumFiles WinAPI_EnumFileStreams WinAPI_EnumFontFamilies WinAPI_EnumHardLinks WinAPI_EnumMRUList WinAPI_EnumPageFiles WinAPI_EnumProcessHandles WinAPI_EnumProcessModules WinAPI_EnumProcessThreads WinAPI_EnumProcessWindows WinAPI_EnumRawInputDevices WinAPI_EnumResourceLanguages WinAPI_EnumResourceNames WinAPI_EnumResourceTypes WinAPI_EnumSystemGeoID WinAPI_EnumSystemLocales WinAPI_EnumUILanguages WinAPI_EnumWindows WinAPI_EnumWindowsPopup WinAPI_EnumWindowStations WinAPI_EnumWindowsTop WinAPI_EqualMemory WinAPI_EqualRect WinAPI_EqualRgn WinAPI_ExcludeClipRect WinAPI_ExpandEnvironmentStrings WinAPI_ExtCreatePen WinAPI_ExtCreateRegion WinAPI_ExtFloodFill WinAPI_ExtractIcon WinAPI_ExtractIconEx WinAPI_ExtSelectClipRgn WinAPI_FatalAppExit WinAPI_FatalExit WinAPI_FileEncryptionStatus WinAPI_FileExists WinAPI_FileIconInit WinAPI_FileInUse WinAPI_FillMemory WinAPI_FillPath WinAPI_FillRect WinAPI_FillRgn WinAPI_FindClose WinAPI_FindCloseChangeNotification WinAPI_FindExecutable WinAPI_FindFirstChangeNotification WinAPI_FindFirstFile WinAPI_FindFirstFileName WinAPI_FindFirstStream WinAPI_FindNextChangeNotification WinAPI_FindNextFile WinAPI_FindNextFileName WinAPI_FindNextStream WinAPI_FindResource WinAPI_FindResourceEx WinAPI_FindTextDlg WinAPI_FindWindow WinAPI_FlashWindow WinAPI_FlashWindowEx WinAPI_FlattenPath WinAPI_FloatToDWord WinAPI_FloatToInt WinAPI_FlushFileBuffers WinAPI_FlushFRBuffer WinAPI_FlushViewOfFile WinAPI_FormatDriveDlg WinAPI_FormatMessage WinAPI_FrameRect WinAPI_FrameRgn WinAPI_FreeLibrary WinAPI_FreeMemory WinAPI_FreeMRUList WinAPI_FreeResource WinAPI_GdiComment WinAPI_GetActiveWindow WinAPI_GetAllUsersProfileDirectory WinAPI_GetAncestor WinAPI_GetApplicationRestartSettings WinAPI_GetArcDirection WinAPI_GetAsyncKeyState WinAPI_GetBinaryType WinAPI_GetBitmapBits WinAPI_GetBitmapDimension WinAPI_GetBitmapDimensionEx WinAPI_GetBkColor WinAPI_GetBkMode WinAPI_GetBoundsRect WinAPI_GetBrushOrg WinAPI_GetBufferedPaintBits WinAPI_GetBufferedPaintDC WinAPI_GetBufferedPaintTargetDC WinAPI_GetBufferedPaintTargetRect WinAPI_GetBValue WinAPI_GetCaretBlinkTime WinAPI_GetCaretPos WinAPI_GetCDType WinAPI_GetClassInfoEx WinAPI_GetClassLongEx WinAPI_GetClassName WinAPI_GetClientHeight WinAPI_GetClientRect WinAPI_GetClientWidth WinAPI_GetClipboardSequenceNumber WinAPI_GetClipBox WinAPI_GetClipCursor WinAPI_GetClipRgn WinAPI_GetColorAdjustment WinAPI_GetCompressedFileSize WinAPI_GetCompression WinAPI_GetConnectedDlg WinAPI_GetCurrentDirectory WinAPI_GetCurrentHwProfile WinAPI_GetCurrentObject WinAPI_GetCurrentPosition WinAPI_GetCurrentProcess WinAPI_GetCurrentProcessExplicitAppUserModelID WinAPI_GetCurrentProcessID WinAPI_GetCurrentThemeName WinAPI_GetCurrentThread WinAPI_GetCurrentThreadId WinAPI_GetCursor WinAPI_GetCursorInfo WinAPI_GetDateFormat WinAPI_GetDC WinAPI_GetDCEx WinAPI_GetDefaultPrinter WinAPI_GetDefaultUserProfileDirectory WinAPI_GetDesktopWindow WinAPI_GetDeviceCaps WinAPI_GetDeviceDriverBaseName WinAPI_GetDeviceDriverFileName WinAPI_GetDeviceGammaRamp WinAPI_GetDIBColorTable WinAPI_GetDIBits WinAPI_GetDiskFreeSpaceEx WinAPI_GetDlgCtrlID WinAPI_GetDlgItem WinAPI_GetDllDirectory WinAPI_GetDriveBusType WinAPI_GetDriveGeometryEx WinAPI_GetDriveNumber WinAPI_GetDriveType WinAPI_GetDurationFormat WinAPI_GetEffectiveClientRect WinAPI_GetEnhMetaFile WinAPI_GetEnhMetaFileBits WinAPI_GetEnhMetaFileDescription WinAPI_GetEnhMetaFileDimension WinAPI_GetEnhMetaFileHeader WinAPI_GetErrorMessage WinAPI_GetErrorMode WinAPI_GetExitCodeProcess WinAPI_GetExtended WinAPI_GetFileAttributes WinAPI_GetFileID WinAPI_GetFileInformationByHandle WinAPI_GetFileInformationByHandleEx WinAPI_GetFilePointerEx WinAPI_GetFileSizeEx WinAPI_GetFileSizeOnDisk WinAPI_GetFileTitle WinAPI_GetFileType WinAPI_GetFileVersionInfo WinAPI_GetFinalPathNameByHandle WinAPI_GetFinalPathNameByHandleEx WinAPI_GetFocus WinAPI_GetFontMemoryResourceInfo WinAPI_GetFontName WinAPI_GetFontResourceInfo WinAPI_GetForegroundWindow WinAPI_GetFRBuffer WinAPI_GetFullPathName WinAPI_GetGeoInfo WinAPI_GetGlyphOutline WinAPI_GetGraphicsMode WinAPI_GetGuiResources WinAPI_GetGUIThreadInfo WinAPI_GetGValue WinAPI_GetHandleInformation WinAPI_GetHGlobalFromStream WinAPI_GetIconDimension WinAPI_GetIconInfo WinAPI_GetIconInfoEx WinAPI_GetIdleTime WinAPI_GetKeyboardLayout WinAPI_GetKeyboardLayoutList WinAPI_GetKeyboardState WinAPI_GetKeyboardType WinAPI_GetKeyNameText WinAPI_GetKeyState WinAPI_GetLastActivePopup WinAPI_GetLastError WinAPI_GetLastErrorMessage WinAPI_GetLayeredWindowAttributes WinAPI_GetLocaleInfo WinAPI_GetLogicalDrives WinAPI_GetMapMode WinAPI_GetMemorySize WinAPI_GetMessageExtraInfo WinAPI_GetModuleFileNameEx WinAPI_GetModuleHandle WinAPI_GetModuleHandleEx WinAPI_GetModuleInformation WinAPI_GetMonitorInfo WinAPI_GetMousePos WinAPI_GetMousePosX WinAPI_GetMousePosY WinAPI_GetMUILanguage WinAPI_GetNumberFormat WinAPI_GetObject WinAPI_GetObjectID WinAPI_GetObjectInfoByHandle WinAPI_GetObjectNameByHandle WinAPI_GetObjectType WinAPI_GetOpenFileName WinAPI_GetOutlineTextMetrics WinAPI_GetOverlappedResult WinAPI_GetParent WinAPI_GetParentProcess WinAPI_GetPerformanceInfo WinAPI_GetPEType WinAPI_GetPhysicallyInstalledSystemMemory WinAPI_GetPixel WinAPI_GetPolyFillMode WinAPI_GetPosFromRect WinAPI_GetPriorityClass WinAPI_GetProcAddress WinAPI_GetProcessAffinityMask WinAPI_GetProcessCommandLine WinAPI_GetProcessFileName WinAPI_GetProcessHandleCount WinAPI_GetProcessID WinAPI_GetProcessIoCounters WinAPI_GetProcessMemoryInfo WinAPI_GetProcessName WinAPI_GetProcessShutdownParameters WinAPI_GetProcessTimes WinAPI_GetProcessUser WinAPI_GetProcessWindowStation WinAPI_GetProcessWorkingDirectory WinAPI_GetProfilesDirectory WinAPI_GetPwrCapabilities WinAPI_GetRawInputBuffer WinAPI_GetRawInputBufferLength WinAPI_GetRawInputData WinAPI_GetRawInputDeviceInfo WinAPI_GetRegionData WinAPI_GetRegisteredRawInputDevices WinAPI_GetRegKeyNameByHandle WinAPI_GetRgnBox WinAPI_GetROP2 WinAPI_GetRValue WinAPI_GetSaveFileName WinAPI_GetShellWindow WinAPI_GetStartupInfo WinAPI_GetStdHandle WinAPI_GetStockObject WinAPI_GetStretchBltMode WinAPI_GetString WinAPI_GetSysColor WinAPI_GetSysColorBrush WinAPI_GetSystemDefaultLangID WinAPI_GetSystemDefaultLCID WinAPI_GetSystemDefaultUILanguage WinAPI_GetSystemDEPPolicy WinAPI_GetSystemInfo WinAPI_GetSystemMetrics WinAPI_GetSystemPowerStatus WinAPI_GetSystemTimes WinAPI_GetSystemWow64Directory WinAPI_GetTabbedTextExtent WinAPI_GetTempFileName WinAPI_GetTextAlign WinAPI_GetTextCharacterExtra WinAPI_GetTextColor WinAPI_GetTextExtentPoint32 WinAPI_GetTextFace WinAPI_GetTextMetrics WinAPI_GetThemeAppProperties WinAPI_GetThemeBackgroundContentRect WinAPI_GetThemeBackgroundExtent WinAPI_GetThemeBackgroundRegion WinAPI_GetThemeBitmap WinAPI_GetThemeBool WinAPI_GetThemeColor WinAPI_GetThemeDocumentationProperty WinAPI_GetThemeEnumValue WinAPI_GetThemeFilename WinAPI_GetThemeFont WinAPI_GetThemeInt WinAPI_GetThemeMargins WinAPI_GetThemeMetric WinAPI_GetThemePartSize WinAPI_GetThemePosition WinAPI_GetThemePropertyOrigin WinAPI_GetThemeRect WinAPI_GetThemeString WinAPI_GetThemeSysBool WinAPI_GetThemeSysColor WinAPI_GetThemeSysColorBrush WinAPI_GetThemeSysFont WinAPI_GetThemeSysInt WinAPI_GetThemeSysSize WinAPI_GetThemeSysString WinAPI_GetThemeTextExtent WinAPI_GetThemeTextMetrics WinAPI_GetThemeTransitionDuration WinAPI_GetThreadDesktop WinAPI_GetThreadErrorMode WinAPI_GetThreadLocale WinAPI_GetThreadUILanguage WinAPI_GetTickCount WinAPI_GetTickCount64 WinAPI_GetTimeFormat WinAPI_GetTopWindow WinAPI_GetUDFColorMode WinAPI_GetUpdateRect WinAPI_GetUpdateRgn WinAPI_GetUserDefaultLangID WinAPI_GetUserDefaultLCID WinAPI_GetUserDefaultUILanguage WinAPI_GetUserGeoID WinAPI_GetUserObjectInformation WinAPI_GetVersion WinAPI_GetVersionEx WinAPI_GetVolumeInformation WinAPI_GetVolumeInformationByHandle WinAPI_GetVolumeNameForVolumeMountPoint WinAPI_GetWindow WinAPI_GetWindowDC WinAPI_GetWindowDisplayAffinity WinAPI_GetWindowExt WinAPI_GetWindowFileName WinAPI_GetWindowHeight WinAPI_GetWindowInfo WinAPI_GetWindowLong WinAPI_GetWindowOrg WinAPI_GetWindowPlacement WinAPI_GetWindowRect WinAPI_GetWindowRgn WinAPI_GetWindowRgnBox WinAPI_GetWindowSubclass WinAPI_GetWindowText WinAPI_GetWindowTheme WinAPI_GetWindowThreadProcessId WinAPI_GetWindowWidth WinAPI_GetWorkArea WinAPI_GetWorldTransform WinAPI_GetXYFromPoint WinAPI_GlobalMemoryStatus WinAPI_GradientFill WinAPI_GUIDFromString WinAPI_GUIDFromStringEx WinAPI_HashData WinAPI_HashString WinAPI_HiByte WinAPI_HideCaret WinAPI_HiDWord WinAPI_HiWord WinAPI_InflateRect WinAPI_InitMUILanguage WinAPI_InProcess WinAPI_IntersectClipRect WinAPI_IntersectRect WinAPI_IntToDWord WinAPI_IntToFloat WinAPI_InvalidateRect WinAPI_InvalidateRgn WinAPI_InvertANDBitmap WinAPI_InvertColor WinAPI_InvertRect WinAPI_InvertRgn WinAPI_IOCTL WinAPI_IsAlphaBitmap WinAPI_IsBadCodePtr WinAPI_IsBadReadPtr WinAPI_IsBadStringPtr WinAPI_IsBadWritePtr WinAPI_IsChild WinAPI_IsClassName WinAPI_IsDoorOpen WinAPI_IsElevated WinAPI_IsHungAppWindow WinAPI_IsIconic WinAPI_IsInternetConnected WinAPI_IsLoadKBLayout WinAPI_IsMemory WinAPI_IsNameInExpression WinAPI_IsNetworkAlive WinAPI_IsPathShared WinAPI_IsProcessInJob WinAPI_IsProcessorFeaturePresent WinAPI_IsRectEmpty WinAPI_IsThemeActive WinAPI_IsThemeBackgroundPartiallyTransparent WinAPI_IsThemePartDefined WinAPI_IsValidLocale WinAPI_IsWindow WinAPI_IsWindowEnabled WinAPI_IsWindowUnicode WinAPI_IsWindowVisible WinAPI_IsWow64Process WinAPI_IsWritable WinAPI_IsZoomed WinAPI_Keybd_Event WinAPI_KillTimer WinAPI_LineDDA WinAPI_LineTo WinAPI_LoadBitmap WinAPI_LoadCursor WinAPI_LoadCursorFromFile WinAPI_LoadIcon WinAPI_LoadIconMetric WinAPI_LoadIconWithScaleDown WinAPI_LoadImage WinAPI_LoadIndirectString WinAPI_LoadKeyboardLayout WinAPI_LoadLibrary WinAPI_LoadLibraryEx WinAPI_LoadMedia WinAPI_LoadResource WinAPI_LoadShell32Icon WinAPI_LoadString WinAPI_LoadStringEx WinAPI_LoByte WinAPI_LocalFree WinAPI_LockDevice WinAPI_LockFile WinAPI_LockResource WinAPI_LockWindowUpdate WinAPI_LockWorkStation WinAPI_LoDWord WinAPI_LongMid WinAPI_LookupIconIdFromDirectoryEx WinAPI_LoWord WinAPI_LPtoDP WinAPI_MAKELANGID WinAPI_MAKELCID WinAPI_MakeLong WinAPI_MakeQWord WinAPI_MakeWord WinAPI_MapViewOfFile WinAPI_MapVirtualKey WinAPI_MaskBlt WinAPI_MessageBeep WinAPI_MessageBoxCheck WinAPI_MessageBoxIndirect WinAPI_MirrorIcon WinAPI_ModifyWorldTransform WinAPI_MonitorFromPoint WinAPI_MonitorFromRect WinAPI_MonitorFromWindow WinAPI_Mouse_Event WinAPI_MoveFileEx WinAPI_MoveMemory WinAPI_MoveTo WinAPI_MoveToEx WinAPI_MoveWindow WinAPI_MsgBox WinAPI_MulDiv WinAPI_MultiByteToWideChar WinAPI_MultiByteToWideCharEx WinAPI_NtStatusToDosError WinAPI_OemToChar WinAPI_OffsetClipRgn WinAPI_OffsetPoints WinAPI_OffsetRect WinAPI_OffsetRgn WinAPI_OffsetWindowOrg WinAPI_OpenDesktop WinAPI_OpenFileById WinAPI_OpenFileDlg WinAPI_OpenFileMapping WinAPI_OpenIcon WinAPI_OpenInputDesktop WinAPI_OpenJobObject WinAPI_OpenMutex WinAPI_OpenProcess WinAPI_OpenProcessToken WinAPI_OpenSemaphore WinAPI_OpenThemeData WinAPI_OpenWindowStation WinAPI_PageSetupDlg WinAPI_PaintDesktop WinAPI_PaintRgn WinAPI_ParseURL WinAPI_ParseUserName WinAPI_PatBlt WinAPI_PathAddBackslash WinAPI_PathAddExtension WinAPI_PathAppend WinAPI_PathBuildRoot WinAPI_PathCanonicalize WinAPI_PathCommonPrefix WinAPI_PathCompactPath WinAPI_PathCompactPathEx WinAPI_PathCreateFromUrl WinAPI_PathFindExtension WinAPI_PathFindFileName WinAPI_PathFindNextComponent WinAPI_PathFindOnPath WinAPI_PathGetArgs WinAPI_PathGetCharType WinAPI_PathGetDriveNumber WinAPI_PathIsContentType WinAPI_PathIsDirectory WinAPI_PathIsDirectoryEmpty WinAPI_PathIsExe WinAPI_PathIsFileSpec WinAPI_PathIsLFNFileSpec WinAPI_PathIsRelative WinAPI_PathIsRoot WinAPI_PathIsSameRoot WinAPI_PathIsSystemFolder WinAPI_PathIsUNC WinAPI_PathIsUNCServer WinAPI_PathIsUNCServerShare WinAPI_PathMakeSystemFolder WinAPI_PathMatchSpec WinAPI_PathParseIconLocation WinAPI_PathRelativePathTo WinAPI_PathRemoveArgs WinAPI_PathRemoveBackslash WinAPI_PathRemoveExtension WinAPI_PathRemoveFileSpec WinAPI_PathRenameExtension WinAPI_PathSearchAndQualify WinAPI_PathSkipRoot WinAPI_PathStripPath WinAPI_PathStripToRoot WinAPI_PathToRegion WinAPI_PathUndecorate WinAPI_PathUnExpandEnvStrings WinAPI_PathUnmakeSystemFolder WinAPI_PathUnquoteSpaces WinAPI_PathYetAnotherMakeUniqueName WinAPI_PickIconDlg WinAPI_PlayEnhMetaFile WinAPI_PlaySound WinAPI_PlgBlt WinAPI_PointFromRect WinAPI_PolyBezier WinAPI_PolyBezierTo WinAPI_PolyDraw WinAPI_Polygon WinAPI_PostMessage WinAPI_PrimaryLangId WinAPI_PrintDlg WinAPI_PrintDlgEx WinAPI_PrintWindow WinAPI_ProgIDFromCLSID WinAPI_PtInRect WinAPI_PtInRectEx WinAPI_PtInRegion WinAPI_PtVisible WinAPI_QueryDosDevice WinAPI_QueryInformationJobObject WinAPI_QueryPerformanceCounter WinAPI_QueryPerformanceFrequency WinAPI_RadialGradientFill WinAPI_ReadDirectoryChanges WinAPI_ReadFile WinAPI_ReadProcessMemory WinAPI_Rectangle WinAPI_RectInRegion WinAPI_RectIsEmpty WinAPI_RectVisible WinAPI_RedrawWindow WinAPI_RegCloseKey WinAPI_RegConnectRegistry WinAPI_RegCopyTree WinAPI_RegCopyTreeEx WinAPI_RegCreateKey WinAPI_RegDeleteEmptyKey WinAPI_RegDeleteKey WinAPI_RegDeleteKeyValue WinAPI_RegDeleteTree WinAPI_RegDeleteTreeEx WinAPI_RegDeleteValue WinAPI_RegDisableReflectionKey WinAPI_RegDuplicateHKey WinAPI_RegEnableReflectionKey WinAPI_RegEnumKey WinAPI_RegEnumValue WinAPI_RegFlushKey WinAPI_RegisterApplicationRestart WinAPI_RegisterClass WinAPI_RegisterClassEx WinAPI_RegisterHotKey WinAPI_RegisterPowerSettingNotification WinAPI_RegisterRawInputDevices WinAPI_RegisterShellHookWindow WinAPI_RegisterWindowMessage WinAPI_RegLoadMUIString WinAPI_RegNotifyChangeKeyValue WinAPI_RegOpenKey WinAPI_RegQueryInfoKey WinAPI_RegQueryLastWriteTime WinAPI_RegQueryMultipleValues WinAPI_RegQueryReflectionKey WinAPI_RegQueryValue WinAPI_RegRestoreKey WinAPI_RegSaveKey WinAPI_RegSetValue WinAPI_ReleaseCapture WinAPI_ReleaseDC WinAPI_ReleaseMutex WinAPI_ReleaseSemaphore WinAPI_ReleaseStream WinAPI_RemoveClipboardFormatListener WinAPI_RemoveDirectory WinAPI_RemoveFontMemResourceEx WinAPI_RemoveFontResourceEx WinAPI_RemoveWindowSubclass WinAPI_ReOpenFile WinAPI_ReplaceFile WinAPI_ReplaceTextDlg WinAPI_ResetEvent WinAPI_RestartDlg WinAPI_RestoreDC WinAPI_RGB WinAPI_RotatePoints WinAPI_RoundRect WinAPI_SaveDC WinAPI_SaveFileDlg WinAPI_SaveHBITMAPToFile WinAPI_SaveHICONToFile WinAPI_ScaleWindowExt WinAPI_ScreenToClient WinAPI_SearchPath WinAPI_SelectClipPath WinAPI_SelectClipRgn WinAPI_SelectObject WinAPI_SendMessageTimeout WinAPI_SetActiveWindow WinAPI_SetArcDirection WinAPI_SetBitmapBits WinAPI_SetBitmapDimensionEx WinAPI_SetBkColor WinAPI_SetBkMode WinAPI_SetBoundsRect WinAPI_SetBrushOrg WinAPI_SetCapture WinAPI_SetCaretBlinkTime WinAPI_SetCaretPos WinAPI_SetClassLongEx WinAPI_SetColorAdjustment WinAPI_SetCompression WinAPI_SetCurrentDirectory WinAPI_SetCurrentProcessExplicitAppUserModelID WinAPI_SetCursor WinAPI_SetDCBrushColor WinAPI_SetDCPenColor WinAPI_SetDefaultPrinter WinAPI_SetDeviceGammaRamp WinAPI_SetDIBColorTable WinAPI_SetDIBits WinAPI_SetDIBitsToDevice WinAPI_SetDllDirectory WinAPI_SetEndOfFile WinAPI_SetEnhMetaFileBits WinAPI_SetErrorMode WinAPI_SetEvent WinAPI_SetFileAttributes WinAPI_SetFileInformationByHandleEx WinAPI_SetFilePointer WinAPI_SetFilePointerEx WinAPI_SetFileShortName WinAPI_SetFileValidData WinAPI_SetFocus WinAPI_SetFont WinAPI_SetForegroundWindow WinAPI_SetFRBuffer WinAPI_SetGraphicsMode WinAPI_SetHandleInformation WinAPI_SetInformationJobObject WinAPI_SetKeyboardLayout WinAPI_SetKeyboardState WinAPI_SetLastError WinAPI_SetLayeredWindowAttributes WinAPI_SetLocaleInfo WinAPI_SetMapMode WinAPI_SetMessageExtraInfo WinAPI_SetParent WinAPI_SetPixel WinAPI_SetPolyFillMode WinAPI_SetPriorityClass WinAPI_SetProcessAffinityMask WinAPI_SetProcessShutdownParameters WinAPI_SetProcessWindowStation WinAPI_SetRectRgn WinAPI_SetROP2 WinAPI_SetSearchPathMode WinAPI_SetStretchBltMode WinAPI_SetSysColors WinAPI_SetSystemCursor WinAPI_SetTextAlign WinAPI_SetTextCharacterExtra WinAPI_SetTextColor WinAPI_SetTextJustification WinAPI_SetThemeAppProperties WinAPI_SetThreadDesktop WinAPI_SetThreadErrorMode WinAPI_SetThreadExecutionState WinAPI_SetThreadLocale WinAPI_SetThreadUILanguage WinAPI_SetTimer WinAPI_SetUDFColorMode WinAPI_SetUserGeoID WinAPI_SetUserObjectInformation WinAPI_SetVolumeMountPoint WinAPI_SetWindowDisplayAffinity WinAPI_SetWindowExt WinAPI_SetWindowLong WinAPI_SetWindowOrg WinAPI_SetWindowPlacement WinAPI_SetWindowPos WinAPI_SetWindowRgn WinAPI_SetWindowsHookEx WinAPI_SetWindowSubclass WinAPI_SetWindowText WinAPI_SetWindowTheme WinAPI_SetWinEventHook WinAPI_SetWorldTransform WinAPI_SfcIsFileProtected WinAPI_SfcIsKeyProtected WinAPI_ShellAboutDlg WinAPI_ShellAddToRecentDocs WinAPI_ShellChangeNotify WinAPI_ShellChangeNotifyDeregister WinAPI_ShellChangeNotifyRegister WinAPI_ShellCreateDirectory WinAPI_ShellEmptyRecycleBin WinAPI_ShellExecute WinAPI_ShellExecuteEx WinAPI_ShellExtractAssociatedIcon WinAPI_ShellExtractIcon WinAPI_ShellFileOperation WinAPI_ShellFlushSFCache WinAPI_ShellGetFileInfo WinAPI_ShellGetIconOverlayIndex WinAPI_ShellGetImageList WinAPI_ShellGetKnownFolderIDList WinAPI_ShellGetKnownFolderPath WinAPI_ShellGetLocalizedName WinAPI_ShellGetPathFromIDList WinAPI_ShellGetSetFolderCustomSettings WinAPI_ShellGetSettings WinAPI_ShellGetSpecialFolderLocation WinAPI_ShellGetSpecialFolderPath WinAPI_ShellGetStockIconInfo WinAPI_ShellILCreateFromPath WinAPI_ShellNotifyIcon WinAPI_ShellNotifyIconGetRect WinAPI_ShellObjectProperties WinAPI_ShellOpenFolderAndSelectItems WinAPI_ShellOpenWithDlg WinAPI_ShellQueryRecycleBin WinAPI_ShellQueryUserNotificationState WinAPI_ShellRemoveLocalizedName WinAPI_ShellRestricted WinAPI_ShellSetKnownFolderPath WinAPI_ShellSetLocalizedName WinAPI_ShellSetSettings WinAPI_ShellStartNetConnectionDlg WinAPI_ShellUpdateImage WinAPI_ShellUserAuthenticationDlg WinAPI_ShellUserAuthenticationDlgEx WinAPI_ShortToWord WinAPI_ShowCaret WinAPI_ShowCursor WinAPI_ShowError WinAPI_ShowLastError WinAPI_ShowMsg WinAPI_ShowOwnedPopups WinAPI_ShowWindow WinAPI_ShutdownBlockReasonCreate WinAPI_ShutdownBlockReasonDestroy WinAPI_ShutdownBlockReasonQuery WinAPI_SizeOfResource WinAPI_StretchBlt WinAPI_StretchDIBits WinAPI_StrFormatByteSize WinAPI_StrFormatByteSizeEx WinAPI_StrFormatKBSize WinAPI_StrFromTimeInterval WinAPI_StringFromGUID WinAPI_StringLenA WinAPI_StringLenW WinAPI_StrLen WinAPI_StrokeAndFillPath WinAPI_StrokePath WinAPI_StructToArray WinAPI_SubLangId WinAPI_SubtractRect WinAPI_SwapDWord WinAPI_SwapQWord WinAPI_SwapWord WinAPI_SwitchColor WinAPI_SwitchDesktop WinAPI_SwitchToThisWindow WinAPI_SystemParametersInfo WinAPI_TabbedTextOut WinAPI_TerminateJobObject WinAPI_TerminateProcess WinAPI_TextOut WinAPI_TileWindows WinAPI_TrackMouseEvent WinAPI_TransparentBlt WinAPI_TwipsPerPixelX WinAPI_TwipsPerPixelY WinAPI_UnhookWindowsHookEx WinAPI_UnhookWinEvent WinAPI_UnionRect WinAPI_UnionStruct WinAPI_UniqueHardwareID WinAPI_UnloadKeyboardLayout WinAPI_UnlockFile WinAPI_UnmapViewOfFile WinAPI_UnregisterApplicationRestart WinAPI_UnregisterClass WinAPI_UnregisterHotKey WinAPI_UnregisterPowerSettingNotification WinAPI_UpdateLayeredWindow WinAPI_UpdateLayeredWindowEx WinAPI_UpdateLayeredWindowIndirect WinAPI_UpdateResource WinAPI_UpdateWindow WinAPI_UrlApplyScheme WinAPI_UrlCanonicalize WinAPI_UrlCombine WinAPI_UrlCompare WinAPI_UrlCreateFromPath WinAPI_UrlFixup WinAPI_UrlGetPart WinAPI_UrlHash WinAPI_UrlIs WinAPI_UserHandleGrantAccess WinAPI_ValidateRect WinAPI_ValidateRgn WinAPI_VerQueryRoot WinAPI_VerQueryValue WinAPI_VerQueryValueEx WinAPI_WaitForInputIdle WinAPI_WaitForMultipleObjects WinAPI_WaitForSingleObject WinAPI_WideCharToMultiByte WinAPI_WidenPath WinAPI_WindowFromDC WinAPI_WindowFromPoint WinAPI_WordToShort WinAPI_Wow64EnableWow64FsRedirection WinAPI_WriteConsole WinAPI_WriteFile WinAPI_WriteProcessMemory WinAPI_ZeroMemory WinNet_AddConnection WinNet_AddConnection2 WinNet_AddConnection3 WinNet_CancelConnection WinNet_CancelConnection2 WinNet_CloseEnum WinNet_ConnectionDialog WinNet_ConnectionDialog1 WinNet_DisconnectDialog WinNet_DisconnectDialog1 WinNet_EnumResource WinNet_GetConnection WinNet_GetConnectionPerformance WinNet_GetLastError WinNet_GetNetworkInformation WinNet_GetProviderName WinNet_GetResourceInformation WinNet_GetResourceParent WinNet_GetUniversalName WinNet_GetUser WinNet_OpenEnum WinNet_RestoreConnection WinNet_UseConnection Word_Create Word_DocAdd Word_DocAttach Word_DocClose Word_DocExport Word_DocFind Word_DocFindReplace Word_DocGet Word_DocLinkAdd Word_DocLinkGet Word_DocOpen Word_DocPictureAdd Word_DocPrint Word_DocRangeSet Word_DocSave Word_DocSaveAs Word_DocTableRead Word_DocTableWrite Word_Quit\",I={\nv:[e.C(\";\",\"$\",{r:0}),e.C(\"#cs\",\"#ce\"),e.C(\"#comments-start\",\"#comments-end\")]},n={cN:\"variable\",b:\"\\\\$[A-z0-9_]+\"},l={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},o={v:[e.BNM,e.CNM]},a={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"include include-once NoTrayIcon OnAutoItStartRegister RequireAdmin pragma Au3Stripper_Ignore_Funcs Au3Stripper_Ignore_Variables Au3Stripper_Off Au3Stripper_On Au3Stripper_Parameters AutoIt3Wrapper_Add_Constants AutoIt3Wrapper_Au3Check_Parameters AutoIt3Wrapper_Au3Check_Stop_OnWarning AutoIt3Wrapper_Aut2Exe AutoIt3Wrapper_AutoIt3 AutoIt3Wrapper_AutoIt3Dir AutoIt3Wrapper_Change2CUI AutoIt3Wrapper_Compile_Both AutoIt3Wrapper_Compression AutoIt3Wrapper_EndIf AutoIt3Wrapper_Icon AutoIt3Wrapper_If_Compile AutoIt3Wrapper_If_Run AutoIt3Wrapper_Jump_To_First_Error AutoIt3Wrapper_OutFile AutoIt3Wrapper_OutFile_Type AutoIt3Wrapper_OutFile_X64 AutoIt3Wrapper_PlugIn_Funcs AutoIt3Wrapper_Res_Comment Autoit3Wrapper_Res_Compatibility AutoIt3Wrapper_Res_Description AutoIt3Wrapper_Res_Field AutoIt3Wrapper_Res_File_Add AutoIt3Wrapper_Res_FileVersion AutoIt3Wrapper_Res_FileVersion_AutoIncrement AutoIt3Wrapper_Res_Icon_Add AutoIt3Wrapper_Res_Language AutoIt3Wrapper_Res_LegalCopyright AutoIt3Wrapper_Res_ProductVersion AutoIt3Wrapper_Res_requestedExecutionLevel AutoIt3Wrapper_Res_SaveSource AutoIt3Wrapper_Run_After AutoIt3Wrapper_Run_Au3Check AutoIt3Wrapper_Run_Au3Stripper AutoIt3Wrapper_Run_Before AutoIt3Wrapper_Run_Debug_Mode AutoIt3Wrapper_Run_SciTE_Minimized AutoIt3Wrapper_Run_SciTE_OutputPane_Minimized AutoIt3Wrapper_Run_Tidy AutoIt3Wrapper_ShowProgress AutoIt3Wrapper_Testing AutoIt3Wrapper_Tidy_Stop_OnError AutoIt3Wrapper_UPX_Parameters AutoIt3Wrapper_UseUPX AutoIt3Wrapper_UseX64 AutoIt3Wrapper_Version AutoIt3Wrapper_Versioning AutoIt3Wrapper_Versioning_Parameters Tidy_Off Tidy_On Tidy_Parameters EndRegion Region\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[l,{cN:\"string\",v:[{b:\"<\",e:\">\"},{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]}]},l,I]},_={cN:\"constant\",b:\"@[A-z0-9_]+\"},G={cN:\"function\",bK:\"Func\",e:\"$\",eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[n,l,o]}]};return{cI:!0,i:/\\/\\*/,k:{keyword:t,built_in:i,literal:r},c:[I,n,l,o,a,_,G]}});hljs.registerLanguage(\"gams\",function(e){var s=\"abort acronym acronyms alias all and assign binary card diag display else1 eps eq equation equations file files for1 free ge gt if inf integer le loop lt maximizing minimizing model models na ne negative no not option options or ord parameter parameters positive prod putpage puttl repeat sameas scalar scalars semicont semiint set1 sets smax smin solve sos1 sos2 sum system table then until using variable variables while1 xor yes\";return{aliases:[\"gms\"],cI:!0,k:s,c:[{cN:\"section\",bK:\"sets parameters variables equations\",e:\";\",c:[{b:\"/\",e:\"/\",c:[e.NM]}]},{cN:\"string\",b:\"\\\\*{3}\",e:\"\\\\*{3}\"},e.NM,{cN:\"number\",b:\"\\\\$[a-zA-Z0-9]+\"}]}});hljs.registerLanguage(\"matlab\",function(e){var a=[e.CNM,{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]}],s={r:0,c:[{cN:\"operator\",b:/'['\\.]*/}]};return{k:{keyword:\"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson\"},i:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function\",e:\"$\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},{cN:\"params\",b:\"\\\\[\",e:\"\\\\]\"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]\",c:a,r:0,starts:s},{cN:\"cell\",b:\"\\\\{\",e:/}/,c:a,r:0,starts:s},{b:/\\)/,r:0,starts:s},e.C(\"^\\\\s*\\\\%\\\\{\\\\s*$\",\"^\\\\s*\\\\%\\\\}\\\\s*$\"),e.C(\"\\\\%\",\"$\")].concat(a)}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"prompt\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},a={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},l={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,a,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,a,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,l]},{cN:\"decorator\",b:/^[\\t ]*@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"lisp\",function(b){var e=\"[a-zA-Z_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#][a-zA-Z0-9_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#!]*\",c=\"\\\\|[^]*?\\\\|\",r=\"(\\\\-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|\\\\-)?\\\\d+)?\",a={cN:\"shebang\",b:\"^#!\",e:\"$\"},i={cN:\"literal\",b:\"\\\\b(t{1}|nil)\\\\b\"},l={cN:\"number\",v:[{b:r,r:0},{b:\"#(b|B)[0-1]+(/[0-1]+)?\"},{b:\"#(o|O)[0-7]+(/[0-7]+)?\"},{b:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{b:\"#(c|C)\\\\(\"+r+\" +\"+r,e:\"\\\\)\"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(\";\",\"$\",{r:0}),n={cN:\"variable\",b:\"\\\\*\",e:\"\\\\*\"},u={cN:\"keyword\",b:\"[:&]\"+e},N={b:e,r:0},o={b:c},s={b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,t,l,N]},v={cN:\"quoted\",c:[l,t,n,u,s,N],v:[{b:\"['`]\\\\(\",e:\"\\\\)\"},{b:\"\\\\(quote \",e:\"\\\\)\",k:\"quote\"},{b:\"'\"+c}]},f={cN:\"quoted\",v:[{b:\"'\"+e},{b:\"#'\"+e+\"(::\"+e+\")*\"}]},g={cN:\"list\",b:\"\\\\(\\\\s*\",e:\"\\\\)\"},q={eW:!0,r:0};return g.c=[{cN:\"keyword\",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage(\"golo\",function(e){return{k:{keyword:\"println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull\",typename:\"DynamicObject|10 DynamicVariable struct Observable map set vector list array\",literal:\"true false null\"},c:[e.HCM,e.QSM,e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"lua\",function(e){var t=\"\\\\[=*\\\\[\",a=\"\\\\]=*\\\\]\",r={b:t,e:a,c:[\"self\"]},n=[e.C(\"--(?!\"+t+\")\",\"$\"),e.C(\"--\"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:\"and break do else elseif end false for if in local nil not or repeat return then true until while\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},c:n.concat([{cN:\"function\",bK:\"function\",e:\"\\\\)\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{cN:\"params\",b:\"\\\\(\",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:\"string\",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage(\"dos\",function(e){var r=e.C(/@?rem\\b/,/$/,{r:10}),t={cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0};return{aliases:[\"bat\",\"cmd\"],cI:!0,i:/\\/\\*/,k:{flow:\"if else goto for in do call exit not exist errorlevel defined\",operator:\"equ neq lss leq gtr geq\",keyword:\"shift cd dir echo setlocal endlocal set pause copy\",stream:\"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux\",winutils:\"ping net ipconfig taskkill xcopy ren del\",built_in:\"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol\"},c:[{cN:\"envvar\",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:\"function\",b:t.b,e:\"goto:eof\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),r]},{cN:\"number\",b:\"\\\\b\\\\d+\",r:0},r]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={cN:\"variable\",v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},o=[e.BE,r,n],i=[n,e.HCM,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:o,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"sub\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",r:5},{cN:\"operator\",b:\"-\\\\w\\\\b\",r:0},{b:\"^__DATA__$\",e:\"^__END__$\",sL:\"mojolicious\",c:[{b:\"^@@.*\",e:\"$\",cN:\"comment\"}]}];return r.c=i,s.c=i,{aliases:[\"pl\"],k:t,c:i}});hljs.registerLanguage(\"protobuf\",function(e){return{k:{keyword:\"package import option optional required repeated group\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,{cN:\"class\",bK:\"message enum service\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"function\",bK:\"rpc\",e:/;/,eE:!0,k:\"rpc returns\"},{cN:\"constant\",b:/^\\s*[A-Z_]+/,e:/\\s*=/,eE:!0}]}});hljs.registerLanguage(\"accesslog\",function(T){return{c:[{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+\\\\b\",r:0},{cN:\"string\",b:'\"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',e:'\"',k:\"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE\",i:\"\\\\n\",r:10},{cN:\"string\",b:/\\[/,e:/\\]/,i:\"\\\\n\"},{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"}]}});hljs.registerLanguage(\"java\",function(e){var a=e.UIR+\"(<\"+e.UIR+\">)?\",t=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",c=\"\\\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+)(\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))?|\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))([eE][-+]?\\\\d+)?)[lLfF]?\",r={cN:\"number\",b:c,r:0};return{aliases:[\"jsp\"],k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+a+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"vala\",function(e){return{k:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object\",literal:\"false true null\"},c:[{cN:\"class\",bK:\"class interface delegate namespace\",e:\"{\",eE:!0,i:\"[^,:\\\\n\\\\s\\\\.]\",c:[e.UTM]},e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:5},e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"^#\",e:\"$\",r:2},{cN:\"constant\",b:\" [A-Z_]+ \",r:0}]}});hljs.registerLanguage(\"tcl\",function(e){return{aliases:[\"tk\"],k:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",c:[e.C(\";[ \\\\t]*#\",\"$\"),e.C(\"^[ \\\\t]*#\",\"$\"),{bK:\"proc\",e:\"[\\\\{]\",eE:!0,c:[{cN:\"symbol\",b:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"[ \\\\t\\\\n\\\\r]\",eW:!0,eE:!0}]},{cN:\"variable\",eE:!0,v:[{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\\\(([a-zA-Z0-9_])*\\\\)\",e:\"[^a-zA-Z0-9_\\\\}\\\\$]\"},{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"(\\\\))?[^a-zA-Z0-9_\\\\}\\\\$]\"}]},{cN:\"string\",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:\"number\",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage(\"haml\",function(s){return{cI:!0,c:[{cN:\"doctype\",b:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",r:10},s.C(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{r:0}),{b:\"^\\\\s*(-|=|!=)(?!#)\",starts:{e:\"\\\\n\",sL:\"ruby\"}},{cN:\"tag\",b:\"^\\\\s*%\",c:[{cN:\"title\",b:\"\\\\w+\"},{cN:\"value\",b:\"[#\\\\.][\\\\w-]+\"},{b:\"{\\\\s*\",e:\"\\\\s*}\",eE:!0,c:[{b:\":\\\\w+\\\\s*=>\",e:\",\\\\s+\",rB:!0,eW:!0,c:[{cN:\"symbol\",b:\":\\\\w+\"},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]},{b:\"\\\\(\\\\s*\",e:\"\\\\s*\\\\)\",eE:!0,c:[{b:\"\\\\w+\\\\s*=\",e:\"\\\\s+\",rB:!0,eW:!0,c:[{cN:\"attribute\",b:\"\\\\w+\",r:0},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]}]},{cN:\"bullet\",b:\"^\\\\s*[=~]\\\\s*\",r:0},{b:\"#{\",starts:{e:\"}\",sL:\"ruby\"}}]}});hljs.registerLanguage(\"autohotkey\",function(e){var r={cN:\"escape\",b:\"`[\\\\s\\\\S]\"},c=e.C(\";\",\"$\",{r:0}),n=[{cN:\"built_in\",b:\"A_[a-zA-Z0-9]+\"},{cN:\"built_in\",bK:\"ComSpec Clipboard ClipboardAll ErrorLevel\"}];return{cI:!0,k:{keyword:\"Break Continue Else Gosub If Loop Return While\",literal:\"A true false NOT AND OR\"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:\"number\",b:e.NR,r:0},{cN:\"var_expand\",b:\"%\",e:\"%\",i:\"\\\\n\",c:[r]},{cN:\"label\",c:[r],v:[{b:'^[^\\\\n\";]+::(?!=)'},{b:'^[^\\\\n\";]+:(?!=)',r:0}]},{b:\",\\\\s*,\",r:10}])}});hljs.registerLanguage(\"nimrod\",function(t){return{aliases:[\"nim\"],k:{keyword:\"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield\",literal:\"shared guarded stdin stdout stderr result|10 true false\"},c:[{cN:\"decorator\",b:/{\\./,e:/\\.}/,r:10},{cN:\"string\",b:/[a-zA-Z]\\w*\"/,e:/\"/,c:[{b:/\"\"/}]},{cN:\"string\",b:/([a-zA-Z]\\w*)?\"\"\"/,e:/\"\"\"/},t.QSM,{cN:\"type\",b:/\\b[A-Z]\\w+\\b/,r:0},{cN:\"type\",b:/\\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\\b/},{cN:\"number\",b:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage(\"mizar\",function(e){return{k:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",c:[e.C(\"::\",\"$\")]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"header\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"blockquote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{cN:\"horizontal_rule\",b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link_url\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"link_reference\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:\"^\\\\[.+\\\\]:\",rB:!0,c:[{cN:\"link_reference\",b:\"\\\\[\",e:\"\\\\]:\",eB:!0,eE:!0,starts:{cN:\"link_url\",e:\"$\"}}]}]}});hljs.registerLanguage(\"aspectj\",function(e){var t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",i=\"get set args call\";return{k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"aspect\",bK:\"aspect\",e:/[{;=]/,eE:!0,i:/[:;\"\\[\\]]/,c:[{bK:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UTM,{b:/\\([^\\)]*/,e:/[)]+/,k:t+\" \"+i,eE:!1}]},{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,r:0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"pointcut after before around throwing returning\",e:/[)]/,eE:!1,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",k:t+\" \"+i},e.QSM]},{bK:\"new throw\",r:0},{cN:\"function\",b:/\\w+ +\\w+(\\.)?\\w+\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"dns\",function(d){return{aliases:[\"bind\",\"zone\"],k:{keyword:\"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT\"},c:[d.C(\";\",\"$\"),{cN:\"operator\",bK:\"$TTL $GENERATE $INCLUDE $ORIGIN\"},{cN:\"number\",b:\"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:)))\"},{cN:\"number\",b:\"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\"}]}});hljs.registerLanguage(\"django\",function(e){var t={cN:\"filter\",b:/\\|[A-Za-z]+:?/,k:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\",c:[{cN:\"argument\",b:/\"/,e:/\"/},{cN:\"argument\",b:/'/,e:/'/}]};return{aliases:[\"jinja\"],cI:!0,sL:\"xml\",c:[e.C(/\\{%\\s*comment\\s*%}/,/\\{%\\s*endcomment\\s*%}/),e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\",c:[t]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage(\"step21\",function(e){var r=\"[A-Z_][A-Z0-9_.]*\",i=\"END-ISO-10303-21;\",l={literal:\"\",built_in:\"\",keyword:\"HEADER ENDSEC DATA\"},s={cN:\"preprocessor\",b:\"ISO-10303-21;\",r:10},t=[e.CLCM,e.CBCM,e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"label\",v:[{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"p21\",\"step\",\"stp\"],cI:!0,l:r,k:l,c:[{cN:\"preprocessor\",b:i,r:10},s].concat(t)}});hljs.registerLanguage(\"roboconf\",function(e){var n=\"[a-zA-Z-_][^\\n{\\r\\n]+\\\\{\";return{aliases:[\"graph\",\"instances\"],cI:!0,k:\"import\",c:[{cN:\"facet\",b:\"^facet \"+n,e:\"}\",k:\"facet installer exports children extends\",c:[e.HCM]},{cN:\"instance-of\",b:\"^instance of \"+n,e:\"}\",k:\"name count channels instance-data instance-state instance of\",c:[{cN:\"keyword\",b:\"[a-zA-Z-_]+( |\t)*:\"},e.HCM]},{cN:\"component\",b:\"^\"+n,e:\"}\",l:\"\\\\(?[a-zA-Z]+\\\\)?\",k:\"installer exports children extends imports facets alias (optional)\",c:[{cN:\"string\",b:\"\\\\.[a-zA-Z-_]+\",e:\"\\\\s|,|;\",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage(\"capnproto\",function(t){return{aliases:[\"capnp\"],k:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},c:[t.QSM,t.NM,t.HCM,{cN:\"shebang\",b:/@0x[\\w\\d]{16};/,i:/\\n/},{cN:\"number\",b:/@\\d+\\b/},{cN:\"class\",bK:\"struct enum\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"class\",bK:\"interface\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage(\"livescript\",function(e){var t={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf\",literal:\"true false null undefined yes no on off it that void\",built_in:\"npm require console print module global window document\"},s=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",i=e.inherit(e.TM,{b:s}),n={cN:\"subst\",b:/#\\{/,e:/}/,k:t},r={cN:\"subst\",b:/#[A-Za-z$_]/,e:/(?:\\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:\"number\",b:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",r:0,starts:{e:\"(\\\\s*/)?\",r:0}},{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,n,r]},{b:/\"/,e:/\"/,c:[e.BE,n,r]},{b:/\\\\/,e:/(\\s|$)/,eE:!0}]},{cN:\"pi\",v:[{b:\"//\",e:\"//[gim]*\",c:[n,e.HCM]},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+s},{b:\"``\",e:\"``\",eB:!0,eE:!0,sL:\"javascript\"}];n.c=c;var a={cN:\"params\",b:\"\\\\(\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:t,c:[\"self\"].concat(c)}]};return{aliases:[\"ls\"],k:t,i:/\\/\\*/,c:c.concat([e.C(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HCM,{cN:\"function\",c:[i,a],rB:!0,v:[{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B\\\\->\\\\*?\",e:\"\\\\->\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\))?\\\\s*\\\\B[-~]{1,2}>\\\\*?\",e:\"[-~]{1,2}>\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B!?[-~]{1,2}>\\\\*?\",e:\"!?[-~]{1,2}>\\\\*?\"}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:s+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"crystal\",function(e){function b(e,b){var r=[{b:e,e:b}];return r[0].c=r,r}var r=\"(_[uif](8|16|32|64))?\",c=\"[a-zA-Z_]\\\\w*[!?=]?\",n=\"!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",i=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\][=?]?\",s={keyword:\"abstract alias as asm begin break case class def do else elsif end ensure enum extend for fun if ifdef include instance_sizeof is_a? lib macro module next of out pointerof private protected rescue responds_to? return require self sizeof struct super then type typeof union unless until when while with yield __DIR__ __FILE__ __LINE__\",literal:\"false nil true\"},t={cN:\"subst\",b:\"#{\",e:\"}\",k:s},a={cN:\"expansion\",v:[{b:\"\\\\{\\\\{\",e:\"\\\\}\\\\}\"},{b:\"\\\\{%\",e:\"%\\\\}\"}],k:s,r:10},o={cN:\"string\",c:[e.BE,t],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%w?\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%w?\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%w?{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%w?<\",e:\">\",c:b(\"<\",\">\")},{b:\"%w?/\",e:\"/\"},{b:\"%w?%\",e:\"%\"},{b:\"%w?-\",e:\"-\"},{b:\"%w?\\\\|\",e:\"\\\\|\"}],r:0},u={b:\"(\"+n+\")\\\\s*\",c:[{cN:\"regexp\",c:[e.BE,t],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}]}],r:0},l={cN:\"regexp\",c:[e.BE,t],v:[{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}],r:0},_={cN:\"annotation\",b:\"@\\\\[\",e:\"\\\\]\",r:5},f=[a,o,u,l,_,e.HCM,{cN:\"class\",bK:\"class module struct\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}]},{cN:\"class\",bK:\"lib enum union\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"})],r:10},{cN:\"function\",bK:\"def\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})]},{cN:\"function\",bK:\"fun macro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})],r:5},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[o,{b:i}],r:0},{cN:\"number\",v:[{b:\"\\\\b0b([01_]*[01])\"+r},{b:\"\\\\b0o([0-7_]*[0-7])\"+r},{b:\"\\\\b0x([A-Fa-f0-9_]*[A-Fa-f0-9])\"+r},{b:\"\\\\b(([0-9][0-9_]*[0-9]|[0-9])(\\\\.[0-9_]*[0-9])?([eE][+-]?[0-9_]*[0-9])?)\"+r}],r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?|%)(\\\\w+))\"}];return t.c=f,_.c=f,a.c=f.slice(1),{aliases:[\"cr\"],l:c,k:s,c:f}});hljs.registerLanguage(\"powershell\",function(e){var t={b:\"`[\\\\s\\\\S]\",r:0},r={cN:\"variable\",v:[{b:/\\$[\\w\\d][\\w\\d_:]*/}]},o={cN:\"string\",b:/\"/,e:/\"/,c:[t,r,{cN:\"variable\",b:/\\$[A-z]/,e:/[^A-z]/}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"ps\"],l:/-?[A-z\\.\\-]+/,cI:!0,k:{keyword:\"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch\",literal:\"$null $true $false\",built_in:\"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning\",operator:\"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace\"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage(\"ruby\",function(e){var c=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r=\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",b={cN:\"doctag\",b:\"@[A-Za-z]+\"},a={cN:\"value\",b:\"#<\",e:\">\"},n=[e.C(\"#\",\"$\",{c:[b]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[b],r:10}),e.C(\"^__END__\",\"\\\\n$\")],s={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(n)},{cN:\"function\",bK:\"def\",e:\"$|;\",c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[t,{b:c}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,s],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o=\"[>?]>\",l=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",N=[{b:/^\\s*=>/,cN:\"status\",starts:{e:\"$\",c:d}},{cN:\"prompt\",b:\"^(\"+o+\"|\"+l+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,i:/\\/\\*/,c:n.concat(N).concat(d)}});hljs.registerLanguage(\"brainfuck\",function(r){var n={cN:\"literal\",b:\"[\\\\+\\\\-]\",r:0};return{aliases:[\"bf\"],c:[r.C(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{rE:!0,r:0}),{cN:\"title\",b:\"[\\\\[\\\\]]\",r:0},{cN:\"string\",b:\"[\\\\.,]\",r:0},{b:/\\+\\+|\\-\\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage(\"thrift\",function(e){var t=\"bool byte i16 i32 i64 double string binary\";return{k:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:\"class\",bK:\"struct enum service exception\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:\"\\\\b(set|list|map)\\\\s*<\",e:\">\",k:t,c:[\"self\"]}]}});hljs.registerLanguage(\"less\",function(e){var r=\"[\\\\w-]+\",t=\"(\"+r+\"|@{\"+r+\"})\",a=[],c=[],n=function(e){return{cN:\"string\",b:\"~?\"+e+\".*?\"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+\"\\\\(\",e:\"\\\\(\",rB:!0,eE:!0,r:0},a)},b={b:\"\\\\(\",e:\"\\\\)\",c:c,r:0};c.push(e.CLCM,e.CBCM,n(\"'\"),n('\"'),e.CSSNM,i(\"hexcolor\",\"#[0-9A-Fa-f]+\\\\b\"),s(\"function\",\"(url|data-uri)\",{starts:{cN:\"string\",e:\"[\\\\)\\\\n]\",eE:!0}}),s(\"function\",r),b,i(\"variable\",\"@@?\"+r,10),i(\"variable\",\"@{\"+r+\"}\"),i(\"built_in\",\"~?`[^`]*?`\"),{cN:\"attribute\",b:r+\"\\\\s*:\",e:\":\",rB:!0,eE:!0});var o=c.concat({b:\"{\",e:\"}\",c:a}),u={bK:\"when\",eW:!0,c:[{bK:\"and not\"}].concat(c)},C={cN:\"attribute\",b:t,e:\":\",eE:!0,c:[e.CLCM,e.CBCM],i:/\\S/,starts:{e:\"[;}]\",rE:!0,c:c,i:\"[<=$]\"}},l={cN:\"at_rule\",b:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{e:\"[;{}]\",rE:!0,c:c,r:0}},d={cN:\"variable\",v:[{b:\"@\"+r+\"\\\\s*:\",r:15},{b:\"@\"+r}],starts:{e:\"[;}]\",rE:!0,c:o}},p={v:[{b:\"[\\\\.#:&\\\\[]\",e:\"[;{}]\"},{b:t+\"[^;]*{\",e:\"{\"}],rB:!0,rE:!0,i:\"[<='$\\\"]\",c:[e.CLCM,e.CBCM,u,i(\"keyword\",\"all\\\\b\"),i(\"variable\",\"@{\"+r+\"}\"),i(\"tag\",t+\"%?\",0),i(\"id\",\"#\"+t),i(\"class\",\"\\\\.\"+t,0),i(\"keyword\",\"&\",0),s(\"pseudo\",\":not\"),s(\"keyword\",\":extend\"),i(\"pseudo\",\"::?\"+t),{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\"},{b:\"\\\\(\",e:\"\\\\)\",c:o},{b:\"!important\"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:\"[=>'/<($\\\"]\",c:a}});hljs.registerLanguage(\"scilab\",function(e){var n=[e.CNM,{cN:\"string\",b:\"'|\\\"\",e:\"'|\\\"\",c:[e.BE,{b:\"''\"}]}];return{aliases:[\"sci\"],k:{keyword:\"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix\"},i:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function endfunction\",e:\"$\",k:\"function endfunction|10\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]},{cN:\"transposed_variable\",b:\"[a-zA-Z_][a-zA-Z_0-9]*('+[\\\\.']*|[\\\\.']+)\",e:\"\",r:0},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]'*[\\\\.']*\",r:0,c:n},e.C(\"//\",\"$\")].concat(n)}});hljs.registerLanguage(\"oxygene\",function(e){var r=\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\",t=e.C(\"{\",\"}\",{r:0}),a=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{r:10}),n={cN:\"string\",b:\"'\",e:\"'\",c:[{b:\"''\"}]},o={cN:\"string\",b:\"(#\\\\d+)+\"},i={cN:\"function\",bK:\"function constructor destructor procedure method\",e:\"[:;]\",k:\"function constructor|10 destructor|10 procedure|10 method|10\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*|</|=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:\"class\",b:\"=\\\\bclass\\\\b\",e:\"end;\",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage(\"lasso\",function(e){var r=\"[a-zA-Z_][a-zA-Z0-9_.]*\",a=\"<\\\\?(lasso(script)?|=)\",t=\"\\\\]|\\\\?>\",s={literal:\"true false none minimal full all void bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock\",keyword:\"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},n=e.C(\"<!--\",\"-->\",{r:0}),i={cN:\"preprocessor\",b:\"\\\\[noprocess\\\\]\",starts:{cN:\"markup\",e:\"\\\\[/noprocess\\\\]\",rE:!0,c:[n]}},o={cN:\"preprocessor\",b:\"\\\\[/noprocess|\"+a},l={cN:\"variable\",b:\"'\"+r+\"'\"},c=[e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CLCM,e.CBCM,e.inherit(e.CNM,{b:e.CNR+\"|(infinity|nan)\\\\b\"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"variable\",v:[{b:\"[#$]\"+r},{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]},{cN:\"tag\",b:\"::\\\\s*\",e:r,i:\"\\\\W\"},{cN:\"attribute\",v:[{b:\"-(?!infinity)\"+e.UIR,r:0},{b:\"(\\\\.\\\\.\\\\.)\"}]},{cN:\"subst\",v:[{b:\"->\\\\s*\",c:[l]},{b:\"->|\\\\\\\\|&&?|\\\\|\\\\||!(?!=|>)|(and|or|not)\\\\b\",r:0}]},{cN:\"built_in\",b:\"\\\\.\\\\.?\\\\s*\",r:0,c:[l]},{cN:\"class\",bK:\"define\",rE:!0,e:\"\\\\(|=>\",c:[e.inherit(e.TM,{b:e.UIR+\"(=(?!>))?\"})]}];return{aliases:[\"ls\",\"lassoscript\"],cI:!0,l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[|\"+a,rE:!0,r:0,c:[n]}},i,o,{cN:\"preprocessor\",b:\"\\\\[no_square_brackets\",starts:{e:\"\\\\[/no_square_brackets\\\\]\",l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[noprocess\\\\]|\"+a,rE:!0,c:[n]}},i,o].concat(c)}},{cN:\"preprocessor\",b:\"\\\\[\",r:0},{cN:\"shebang\",b:\"^#!.+lasso9\\\\b\",r:10}].concat(c)}});hljs.registerLanguage(\"gcode\",function(e){var N=\"[A-Z_][A-Z0-9_.]*\",i=\"\\\\%\",c={literal:\"\",built_in:\"\",keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},r={cN:\"preprocessor\",b:\"([O])([0-9]+)\"},l=[e.CLCM,e.CBCM,e.C(/\\(/,/\\)/),e.inherit(e.CNM,{b:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))|\"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"keyword\",b:\"([G])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"([M])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"(VC|VS|#)\",e:\"(\\\\d+)\"},{cN:\"title\",b:\"(VZOFX|VZOFY|VZOFZ)\"},{cN:\"built_in\",b:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",e:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))(\\\\])\"},{cN:\"label\",v:[{b:\"N\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"nc\"],cI:!0,l:N,k:c,c:[{cN:\"preprocessor\",b:i},r].concat(l)}});hljs.registerLanguage(\"scala\",function(e){var t={cN:\"annotation\",b:\"@[A-Za-z]+\"},r={cN:\"string\",b:'u?r?\"\"\"',e:'\"\"\"',r:10},a={cN:\"symbol\",b:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},c={cN:\"type\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},i={cN:\"title\",b:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,r:0},n={cN:\"class\",bK:\"class object trait type\",e:/[:={\\[(\\n;]/,c:[{cN:\"keyword\",bK:\"extends with\",r:10},i]},l={cN:\"function\",bK:\"def\",e:/[:={\\[(\\n;]/,c:[i]};return{k:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},c:[e.CLCM,e.CBCM,r,e.QSM,a,c,l,n,e.CNM,t]}});hljs.registerLanguage(\"armasm\",function(s){return{cI:!0,aliases:[\"arm\"],l:\"\\\\.?\"+s.IR,k:{literal:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 \",preprocessor:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND \",built_in:\"{PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @ \"},c:[{cN:\"keyword\",b:\"\\\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?\",e:\"\\\\s\"},s.C(\"[;@]\",\"$\",{r:0}),s.CBCM,s.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",r:0},{cN:\"title\",b:\"\\\\|\",e:\"\\\\|\",i:\"\\\\n\",r:0},{cN:\"number\",v:[{b:\"[#$=]?0x[0-9a-f]+\"},{b:\"[#$=]?0b[01]+\"},{b:\"[#$=]\\\\d+\"},{b:\"\\\\b\\\\d+\"}],r:0},{cN:\"label\",v:[{b:\"^[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+\"},{b:\"^\\\\s*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{b:\"[=#]\\\\w+\"}],r:0}]}});hljs.registerLanguage(\"avrasm\",function(r){return{cI:!0,l:\"\\\\.?\"+r.IR,k:{keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",preprocessor:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},c:[r.CBCM,r.C(\";\",\"$\",{r:0}),r.CNM,r.BNM,{cN:\"number\",b:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},r.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"},{cN:\"label\",b:\"^[A-Za-z0-9_.$]+:\"},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"localvars\",b:\"@[0-9]+\"}]}});hljs.registerLanguage(\"profile\",function(e){return{c:[e.CNM,{cN:\"built_in\",b:\"{\",e:\"}$\",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:\"filename\",b:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",e:\":\",eE:!0},{cN:\"header\",b:\"(ncalls|tottime|cumtime)\",e:\"$\",k:\"ncalls tottime|10 cumtime|10 filename\",r:10},{cN:\"summary\",b:\"function calls\",e:\"$\",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:\"function\",b:\"\\\\(\",e:\"\\\\)$\",c:[e.UTM],r:0}]}});hljs.registerLanguage(\"mercury\",function(e){var i={keyword:\"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure\",pragma:\"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses\",preprocessor:\"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing\",built_in:\"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure\"},r={cN:\"label\",b:\"XXX\",e:\"$\",eW:!0,r:0},t=e.inherit(e.CLCM,{b:\"%\"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:\"number\",b:\"0'.\\\\|0[box][0-9a-fA-F]*\"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:\"constant\",b:\"\\\\\\\\[abfnrtv]\\\\|\\\\\\\\x[0-9a-fA-F]*\\\\\\\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]\",r:0};o.c.push(l);var s={cN:\"built_in\",v:[{b:\"<=>\"},{b:\"<=\",r:0},{b:\"=>\",r:0},{b:\"/\\\\\\\\\"},{b:\"\\\\\\\\/\"}]},c={cN:\"built_in\",v:[{b:\":-\\\\|-->\"},{b:\"=\",r:0}]};return{aliases:[\"m\",\"moo\"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage(\"crmsh\",function(e){var t=\"primitive rsc_template\",r=\"group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml\",a=\"property rsc_defaults op_defaults\",s=\"params meta operations op rule attributes utilization\",i=\"read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\\\\",o=\"number string\",n=\"Master Started Slave Stopped start promote demote stop monitor true false\";return{aliases:[\"crm\",\"pcmk\"],cI:!0,k:{keyword:s,operator:i,type:o,literal:n},c:[e.HCM,{bK:\"node\",starts:{cN:\"identifier\",e:\"\\\\s*([\\\\w_-]+:)?\",starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\"}}},{bK:t,starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\",starts:{cN:\"pragma\",e:\"\\\\s*@?[\\\\w_][\\\\w_\\\\.:-]*\"}}},{b:\"\\\\b(\"+r.split(\" \").join(\"|\")+\")\\\\s+\",k:r,starts:{cN:\"title\",e:\"[\\\\$\\\\w_][\\\\w_-]*\"}},{bK:a,starts:{cN:\"title\",e:\"\\\\s*([\\\\w_-]+:)?\"}},e.QSM,{cN:\"pragma\",b:\"(ocf|systemd|service|lsb):[\\\\w_:-]+\",r:0},{cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(ms|s|h|m)?\",r:0},{cN:\"number\",b:\"[-]?(infinity|inf)\",r:0},{cN:\"variable\",b:/([A-Za-z\\$_\\#][\\w_-]+)=/,r:0},{cN:\"tag\",b:\"</?\",e:\"/?>\",r:0}]}});hljs.registerLanguage(\"erlang\",function(e){var r=\"[a-z'][a-zA-Z0-9_']*\",c=\"(\"+r+\":\"+r+\"|\"+r+\")\",a={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},n=e.C(\"%\",\"$\"),i={cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},b={b:\"fun\\\\s+\"+r+\"/\\\\d+\"},d={b:c+\"\\\\(\",e:\"\\\\)\",rB:!0,r:0,c:[{cN:\"function_name\",b:c,r:0},{b:\"\\\\(\",e:\"\\\\)\",eW:!0,rE:!0,r:0}]},o={cN:\"tuple\",b:\"{\",e:\"}\",r:0},t={cN:\"variable\",b:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",r:0},l={cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_]*\",r:0},f={b:\"#\"+e.UIR,r:0,rB:!0,c:[{cN:\"record_name\",b:\"#\"+e.UIR,r:0},{b:\"{\",e:\"}\",r:0}]},s={bK:\"fun receive if try case\",e:\"end\",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:\"\"}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:u};return{aliases:[\"erl\"],k:a,i:\"(</|\\\\*=|\\\\+=|-=|/\\\\*|\\\\*/|\\\\(\\\\*|\\\\*\\\\))\",c:[{cN:\"function\",b:\"^\"+r+\"\\\\s*\\\\(\",e:\"->\",rB:!0,i:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",c:[v,e.inherit(e.TM,{b:r})],starts:{e:\";|\\\\.\",k:a,c:u}},n,{cN:\"pp\",b:\"^-\",e:\"\\\\.\",r:0,eE:!0,rB:!0,l:\"-\"+e.IR,k:\"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec\",c:[v]},i,e.QSM,f,t,l,o,{b:/\\.$/}]}});hljs.registerLanguage(\"cpp\",function(t){var e={cN:\"keyword\",b:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},r={cN:\"string\",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?\"'}),{b:'(u8?|U)?R\"',e:'\"',c:[t.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},s={cN:\"number\",v:[{b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},{b:t.CNR}]},i={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[r,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},r,s,t.CLCM,t.CBCM]},a=t.IR+\"\\\\s*\\\\(\",c={keyword:\"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong\",built_in:\"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf\",literal:\"true false nullptr NULL\"};return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:c,i:\"</\",c:[e,t.CLCM,t.CBCM,s,r,i,{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:c,c:[\"self\",e]},{b:t.IR+\"::\",k:c},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t.IR+\"[\\\\*&\\\\s]+)+\"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\\w\\s\\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s]},t.CLCM,t.CBCM,i]}]}});hljs.registerLanguage(\"xquery\",function(e){var t=\"for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update\",a=\"false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute\",r={cN:\"variable\",b:/\\$[a-zA-Z0-9\\-]+/,r:5},s={cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},n={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},i={cN:\"decorator\",b:\"%\\\\w+\"},c={cN:\"comment\",b:\"\\\\(:\",e:\":\\\\)\",r:10,c:[{cN:\"doc\",b:\"@\\\\w+\"}]},o={b:\"{\",e:\"}\"},l=[r,n,s,c,i,o];return o.c=l,{aliases:[\"xpath\",\"xq\"],cI:!1,l:/[a-zA-Z\\$][a-zA-Z0-9_:\\-]*/,i:/(proc)|(abstract)|(extends)|(until)|(#)/,k:{keyword:t,literal:a},c:l}});hljs.registerLanguage(\"dockerfile\",function(e){return{aliases:[\"docker\"],cI:!0,k:{built_ins:\"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env label\"},c:[e.HCM,{k:{built_in:\"run cmd entrypoint volume add copy workdir onbuild label\"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir|label) +/,starts:{e:/[^\\\\]\\n/,sL:\"bash\"}},{k:{built_in:\"from maintainer expose env user onbuild\"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\\\]\\n/,c:[e.ASM,e.QSM,e.NM,e.HCM]}]}});hljs.registerLanguage(\"scss\",function(e){var t=\"[a-zA-Z-][a-zA-Z0-9_-]*\",i={cN:\"variable\",b:\"(\\\\$\"+t+\")\\\\b\"},r={cN:\"function\",b:t+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},o={cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"};({cN:\"attribute\",b:\"[A-Z\\\\_\\\\.\\\\-]+\",e:\":\",eE:!0,i:\"[^\\\\s]\",starts:{cN:\"value\",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"important\",b:\"!important\"}]}});return{cI:!0,i:\"[=/|']\",c:[e.CLCM,e.CBCM,r,{cN:\"id\",b:\"\\\\#[A-Za-z0-9_-]+\",r:0},{cN:\"class\",b:\"\\\\.[A-Za-z0-9_-]+\",r:0},{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\",i:\"$\"},{cN:\"tag\",b:\"\\\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\\\b\",r:0},{cN:\"pseudo\",b:\":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)\"},{cN:\"pseudo\",b:\"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)\"},i,{cN:\"attribute\",b:\"\\\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\\\b\",i:\"[^\\\\s]\"},{cN:\"value\",b:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{cN:\"value\",b:\":\",e:\";\",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:\"important\",b:\"!important\"}]},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",k:\"mixin include extend for if else each while charset import debug media page content font-face namespace warn\",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:\"preprocessor\",b:\"\\\\s[A-Za-z0-9_.-]+\",r:0}]}]}});hljs.registerLanguage(\"cmake\",function(e){return{aliases:[\"cmake.in\"],cI:!0,k:{keyword:\"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or\",operator:\"equal less greater strless strgreater strequal matches\"},c:[{cN:\"envvar\",b:\"\\\\${\",e:\"}\"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage(\"nix\",function(e){var t={keyword:\"rec with let in inherit assert if else then\",constant:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},i={cN:\"subst\",b:/\\$\\{/,e:/}/,k:t},r={cN:\"variable\",b:/[a-zA-Z0-9-_]+(\\s*=)/,r:0},n={cN:\"string\",b:\"''\",e:\"''\",c:[i]},s={cN:\"string\",b:'\"',e:'\"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:[\"nixos\"],k:t,c:a}});hljs.registerLanguage(\"mathematica\",function(e){return{aliases:[\"mma\"],l:\"(\\\\$|\\\\b)\"+e.IR+\"\\\\b\",k:\"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber\",\nc:[{cN:\"comment\",b:/\\(\\*/,e:/\\*\\)/},e.ASM,e.QSM,e.CNM,{cN:\"list\",b:/\\{/,e:/\\}/,i:/:/}]}});hljs.registerLanguage(\"julia\",function(r){var e={keyword:\"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while\",literal:\"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e|0 eu|0 eulergamma golden im nothing pi γ π φ\",built_in:\"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip\"},t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",o={l:t,k:e},n={cN:\"type-annotation\",b:/::/},a={cN:\"subtype\",b:/<:/},i={cN:\"number\",b:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,r:0},l={cN:\"char\",b:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},c={cN:\"subst\",b:/\\$\\(/,e:/\\)/,k:e},u={cN:\"variable\",b:\"\\\\$\"+t},d={cN:\"string\",c:[r.BE,c,u],v:[{b:/\\w*\"/,e:/\"\\w*/},{b:/\\w*\"\"\"/,e:/\"\"\"\\w*/}]},g={cN:\"string\",c:[r.BE,c,u],b:\"`\",e:\"`\"},s={cN:\"macrocall\",b:\"@\"+t},S={cN:\"comment\",v:[{b:\"#=\",e:\"=#\",r:10},{b:\"#\",e:\"$\"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage(\"rib\",function(e){return{k:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",i:\"</\",c:[e.HCM,e.CNM,e.ASM,e.QSM]}});hljs.registerLanguage(\"vim\",function(e){return{l:/[!#@\\w]+/,k:{keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor\"},i:/[{:]/,c:[e.NM,e.ASM,{cN:\"string\",b:/\"((\\\\\")|[^\"\\n])*(\"|\\n)/},{cN:\"variable\",b:/[bwtglsav]:[\\w\\d_]*/},{cN:\"function\",bK:\"function function!\",e:\"$\",r:0,c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]}]}});hljs.registerLanguage(\"prolog\",function(c){var r={cN:\"atom\",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:\"name\",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\\(/,e:/\\)/,r:0},e={b:/\\[/,e:/\\]/},n={cN:\"comment\",b:/%/,e:/$/,c:[c.PWM]},t={cN:\"string\",b:/`/,e:/`/,c:[c.BE]},g={cN:\"string\",b:/0\\'(\\\\\\'|.)/},N={cN:\"string\",b:/0\\'\\\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\\.$/}])}});hljs.registerLanguage(\"parser3\",function(r){var e=r.C(\"{\",\"}\",{c:[\"self\"]});return{sL:\"xml\",r:0,c:[r.C(\"^#\",\"$\"),r.C(\"\\\\^rem{\",\"}\",{r:10,c:[e]}),{cN:\"preprocessor\",b:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",r:10},{cN:\"title\",b:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{cN:\"variable\",b:\"\\\\$\\\\{?[\\\\w\\\\-\\\\.\\\\:]+\\\\}?\"},{cN:\"keyword\",b:\"\\\\^[\\\\w\\\\-\\\\.\\\\:]+\"},{cN:\"number\",b:\"\\\\^#[0-9a-fA-F]+\"},r.CNM]}});hljs.registerLanguage(\"openscad\",function(e){var r={cN:\"keyword\",b:\"\\\\$(f[asn]|t|vp[rtd]|children)\"},n={cN:\"literal\",b:\"false|true|PI|undef\"},i={cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(e-?\\\\d+)?\",r:0},o=e.inherit(e.QSM,{i:null}),s={cN:\"preprocessor\",k:\"include use\",b:\"include|use <\",e:\">\"},t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,o,r,n]},c={cN:\"built_in\",b:\"[*!#%]\",r:0},l={cN:\"function\",bK:\"module function\",e:\"\\\\=|\\\\{\",c:[t,e.UTM]};return{aliases:[\"scad\"],k:{keyword:\"function module include use for intersection_for if else \\\\%\",literal:\"false true PI undef\",built_in:\"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign\"},c:[e.CLCM,e.CBCM,i,s,o,r,c,l]}});hljs.registerLanguage(\"ceylon\",function(e){var a=\"assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty\",t=\"shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small\",s=\"doc by license see throws tagged\",n=t+\" \"+s,i={cN:\"subst\",eB:!0,eE:!0,b:/``/,e:/``/,k:a,r:10},r=[{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:10},{cN:\"string\",b:'\"',e:'\"',c:[i]},{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"number\",b:\"#[0-9a-fA-F_]+|\\\\$[01_]+|[0-9_]+(?:\\\\.[0-9_](?:[eE][+-]?\\\\d+)?)?[kMGTPmunpf]?\",r:0}];return i.c=r,{k:{keyword:a,annotation:n},i:\"\\\\$[^01]|#[^0-9a-fA-F]\",c:[e.CLCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),{cN:\"annotation\",b:'@[a-z]\\\\w*(?:\\\\:\"[^\"]*\")?'}].concat(r)}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{built_in:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{cN:\"url\",b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"title\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"sml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"gherkin\",function(e){return{aliases:[\"feature\"],k:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",c:[{cN:\"keyword\",b:\"\\\\*\"},e.C(\"@[^@\\r\\n\t ]+\",\"$\"),{b:\"\\\\|\",e:\"\\\\|\\\\w*$\",c:[{cN:\"string\",b:\"[^|]+\"}]},{cN:\"variable\",b:\"<\",e:\">\"},e.HCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.QSM]}});hljs.registerLanguage(\"vbnet\",function(e){return{aliases:[\"vb\"],cI:!0,k:{keyword:\"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor\",built_in:\"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort\",literal:\"true false nothing\"},i:\"//|{|}|endif|gosub|variant|wend\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(\"'\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",b:\"'''|<!--|-->\",c:[e.PWM]},{cN:\"xmlDocTag\",b:\"</?\",e:\">\",c:[e.PWM]}]}),e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end region externalsource\"}]}});hljs.registerLanguage(\"pf\",function(t){var o={cN:\"variable\",b:/\\$[\\w\\d#@][\\w\\d_]*/},e={cN:\"variable\",b:/</,e:/>/};return{aliases:[\"pf.conf\"],l:/[a-z0-9_<>-]+/,k:{built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage(\"r\",function(e){var r=\"([a-zA-Z]|\\\\.[a-zA-Z.])[a-zA-Z0-9._]*\";return{c:[e.HCM,{b:r,l:r,k:{keyword:\"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...\",literal:\"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{b:\"`\",e:\"`\",r:0},{cN:\"string\",c:[e.BE],v:[{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]}]}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>{}*]/,c:[{cN:\"operator\",bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke\",e:/;/,eW:!0,k:{keyword:\"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes c cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle d data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration e each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract f failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function g general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http i id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists k keep keep_duplicates key keys kill l language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim m main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex n name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding p package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime t table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"kotlin\",function(e){var r=\"val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native\";return{k:{typename:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\",keyword:r},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"type\",b:/</,e:/>/,rB:!0,eE:!1,r:0},{cN:\"function\",bK:\"fun\",e:\"[(]|$\",rB:!0,eE:!0,k:r,i:/fun\\s+(<.*>)?[^\\s\\(]+(\\s+[^\\s\\(]+)\\s*=/,r:5,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"type\",b:/</,e:/>/,k:\"reified\",r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:r,r:0,i:/\\([^\\(,\\s:]+,/,c:[{cN:\"typename\",b:/:\\s*/,e:/\\s*[=\\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:\"class\",bK:\"class trait\",e:/[:\\{(]|$/,eE:!0,i:\"extends implements\",c:[e.UTM,{cN:\"type\",b:/</,e:/>/,eB:!0,eE:!0,r:0},{cN:\"typename\",b:/[,:]\\s*/,e:/[<\\(,]|$/,eB:!0,rE:!0}]},{cN:\"variable\",bK:\"var val\",e:/\\s*[=:$]/,eE:!0},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.CNM]}});hljs.registerLanguage(\"clojure-repl\",function(r){return{c:[{cN:\"prompt\",b:/^([\\w.-]+|\\s*#_)=>/,starts:{e:/$/,sL:\"clojure\"}}]}});hljs.registerLanguage(\"twig\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},a=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",r={cN:\"function\",bK:a,r:0,c:[t]},c={cN:\"filter\",b:/\\|[A-Za-z_]+:?/,k:\"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode\",c:[r]},n=\"autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim\";return n=n+\" \"+n.split(\" \").map(function(e){return\"end\"+e}).join(\" \"),{aliases:[\"craftcms\"],cI:!0,sL:\"xml\",c:[e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:n,c:[c,r]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage(\"vbscript\",function(e){return{aliases:[\"vbs\"],cI:!0,k:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err\",literal:\"true false null nothing empty\"},i:\"//\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",a={cN:\"function\",b:c+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},r={cN:\"rule\",b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{cN:\"value\",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"},{cN:\"important\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|'\\$]/,c:[e.CBCM,{cN:\"id\",b:/\\#[A-Za-z0-9_-]+/},{cN:\"class\",b:/\\.[A-Za-z0-9_-]+/},{cN:\"attr_selector\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"']+/},{cN:\"at_rule\",b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",c:[{cN:\"keyword\",b:/\\S+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:\"tag\",b:c,r:0},{cN:\"rules\",b:\"{\",e:\"}\",i:/\\S/,c:[e.CBCM,r]}]}});hljs.registerLanguage(\"mel\",function(e){return{k:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",i:\"</\",c:[e.CNM,e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},{cN:\"variable\",v:[{b:\"\\\\$\\\\d\"},{b:\"[\\\\$\\\\%\\\\@](\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\"},{b:\"\\\\*(\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\",r:0}]},e.CLCM,e.CBCM]}});hljs.registerLanguage(\"monkey\",function(e){var n={cN:\"number\",r:0,v:[{b:\"[$][a-fA-F0-9]+\"},e.NM]};return{cI:!0,k:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},i:/\\/\\*/,c:[e.C(\"#rem\",\"#end\"),e.C(\"'\",\"$\",{r:0}),{cN:\"function\",bK:\"function method\",e:\"[(=:]|$\",i:/\\n/,c:[e.UTM]},{cN:\"class\",bK:\"class interface\",e:\"$\",c:[{bK:\"extends implements\"},e.UTM]},{cN:\"variable\",b:\"\\\\b(self|super)\\\\b\"},{cN:\"preprocessor\",bK:\"import\",e:\"$\"},{cN:\"preprocessor\",b:\"\\\\s*#\",e:\"$\",k:\"if else elseif endif end then\"},{cN:\"pi\",b:\"^\\\\s*strict\\\\b\"},{bK:\"alias\",e:\"=\",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage(\"smali\",function(r){var t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"],n=[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"],s=[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"];return{aliases:[\"smali\"],c:[{cN:\"string\",b:'\"',e:'\"',r:0},r.C(\"#\",\"$\",{r:0}),{cN:\"keyword\",b:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\",r:1},{cN:\"keyword\",b:\"^[ ]*\\\\.[a-zA-Z]*\",r:0},{cN:\"keyword\",b:\"\\\\s:[a-zA-Z_0-9]*\",r:0},{cN:\"keyword\",b:\"\\\\s(\"+s.join(\"|\")+\")\",r:1},{cN:\"keyword\",b:\"\\\\[\",r:0},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\",r:1},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)+\\\\s\",r:10},{cN:\"instruction\",b:\"\\\\s(\"+n.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)*\\\\s\",r:10},{cN:\"class\",b:\"L[^(;:\\n]*;\",r:0},{cN:\"function\",b:'( |->)[^(\\n ;\"]*\\\\(',r:0},{cN:\"function\",b:\"\\\\)\",r:0},{cN:\"variable\",b:\"[vp][0-9]+\",r:0}]}});hljs.registerLanguage(\"livecodeserver\",function(e){var r={cN:\"variable\",b:\"\\\\b[gtps][A-Z]+[A-Za-z0-9_\\\\-]*\\\\b|\\\\$_[A-Z]+\",r:0},t=[e.CBCM,e.HCM,e.C(\"--\",\"$\"),e.C(\"[^:]//\",\"$\")],a=e.inherit(e.TM,{v:[{b:\"\\\\b_*rig[A-Z]+[A-Za-z0-9_\\\\-]*\"},{b:\"\\\\b_[a-z0-9\\\\-]+\"}]}),o=e.inherit(e.TM,{b:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{cI:!1,k:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if\",constant:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",operator:\"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write\"},c:[r,{cN:\"keyword\",b:\"\\\\bend\\\\sif\\\\b\"},{cN:\"function\",bK:\"function\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"function\",b:\"\\\\bend\\\\s+\",e:\"$\",k:\"end\",c:[o,a]},{cN:\"command\",bK:\"command on\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"preprocessor\",v:[{b:\"<\\\\?(rev|lc|livecode)\",r:10},{b:\"<\\\\?\"},{b:\"\\\\?>\"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:\";$|^\\\\[|^=\"}});hljs.registerLanguage(\"smalltalk\",function(a){var r=\"[a-z][a-zA-Z0-9_]*\",s={cN:\"char\",b:\"\\\\$.{1}\"},c={cN:\"symbol\",b:\"#\"+a.UIR};return{aliases:[\"st\"],k:\"self super nil true false thisContext\",c:[a.C('\"','\"'),a.ASM,{cN:\"class\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},{cN:\"method\",b:r+\":\",r:0},a.CNM,c,s,{cN:\"localvars\",b:\"\\\\|[ ]*\"+r+\"([ ]+\"+r+\")*[ ]*\\\\|\",rB:!0,e:/\\|/,i:/\\S/,c:[{b:\"(\\\\|[ ]*)?\"+r}]},{cN:\"array\",b:\"\\\\#\\\\(\",e:\"\\\\)\",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage(\"rust\",function(e){var t=\"([uif](8|16|32|64|size))?\",r=e.inherit(e.CBCM);return r.c.push(\"self\"),{aliases:[\"rs\"],k:{keyword:\"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool\",built_in:\"Copy Send Sized Sync Drop Fn FnMut FnOnce drop Box ToOwned Clone PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator Option Some None Result Ok Err SliceConcatExt String ToString Vec assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!\"},l:e.IR+\"!?\",i:\"</\",c:[e.CLCM,r,e.inherit(e.QSM,{i:null}),{cN:\"string\",v:[{b:/r(#*)\".*?\"\\1(?!#)/},{b:/'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/}]},{cN:\"number\",v:[{b:\"\\\\b0b([01_]+)\"+t},{b:\"\\\\b0o([0-7_]+)\"+t},{b:\"\\\\b0x([A-Fa-f0-9_]+)\"+t},{b:\"\\\\b(\\\\d[\\\\d_]*(\\\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)\"+t}],r:0},{cN:\"function\",bK:\"fn\",e:\"(\\\\(|<)\",eE:!0,c:[e.UTM]},{cN:\"preprocessor\",b:\"#\\\\!?\\\\[\",e:\"\\\\]\"},{bK:\"type\",e:\"(=|<)\",c:[e.UTM],i:\"\\\\S\"},{bK:\"trait enum\",e:\"{\",c:[e.inherit(e.UTM,{endsParent:!0})],i:\"[\\\\w\\\\d]\"},{b:e.IR+\"::\"},{b:\"->\"}]}});hljs.registerLanguage(\"fix\",function(u){return{c:[{b:/[^\\u2401\\u0001]+/,e:/[\\u2401\\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\\u2401\\u0001=]+)/,e:/=([^\\u2401\\u0001=]+)/,rE:!0,rB:!1,cN:\"attribute\"},{b:/=/,e:/([\\u2401\\u0001])/,eE:!0,eB:!0,cN:\"string\"}]}],cI:!0}});hljs.registerLanguage(\"gradle\",function(e){return{cI:!0,k:{keyword:\"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage(\"xl\",function(e){var t=\"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\",o={keyword:\"if then else do while until for loop import with is as where when by data constant\",literal:\"true false nil\",type:\"integer real text name boolean symbol infix prefix postfix block tree\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at\",module:t,id:\"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons\"},a={cN:\"constant\",b:\"[A-Z][A-Z_0-9]+\",r:0},r={cN:\"variable\",b:\"([A-Z][a-z_0-9]+)+\",r:0},i={cN:\"id\",b:\"[a-z][a-z_0-9]+\",r:0},l={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"},n={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\"},s={cN:\"string\",b:\"<<\",e:\">>\"},c={cN:\"number\",b:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\",r:10},_={cN:\"import\",bK:\"import\",e:\"$\",k:{keyword:\"import\",module:t},r:0,c:[l]},d={cN:\"function\",b:\"[a-z].*->\"};return{aliases:[\"tao\"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage(\"ocaml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\",r:0},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"scheme\",function(e){var t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",r=\"(\\\\-|\\\\+)?\\\\d+([./]\\\\d+)?\",i=r+\"[+\\\\-]\"+r+\"i\",a={built_in:\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},n={cN:\"shebang\",b:\"^#!\",e:\"$\"},c={cN:\"literal\",b:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},l={cN:\"number\",v:[{b:r,r:0},{b:i,r:0},{b:\"#b[0-1]+(/[0-1]+)?\"},{b:\"#o[0-7]+(/[0-7]+)?\"},{b:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QSM,o=[e.C(\";\",\"$\",{r:0}),e.C(\"#\\\\|\",\"\\\\|#\")],u={b:t,r:0},p={cN:\"variable\",b:\"'\"+t},d={eW:!0,r:0},g={cN:\"list\",v:[{b:\"\\\\(\",e:\"\\\\)\"},{b:\"\\\\[\",e:\"\\\\]\"}],c:[{cN:\"keyword\",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage(\"http\",function(t){return{aliases:[\"https\"],i:\"\\\\S\",c:[{cN:\"status\",b:\"^HTTP/[0-9\\\\.]+\",e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{cN:\"request\",b:\"^[A-Z]+ (.*?) HTTP/[0-9\\\\.]+$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{cN:\"string\",e:\"$\"}},{b:\"\\\\n\\\\n\",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage(\"verilog\",function(e){return{aliases:[\"v\"],cI:!0,k:{keyword:\"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor\",typename:\"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor\"},c:[e.CBCM,e.CLCM,e.QSM,{cN:\"number\",b:\"\\\\b(\\\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+\",c:[e.BE],r:0},{cN:\"typename\",b:\"\\\\.\\\\w+\",r:0},{cN:\"value\",b:\"#\\\\((?!parameter).+\\\\)\"},{cN:\"keyword\",b:\"\\\\+|-|\\\\*|/|%|<|>|=|#|`|\\\\!|&|\\\\||@|:|\\\\^|~|\\\\{|\\\\}\",r:0}]}});hljs.registerLanguage(\"actionscript\",function(e){var a=\"[a-zA-Z_$][a-zA-Z0-9_$]*\",c=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\",t={cN:\"rest_arg\",b:\"[.]{3}\",e:a,r:10};return{aliases:[\"as\"],k:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"package\",bK:\"package\",e:\"{\",c:[e.TM]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",bK:\"import include\",e:\";\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:\"type\",b:\":\",e:c,r:10}]}],i:/#/}});hljs.registerLanguage(\"zephir\",function(e){var i={cN:\"string\",c:[e.BE],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:[\"zep\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[e.BE]},{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CBCM,i,n]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,n]}});hljs.registerLanguage(\"json\",function(e){var t={literal:\"true false null\"},i=[e.QSM,e.CNM],l={cN:\"value\",e:\",\",eW:!0,eE:!0,c:i,k:t},c={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:!0,eE:!0,c:[e.BE],i:\"\\\\n\",starts:l}],i:\"\\\\S\"},n={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(l,{cN:null})],i:\"\\\\S\"};return i.splice(i.length,0,c,n),{c:i,k:t,i:\"\\\\S\"}});hljs.registerLanguage(\"q\",function(e){var s={keyword:\"do while select delete by update from\",constant:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",typename:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"};return{aliases:[\"k\",\"kdb\"],k:s,l:/\\b(`?)[A-Za-z0-9_]+\\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage(\"processing\",function(e){return{k:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",constant:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",variable:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width\",title:\"setup draw\",built_in:\"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage(\"d\",function(e){var r={keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},t=\"(0|[1-9][\\\\d_]*)\",a=\"(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)\",i=\"0[bB][01_]+\",n=\"([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\",c=\"0[xX]\"+n,_=\"([eE][+-]?\"+a+\")\",d=\"(\"+a+\"(\\\\.\\\\d*|\"+_+\")|\\\\d+\\\\.\"+a+a+\"|\\\\.\"+t+_+\"?)\",o=\"(0[xX](\"+n+\"\\\\.\"+n+\"|\\\\.?\"+n+\")[pP][+-]?\"+a+\")\",s=\"(\"+t+\"|\"+i+\"|\"+c+\")\",l=\"(\"+o+\"|\"+d+\")\",u=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",b={cN:\"number\",b:\"\\\\b\"+s+\"(L|u|U|Lu|LU|uL|UL)?\",r:0},f={cN:\"number\",b:\"\\\\b(\"+l+\"([fF]|L|i|[fF]i|Li)?|\"+s+\"(i|[fF]i|Li))\",r:0},g={cN:\"string\",b:\"'(\"+u+\"|.)\",e:\"'\",i:\".\"},h={b:u,r:0},p={cN:\"string\",b:'\"',c:[h],e:'\"[cwd]?'},w={cN:\"string\",b:'[rq]\"',e:'\"[cwd]?',r:5},N={cN:\"string\",b:\"`\",e:\"`[cwd]?\"},A={cN:\"string\",b:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',r:10},F={cN:\"string\",b:'q\"\\\\{',e:'\\\\}\"'},m={cN:\"shebang\",b:\"^#!\",e:\"$\",r:5},y={cN:\"preprocessor\",b:\"#(line)\",e:\"$\",r:5},L={cN:\"keyword\",b:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"},v=e.C(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{c:[\"self\"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage(\"asciidoc\",function(e){return{aliases:[\"adoc\"],c:[e.C(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{r:10}),e.C(\"^//\",\"$\",{r:0}),{cN:\"title\",b:\"^\\\\.\\\\w.*$\"},{b:\"^[=\\\\*]{4,}\\\\n\",e:\"\\\\n^[=\\\\*]{4,}$\",r:10},{cN:\"header\",b:\"^(={1,5}) .+?( \\\\1)?$\",r:10},{cN:\"header\",b:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\",r:10},{cN:\"attribute\",b:\"^:.+?:\",e:\"\\\\s\",eE:!0,r:10},{cN:\"attribute\",b:\"^\\\\[.+?\\\\]$\",r:0},{cN:\"blockquote\",b:\"^_{4,}\\\\n\",e:\"\\\\n_{4,}$\",r:10},{cN:\"code\",b:\"^[\\\\-\\\\.]{4,}\\\\n\",e:\"\\\\n[\\\\-\\\\.]{4,}$\",r:10},{b:\"^\\\\+{4,}\\\\n\",e:\"\\\\n\\\\+{4,}$\",c:[{b:\"<\",e:\">\",sL:\"xml\",r:0}],r:10},{cN:\"bullet\",b:\"^(\\\\*+|\\\\-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"},{cN:\"label\",b:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",r:10},{cN:\"strong\",b:\"\\\\B\\\\*(?![\\\\*\\\\s])\",e:\"(\\\\n{2}|\\\\*)\",c:[{b:\"\\\\\\\\*\\\\w\",r:0}]},{cN:\"emphasis\",b:\"\\\\B'(?!['\\\\s])\",e:\"(\\\\n{2}|')\",c:[{b:\"\\\\\\\\'\\\\w\",r:0}],r:0},{cN:\"emphasis\",b:\"_(?![_\\\\s])\",e:\"(\\\\n{2}|_)\",r:0},{cN:\"smartquote\",v:[{b:\"``.+?''\"},{b:\"`.+?'\"}]},{cN:\"code\",b:\"(`.+?`|\\\\+.+?\\\\+)\",r:0},{cN:\"code\",b:\"^[ \\\\t]\",e:\"$\",r:0},{cN:\"horizontal_rule\",b:\"^'{3,}[ \\\\t]*$\",r:10},{b:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+\\\\[.*?\\\\]\",rB:!0,c:[{b:\"(link|image:?):\",r:0},{cN:\"link_url\",b:\"\\\\w\",e:\"[^\\\\[]+\",r:0},{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage(\"rsl\",function(e){return{k:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"shader\",bK:\"surface displacement light volume imager\",e:\"\\\\(\"},{cN:\"shading\",bK:\"illuminate illuminance gather\",e:\"\\\\(\"}]}});hljs.registerLanguage(\"fsharp\",function(e){var t={b:\"<\",e:\">\",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:[\"fs\"],k:\"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",i:/\\/\\*/,c:[{cN:\"keyword\",b:/\\b(yield|return|let|do)!/},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),{cN:\"class\",bK:\"type\",e:\"\\\\(|=|$\",eE:!0,c:[e.UTM,t]},{cN:\"annotation\",b:\"\\\\[<\",e:\">\\\\]\",r:10},{cN:\"attribute\",b:\"\\\\B('[A-Za-z])\\\\b\",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});"
  },
  {
    "path": "doc/cppnow-2017/plugin/markdown/example.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Markdown Demo</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\n        <link rel=\"stylesheet\" href=\"../../lib/css/zenburn.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n                <!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->\n                <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section>\n\n                <!-- Slides are separated by three dashes (quick 'n dirty regular expression) -->\n                <section data-markdown data-separator=\"---\">\n                    <script type=\"text/template\">\n                        ## Demo 1\n                        Slide 1\n                        ---\n                        ## Demo 1\n                        Slide 2\n                        ---\n                        ## Demo 1\n                        Slide 3\n                    </script>\n                </section>\n\n                <!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n                <section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n                    <script type=\"text/template\">\n                        ## Demo 2\n                        Slide 1.1\n\n                        --\n\n                        ## Demo 2\n                        Slide 1.2\n\n                        ---\n\n                        ## Demo 2\n                        Slide 2\n                    </script>\n                </section>\n\n                <!-- No \"extra\" slides, since there are no separators defined (so they'll become horizontal rulers) -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        A\n\n                        ---\n\n                        B\n\n                        ---\n\n                        C\n                    </script>\n                </section>\n\n                <!-- Slide attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        <!-- .slide: data-background=\"#000000\" -->\n                        ## Slide attributes\n                    </script>\n                </section>\n\n                <!-- Element attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ## Element attributes\n                        - Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n                        - Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n                    </script>\n                </section>\n\n                <!-- Code -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ```php\n                        public function foo()\n                        {\n                            $foo = array(\n                                'bar' => 'bar'\n                            )\n                        }\n                        ```\n                    </script>\n                </section>\n\n            </div>\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcontrols: true,\n\t\t\t\tprogress: true,\n\t\t\t\thistory: true,\n\t\t\t\tcenter: true,\n\n\t\t\t\t// Optional libraries used to extend on reveal.js\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: '../highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: '../notes/notes.js' }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/markdown/example.md",
    "content": "# Markdown Demo\n\n\n\n## External 1.1\n\nContent 1.1\n\nNote: This will only appear in the speaker notes window.\n\n\n## External 1.2\n\nContent 1.2\n\n\n\n## External 2\n\nContent 2.1\n\n\n\n## External 3.1\n\nContent 3.1\n\n\n## External 3.2\n\nContent 3.2\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/markdown/markdown.js",
    "content": "/**\n * The reveal.js markdown plugin. Handles parsing of\n * markdown inside of presentations as well as loading\n * of external markdown documents.\n */\n(function( root, factory ) {\n\tif( typeof exports === 'object' ) {\n\t\tmodule.exports = factory( require( './marked' ) );\n\t}\n\telse {\n\t\t// Browser globals (root is window)\n\t\troot.RevealMarkdown = factory( root.marked );\n\t\troot.RevealMarkdown.initialize();\n\t}\n}( this, function( marked ) {\n\n\tif( typeof marked === 'undefined' ) {\n\t\tthrow 'The reveal.js Markdown plugin requires marked to be loaded';\n\t}\n\n\tif( typeof hljs !== 'undefined' ) {\n\t\tmarked.setOptions({\n\t\t\thighlight: function( lang, code ) {\n\t\t\t\treturn hljs.highlightAuto( lang, code ).value;\n\t\t\t}\n\t\t});\n\t}\n\n\tvar DEFAULT_SLIDE_SEPARATOR = '^\\r?\\n---\\r?\\n$',\n\t\tDEFAULT_NOTES_SEPARATOR = 'note:',\n\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR = '\\\\\\.element\\\\\\s*?(.+?)$',\n\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR = '\\\\\\.slide:\\\\\\s*?(\\\\\\S.+?)$';\n\n\tvar SCRIPT_END_PLACEHOLDER = '__SCRIPT_END__';\n\n\n\t/**\n\t * Retrieves the markdown contents of a slide section\n\t * element. Normalizes leading tabs/whitespace.\n\t */\n\tfunction getMarkdownFromSlide( section ) {\n\n\t\tvar template = section.querySelector( 'script' );\n\n\t\t// strip leading whitespace so it isn't evaluated as code\n\t\tvar text = ( template || section ).textContent;\n\n\t\t// restore script end tags\n\t\ttext = text.replace( new RegExp( SCRIPT_END_PLACEHOLDER, 'g' ), '</script>' );\n\n\t\tvar leadingWs = text.match( /^\\n?(\\s*)/ )[1].length,\n\t\t\tleadingTabs = text.match( /^\\n?(\\t*)/ )[1].length;\n\n\t\tif( leadingTabs > 0 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n?\\\\t{' + leadingTabs + '}','g'), '\\n' );\n\t\t}\n\t\telse if( leadingWs > 1 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n? {' + leadingWs + '}', 'g'), '\\n' );\n\t\t}\n\n\t\treturn text;\n\n\t}\n\n\t/**\n\t * Given a markdown slide section element, this will\n\t * return all arguments that aren't related to markdown\n\t * parsing. Used to forward any other user-defined arguments\n\t * to the output markdown slide.\n\t */\n\tfunction getForwardedAttributes( section ) {\n\n\t\tvar attributes = section.attributes;\n\t\tvar result = [];\n\n\t\tfor( var i = 0, len = attributes.length; i < len; i++ ) {\n\t\t\tvar name = attributes[i].name,\n\t\t\t\tvalue = attributes[i].value;\n\n\t\t\t// disregard attributes that are used for markdown loading/parsing\n\t\t\tif( /data\\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue;\n\n\t\t\tif( value ) {\n\t\t\t\tresult.push( name + '=\"' + value + '\"' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tresult.push( name );\n\t\t\t}\n\t\t}\n\n\t\treturn result.join( ' ' );\n\n\t}\n\n\t/**\n\t * Inspects the given options and fills out default\n\t * values for what's not defined.\n\t */\n\tfunction getSlidifyOptions( options ) {\n\n\t\toptions = options || {};\n\t\toptions.separator = options.separator || DEFAULT_SLIDE_SEPARATOR;\n\t\toptions.notesSeparator = options.notesSeparator || DEFAULT_NOTES_SEPARATOR;\n\t\toptions.attributes = options.attributes || '';\n\n\t\treturn options;\n\n\t}\n\n\t/**\n\t * Helper function for constructing a markdown slide.\n\t */\n\tfunction createMarkdownSlide( content, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar notesMatch = content.split( new RegExp( options.notesSeparator, 'mgi' ) );\n\n\t\tif( notesMatch.length === 2 ) {\n\t\t\tcontent = notesMatch[0] + '<aside class=\"notes\" data-markdown>' + notesMatch[1].trim() + '</aside>';\n\t\t}\n\n\t\t// prevent script end tags in the content from interfering\n\t\t// with parsing\n\t\tcontent = content.replace( /<\\/script>/g, SCRIPT_END_PLACEHOLDER );\n\n\t\treturn '<script type=\"text/template\">' + content + '</script>';\n\n\t}\n\n\t/**\n\t * Parses a data string into multiple slides based\n\t * on the passed in separator arguments.\n\t */\n\tfunction slidify( markdown, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ),\n\t\t\thorizontalSeparatorRegex = new RegExp( options.separator );\n\n\t\tvar matches,\n\t\t\tlastIndex = 0,\n\t\t\tisHorizontal,\n\t\t\twasHorizontal = true,\n\t\t\tcontent,\n\t\t\tsectionStack = [];\n\n\t\t// iterate until all blocks between separators are stacked up\n\t\twhile( matches = separatorRegex.exec( markdown ) ) {\n\t\t\tnotes = null;\n\n\t\t\t// determine direction (horizontal by default)\n\t\t\tisHorizontal = horizontalSeparatorRegex.test( matches[0] );\n\n\t\t\tif( !isHorizontal && wasHorizontal ) {\n\t\t\t\t// create vertical stack\n\t\t\t\tsectionStack.push( [] );\n\t\t\t}\n\n\t\t\t// pluck slide content from markdown input\n\t\t\tcontent = markdown.substring( lastIndex, matches.index );\n\n\t\t\tif( isHorizontal && wasHorizontal ) {\n\t\t\t\t// add to horizontal stack\n\t\t\t\tsectionStack.push( content );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// add to vertical stack\n\t\t\t\tsectionStack[sectionStack.length-1].push( content );\n\t\t\t}\n\n\t\t\tlastIndex = separatorRegex.lastIndex;\n\t\t\twasHorizontal = isHorizontal;\n\t\t}\n\n\t\t// add the remaining slide\n\t\t( wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1] ).push( markdown.substring( lastIndex ) );\n\n\t\tvar markdownSections = '';\n\n\t\t// flatten the hierarchical stack, and insert <section data-markdown> tags\n\t\tfor( var i = 0, len = sectionStack.length; i < len; i++ ) {\n\t\t\t// vertical\n\t\t\tif( sectionStack[i] instanceof Array ) {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +'>';\n\n\t\t\t\tsectionStack[i].forEach( function( child ) {\n\t\t\t\t\tmarkdownSections += '<section data-markdown>' +  createMarkdownSlide( child, options ) + '</section>';\n\t\t\t\t} );\n\n\t\t\t\tmarkdownSections += '</section>';\n\t\t\t}\n\t\t\telse {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +' data-markdown>' + createMarkdownSlide( sectionStack[i], options ) + '</section>';\n\t\t\t}\n\t\t}\n\n\t\treturn markdownSections;\n\n\t}\n\n\t/**\n\t * Parses any current data-markdown slides, splits\n\t * multi-slide markdown into separate sections and\n\t * handles loading of external markdown.\n\t */\n\tfunction processSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]'),\n\t\t\tsection;\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tsection = sections[i];\n\n\t\t\tif( section.getAttribute( 'data-markdown' ).length ) {\n\n\t\t\t\tvar xhr = new XMLHttpRequest(),\n\t\t\t\t\turl = section.getAttribute( 'data-markdown' );\n\n\t\t\t\tdatacharset = section.getAttribute( 'data-charset' );\n\n\t\t\t\t// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes\n\t\t\t\tif( datacharset != null && datacharset != '' ) {\n\t\t\t\t\txhr.overrideMimeType( 'text/html; charset=' + datacharset );\n\t\t\t\t}\n\n\t\t\t\txhr.onreadystatechange = function() {\n\t\t\t\t\tif( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// file protocol yields status code 0 (useful for local debug, mobile applications etc.)\n\t\t\t\t\t\tif ( ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status === 0 ) {\n\n\t\t\t\t\t\t\tsection.outerHTML = slidify( xhr.responseText, {\n\t\t\t\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\tsection.outerHTML = '<section data-state=\"alert\">' +\n\t\t\t\t\t\t\t\t'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' +\n\t\t\t\t\t\t\t\t'Check your browser\\'s JavaScript console for more details.' +\n\t\t\t\t\t\t\t\t'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' +\n\t\t\t\t\t\t\t\t'</section>';\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\txhr.open( 'GET', url, false );\n\n\t\t\t\ttry {\n\t\t\t\t\txhr.send();\n\t\t\t\t}\n\t\t\t\tcatch ( e ) {\n\t\t\t\t\talert( 'Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e );\n\t\t\t\t}\n\n\t\t\t}\n\t\t\telse if( section.getAttribute( 'data-separator' ) || section.getAttribute( 'data-separator-vertical' ) || section.getAttribute( 'data-separator-notes' ) ) {\n\n\t\t\t\tsection.outerHTML = slidify( getMarkdownFromSlide( section ), {\n\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t});\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\tsection.innerHTML = createMarkdownSlide( getMarkdownFromSlide( section ) );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Check if a node value has the attributes pattern.\n\t * If yes, extract it and add that value as one or several attributes\n\t * the the terget element.\n\t *\n\t * You need Cache Killer on Chrome to see the effect on any FOM transformation\n\t * directly on refresh (F5)\n\t * http://stackoverflow.com/questions/5690269/disabling-chrome-cache-for-website-development/7000899#answer-11786277\n\t */\n\tfunction addAttributeInElement( node, elementTarget, separator ) {\n\n\t\tvar mardownClassesInElementsRegex = new RegExp( separator, 'mg' );\n\t\tvar mardownClassRegex = new RegExp( \"([^\\\"= ]+?)=\\\"([^\\\"=]+?)\\\"\", 'mg' );\n\t\tvar nodeValue = node.nodeValue;\n\t\tif( matches = mardownClassesInElementsRegex.exec( nodeValue ) ) {\n\n\t\t\tvar classes = matches[1];\n\t\t\tnodeValue = nodeValue.substring( 0, matches.index ) + nodeValue.substring( mardownClassesInElementsRegex.lastIndex );\n\t\t\tnode.nodeValue = nodeValue;\n\t\t\twhile( matchesClass = mardownClassRegex.exec( classes ) ) {\n\t\t\t\telementTarget.setAttribute( matchesClass[1], matchesClass[2] );\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Add attributes to the parent element of a text node,\n\t * or the element of an attribute node.\n\t */\n\tfunction addAttributes( section, element, previousElement, separatorElementAttributes, separatorSectionAttributes ) {\n\n\t\tif ( element != null && element.childNodes != undefined && element.childNodes.length > 0 ) {\n\t\t\tpreviousParentElement = element;\n\t\t\tfor( var i = 0; i < element.childNodes.length; i++ ) {\n\t\t\t\tchildElement = element.childNodes[i];\n\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\tj = i - 1;\n\t\t\t\t\twhile ( j >= 0 ) {\n\t\t\t\t\t\taPreviousChildElement = element.childNodes[j];\n\t\t\t\t\t\tif ( typeof aPreviousChildElement.setAttribute == 'function' && aPreviousChildElement.tagName != \"BR\" ) {\n\t\t\t\t\t\t\tpreviousParentElement = aPreviousChildElement;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tj = j - 1;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tparentSection = section;\n\t\t\t\tif( childElement.nodeName ==  \"section\" ) {\n\t\t\t\t\tparentSection = childElement ;\n\t\t\t\t\tpreviousParentElement = childElement ;\n\t\t\t\t}\n\t\t\t\tif ( typeof childElement.setAttribute == 'function' || childElement.nodeType == Node.COMMENT_NODE ) {\n\t\t\t\t\taddAttributes( parentSection, childElement, previousParentElement, separatorElementAttributes, separatorSectionAttributes );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( element.nodeType == Node.COMMENT_NODE ) {\n\t\t\tif ( addAttributeInElement( element, previousElement, separatorElementAttributes ) == false ) {\n\t\t\t\taddAttributeInElement( element, section, separatorSectionAttributes );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Converts any current data-markdown slides in the\n\t * DOM to HTML.\n\t */\n\tfunction convertSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]');\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tvar section = sections[i];\n\n\t\t\t// Only parse the same slide once\n\t\t\tif( !section.getAttribute( 'data-markdown-parsed' ) ) {\n\n\t\t\t\tsection.setAttribute( 'data-markdown-parsed', true )\n\n\t\t\t\tvar notes = section.querySelector( 'aside.notes' );\n\t\t\t\tvar markdown = getMarkdownFromSlide( section );\n\n\t\t\t\tsection.innerHTML = marked( markdown );\n\t\t\t\taddAttributes( \tsection, section, null, section.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR,\n\t\t\t\t\t\t\t\tsection.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR);\n\n\t\t\t\t// If there were notes, we need to re-add them after\n\t\t\t\t// having overwritten the section's HTML\n\t\t\t\tif( notes ) {\n\t\t\t\t\tsection.appendChild( notes );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t// API\n\treturn {\n\n\t\tinitialize: function() {\n\t\t\tprocessSlides();\n\t\t\tconvertSlides();\n\t\t},\n\n\t\t// TODO: Do these belong in the API?\n\t\tprocessSlides: processSlides,\n\t\tconvertSlides: convertSlides,\n\t\tslidify: slidify\n\n\t};\n\n}));\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/markdown/marked.js",
    "content": "/**\n * marked - a markdown parser\n * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)\n * https://github.com/chjj/marked\n */\n(function(){function e(e){this.tokens=[],this.tokens.links={},this.options=e||a.defaults,this.rules=p.normal,this.options.gfm&&(this.rules=this.options.tables?p.tables:p.gfm)}function t(e,t){if(this.options=t||a.defaults,this.links=e,this.rules=u.normal,this.renderer=this.options.renderer||new n,this.renderer.options=this.options,!this.links)throw new Error(\"Tokens array requires a `links` property.\");this.options.gfm?this.rules=this.options.breaks?u.breaks:u.gfm:this.options.pedantic&&(this.rules=u.pedantic)}function n(e){this.options=e||{}}function r(e){this.tokens=[],this.token=null,this.options=e||a.defaults,this.options.renderer=this.options.renderer||new n,this.renderer=this.options.renderer,this.renderer.options=this.options}function s(e,t){return e.replace(t?/&/g:/&(?!#?\\w+;)/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\").replace(/'/g,\"&#39;\")}function i(e){return e.replace(/&([#\\w]+);/g,function(e,t){return t=t.toLowerCase(),\"colon\"===t?\":\":\"#\"===t.charAt(0)?String.fromCharCode(\"x\"===t.charAt(1)?parseInt(t.substring(2),16):+t.substring(1)):\"\"})}function l(e,t){return e=e.source,t=t||\"\",function n(r,s){return r?(s=s.source||s,s=s.replace(/(^|[^\\[])\\^/g,\"$1\"),e=e.replace(r,s),n):new RegExp(e,t)}}function o(){}function h(e){for(var t,n,r=1;r<arguments.length;r++){t=arguments[r];for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e}function a(t,n,i){if(i||\"function\"==typeof n){i||(i=n,n=null),n=h({},a.defaults,n||{});var l,o,p=n.highlight,u=0;try{l=e.lex(t,n)}catch(c){return i(c)}o=l.length;var g=function(e){if(e)return n.highlight=p,i(e);var t;try{t=r.parse(l,n)}catch(s){e=s}return n.highlight=p,e?i(e):i(null,t)};if(!p||p.length<3)return g();if(delete n.highlight,!o)return g();for(;u<l.length;u++)!function(e){return\"code\"!==e.type?--o||g():p(e.text,e.lang,function(t,n){return t?g(t):null==n||n===e.text?--o||g():(e.text=n,e.escaped=!0,void(--o||g()))})}(l[u])}else try{return n&&(n=h({},a.defaults,n)),r.parse(e.lex(t,n),n)}catch(c){if(c.message+=\"\\nPlease report this to https://github.com/chjj/marked.\",(n||a.defaults).silent)return\"<p>An error occured:</p><pre>\"+s(c.message+\"\",!0)+\"</pre>\";throw c}}var p={newline:/^\\n+/,code:/^( {4}[^\\n]+\\n*)+/,fences:o,hr:/^( *[-*_]){3,} *(?:\\n+|$)/,heading:/^ *(#{1,6}) *([^\\n]+?) *#* *(?:\\n+|$)/,nptable:o,lheading:/^([^\\n]+)\\n *(=|-){2,} *(?:\\n+|$)/,blockquote:/^( *>[^\\n]+(\\n(?!def)[^\\n]+)*\\n*)+/,list:/^( *)(bull) [\\s\\S]+?(?:hr|def|\\n{2,}(?! )(?!\\1bull )\\n*|\\s*$)/,html:/^ *(?:comment *(?:\\n|\\s*$)|closed *(?:\\n{2,}|\\s*$)|closing *(?:\\n{2,}|\\s*$))/,def:/^ *\\[([^\\]]+)\\]: *<?([^\\s>]+)>?(?: +[\"(]([^\\n]+)[\")])? *(?:\\n+|$)/,table:o,paragraph:/^((?:[^\\n]+\\n?(?!hr|heading|lheading|blockquote|tag|def))+)\\n*/,text:/^[^\\n]+/};p.bullet=/(?:[*+-]|\\d+\\.)/,p.item=/^( *)(bull) [^\\n]*(?:\\n(?!\\1bull )[^\\n]*)*/,p.item=l(p.item,\"gm\")(/bull/g,p.bullet)(),p.list=l(p.list)(/bull/g,p.bullet)(\"hr\",\"\\\\n+(?=\\\\1?(?:[-*_] *){3,}(?:\\\\n+|$))\")(\"def\",\"\\\\n+(?=\"+p.def.source+\")\")(),p.blockquote=l(p.blockquote)(\"def\",p.def)(),p._tag=\"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\\\b)\\\\w+(?!:/|[^\\\\w\\\\s@]*@)\\\\b\",p.html=l(p.html)(\"comment\",/<!--[\\s\\S]*?-->/)(\"closed\",/<(tag)[\\s\\S]+?<\\/\\1>/)(\"closing\",/<tag(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/)(/tag/g,p._tag)(),p.paragraph=l(p.paragraph)(\"hr\",p.hr)(\"heading\",p.heading)(\"lheading\",p.lheading)(\"blockquote\",p.blockquote)(\"tag\",\"<\"+p._tag)(\"def\",p.def)(),p.normal=h({},p),p.gfm=h({},p.normal,{fences:/^ *(`{3,}|~{3,}) *(\\S+)? *\\n([\\s\\S]+?)\\s*\\1 *(?:\\n+|$)/,paragraph:/^/}),p.gfm.paragraph=l(p.paragraph)(\"(?!\",\"(?!\"+p.gfm.fences.source.replace(\"\\\\1\",\"\\\\2\")+\"|\"+p.list.source.replace(\"\\\\1\",\"\\\\3\")+\"|\")(),p.tables=h({},p.gfm,{nptable:/^ *(\\S.*\\|.*)\\n *([-:]+ *\\|[-| :]*)\\n((?:.*\\|.*(?:\\n|$))*)\\n*/,table:/^ *\\|(.+)\\n *\\|( *[-:]+[-| :]*)\\n((?: *\\|.*(?:\\n|$))*)\\n*/}),e.rules=p,e.lex=function(t,n){var r=new e(n);return r.lex(t)},e.prototype.lex=function(e){return e=e.replace(/\\r\\n|\\r/g,\"\\n\").replace(/\\t/g,\"    \").replace(/\\u00a0/g,\" \").replace(/\\u2424/g,\"\\n\"),this.token(e,!0)},e.prototype.token=function(e,t,n){for(var r,s,i,l,o,h,a,u,c,e=e.replace(/^ +$/gm,\"\");e;)if((i=this.rules.newline.exec(e))&&(e=e.substring(i[0].length),i[0].length>1&&this.tokens.push({type:\"space\"})),i=this.rules.code.exec(e))e=e.substring(i[0].length),i=i[0].replace(/^ {4}/gm,\"\"),this.tokens.push({type:\"code\",text:this.options.pedantic?i:i.replace(/\\n+$/,\"\")});else if(i=this.rules.fences.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"code\",lang:i[2],text:i[3]});else if(i=this.rules.heading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:i[1].length,text:i[2]});else if(t&&(i=this.rules.nptable.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].split(/ *\\| */);this.tokens.push(h)}else if(i=this.rules.lheading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:\"=\"===i[2]?1:2,text:i[1]});else if(i=this.rules.hr.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"hr\"});else if(i=this.rules.blockquote.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"blockquote_start\"}),i=i[0].replace(/^ *> ?/gm,\"\"),this.token(i,t,!0),this.tokens.push({type:\"blockquote_end\"});else if(i=this.rules.list.exec(e)){for(e=e.substring(i[0].length),l=i[2],this.tokens.push({type:\"list_start\",ordered:l.length>1}),i=i[0].match(this.rules.item),r=!1,c=i.length,u=0;c>u;u++)h=i[u],a=h.length,h=h.replace(/^ *([*+-]|\\d+\\.) +/,\"\"),~h.indexOf(\"\\n \")&&(a-=h.length,h=this.options.pedantic?h.replace(/^ {1,4}/gm,\"\"):h.replace(new RegExp(\"^ {1,\"+a+\"}\",\"gm\"),\"\")),this.options.smartLists&&u!==c-1&&(o=p.bullet.exec(i[u+1])[0],l===o||l.length>1&&o.length>1||(e=i.slice(u+1).join(\"\\n\")+e,u=c-1)),s=r||/\\n\\n(?!\\s*$)/.test(h),u!==c-1&&(r=\"\\n\"===h.charAt(h.length-1),s||(s=r)),this.tokens.push({type:s?\"loose_item_start\":\"list_item_start\"}),this.token(h,!1,n),this.tokens.push({type:\"list_item_end\"});this.tokens.push({type:\"list_end\"})}else if(i=this.rules.html.exec(e))e=e.substring(i[0].length),this.tokens.push({type:this.options.sanitize?\"paragraph\":\"html\",pre:\"pre\"===i[1]||\"script\"===i[1]||\"style\"===i[1],text:i[0]});else if(!n&&t&&(i=this.rules.def.exec(e)))e=e.substring(i[0].length),this.tokens.links[i[1].toLowerCase()]={href:i[2],title:i[3]};else if(t&&(i=this.rules.table.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/(?: *\\| *)?\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].replace(/^ *\\| *| *\\| *$/g,\"\").split(/ *\\| */);this.tokens.push(h)}else if(t&&(i=this.rules.paragraph.exec(e)))e=e.substring(i[0].length),this.tokens.push({type:\"paragraph\",text:\"\\n\"===i[1].charAt(i[1].length-1)?i[1].slice(0,-1):i[1]});else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"text\",text:i[0]});else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0));return this.tokens};var u={escape:/^\\\\([\\\\`*{}\\[\\]()#+\\-.!_>])/,autolink:/^<([^ >]+(@|:\\/)[^ >]+)>/,url:o,tag:/^<!--[\\s\\S]*?-->|^<\\/?\\w+(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/,link:/^!?\\[(inside)\\]\\(href\\)/,reflink:/^!?\\[(inside)\\]\\s*\\[([^\\]]*)\\]/,nolink:/^!?\\[((?:\\[[^\\]]*\\]|[^\\[\\]])*)\\]/,strong:/^__([\\s\\S]+?)__(?!_)|^\\*\\*([\\s\\S]+?)\\*\\*(?!\\*)/,em:/^\\b_((?:__|[\\s\\S])+?)_\\b|^\\*((?:\\*\\*|[\\s\\S])+?)\\*(?!\\*)/,code:/^(`+)\\s*([\\s\\S]*?[^`])\\s*\\1(?!`)/,br:/^ {2,}\\n(?!\\s*$)/,del:o,text:/^[\\s\\S]+?(?=[\\\\<!\\[_*`]| {2,}\\n|$)/};u._inside=/(?:\\[[^\\]]*\\]|[^\\[\\]]|\\](?=[^\\[]*\\]))*/,u._href=/\\s*<?([\\s\\S]*?)>?(?:\\s+['\"]([\\s\\S]*?)['\"])?\\s*/,u.link=l(u.link)(\"inside\",u._inside)(\"href\",u._href)(),u.reflink=l(u.reflink)(\"inside\",u._inside)(),u.normal=h({},u),u.pedantic=h({},u.normal,{strong:/^__(?=\\S)([\\s\\S]*?\\S)__(?!_)|^\\*\\*(?=\\S)([\\s\\S]*?\\S)\\*\\*(?!\\*)/,em:/^_(?=\\S)([\\s\\S]*?\\S)_(?!_)|^\\*(?=\\S)([\\s\\S]*?\\S)\\*(?!\\*)/}),u.gfm=h({},u.normal,{escape:l(u.escape)(\"])\",\"~|])\")(),url:/^(https?:\\/\\/[^\\s<]+[^<.,:;\"')\\]\\s])/,del:/^~~(?=\\S)([\\s\\S]*?\\S)~~/,text:l(u.text)(\"]|\",\"~]|\")(\"|\",\"|https?://|\")()}),u.breaks=h({},u.gfm,{br:l(u.br)(\"{2,}\",\"*\")(),text:l(u.gfm.text)(\"{2,}\",\"*\")()}),t.rules=u,t.output=function(e,n,r){var s=new t(n,r);return s.output(e)},t.prototype.output=function(e){for(var t,n,r,i,l=\"\";e;)if(i=this.rules.escape.exec(e))e=e.substring(i[0].length),l+=i[1];else if(i=this.rules.autolink.exec(e))e=e.substring(i[0].length),\"@\"===i[2]?(n=this.mangle(\":\"===i[1].charAt(6)?i[1].substring(7):i[1]),r=this.mangle(\"mailto:\")+n):(n=s(i[1]),r=n),l+=this.renderer.link(r,null,n);else if(this.inLink||!(i=this.rules.url.exec(e))){if(i=this.rules.tag.exec(e))!this.inLink&&/^<a /i.test(i[0])?this.inLink=!0:this.inLink&&/^<\\/a>/i.test(i[0])&&(this.inLink=!1),e=e.substring(i[0].length),l+=this.options.sanitize?s(i[0]):i[0];else if(i=this.rules.link.exec(e))e=e.substring(i[0].length),this.inLink=!0,l+=this.outputLink(i,{href:i[2],title:i[3]}),this.inLink=!1;else if((i=this.rules.reflink.exec(e))||(i=this.rules.nolink.exec(e))){if(e=e.substring(i[0].length),t=(i[2]||i[1]).replace(/\\s+/g,\" \"),t=this.links[t.toLowerCase()],!t||!t.href){l+=i[0].charAt(0),e=i[0].substring(1)+e;continue}this.inLink=!0,l+=this.outputLink(i,t),this.inLink=!1}else if(i=this.rules.strong.exec(e))e=e.substring(i[0].length),l+=this.renderer.strong(this.output(i[2]||i[1]));else if(i=this.rules.em.exec(e))e=e.substring(i[0].length),l+=this.renderer.em(this.output(i[2]||i[1]));else if(i=this.rules.code.exec(e))e=e.substring(i[0].length),l+=this.renderer.codespan(s(i[2],!0));else if(i=this.rules.br.exec(e))e=e.substring(i[0].length),l+=this.renderer.br();else if(i=this.rules.del.exec(e))e=e.substring(i[0].length),l+=this.renderer.del(this.output(i[1]));else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),l+=s(this.smartypants(i[0]));else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0))}else e=e.substring(i[0].length),n=s(i[1]),r=n,l+=this.renderer.link(r,null,n);return l},t.prototype.outputLink=function(e,t){var n=s(t.href),r=t.title?s(t.title):null;return\"!\"!==e[0].charAt(0)?this.renderer.link(n,r,this.output(e[1])):this.renderer.image(n,r,s(e[1]))},t.prototype.smartypants=function(e){return this.options.smartypants?e.replace(/--/g,\"—\").replace(/(^|[-\\u2014/(\\[{\"\\s])'/g,\"$1‘\").replace(/'/g,\"’\").replace(/(^|[-\\u2014/(\\[{\\u2018\\s])\"/g,\"$1“\").replace(/\"/g,\"”\").replace(/\\.{3}/g,\"…\"):e},t.prototype.mangle=function(e){for(var t,n=\"\",r=e.length,s=0;r>s;s++)t=e.charCodeAt(s),Math.random()>.5&&(t=\"x\"+t.toString(16)),n+=\"&#\"+t+\";\";return n},n.prototype.code=function(e,t,n){if(this.options.highlight){var r=this.options.highlight(e,t);null!=r&&r!==e&&(n=!0,e=r)}return t?'<pre><code class=\"'+this.options.langPrefix+s(t,!0)+'\">'+(n?e:s(e,!0))+\"\\n</code></pre>\\n\":\"<pre><code>\"+(n?e:s(e,!0))+\"\\n</code></pre>\"},n.prototype.blockquote=function(e){return\"<blockquote>\\n\"+e+\"</blockquote>\\n\"},n.prototype.html=function(e){return e},n.prototype.heading=function(e,t,n){return\"<h\"+t+' id=\"'+this.options.headerPrefix+n.toLowerCase().replace(/[^\\w]+/g,\"-\")+'\">'+e+\"</h\"+t+\">\\n\"},n.prototype.hr=function(){return this.options.xhtml?\"<hr/>\\n\":\"<hr>\\n\"},n.prototype.list=function(e,t){var n=t?\"ol\":\"ul\";return\"<\"+n+\">\\n\"+e+\"</\"+n+\">\\n\"},n.prototype.listitem=function(e){return\"<li>\"+e+\"</li>\\n\"},n.prototype.paragraph=function(e){return\"<p>\"+e+\"</p>\\n\"},n.prototype.table=function(e,t){return\"<table>\\n<thead>\\n\"+e+\"</thead>\\n<tbody>\\n\"+t+\"</tbody>\\n</table>\\n\"},n.prototype.tablerow=function(e){return\"<tr>\\n\"+e+\"</tr>\\n\"},n.prototype.tablecell=function(e,t){var n=t.header?\"th\":\"td\",r=t.align?\"<\"+n+' style=\"text-align:'+t.align+'\">':\"<\"+n+\">\";return r+e+\"</\"+n+\">\\n\"},n.prototype.strong=function(e){return\"<strong>\"+e+\"</strong>\"},n.prototype.em=function(e){return\"<em>\"+e+\"</em>\"},n.prototype.codespan=function(e){return\"<code>\"+e+\"</code>\"},n.prototype.br=function(){return this.options.xhtml?\"<br/>\":\"<br>\"},n.prototype.del=function(e){return\"<del>\"+e+\"</del>\"},n.prototype.link=function(e,t,n){if(this.options.sanitize){try{var r=decodeURIComponent(i(e)).replace(/[^\\w:]/g,\"\").toLowerCase()}catch(s){return\"\"}if(0===r.indexOf(\"javascript:\")||0===r.indexOf(\"vbscript:\"))return\"\"}var l='<a href=\"'+e+'\"';return t&&(l+=' title=\"'+t+'\"'),l+=\">\"+n+\"</a>\"},n.prototype.image=function(e,t,n){var r='<img src=\"'+e+'\" alt=\"'+n+'\"';return t&&(r+=' title=\"'+t+'\"'),r+=this.options.xhtml?\"/>\":\">\"},r.parse=function(e,t,n){var s=new r(t,n);return s.parse(e)},r.prototype.parse=function(e){this.inline=new t(e.links,this.options,this.renderer),this.tokens=e.reverse();for(var n=\"\";this.next();)n+=this.tok();return n},r.prototype.next=function(){return this.token=this.tokens.pop()},r.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},r.prototype.parseText=function(){for(var e=this.token.text;\"text\"===this.peek().type;)e+=\"\\n\"+this.next().text;return this.inline.output(e)},r.prototype.tok=function(){switch(this.token.type){case\"space\":return\"\";case\"hr\":return this.renderer.hr();case\"heading\":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text);case\"code\":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case\"table\":var e,t,n,r,s,i=\"\",l=\"\";for(n=\"\",e=0;e<this.token.header.length;e++)r={header:!0,align:this.token.align[e]},n+=this.renderer.tablecell(this.inline.output(this.token.header[e]),{header:!0,align:this.token.align[e]});for(i+=this.renderer.tablerow(n),e=0;e<this.token.cells.length;e++){for(t=this.token.cells[e],n=\"\",s=0;s<t.length;s++)n+=this.renderer.tablecell(this.inline.output(t[s]),{header:!1,align:this.token.align[s]});l+=this.renderer.tablerow(n)}return this.renderer.table(i,l);case\"blockquote_start\":for(var l=\"\";\"blockquote_end\"!==this.next().type;)l+=this.tok();return this.renderer.blockquote(l);case\"list_start\":for(var l=\"\",o=this.token.ordered;\"list_end\"!==this.next().type;)l+=this.tok();return this.renderer.list(l,o);case\"list_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=\"text\"===this.token.type?this.parseText():this.tok();return this.renderer.listitem(l);case\"loose_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=this.tok();return this.renderer.listitem(l);case\"html\":var h=this.token.pre||this.options.pedantic?this.token.text:this.inline.output(this.token.text);return this.renderer.html(h);case\"paragraph\":return this.renderer.paragraph(this.inline.output(this.token.text));case\"text\":return this.renderer.paragraph(this.parseText())}},o.exec=o,a.options=a.setOptions=function(e){return h(a.defaults,e),a},a.defaults={gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,smartLists:!1,silent:!1,highlight:null,langPrefix:\"lang-\",smartypants:!1,headerPrefix:\"\",renderer:new n,xhtml:!1},a.Parser=r,a.parser=r.parse,a.Renderer=n,a.Lexer=e,a.lexer=e.lex,a.InlineLexer=t,a.inlineLexer=t.output,a.parse=a,\"undefined\"!=typeof module&&\"object\"==typeof exports?module.exports=a:\"function\"==typeof define&&define.amd?define(function(){return a}):this.marked=a}).call(function(){return this||(\"undefined\"!=typeof window?window:global)}());"
  },
  {
    "path": "doc/cppnow-2017/plugin/math/math.js",
    "content": "/**\n * A plugin which enables rendering of math equations inside\n * of reveal.js slides. Essentially a thin wrapper for MathJax.\n *\n * @author Hakim El Hattab\n */\nvar RevealMath = window.RevealMath || (function(){\n\n\tvar options = Reveal.getConfig().math || {};\n\toptions.mathjax = options.mathjax || 'https://cdn.mathjax.org/mathjax/latest/MathJax.js';\n\toptions.config = options.config || 'TeX-AMS_HTML-full';\n\n\tloadScript( options.mathjax + '?config=' + options.config, function() {\n\n\t\tMathJax.Hub.Config({\n\t\t\tmessageStyle: 'none',\n\t\t\ttex2jax: {\n\t\t\t\tinlineMath: [['$','$'],['\\\\(','\\\\)']] ,\n\t\t\t\tskipTags: ['script','noscript','style','textarea','pre']\n\t\t\t},\n\t\t\tskipStartupTypeset: true\n\t\t});\n\n\t\t// Typeset followed by an immediate reveal.js layout since\n\t\t// the typesetting process could affect slide height\n\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] );\n\t\tMathJax.Hub.Queue( Reveal.layout );\n\n\t\t// Reprocess equations in slides when they turn visible\n\t\tReveal.addEventListener( 'slidechanged', function( event ) {\n\n\t\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] );\n\n\t\t} );\n\n\t} );\n\n\tfunction loadScript( url, callback ) {\n\n\t\tvar head = document.querySelector( 'head' );\n\t\tvar script = document.createElement( 'script' );\n\t\tscript.type = 'text/javascript';\n\t\tscript.src = url;\n\n\t\t// Wrapper for callback to make sure it only fires once\n\t\tvar finish = function() {\n\t\t\tif( typeof callback === 'function' ) {\n\t\t\t\tcallback.call();\n\t\t\t\tcallback = null;\n\t\t\t}\n\t\t}\n\n\t\tscript.onload = finish;\n\n\t\t// IE\n\t\tscript.onreadystatechange = function() {\n\t\t\tif ( this.readyState === 'loaded' ) {\n\t\t\t\tfinish();\n\t\t\t}\n\t\t}\n\n\t\t// Normal browsers\n\t\thead.appendChild( script );\n\n\t}\n\n})();\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/multiplex/client.js",
    "content": "(function() {\n\tvar multiplex = Reveal.getConfig().multiplex;\n\tvar socketId = multiplex.id;\n\tvar socket = io.connect(multiplex.url);\n\n\tsocket.on(multiplex.id, function(data) {\n\t\t// ignore data from sockets that aren't ours\n\t\tif (data.socketId !== socketId) { return; }\n\t\tif( window.location.host === 'localhost:1947' ) return;\n\n\t\tReveal.setState(data.state);\n\t});\n}());\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/multiplex/index.js",
    "content": "var http        = require('http');\nvar express\t\t= require('express');\nvar fs\t\t\t= require('fs');\nvar io\t\t\t= require('socket.io');\nvar crypto\t\t= require('crypto');\n\nvar app       \t= express();\nvar staticDir \t= express.static;\nvar server    \t= http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport: process.env.PORT || 1948,\n\tbaseDir : __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\tsocket.on('multiplex-statechanged', function(data) {\n\t\tif (typeof data.secret == 'undefined' || data.secret == null || data.secret === '') return;\n\t\tif (createHash(data.secret) === data.socketId) {\n\t\t\tdata.secret = null;\n\t\t\tsocket.broadcast.emit(data.socketId, data);\n\t\t};\n\t});\n});\n\n[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {\n\tapp.use('/' + dir, staticDir(opts.baseDir + dir));\n});\n\napp.get(\"/\", function(req, res) {\n\tres.writeHead(200, {'Content-Type': 'text/html'});\n\tfs.createReadStream(opts.baseDir + '/index.html').pipe(res);\n});\n\napp.get(\"/token\", function(req,res) {\n\tvar ts = new Date().getTime();\n\tvar rand = Math.floor(Math.random()*9999999);\n\tvar secret = ts.toString() + rand.toString();\n\tres.send({secret: secret, socketId: createHash(secret)});\n});\n\nvar createHash = function(secret) {\n\tvar cipher = crypto.createCipher('blowfish', secret);\n\treturn(cipher.final('hex'));\n};\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nconsole.log( brown + \"reveal.js:\" + reset + \" Multiplex running on port \" + green + opts.port + reset );"
  },
  {
    "path": "doc/cppnow-2017/plugin/multiplex/master.js",
    "content": "(function() {\n\n\t// Don't emit events from inside of notes windows\n\tif ( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar multiplex = Reveal.getConfig().multiplex;\n\n\tvar socket = io.connect( multiplex.url );\n\n\tfunction post() {\n\n\t\tvar messageData = {\n\t\t\tstate: Reveal.getState(),\n\t\t\tsecret: multiplex.secret,\n\t\t\tsocketId: multiplex.id\n\t\t};\n\n\t\tsocket.emit( 'multiplex-statechanged', messageData );\n\n\t};\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n}());"
  },
  {
    "path": "doc/cppnow-2017/plugin/notes/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\t\t\t\toverflow: auto;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"../../plugin/markdown/marked.js\"></script>\n\t\t<script>\n\n\t\t\t(function() {\n\n\t\t\t\tvar notes,\n\t\t\t\t\tnotesValue,\n\t\t\t\t\tcurrentState,\n\t\t\t\t\tcurrentSlide,\n\t\t\t\t\tupcomingSlide,\n\t\t\t\t\tconnected = false;\n\n\t\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\t\t// Messages sent by the notes plugin inside of the main window\n\t\t\t\t\tif( data && data.namespace === 'reveal-notes' ) {\n\t\t\t\t\t\tif( data.type === 'connect' ) {\n\t\t\t\t\t\t\thandleConnectMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( data.type === 'state' ) {\n\t\t\t\t\t\t\thandleStateMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Messages sent by the reveal.js inside of the current slide preview\n\t\t\t\t\telse if( data && data.namespace === 'reveal' ) {\n\t\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\t\t// Send a message back to notify that the handshake is complete\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ namespace: 'reveal-notes', type: 'connected'} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ]} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window is trying to establish a\n\t\t\t\t * connection.\n\t\t\t\t */\n\t\t\t\tfunction handleConnectMessage( data ) {\n\n\t\t\t\t\tif( connected === false ) {\n\t\t\t\t\t\tconnected = true;\n\n\t\t\t\t\t\tsetupIframes( data );\n\t\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\t\tsetupNotes();\n\t\t\t\t\t\tsetupTimer();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window sends an updated state.\n\t\t\t\t */\n\t\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t\t// applying the same state\n\t\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\t\tif ( data.notes ) {\n\t\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\t\tnotesValue.style.whiteSpace = data.whitespace;\n\t\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update the note slides\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t\t}\n\n\t\t\t\t// Limit to max one state update per X ms\n\t\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t\t/**\n\t\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t\t * This enables keyboard events to work even if focus\n\t\t\t\t * isn't set on the current slide iframe.\n\t\t\t\t */\n\t\t\t\tfunction setupKeyboard() {\n\n\t\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Creates the preview iframes.\n\t\t\t\t */\n\t\t\t\tfunction setupIframes( data ) {\n\n\t\t\t\t\tvar params = [\n\t\t\t\t\t\t'receiver',\n\t\t\t\t\t\t'progress=false',\n\t\t\t\t\t\t'history=false',\n\t\t\t\t\t\t'transition=none',\n\t\t\t\t\t\t'autoSlide=0',\n\t\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t\t].join( '&' );\n\n\t\t\t\t\tvar hash = '#/' + data.state.indexh + '/' + data.state.indexv;\n\t\t\t\t\tvar currentURL = data.url + '?' + params + '&postMessageEvents=true' + hash;\n\t\t\t\t\tvar upcomingURL = data.url + '?' + params + '&controls=false' + hash;\n\n\t\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Setup the notes UI.\n\t\t\t\t */\n\t\t\t\tfunction setupNotes() {\n\n\t\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Create the timer and clock and start updating them\n\t\t\t\t * at an interval.\n\t\t\t\t */\n\t\t\t\tfunction setupTimer() {\n\n\t\t\t\t\tvar start = new Date(),\n\t\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update once directly\n\t\t\t\t\t_updateTimer();\n\n\t\t\t\t\t// Then update every second\n\t\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\t\tstart = new Date();\n\t\t\t\t\t\t_updateTimer();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t\t */\n\t\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\t\tvar lastTime = 0,\n\t\t\t\t\t\ttimeout;\n\n\t\t\t\t\treturn function() {\n\n\t\t\t\t\t\tvar args = arguments;\n\t\t\t\t\t\tvar context = this;\n\n\t\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t})();\n\n\t\t</script>\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/notes/notes.js",
    "content": "/**\n * Handles opening of and synchronization with the reveal.js\n * notes window.\n *\n * Handshake process:\n * 1. This window posts 'connect' to notes window\n *    - Includes URL of presentation to show\n * 2. Notes window responds with 'connected' when it is available\n * 3. This window proceeds to send the current presentation state\n *    to the notes window\n */\nvar RevealNotes = (function() {\n\n\tfunction openNotes() {\n\t\tvar jsFileLocation = document.querySelector('script[src$=\"notes.js\"]').src;  // this js file path\n\t\tjsFileLocation = jsFileLocation.replace(/notes\\.js(\\?.*)?$/, '');   // the js folder path\n\t\tvar notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1100,height=700' );\n\n\t\t/**\n\t\t * Connect to the notes window through a postmessage handshake.\n\t\t * Using postmessage enables us to work in situations where the\n\t\t * origins differ, such as a presentation being opened from the\n\t\t * file system.\n\t\t */\n\t\tfunction connect() {\n\t\t\t// Keep trying to connect until we get a 'connected' message back\n\t\t\tvar connectInterval = setInterval( function() {\n\t\t\t\tnotesPopup.postMessage( JSON.stringify( {\n\t\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\t\ttype: 'connect',\n\t\t\t\t\turl: window.location.protocol + '//' + window.location.host + window.location.pathname + window.location.search,\n\t\t\t\t\tstate: Reveal.getState()\n\t\t\t\t} ), '*' );\n\t\t\t}, 500 );\n\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\t\t\t\tvar data = JSON.parse( event.data );\n\t\t\t\tif( data && data.namespace === 'reveal-notes' && data.type === 'connected' ) {\n\t\t\t\t\tclearInterval( connectInterval );\n\t\t\t\t\tonConnected();\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t/**\n\t\t * Posts the current slide data to the notes window\n\t\t */\n\t\tfunction post() {\n\n\t\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\t\tvar messageData = {\n\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\ttype: 'state',\n\t\t\t\tnotes: '',\n\t\t\t\tmarkdown: false,\n\t\t\t\twhitespace: 'normal',\n\t\t\t\tstate: Reveal.getState()\n\t\t\t};\n\n\t\t\t// Look for notes defined in a slide attribute\n\t\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t\t\tmessageData.whitespace = 'pre-wrap';\n\t\t\t}\n\n\t\t\t// Look for notes defined in an aside element\n\t\t\tif( notesElement ) {\n\t\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t\t}\n\n\t\t\tnotesPopup.postMessage( JSON.stringify( messageData ), '*' );\n\n\t\t}\n\n\t\t/**\n\t\t * Called once we have established a connection to the notes\n\t\t * window.\n\t\t */\n\t\tfunction onConnected() {\n\n\t\t\t// Monitor events that trigger a change in state\n\t\t\tReveal.addEventListener( 'slidechanged', post );\n\t\t\tReveal.addEventListener( 'fragmentshown', post );\n\t\t\tReveal.addEventListener( 'fragmenthidden', post );\n\t\t\tReveal.addEventListener( 'overviewhidden', post );\n\t\t\tReveal.addEventListener( 'overviewshown', post );\n\t\t\tReveal.addEventListener( 'paused', post );\n\t\t\tReveal.addEventListener( 'resumed', post );\n\n\t\t\t// Post the initial state\n\t\t\tpost();\n\n\t\t}\n\n\t\tconnect();\n\t}\n\n\tif( !/receiver/i.test( window.location.search ) ) {\n\n\t\t// If the there's a 'notes' query set, open directly\n\t\tif( window.location.search.match( /(\\?|\\&)notes/gi ) !== null ) {\n\t\t\topenNotes();\n\t\t}\n\n\t\t// Open the notes when the 's' key is hit\n\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t// Disregard the event if the target is editable or a\n\t\t\t// modifier is present\n\t\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t\t// Disregard the event if keyboard is disabled\n\t\t\tif ( Reveal.getConfig().keyboard === false ) return;\n\n\t\t\tif( event.keyCode === 83 ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\topenNotes();\n\t\t\t}\n\t\t}, false );\n\n\t}\n\n\treturn { open: openNotes };\n\n})();\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/notes-server/client.js",
    "content": "(function() {\n\n\t// don't emit events from inside the previews themselves\n\tif( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar socket = io.connect( window.location.origin ),\n\t\tsocketId = Math.random().toString().slice( 2 );\n\n\tconsole.log( 'View slide notes at ' + window.location.origin + '/notes/' + socketId );\n\n\twindow.open( window.location.origin + '/notes/' + socketId, 'notes-' + socketId );\n\n\t/**\n\t * Posts the current slide data to the notes window\n\t */\n\tfunction post() {\n\n\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\tvar messageData = {\n\t\t\tnotes: '',\n\t\t\tmarkdown: false,\n\t\t\tsocketId: socketId,\n\t\t\tstate: Reveal.getState()\n\t\t};\n\n\t\t// Look for notes defined in a slide attribute\n\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// Look for notes defined in an aside element\n\t\tif( notesElement ) {\n\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t}\n\n\t\tsocket.emit( 'statechanged', messageData );\n\n\t}\n\n\t// When a new notes window connects, post our current state\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tpost();\n\t} );\n\n\t// When the state changes from inside of the speaker view\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tReveal.setState( data.state );\n\t} );\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n\t// Post the initial state\n\tpost();\n\n}());\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/notes-server/index.js",
    "content": "var http      = require('http');\nvar express   = require('express');\nvar fs        = require('fs');\nvar io        = require('socket.io');\nvar _         = require('underscore');\nvar Mustache  = require('mustache');\n\nvar app       = express();\nvar staticDir = express.static;\nvar server    = http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport :      1947,\n\tbaseDir :   __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tsocket.broadcast.emit( 'new-subscriber', data );\n\t});\n\n\tsocket.on( 'statechanged', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged', data );\n\t});\n\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged-speaker', data );\n\t});\n\n});\n\n[ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) {\n\tapp.use( '/' + dir, staticDir( opts.baseDir + dir ) );\n});\n\napp.get('/', function( req, res ) {\n\n\tres.writeHead( 200, { 'Content-Type': 'text/html' } );\n\tfs.createReadStream( opts.baseDir + '/index.html' ).pipe( res );\n\n});\n\napp.get( '/notes/:socketId', function( req, res ) {\n\n\tfs.readFile( opts.baseDir + 'plugin/notes-server/notes.html', function( err, data ) {\n\t\tres.send( Mustache.to_html( data.toString(), {\n\t\t\tsocketId : req.params.socketId\n\t\t}));\n\t});\n\n});\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nvar slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : '' );\n\nconsole.log( brown + 'reveal.js - Speaker Notes' + reset );\nconsole.log( '1. Open the slides at ' + green + slidesLocation + reset );\nconsole.log( '2. Click on the link your JS console to go to the notes page' );\nconsole.log( '3. Advance through your slides and your notes will advance automatically' );\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/notes-server/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"/socket.io/socket.io.js\"></script>\n\t\t<script src=\"/plugin/markdown/marked.js\"></script>\n\n\t\t<script>\n\t\t(function() {\n\n\t\t\tvar notes,\n\t\t\t\tnotesValue,\n\t\t\t\tcurrentState,\n\t\t\t\tcurrentSlide,\n\t\t\t\tupcomingSlide,\n\t\t\t\tconnected = false;\n\n\t\t\tvar socket = io.connect( window.location.origin ),\n\t\t\t\tsocketId = '{{socketId}}';\n\n\t\t\tsocket.on( 'statechanged', function( data ) {\n\n\t\t\t\t// ignore data from sockets that aren't ours\n\t\t\t\tif( data.socketId !== socketId ) { return; }\n\n\t\t\t\tif( connected === false ) {\n\t\t\t\t\tconnected = true;\n\n\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\tsetupNotes();\n\t\t\t\t\tsetupTimer();\n\n\t\t\t\t}\n\n\t\t\t\thandleStateMessage( data );\n\n\t\t\t} );\n\n\t\t\t// Load our presentation iframes\n\t\t\tsetupIframes();\n\n\t\t\t// Once the iframes have loaded, emit a signal saying there's\n\t\t\t// a new subscriber which will trigger a 'statechanged'\n\t\t\t// message to be sent back\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\tsocket.emit( 'new-subscriber', { socketId: socketId } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Messages sent by reveal.js inside of the current slide preview\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\tsocket.emit( 'statechanged-speaker', { state: data.state } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t/**\n\t\t\t * Called when the main window sends an updated state.\n\t\t\t */\n\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t// applying the same state\n\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\tif ( data.notes ) {\n\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t}\n\n\t\t\t\t// Update the note slides\n\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t}\n\n\t\t\t// Limit to max one state update per X ms\n\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t/**\n\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t * This enables keyboard events to work even if focus\n\t\t\t * isn't set on the current slide iframe.\n\t\t\t */\n\t\t\tfunction setupKeyboard() {\n\n\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Creates the preview iframes.\n\t\t\t */\n\t\t\tfunction setupIframes() {\n\n\t\t\t\tvar params = [\n\t\t\t\t\t'receiver',\n\t\t\t\t\t'progress=false',\n\t\t\t\t\t'history=false',\n\t\t\t\t\t'transition=none',\n\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t].join( '&' );\n\n\t\t\t\tvar currentURL = '/?' + params + '&postMessageEvents=true';\n\t\t\t\tvar upcomingURL = '/?' + params + '&controls=false';\n\n\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Setup the notes UI.\n\t\t\t */\n\t\t\tfunction setupNotes() {\n\n\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Create the timer and clock and start updating them\n\t\t\t * at an interval.\n\t\t\t */\n\t\t\tfunction setupTimer() {\n\n\t\t\t\tvar start = new Date(),\n\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t}\n\n\t\t\t\t// Update once directly\n\t\t\t\t_updateTimer();\n\n\t\t\t\t// Then update every second\n\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\tstart = new Date();\n\t\t\t\t\t_updateTimer();\n\t\t\t\t\treturn false;\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t */\n\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\tvar lastTime = 0,\n\t\t\t\t\ttimeout;\n\n\t\t\t\treturn function() {\n\n\t\t\t\t\tvar args = arguments;\n\t\t\t\t\tvar context = this;\n\n\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t})();\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/print-pdf/print-pdf.js",
    "content": "/**\n * phantomjs script for printing presentations to PDF.\n *\n * Example:\n * phantomjs print-pdf.js \"http://lab.hakim.se/reveal-js?print-pdf\" reveal-demo.pdf\n *\n * By Manuel Bieh (https://github.com/manuelbieh)\n */\n\n// html2pdf.js\nvar page = new WebPage();\nvar system = require( 'system' );\n\nvar slideWidth = system.args[3] ? system.args[3].split( 'x' )[0] : 960;\nvar slideHeight = system.args[3] ? system.args[3].split( 'x' )[1] : 700;\n\npage.viewportSize = {\n\twidth: slideWidth,\n\theight: slideHeight\n};\n\n// TODO\n// Something is wrong with these config values. An input\n// paper width of 1920px actually results in a 756px wide\n// PDF.\npage.paperSize = {\n\twidth: Math.round( slideWidth * 2 ),\n\theight: Math.round( slideHeight * 2 ),\n\tborder: 0\n};\n\nvar inputFile = system.args[1] || 'index.html?print-pdf';\nvar outputFile = system.args[2] || 'slides.pdf';\n\nif( outputFile.match( /\\.pdf$/gi ) === null ) {\n\toutputFile += '.pdf';\n}\n\nconsole.log( 'Printing PDF (Paper size: '+ page.paperSize.width + 'x' + page.paperSize.height +')' );\n\npage.open( inputFile, function( status ) {\n\twindow.setTimeout( function() {\n\t\tconsole.log( 'Printed succesfully' );\n\t\tpage.render( outputFile );\n\t\tphantom.exit();\n\t}, 1000 );\n} );\n\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/search/search.js",
    "content": "/*\n * Handles finding a text string anywhere in the slides and showing the next occurrence to the user\n * by navigatating to that slide and highlighting it.\n *\n * By Jon Snyder <snyder.jon@gmail.com>, February 2013\n */\n\nvar RevealSearch = (function() {\n\n\tvar matchedSlides;\n\tvar currentMatchedIndex;\n\tvar searchboxDirty;\n\tvar myHilitor;\n\n// Original JavaScript code by Chirp Internet: www.chirp.com.au\n// Please acknowledge use of this code by including this header.\n// 2/2013 jon: modified regex to display any match, not restricted to word boundaries.\n\nfunction Hilitor(id, tag)\n{\n\n  var targetNode = document.getElementById(id) || document.body;\n  var hiliteTag = tag || \"EM\";\n  var skipTags = new RegExp(\"^(?:\" + hiliteTag + \"|SCRIPT|FORM|SPAN)$\");\n  var colors = [\"#ff6\", \"#a0ffff\", \"#9f9\", \"#f99\", \"#f6f\"];\n  var wordColor = [];\n  var colorIdx = 0;\n  var matchRegex = \"\";\n  var matchingSlides = [];\n\n  this.setRegex = function(input)\n  {\n    input = input.replace(/^[^\\w]+|[^\\w]+$/g, \"\").replace(/[^\\w'-]+/g, \"|\");\n    matchRegex = new RegExp(\"(\" + input + \")\",\"i\");\n  }\n\n  this.getRegex = function()\n  {\n    return matchRegex.toString().replace(/^\\/\\\\b\\(|\\)\\\\b\\/i$/g, \"\").replace(/\\|/g, \" \");\n  }\n\n  // recursively apply word highlighting\n  this.hiliteWords = function(node)\n  {\n    if(node == undefined || !node) return;\n    if(!matchRegex) return;\n    if(skipTags.test(node.nodeName)) return;\n\n    if(node.hasChildNodes()) {\n      for(var i=0; i < node.childNodes.length; i++)\n        this.hiliteWords(node.childNodes[i]);\n    }\n    if(node.nodeType == 3) { // NODE_TEXT\n      if((nv = node.nodeValue) && (regs = matchRegex.exec(nv))) {\n      \t//find the slide's section element and save it in our list of matching slides\n      \tvar secnode = node.parentNode;\n      \twhile (secnode.nodeName != 'SECTION') {\n      \t\tsecnode = secnode.parentNode;\n      \t}\n      \t\n      \tvar slideIndex = Reveal.getIndices(secnode);\n      \tvar slidelen = matchingSlides.length;\n      \tvar alreadyAdded = false;\n      \tfor (var i=0; i < slidelen; i++) {\n      \t\tif ( (matchingSlides[i].h === slideIndex.h) && (matchingSlides[i].v === slideIndex.v) ) {\n      \t\t\talreadyAdded = true;\n      \t\t}\n      \t}\n      \tif (! alreadyAdded) {\n      \t\tmatchingSlides.push(slideIndex);\n      \t}\n      \t\n        if(!wordColor[regs[0].toLowerCase()]) {\n          wordColor[regs[0].toLowerCase()] = colors[colorIdx++ % colors.length];\n        }\n\n        var match = document.createElement(hiliteTag);\n        match.appendChild(document.createTextNode(regs[0]));\n        match.style.backgroundColor = wordColor[regs[0].toLowerCase()];\n        match.style.fontStyle = \"inherit\";\n        match.style.color = \"#000\";\n\n        var after = node.splitText(regs.index);\n        after.nodeValue = after.nodeValue.substring(regs[0].length);\n        node.parentNode.insertBefore(match, after);\n      }\n    }\n  };\n\n  // remove highlighting\n  this.remove = function()\n  {\n    var arr = document.getElementsByTagName(hiliteTag);\n    while(arr.length && (el = arr[0])) {\n      el.parentNode.replaceChild(el.firstChild, el);\n    }\n  };\n\n  // start highlighting at target node\n  this.apply = function(input)\n  {\n    if(input == undefined || !input) return;\n    this.remove();\n    this.setRegex(input);\n    this.hiliteWords(targetNode);\n    return matchingSlides;\n  };\n\n}\n\n\tfunction openSearch() {\n\t\t//ensure the search term input dialog is visible and has focus:\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tinputbox.style.display = \"inline\";\n\t\tinputbox.focus();\n\t\tinputbox.select();\n\t}\n\n\tfunction toggleSearch() {\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tif (inputbox.style.display !== \"inline\") {\n\t\t\topenSearch();\n\t\t}\n\t\telse {\n\t\t\tinputbox.style.display = \"none\";\n\t\t\tmyHilitor.remove();\n\t\t}\n\t}\n\n\tfunction doSearch() {\n\t\t//if there's been a change in the search term, perform a new search:\n\t\tif (searchboxDirty) {\n\t\t\tvar searchstring = document.getElementById(\"searchinput\").value;\n\n\t\t\t//find the keyword amongst the slides\n\t\t\tmyHilitor = new Hilitor(\"slidecontent\");\n\t\t\tmatchedSlides = myHilitor.apply(searchstring);\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\n\t\t//navigate to the next slide that has the keyword, wrapping to the first if necessary\n\t\tif (matchedSlides.length && (matchedSlides.length <= currentMatchedIndex)) {\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\t\tif (matchedSlides.length > currentMatchedIndex) {\n\t\t\tReveal.slide(matchedSlides[currentMatchedIndex].h, matchedSlides[currentMatchedIndex].v);\n\t\t\tcurrentMatchedIndex++;\n\t\t}\n\t}\n\n\tvar dom = {};\n\tdom.wrapper = document.querySelector( '.reveal' );\n\n\tif( !dom.wrapper.querySelector( '.searchbox' ) ) {\n\t\t\tvar searchElement = document.createElement( 'div' );\n\t\t\tsearchElement.id = \"searchinputdiv\";\n\t\t\tsearchElement.classList.add( 'searchdiv' );\n      searchElement.style.position = 'absolute';\n      searchElement.style.top = '10px';\n      searchElement.style.left = '10px';\n      //embedded base64 search icon Designed by Sketchdock - http://www.sketchdock.com/:\n\t\t\tsearchElement.innerHTML = '<span><input type=\"search\" id=\"searchinput\" class=\"searchinput\" style=\"vertical-align: top;\"/><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJiSURBVHjatFZNaxNBGH5md+Mmu92NVdKDRipSAyqCghgQD4L4cRe86UUtAQ+eFCxoa4/25EXBFi8eBE+eRPoDhB6KgiiixdAPCEkx2pjvTXadd9yNsflwuyUDD/O+u8PzzDPvzOwyx3EwyCZhwG3gAkp7MnpjgbopjsltcD4gjuXZZKeAR348MYLYTm3LzOs/y3j3JTfZxgXWXmTuwPHIc4VmoOmv5IrI53+AO2DdHLjkDWQ3GoEEVFXtXQOvkSnPWcyUceviLhwbDYv8/XIVj97kse7TodLvZXxYxrPUHkQ1ufXs3FEdybEIxucySOesoNvUgWU1cP3MkCBfTFdw9fGaAMVmRELq7LBw2Q3/FaAxxWIRpw+ZIr/7IouPqzUBiqmdHAv7EuhRAwf1er2Vy4x1jW3b2d5Jfvu5IPp7l2LYbcgCFFNb+FoJ7oBqEAqFMPNqFcmEgVMJDfMT+1tvN0pNjERlMS6QA5pFOKxiKVPFhakPeL3It+WGJUDxt2wFR+JhzI7v5ctkd8DXOZAkCYYxhO+lKm4+Xfqz/rIixBuNBl7eOYzkQQNzqX249mRl6zUgEcYkaJrGhUwBinVdh6IouPzwE6/DL5w4oLkH8y981aDf+uq6hlKpJESiUdNfDZi7/ehG9K6KfiA3pml0PLcsq+cSMTj2NL9ukc4UOmz7AZ3+crkC4mHujFvXNaMFB3bEr8xPS6p5O+jXxq4VZtaen7/PwzrntjcLUE0iHPS1Ud1cdiEJl/8WivZk0wXd7zWOMkeF8s0CcAmkNrC2nvXZDbbbN73ccYnZoH9bfgswAFzAe9/h3dbKAAAAAElFTkSuQmCC\" id=\"searchbutton\" class=\"searchicon\" style=\"vertical-align: top; margin-top: -1px;\"/></span>';\n\t\t\tdom.wrapper.appendChild( searchElement );\n\t}\n\n\tdocument.getElementById(\"searchbutton\").addEventListener( 'click', function(event) {\n\t\tdoSearch();\n\t}, false );\n\n\tdocument.getElementById(\"searchinput\").addEventListener( 'keyup', function( event ) {\n\t\tswitch (event.keyCode) {\n\t\t\tcase 13:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tdoSearch();\n\t\t\t\tsearchboxDirty = false;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tsearchboxDirty = true;\n\t\t}\n\t}, false );\n\n\t// Open the search when the 's' key is hit (yes, this conflicts with the notes plugin, disabling for now)\n\t/*\n\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t// Disregard the event if the target is editable or a\n\t\t// modifier is present\n\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\tif( event.keyCode === 83 ) {\n\t\t\tevent.preventDefault();\n\t\t\topenSearch();\n\t\t}\n\t}, false );\n*/\n\treturn { open: openSearch };\n})();\n"
  },
  {
    "path": "doc/cppnow-2017/plugin/zoom-js/zoom.js",
    "content": "// Custom reveal.js integration\n(function(){\n\tvar isEnabled = true;\n\n\tdocument.querySelector( '.reveal .slides' ).addEventListener( 'mousedown', function( event ) {\n\t\tvar modifier = ( Reveal.getConfig().zoomKey ? Reveal.getConfig().zoomKey : 'alt' ) + 'Key';\n\n\t\tvar zoomPadding = 20;\n\t\tvar revealScale = Reveal.getScale();\n\n\t\tif( event[ modifier ] && isEnabled ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar bounds = event.target.getBoundingClientRect();\n\n\t\t\tzoom.to({\n\t\t\t\tx: ( bounds.left * revealScale ) - zoomPadding,\n\t\t\t\ty: ( bounds.top * revealScale ) - zoomPadding,\n\t\t\t\twidth: ( bounds.width * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\theight: ( bounds.height * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\tpan: false\n\t\t\t});\n\t\t}\n\t} );\n\n\tReveal.addEventListener( 'overviewshown', function() { isEnabled = false; } );\n\tReveal.addEventListener( 'overviewhidden', function() { isEnabled = true; } );\n})();\n\n/*!\n * zoom.js 0.3 (modified for use with reveal.js)\n * http://lab.hakim.se/zoom-js\n * MIT licensed\n *\n * Copyright (C) 2011-2014 Hakim El Hattab, http://hakim.se\n */\nvar zoom = (function(){\n\n\t// The current zoom level (scale)\n\tvar level = 1;\n\n\t// The current mouse position, used for panning\n\tvar mouseX = 0,\n\t\tmouseY = 0;\n\n\t// Timeout before pan is activated\n\tvar panEngageTimeout = -1,\n\t\tpanUpdateInterval = -1;\n\n\t// Check for transform support so that we can fallback otherwise\n\tvar supportsTransforms = \t'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\tif( supportsTransforms ) {\n\t\t// The easing that will be applied when we zoom in/out\n\t\tdocument.body.style.transition = 'transform 0.8s ease';\n\t\tdocument.body.style.OTransition = '-o-transform 0.8s ease';\n\t\tdocument.body.style.msTransition = '-ms-transform 0.8s ease';\n\t\tdocument.body.style.MozTransition = '-moz-transform 0.8s ease';\n\t\tdocument.body.style.WebkitTransition = '-webkit-transform 0.8s ease';\n\t}\n\n\t// Zoom out if the user hits escape\n\tdocument.addEventListener( 'keyup', function( event ) {\n\t\tif( level !== 1 && event.keyCode === 27 ) {\n\t\t\tzoom.out();\n\t\t}\n\t} );\n\n\t// Monitor mouse movement for panning\n\tdocument.addEventListener( 'mousemove', function( event ) {\n\t\tif( level !== 1 ) {\n\t\t\tmouseX = event.clientX;\n\t\t\tmouseY = event.clientY;\n\t\t}\n\t} );\n\n\t/**\n\t * Applies the CSS required to zoom in, prefers the use of CSS3\n\t * transforms but falls back on zoom for IE.\n\t *\n\t * @param {Object} rect\n\t * @param {Number} scale\n\t */\n\tfunction magnify( rect, scale ) {\n\n\t\tvar scrollOffset = getScrollOffset();\n\n\t\t// Ensure a width/height is set\n\t\trect.width = rect.width || 1;\n\t\trect.height = rect.height || 1;\n\n\t\t// Center the rect within the zoomed viewport\n\t\trect.x -= ( window.innerWidth - ( rect.width * scale ) ) / 2;\n\t\trect.y -= ( window.innerHeight - ( rect.height * scale ) ) / 2;\n\n\t\tif( supportsTransforms ) {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.transform = '';\n\t\t\t\tdocument.body.style.OTransform = '';\n\t\t\t\tdocument.body.style.msTransform = '';\n\t\t\t\tdocument.body.style.MozTransform = '';\n\t\t\t\tdocument.body.style.WebkitTransform = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tvar origin = scrollOffset.x +'px '+ scrollOffset.y +'px',\n\t\t\t\t\ttransform = 'translate('+ -rect.x +'px,'+ -rect.y +'px) scale('+ scale +')';\n\n\t\t\t\tdocument.body.style.transformOrigin = origin;\n\t\t\t\tdocument.body.style.OTransformOrigin = origin;\n\t\t\t\tdocument.body.style.msTransformOrigin = origin;\n\t\t\t\tdocument.body.style.MozTransformOrigin = origin;\n\t\t\t\tdocument.body.style.WebkitTransformOrigin = origin;\n\n\t\t\t\tdocument.body.style.transform = transform;\n\t\t\t\tdocument.body.style.OTransform = transform;\n\t\t\t\tdocument.body.style.msTransform = transform;\n\t\t\t\tdocument.body.style.MozTransform = transform;\n\t\t\t\tdocument.body.style.WebkitTransform = transform;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.position = '';\n\t\t\t\tdocument.body.style.left = '';\n\t\t\t\tdocument.body.style.top = '';\n\t\t\t\tdocument.body.style.width = '';\n\t\t\t\tdocument.body.style.height = '';\n\t\t\t\tdocument.body.style.zoom = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tdocument.body.style.position = 'relative';\n\t\t\t\tdocument.body.style.left = ( - ( scrollOffset.x + rect.x ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.top = ( - ( scrollOffset.y + rect.y ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.width = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.height = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.zoom = scale;\n\t\t\t}\n\t\t}\n\n\t\tlevel = scale;\n\n\t\tif( document.documentElement.classList ) {\n\t\t\tif( level !== 1 ) {\n\t\t\t\tdocument.documentElement.classList.add( 'zoomed' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdocument.documentElement.classList.remove( 'zoomed' );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Pan the document when the mosue cursor approaches the edges\n\t * of the window.\n\t */\n\tfunction pan() {\n\t\tvar range = 0.12,\n\t\t\trangeX = window.innerWidth * range,\n\t\t\trangeY = window.innerHeight * range,\n\t\t\tscrollOffset = getScrollOffset();\n\n\t\t// Up\n\t\tif( mouseY < rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y - ( 1 - ( mouseY / rangeY ) ) * ( 14 / level ) );\n\t\t}\n\t\t// Down\n\t\telse if( mouseY > window.innerHeight - rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y + ( 1 - ( window.innerHeight - mouseY ) / rangeY ) * ( 14 / level ) );\n\t\t}\n\n\t\t// Left\n\t\tif( mouseX < rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x - ( 1 - ( mouseX / rangeX ) ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t\t// Right\n\t\telse if( mouseX > window.innerWidth - rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x + ( 1 - ( window.innerWidth - mouseX ) / rangeX ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t}\n\n\tfunction getScrollOffset() {\n\t\treturn {\n\t\t\tx: window.scrollX !== undefined ? window.scrollX : window.pageXOffset,\n\t\t\ty: window.scrollY !== undefined ? window.scrollY : window.pageYOffset\n\t\t}\n\t}\n\n\treturn {\n\t\t/**\n\t\t * Zooms in on either a rectangle or HTML element.\n\t\t *\n\t\t * @param {Object} options\n\t\t *   - element: HTML element to zoom in on\n\t\t *   OR\n\t\t *   - x/y: coordinates in non-transformed space to zoom in on\n\t\t *   - width/height: the portion of the screen to zoom in on\n\t\t *   - scale: can be used instead of width/height to explicitly set scale\n\t\t */\n\t\tto: function( options ) {\n\n\t\t\t// Due to an implementation limitation we can't zoom in\n\t\t\t// to another element without zooming out first\n\t\t\tif( level !== 1 ) {\n\t\t\t\tzoom.out();\n\t\t\t}\n\t\t\telse {\n\t\t\t\toptions.x = options.x || 0;\n\t\t\t\toptions.y = options.y || 0;\n\n\t\t\t\t// If an element is set, that takes precedence\n\t\t\t\tif( !!options.element ) {\n\t\t\t\t\t// Space around the zoomed in element to leave on screen\n\t\t\t\t\tvar padding = 20;\n\t\t\t\t\tvar bounds = options.element.getBoundingClientRect();\n\n\t\t\t\t\toptions.x = bounds.left - padding;\n\t\t\t\t\toptions.y = bounds.top - padding;\n\t\t\t\t\toptions.width = bounds.width + ( padding * 2 );\n\t\t\t\t\toptions.height = bounds.height + ( padding * 2 );\n\t\t\t\t}\n\n\t\t\t\t// If width/height values are set, calculate scale from those values\n\t\t\t\tif( options.width !== undefined && options.height !== undefined ) {\n\t\t\t\t\toptions.scale = Math.max( Math.min( window.innerWidth / options.width, window.innerHeight / options.height ), 1 );\n\t\t\t\t}\n\n\t\t\t\tif( options.scale > 1 ) {\n\t\t\t\t\toptions.x *= options.scale;\n\t\t\t\t\toptions.y *= options.scale;\n\n\t\t\t\t\tmagnify( options, options.scale );\n\n\t\t\t\t\tif( options.pan !== false ) {\n\n\t\t\t\t\t\t// Wait with engaging panning as it may conflict with the\n\t\t\t\t\t\t// zoom transition\n\t\t\t\t\t\tpanEngageTimeout = setTimeout( function() {\n\t\t\t\t\t\t\tpanUpdateInterval = setInterval( pan, 1000 / 60 );\n\t\t\t\t\t\t}, 800 );\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * Resets the document zoom state to its default.\n\t\t */\n\t\tout: function() {\n\t\t\tclearTimeout( panEngageTimeout );\n\t\t\tclearInterval( panUpdateInterval );\n\n\t\t\tmagnify( { x: 0, y: 0 }, 1 );\n\n\t\t\tlevel = 1;\n\t\t},\n\n\t\t// Alias\n\t\tmagnify: function( options ) { this.to( options ) },\n\t\treset: function() { this.out() },\n\n\t\tzoomLevel: function() {\n\t\t\treturn level;\n\t\t}\n\t}\n\n})();\n\n\n\n"
  },
  {
    "path": "doc/cppnow-2017/test/examples/barebones.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Barebones</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Barebones Presentation</h2>\n\t\t\t\t\t<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>No Theme</h2>\n\t\t\t\t\t<p>There's no theme included, so it will fall back on browser defaults.</p>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize();\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/examples/embedded-media.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Embedded Media</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/default.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Embedded Media Test</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<iframe data-autoplay width=\"420\" height=\"345\" src=\"http://www.youtube.com/embed/l3RQZ4mcr1c\"></iframe>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Empty Slide</h2>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\ttransition: 'linear'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/examples/math.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Math Plugin</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/night.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>reveal.js Math Plugin</h2>\n\t\t\t\t\t<p>A thin wrapper for MathJax</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t<script type=\"math/tex; mode=display\">\n\t\t\t\t\t\t\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right) \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\t\t\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\thistory: true,\n\t\t\t\ttransition: 'linear',\n\n\t\t\t\tmath: {\n\t\t\t\t\t// mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\t\t\t\tconfig: 'TeX-AMS_HTML-full'\n\t\t\t\t},\n\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js' },\n\t\t\t\t\t{ src: '../../plugin/math/math.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/examples/slide-backgrounds.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Backgrounds</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/serif.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h2 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h2 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background=\"#00ffff\">\n\t\t\t\t\t<h2>data-background: #00ffff</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#bb00bb\">\n\t\t\t\t\t<h2>data-background: #bb00bb</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-color=\"lightblue\">\n\t\t\t\t\t<h2>data-background: lightblue</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#ff0000\">\n\t\t\t\t\t\t<h2>data-background: #ff0000</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgba(0, 0, 0, 0.2)\">\n\t\t\t\t\t\t<h2>data-background: rgba(0, 0, 0, 0.2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"salmon\">\n\t\t\t\t\t\t<h2>data-background: salmon</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"rgba(0, 100, 100, 0.2)\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgb(66, 66, 66)\">\n\t\t\t\t\t\t<h2>Background applied to slide inside of stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"assets/image2.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t<pre>data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\"</pre>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (1/2)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (2/2)</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\">\n\t\t\t\t\t<h2>Video background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-iframe=\"https://slides.com\">\n\t\t\t\t\t<h2>Iframe background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (1/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (2/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t<h2>Same background from horizontal to vertical (1/3)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (2/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (3/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available here:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\t// rtl: true,\n\n\t\t\t\ttransition: 'linear',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/examples/slide-transitions.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Transitions</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h3 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h3 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t<h3>data-transition: zoom</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom-in fade-out\">\n\t\t\t\t\t<h3>data-transition: zoom-in fade-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex\">\n\t\t\t\t\t<h3>data-transition: convex</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex-in concave-out\">\n\t\t\t\t\t<h3>data-transition: convex-in concave-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"concave\">\n\t\t\t\t\t\t<h3>data-transition: concave</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"convex-in fade-out\">\n\t\t\t\t\t\t<h3>data-transition: convex-in fade-out</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"none\">\n\t\t\t\t\t<h3>data-transition: none</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\thistory: true,\n\n\t\t\t\t// transition: 'slide',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/qunit-1.12.0.css",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2012 jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n/** Font Family and Sizes */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {\n\tfont-family: \"Helvetica Neue Light\", \"HelveticaNeue-Light\", \"Helvetica Neue\", Calibri, Helvetica, Arial, sans-serif;\n}\n\n#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }\n#qunit-tests { font-size: smaller; }\n\n\n/** Resets */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n\n/** Header */\n\n#qunit-header {\n\tpadding: 0.5em 0 0.5em 1em;\n\n\tcolor: #8699a4;\n\tbackground-color: #0d3349;\n\n\tfont-size: 1.5em;\n\tline-height: 1em;\n\tfont-weight: normal;\n\n\tborder-radius: 5px 5px 0 0;\n\t-moz-border-radius: 5px 5px 0 0;\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-top-left-radius: 5px;\n}\n\n#qunit-header a {\n\ttext-decoration: none;\n\tcolor: #c2ccd1;\n}\n\n#qunit-header a:hover,\n#qunit-header a:focus {\n\tcolor: #fff;\n}\n\n#qunit-testrunner-toolbar label {\n\tdisplay: inline-block;\n\tpadding: 0 .5em 0 .1em;\n}\n\n#qunit-banner {\n\theight: 5px;\n}\n\n#qunit-testrunner-toolbar {\n\tpadding: 0.5em 0 0.5em 2em;\n\tcolor: #5E740B;\n\tbackground-color: #eee;\n\toverflow: hidden;\n}\n\n#qunit-userAgent {\n\tpadding: 0.5em 0 0.5em 2.5em;\n\tbackground-color: #2b81af;\n\tcolor: #fff;\n\ttext-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;\n}\n\n#qunit-modulefilter-container {\n\tfloat: right;\n}\n\n/** Tests: Pass/Fail */\n\n#qunit-tests {\n\tlist-style-position: inside;\n}\n\n#qunit-tests li {\n\tpadding: 0.4em 0.5em 0.4em 2.5em;\n\tborder-bottom: 1px solid #fff;\n\tlist-style-position: inside;\n}\n\n#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {\n\tdisplay: none;\n}\n\n#qunit-tests li strong {\n\tcursor: pointer;\n}\n\n#qunit-tests li a {\n\tpadding: 0.5em;\n\tcolor: #c2ccd1;\n\ttext-decoration: none;\n}\n#qunit-tests li a:hover,\n#qunit-tests li a:focus {\n\tcolor: #000;\n}\n\n#qunit-tests li .runtime {\n\tfloat: right;\n\tfont-size: smaller;\n}\n\n.qunit-assert-list {\n\tmargin-top: 0.5em;\n\tpadding: 0.5em;\n\n\tbackground-color: #fff;\n\n\tborder-radius: 5px;\n\t-moz-border-radius: 5px;\n\t-webkit-border-radius: 5px;\n}\n\n.qunit-collapsed {\n\tdisplay: none;\n}\n\n#qunit-tests table {\n\tborder-collapse: collapse;\n\tmargin-top: .2em;\n}\n\n#qunit-tests th {\n\ttext-align: right;\n\tvertical-align: top;\n\tpadding: 0 .5em 0 0;\n}\n\n#qunit-tests td {\n\tvertical-align: top;\n}\n\n#qunit-tests pre {\n\tmargin: 0;\n\twhite-space: pre-wrap;\n\tword-wrap: break-word;\n}\n\n#qunit-tests del {\n\tbackground-color: #e0f2be;\n\tcolor: #374e0c;\n\ttext-decoration: none;\n}\n\n#qunit-tests ins {\n\tbackground-color: #ffcaca;\n\tcolor: #500;\n\ttext-decoration: none;\n}\n\n/*** Test Counts */\n\n#qunit-tests b.counts                       { color: black; }\n#qunit-tests b.passed                       { color: #5E740B; }\n#qunit-tests b.failed                       { color: #710909; }\n\n#qunit-tests li li {\n\tpadding: 5px;\n\tbackground-color: #fff;\n\tborder-bottom: none;\n\tlist-style-position: inside;\n}\n\n/*** Passing Styles */\n\n#qunit-tests li li.pass {\n\tcolor: #3c510c;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #C6E746;\n}\n\n#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }\n#qunit-tests .pass .test-name               { color: #366097; }\n\n#qunit-tests .pass .test-actual,\n#qunit-tests .pass .test-expected           { color: #999999; }\n\n#qunit-banner.qunit-pass                    { background-color: #C6E746; }\n\n/*** Failing Styles */\n\n#qunit-tests li li.fail {\n\tcolor: #710909;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #EE5757;\n\twhite-space: pre;\n}\n\n#qunit-tests > li:last-child {\n\tborder-radius: 0 0 5px 5px;\n\t-moz-border-radius: 0 0 5px 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n}\n\n#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }\n#qunit-tests .fail .test-name,\n#qunit-tests .fail .module-name             { color: #000000; }\n\n#qunit-tests .fail .test-actual             { color: #EE5757; }\n#qunit-tests .fail .test-expected           { color: green;   }\n\n#qunit-banner.qunit-fail                    { background-color: #EE5757; }\n\n\n/** Result */\n\n#qunit-testresult {\n\tpadding: 0.5em 0.5em 0.5em 2.5em;\n\n\tcolor: #2b81af;\n\tbackground-color: #D2E0E6;\n\n\tborder-bottom: 1px solid white;\n}\n#qunit-testresult .module-name {\n\tfont-weight: bold;\n}\n\n/** Fixture */\n\n#qunit-fixture {\n\tposition: absolute;\n\ttop: -10000px;\n\tleft: -10000px;\n\twidth: 1000px;\n\theight: 1000px;\n}"
  },
  {
    "path": "doc/cppnow-2017/test/qunit-1.12.0.js",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2013 jQuery Foundation and other contributors\n * Released under the MIT license.\n * https://jquery.org/license/\n */\n\n(function( window ) {\n\nvar QUnit,\n\tassert,\n\tconfig,\n\tonErrorFnPrev,\n\ttestId = 0,\n\tfileName = (sourceFromStacktrace( 0 ) || \"\" ).replace(/(:\\d+)+\\)?/, \"\").replace(/.+\\//, \"\"),\n\ttoString = Object.prototype.toString,\n\thasOwn = Object.prototype.hasOwnProperty,\n\t// Keep a local reference to Date (GH-283)\n\tDate = window.Date,\n\tsetTimeout = window.setTimeout,\n\tdefined = {\n\t\tsetTimeout: typeof window.setTimeout !== \"undefined\",\n\t\tsessionStorage: (function() {\n\t\t\tvar x = \"qunit-test-string\";\n\t\t\ttry {\n\t\t\t\tsessionStorage.setItem( x, x );\n\t\t\t\tsessionStorage.removeItem( x );\n\t\t\t\treturn true;\n\t\t\t} catch( e ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}())\n\t},\n\t/**\n\t * Provides a normalized error string, correcting an issue\n\t * with IE 7 (and prior) where Error.prototype.toString is\n\t * not properly implemented\n\t *\n\t * Based on http://es5.github.com/#x15.11.4.4\n\t *\n\t * @param {String|Error} error\n\t * @return {String} error message\n\t */\n\terrorString = function( error ) {\n\t\tvar name, message,\n\t\t\terrorString = error.toString();\n\t\tif ( errorString.substring( 0, 7 ) === \"[object\" ) {\n\t\t\tname = error.name ? error.name.toString() : \"Error\";\n\t\t\tmessage = error.message ? error.message.toString() : \"\";\n\t\t\tif ( name && message ) {\n\t\t\t\treturn name + \": \" + message;\n\t\t\t} else if ( name ) {\n\t\t\t\treturn name;\n\t\t\t} else if ( message ) {\n\t\t\t\treturn message;\n\t\t\t} else {\n\t\t\t\treturn \"Error\";\n\t\t\t}\n\t\t} else {\n\t\t\treturn errorString;\n\t\t}\n\t},\n\t/**\n\t * Makes a clone of an object using only Array or Object as base,\n\t * and copies over the own enumerable properties.\n\t *\n\t * @param {Object} obj\n\t * @return {Object} New object with only the own properties (recursively).\n\t */\n\tobjectValues = function( obj ) {\n\t\t// Grunt 0.3.x uses an older version of jshint that still has jshint/jshint#392.\n\t\t/*jshint newcap: false */\n\t\tvar key, val,\n\t\t\tvals = QUnit.is( \"array\", obj ) ? [] : {};\n\t\tfor ( key in obj ) {\n\t\t\tif ( hasOwn.call( obj, key ) ) {\n\t\t\t\tval = obj[key];\n\t\t\t\tvals[key] = val === Object(val) ? objectValues(val) : val;\n\t\t\t}\n\t\t}\n\t\treturn vals;\n\t};\n\nfunction Test( settings ) {\n\textend( this, settings );\n\tthis.assertions = [];\n\tthis.testNumber = ++Test.count;\n}\n\nTest.count = 0;\n\nTest.prototype = {\n\tinit: function() {\n\t\tvar a, b, li,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tif ( tests ) {\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml;\n\n\t\t\t// `a` initialized at top of scope\n\t\t\ta = document.createElement( \"a\" );\n\t\t\ta.innerHTML = \"Rerun\";\n\t\t\ta.href = QUnit.url({ testNumber: this.testNumber });\n\n\t\t\tli = document.createElement( \"li\" );\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.className = \"running\";\n\t\t\tli.id = this.id = \"qunit-test-output\" + testId++;\n\n\t\t\ttests.appendChild( li );\n\t\t}\n\t},\n\tsetup: function() {\n\t\tif (\n\t\t\t// Emit moduleStart when we're switching from one module to another\n\t\t\tthis.module !== config.previousModule ||\n\t\t\t\t// They could be equal (both undefined) but if the previousModule property doesn't\n\t\t\t\t// yet exist it means this is the first test in a suite that isn't wrapped in a\n\t\t\t\t// module, in which case we'll just emit a moduleStart event for 'undefined'.\n\t\t\t\t// Without this, reporters can get testStart before moduleStart  which is a problem.\n\t\t\t\t!hasOwn.call( config, \"previousModule\" )\n\t\t) {\n\t\t\tif ( hasOwn.call( config, \"previousModule\" ) ) {\n\t\t\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\t\t\tname: config.previousModule,\n\t\t\t\t\tfailed: config.moduleStats.bad,\n\t\t\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\t\t\ttotal: config.moduleStats.all\n\t\t\t\t});\n\t\t\t}\n\t\t\tconfig.previousModule = this.module;\n\t\t\tconfig.moduleStats = { all: 0, bad: 0 };\n\t\t\trunLoggingCallbacks( \"moduleStart\", QUnit, {\n\t\t\t\tname: this.module\n\t\t\t});\n\t\t}\n\n\t\tconfig.current = this;\n\n\t\tthis.testEnvironment = extend({\n\t\t\tsetup: function() {},\n\t\t\tteardown: function() {}\n\t\t}, this.moduleTestEnvironment );\n\n\t\tthis.started = +new Date();\n\t\trunLoggingCallbacks( \"testStart\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module\n\t\t});\n\n\t\t/*jshint camelcase:false */\n\n\n\t\t/**\n\t\t * Expose the current test environment.\n\t\t *\n\t\t * @deprecated since 1.12.0: Use QUnit.config.current.testEnvironment instead.\n\t\t */\n\t\tQUnit.current_testEnvironment = this.testEnvironment;\n\n\t\t/*jshint camelcase:true */\n\n\t\tif ( !config.pollution ) {\n\t\t\tsaveGlobal();\n\t\t}\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t}\n\t\ttry {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t} catch( e ) {\n\t\t\tQUnit.pushFailure( \"Setup failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t}\n\t},\n\trun: function() {\n\t\tconfig.current = this;\n\n\t\tvar running = id( \"qunit-testresult\" );\n\n\t\tif ( running ) {\n\t\t\trunning.innerHTML = \"Running: <br/>\" + this.nameHtml;\n\t\t}\n\n\t\tif ( this.async ) {\n\t\t\tQUnit.stop();\n\t\t}\n\n\t\tthis.callbackStarted = +new Date();\n\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\treturn;\n\t\t}\n\n\t\ttry {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t} catch( e ) {\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\n\t\t\tQUnit.pushFailure( \"Died on test #\" + (this.assertions.length + 1) + \" \" + this.stack + \": \" + ( e.message || e ), extractStacktrace( e, 0 ) );\n\t\t\t// else next test will carry the responsibility\n\t\t\tsaveGlobal();\n\n\t\t\t// Restart the tests if they're blocking\n\t\t\tif ( config.blocking ) {\n\t\t\t\tQUnit.start();\n\t\t\t}\n\t\t}\n\t},\n\tteardown: function() {\n\t\tconfig.current = this;\n\t\tif ( config.notrycatch ) {\n\t\t\tif ( typeof this.callbackRuntime === \"undefined\" ) {\n\t\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\t}\n\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\t} catch( e ) {\n\t\t\t\tQUnit.pushFailure( \"Teardown failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t\t}\n\t\t}\n\t\tcheckPollution();\n\t},\n\tfinish: function() {\n\t\tconfig.current = this;\n\t\tif ( config.requireExpects && this.expected === null ) {\n\t\t\tQUnit.pushFailure( \"Expected number of assertions to be defined, but expect() was not called.\", this.stack );\n\t\t} else if ( this.expected !== null && this.expected !== this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected \" + this.expected + \" assertions, but \" + this.assertions.length + \" were run\", this.stack );\n\t\t} else if ( this.expected === null && !this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected at least one assertion, but none were run - call expect(0) to accept zero assertions.\", this.stack );\n\t\t}\n\n\t\tvar i, assertion, a, b, time, li, ol,\n\t\t\ttest = this,\n\t\t\tgood = 0,\n\t\t\tbad = 0,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tthis.runtime = +new Date() - this.started;\n\t\tconfig.stats.all += this.assertions.length;\n\t\tconfig.moduleStats.all += this.assertions.length;\n\n\t\tif ( tests ) {\n\t\t\tol = document.createElement( \"ol\" );\n\t\t\tol.className = \"qunit-assert-list\";\n\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tassertion = this.assertions[i];\n\n\t\t\t\tli = document.createElement( \"li\" );\n\t\t\t\tli.className = assertion.result ? \"pass\" : \"fail\";\n\t\t\t\tli.innerHTML = assertion.message || ( assertion.result ? \"okay\" : \"failed\" );\n\t\t\t\tol.appendChild( li );\n\n\t\t\t\tif ( assertion.result ) {\n\t\t\t\t\tgood++;\n\t\t\t\t} else {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// store result when possible\n\t\t\tif ( QUnit.config.reorder && defined.sessionStorage ) {\n\t\t\t\tif ( bad ) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-test-\" + this.module + \"-\" + this.testName, bad );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( bad === 0 ) {\n\t\t\t\taddClass( ol, \"qunit-collapsed\" );\n\t\t\t}\n\n\t\t\t// `b` initialized at top of scope\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml + \" <b class='counts'>(<b class='failed'>\" + bad + \"</b>, <b class='passed'>\" + good + \"</b>, \" + this.assertions.length + \")</b>\";\n\n\t\t\taddEvent(b, \"click\", function() {\n\t\t\t\tvar next = b.parentNode.lastChild,\n\t\t\t\t\tcollapsed = hasClass( next, \"qunit-collapsed\" );\n\t\t\t\t( collapsed ? removeClass : addClass )( next, \"qunit-collapsed\" );\n\t\t\t});\n\n\t\t\taddEvent(b, \"dblclick\", function( e ) {\n\t\t\t\tvar target = e && e.target ? e.target : window.event.srcElement;\n\t\t\t\tif ( target.nodeName.toLowerCase() === \"span\" || target.nodeName.toLowerCase() === \"b\" ) {\n\t\t\t\t\ttarget = target.parentNode;\n\t\t\t\t}\n\t\t\t\tif ( window.location && target.nodeName.toLowerCase() === \"strong\" ) {\n\t\t\t\t\twindow.location = QUnit.url({ testNumber: test.testNumber });\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// `time` initialized at top of scope\n\t\t\ttime = document.createElement( \"span\" );\n\t\t\ttime.className = \"runtime\";\n\t\t\ttime.innerHTML = this.runtime + \" ms\";\n\n\t\t\t// `li` initialized at top of scope\n\t\t\tli = id( this.id );\n\t\t\tli.className = bad ? \"fail\" : \"pass\";\n\t\t\tli.removeChild( li.firstChild );\n\t\t\ta = li.firstChild;\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.appendChild( time );\n\t\t\tli.appendChild( ol );\n\n\t\t} else {\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tif ( !this.assertions[i].result ) {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\trunLoggingCallbacks( \"testDone\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module,\n\t\t\tfailed: bad,\n\t\t\tpassed: this.assertions.length - bad,\n\t\t\ttotal: this.assertions.length,\n\t\t\tduration: this.runtime\n\t\t});\n\n\t\tQUnit.reset();\n\n\t\tconfig.current = undefined;\n\t},\n\n\tqueue: function() {\n\t\tvar bad,\n\t\t\ttest = this;\n\n\t\tsynchronize(function() {\n\t\t\ttest.init();\n\t\t});\n\t\tfunction run() {\n\t\t\t// each of these can by async\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.setup();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.run();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.teardown();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.finish();\n\t\t\t});\n\t\t}\n\n\t\t// `bad` initialized at top of scope\n\t\t// defer when previous test run passed, if storage is available\n\t\tbad = QUnit.config.reorder && defined.sessionStorage &&\n\t\t\t\t\t\t+sessionStorage.getItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\n\t\tif ( bad ) {\n\t\t\trun();\n\t\t} else {\n\t\t\tsynchronize( run, true );\n\t\t}\n\t}\n};\n\n// Root QUnit object.\n// `QUnit` initialized at top of scope\nQUnit = {\n\n\t// call on start of module test to prepend name to all tests\n\tmodule: function( name, testEnvironment ) {\n\t\tconfig.currentModule = name;\n\t\tconfig.currentModuleTestEnvironment = testEnvironment;\n\t\tconfig.modules[name] = true;\n\t},\n\n\tasyncTest: function( testName, expected, callback ) {\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tQUnit.test( testName, expected, callback, true );\n\t},\n\n\ttest: function( testName, expected, callback, async ) {\n\t\tvar test,\n\t\t\tnameHtml = \"<span class='test-name'>\" + escapeText( testName ) + \"</span>\";\n\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tif ( config.currentModule ) {\n\t\t\tnameHtml = \"<span class='module-name'>\" + escapeText( config.currentModule ) + \"</span>: \" + nameHtml;\n\t\t}\n\n\t\ttest = new Test({\n\t\t\tnameHtml: nameHtml,\n\t\t\ttestName: testName,\n\t\t\texpected: expected,\n\t\t\tasync: async,\n\t\t\tcallback: callback,\n\t\t\tmodule: config.currentModule,\n\t\t\tmoduleTestEnvironment: config.currentModuleTestEnvironment,\n\t\t\tstack: sourceFromStacktrace( 2 )\n\t\t});\n\n\t\tif ( !validTest( test ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\ttest.queue();\n\t},\n\n\t// Specify the number of expected assertions to guarantee that failed test (no assertions are run at all) don't slip through.\n\texpect: function( asserts ) {\n\t\tif (arguments.length === 1) {\n\t\t\tconfig.current.expected = asserts;\n\t\t} else {\n\t\t\treturn config.current.expected;\n\t\t}\n\t},\n\n\tstart: function( count ) {\n\t\t// QUnit hasn't been initialized yet.\n\t\t// Note: RequireJS (et al) may delay onLoad\n\t\tif ( config.semaphore === undefined ) {\n\t\t\tQUnit.begin(function() {\n\t\t\t\t// This is triggered at the top of QUnit.load, push start() to the event loop, to allow QUnit.load to finish first\n\t\t\t\tsetTimeout(function() {\n\t\t\t\t\tQUnit.start( count );\n\t\t\t\t});\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\n\t\tconfig.semaphore -= count || 1;\n\t\t// don't start until equal number of stop-calls\n\t\tif ( config.semaphore > 0 ) {\n\t\t\treturn;\n\t\t}\n\t\t// ignore if start is called more often then stop\n\t\tif ( config.semaphore < 0 ) {\n\t\t\tconfig.semaphore = 0;\n\t\t\tQUnit.pushFailure( \"Called start() while already started (QUnit.config.semaphore was 0 already)\", null, sourceFromStacktrace(2) );\n\t\t\treturn;\n\t\t}\n\t\t// A slight delay, to avoid any current callbacks\n\t\tif ( defined.setTimeout ) {\n\t\t\tsetTimeout(function() {\n\t\t\t\tif ( config.semaphore > 0 ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( config.timeout ) {\n\t\t\t\t\tclearTimeout( config.timeout );\n\t\t\t\t}\n\n\t\t\t\tconfig.blocking = false;\n\t\t\t\tprocess( true );\n\t\t\t}, 13);\n\t\t} else {\n\t\t\tconfig.blocking = false;\n\t\t\tprocess( true );\n\t\t}\n\t},\n\n\tstop: function( count ) {\n\t\tconfig.semaphore += count || 1;\n\t\tconfig.blocking = true;\n\n\t\tif ( config.testTimeout && defined.setTimeout ) {\n\t\t\tclearTimeout( config.timeout );\n\t\t\tconfig.timeout = setTimeout(function() {\n\t\t\t\tQUnit.ok( false, \"Test timed out\" );\n\t\t\t\tconfig.semaphore = 1;\n\t\t\t\tQUnit.start();\n\t\t\t}, config.testTimeout );\n\t\t}\n\t}\n};\n\n// `assert` initialized at top of scope\n// Assert helpers\n// All of these must either call QUnit.push() or manually do:\n// - runLoggingCallbacks( \"log\", .. );\n// - config.current.assertions.push({ .. });\n// We attach it to the QUnit object *after* we expose the public API,\n// otherwise `assert` will become a global variable in browsers (#341).\nassert = {\n\t/**\n\t * Asserts rough true-ish result.\n\t * @name ok\n\t * @function\n\t * @example ok( \"asdfasdf\".length > 5, \"There must be at least 5 chars\" );\n\t */\n\tok: function( result, msg ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"ok() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\t\tresult = !!result;\n\t\tmsg = msg || (result ? \"okay\" : \"failed\" );\n\n\t\tvar source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: msg\n\t\t\t};\n\n\t\tmsg = \"<span class='test-message'>\" + escapeText( msg ) + \"</span>\";\n\n\t\tif ( !result ) {\n\t\t\tsource = sourceFromStacktrace( 2 );\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\tmsg += \"<table><tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr></table>\";\n\t\t\t}\n\t\t}\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\t\tconfig.current.assertions.push({\n\t\t\tresult: result,\n\t\t\tmessage: msg\n\t\t});\n\t},\n\n\t/**\n\t * Assert that the first two arguments are equal, with an optional message.\n\t * Prints out both actual and expected values.\n\t * @name equal\n\t * @function\n\t * @example equal( format( \"Received {0} bytes.\", 2), \"Received 2 bytes.\", \"format() replaces {0} with next argument\" );\n\t */\n\tequal: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected == actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notEqual\n\t * @function\n\t */\n\tnotEqual: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected != actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name propEqual\n\t * @function\n\t */\n\tpropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notPropEqual\n\t * @function\n\t */\n\tnotPropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name deepEqual\n\t * @function\n\t */\n\tdeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notDeepEqual\n\t * @function\n\t */\n\tnotDeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name strictEqual\n\t * @function\n\t */\n\tstrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected === actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notStrictEqual\n\t * @function\n\t */\n\tnotStrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected !== actual, actual, expected, message );\n\t},\n\n\t\"throws\": function( block, expected, message ) {\n\t\tvar actual,\n\t\t\texpectedOutput = expected,\n\t\t\tok = false;\n\n\t\t// 'expected' is optional\n\t\tif ( typeof expected === \"string\" ) {\n\t\t\tmessage = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tconfig.current.ignoreGlobalErrors = true;\n\t\ttry {\n\t\t\tblock.call( config.current.testEnvironment );\n\t\t} catch (e) {\n\t\t\tactual = e;\n\t\t}\n\t\tconfig.current.ignoreGlobalErrors = false;\n\n\t\tif ( actual ) {\n\t\t\t// we don't want to validate thrown error\n\t\t\tif ( !expected ) {\n\t\t\t\tok = true;\n\t\t\t\texpectedOutput = null;\n\t\t\t// expected is a regexp\n\t\t\t} else if ( QUnit.objectType( expected ) === \"regexp\" ) {\n\t\t\t\tok = expected.test( errorString( actual ) );\n\t\t\t// expected is a constructor\n\t\t\t} else if ( actual instanceof expected ) {\n\t\t\t\tok = true;\n\t\t\t// expected is a validation function which returns true is validation passed\n\t\t\t} else if ( expected.call( {}, actual ) === true ) {\n\t\t\t\texpectedOutput = null;\n\t\t\t\tok = true;\n\t\t\t}\n\n\t\t\tQUnit.push( ok, actual, expectedOutput, message );\n\t\t} else {\n\t\t\tQUnit.pushFailure( message, null, \"No exception was thrown.\" );\n\t\t}\n\t}\n};\n\n/**\n * @deprecated since 1.8.0\n * Kept assertion helpers in root for backwards compatibility.\n */\nextend( QUnit, assert );\n\n/**\n * @deprecated since 1.9.0\n * Kept root \"raises()\" for backwards compatibility.\n * (Note that we don't introduce assert.raises).\n */\nQUnit.raises = assert[ \"throws\" ];\n\n/**\n * @deprecated since 1.0.0, replaced with error pushes since 1.3.0\n * Kept to avoid TypeErrors for undefined methods.\n */\nQUnit.equals = function() {\n\tQUnit.push( false, false, false, \"QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead\" );\n};\nQUnit.same = function() {\n\tQUnit.push( false, false, false, \"QUnit.same has been deprecated since 2009 (e88049a0), use QUnit.deepEqual instead\" );\n};\n\n// We want access to the constructor's prototype\n(function() {\n\tfunction F() {}\n\tF.prototype = QUnit;\n\tQUnit = new F();\n\t// Make F QUnit's constructor so that we can add to the prototype later\n\tQUnit.constructor = F;\n}());\n\n/**\n * Config object: Maintain internal state\n * Later exposed as QUnit.config\n * `config` initialized at top of scope\n */\nconfig = {\n\t// The queue of tests to run\n\tqueue: [],\n\n\t// block until document ready\n\tblocking: true,\n\n\t// when enabled, show only failing tests\n\t// gets persisted through sessionStorage and can be changed in UI via checkbox\n\thidepassed: false,\n\n\t// by default, run previously failed tests first\n\t// very useful in combination with \"Hide passed tests\" checked\n\treorder: true,\n\n\t// by default, modify document.title when suite is done\n\taltertitle: true,\n\n\t// when enabled, all tests must call expect()\n\trequireExpects: false,\n\n\t// add checkboxes that are persisted in the query-string\n\t// when enabled, the id is set to `true` as a `QUnit.config` property\n\turlConfig: [\n\t\t{\n\t\t\tid: \"noglobals\",\n\t\t\tlabel: \"Check for Globals\",\n\t\t\ttooltip: \"Enabling this will test if any test introduces new properties on the `window` object. Stored as query-strings.\"\n\t\t},\n\t\t{\n\t\t\tid: \"notrycatch\",\n\t\t\tlabel: \"No try-catch\",\n\t\t\ttooltip: \"Enabling this will run tests outside of a try-catch block. Makes debugging exceptions in IE reasonable. Stored as query-strings.\"\n\t\t}\n\t],\n\n\t// Set of all modules.\n\tmodules: {},\n\n\t// logging callback queues\n\tbegin: [],\n\tdone: [],\n\tlog: [],\n\ttestStart: [],\n\ttestDone: [],\n\tmoduleStart: [],\n\tmoduleDone: []\n};\n\n// Export global variables, unless an 'exports' object exists,\n// in that case we assume we're in CommonJS (dealt with on the bottom of the script)\nif ( typeof exports === \"undefined\" ) {\n\textend( window, QUnit.constructor.prototype );\n\n\t// Expose QUnit object\n\twindow.QUnit = QUnit;\n}\n\n// Initialize more QUnit.config and QUnit.urlParams\n(function() {\n\tvar i,\n\t\tlocation = window.location || { search: \"\", protocol: \"file:\" },\n\t\tparams = location.search.slice( 1 ).split( \"&\" ),\n\t\tlength = params.length,\n\t\turlParams = {},\n\t\tcurrent;\n\n\tif ( params[ 0 ] ) {\n\t\tfor ( i = 0; i < length; i++ ) {\n\t\t\tcurrent = params[ i ].split( \"=\" );\n\t\t\tcurrent[ 0 ] = decodeURIComponent( current[ 0 ] );\n\t\t\t// allow just a key to turn on a flag, e.g., test.html?noglobals\n\t\t\tcurrent[ 1 ] = current[ 1 ] ? decodeURIComponent( current[ 1 ] ) : true;\n\t\t\turlParams[ current[ 0 ] ] = current[ 1 ];\n\t\t}\n\t}\n\n\tQUnit.urlParams = urlParams;\n\n\t// String search anywhere in moduleName+testName\n\tconfig.filter = urlParams.filter;\n\n\t// Exact match of the module name\n\tconfig.module = urlParams.module;\n\n\tconfig.testNumber = parseInt( urlParams.testNumber, 10 ) || null;\n\n\t// Figure out if we're running the tests from a server or not\n\tQUnit.isLocal = location.protocol === \"file:\";\n}());\n\n// Extend QUnit object,\n// these after set here because they should not be exposed as global functions\nextend( QUnit, {\n\tassert: assert,\n\n\tconfig: config,\n\n\t// Initialize the configuration options\n\tinit: function() {\n\t\textend( config, {\n\t\t\tstats: { all: 0, bad: 0 },\n\t\t\tmoduleStats: { all: 0, bad: 0 },\n\t\t\tstarted: +new Date(),\n\t\t\tupdateRate: 1000,\n\t\t\tblocking: false,\n\t\t\tautostart: true,\n\t\t\tautorun: false,\n\t\t\tfilter: \"\",\n\t\t\tqueue: [],\n\t\t\tsemaphore: 1\n\t\t});\n\n\t\tvar tests, banner, result,\n\t\t\tqunit = id( \"qunit\" );\n\n\t\tif ( qunit ) {\n\t\t\tqunit.innerHTML =\n\t\t\t\t\"<h1 id='qunit-header'>\" + escapeText( document.title ) + \"</h1>\" +\n\t\t\t\t\"<h2 id='qunit-banner'></h2>\" +\n\t\t\t\t\"<div id='qunit-testrunner-toolbar'></div>\" +\n\t\t\t\t\"<h2 id='qunit-userAgent'></h2>\" +\n\t\t\t\t\"<ol id='qunit-tests'></ol>\";\n\t\t}\n\n\t\ttests = id( \"qunit-tests\" );\n\t\tbanner = id( \"qunit-banner\" );\n\t\tresult = id( \"qunit-testresult\" );\n\n\t\tif ( tests ) {\n\t\t\ttests.innerHTML = \"\";\n\t\t}\n\n\t\tif ( banner ) {\n\t\t\tbanner.className = \"\";\n\t\t}\n\n\t\tif ( result ) {\n\t\t\tresult.parentNode.removeChild( result );\n\t\t}\n\n\t\tif ( tests ) {\n\t\t\tresult = document.createElement( \"p\" );\n\t\t\tresult.id = \"qunit-testresult\";\n\t\t\tresult.className = \"result\";\n\t\t\ttests.parentNode.insertBefore( result, tests );\n\t\t\tresult.innerHTML = \"Running...<br/>&nbsp;\";\n\t\t}\n\t},\n\n\t// Resets the test setup. Useful for tests that modify the DOM.\n\t/*\n\tDEPRECATED: Use multiple tests instead of resetting inside a test.\n\tUse testStart or testDone for custom cleanup.\n\tThis method will throw an error in 2.0, and will be removed in 2.1\n\t*/\n\treset: function() {\n\t\tvar fixture = id( \"qunit-fixture\" );\n\t\tif ( fixture ) {\n\t\t\tfixture.innerHTML = config.fixture;\n\t\t}\n\t},\n\n\t// Trigger an event on an element.\n\t// @example triggerEvent( document.body, \"click\" );\n\ttriggerEvent: function( elem, type, event ) {\n\t\tif ( document.createEvent ) {\n\t\t\tevent = document.createEvent( \"MouseEvents\" );\n\t\t\tevent.initMouseEvent(type, true, true, elem.ownerDocument.defaultView,\n\t\t\t\t0, 0, 0, 0, 0, false, false, false, false, 0, null);\n\n\t\t\telem.dispatchEvent( event );\n\t\t} else if ( elem.fireEvent ) {\n\t\t\telem.fireEvent( \"on\" + type );\n\t\t}\n\t},\n\n\t// Safe object type checking\n\tis: function( type, obj ) {\n\t\treturn QUnit.objectType( obj ) === type;\n\t},\n\n\tobjectType: function( obj ) {\n\t\tif ( typeof obj === \"undefined\" ) {\n\t\t\t\treturn \"undefined\";\n\t\t// consider: typeof null === object\n\t\t}\n\t\tif ( obj === null ) {\n\t\t\t\treturn \"null\";\n\t\t}\n\n\t\tvar match = toString.call( obj ).match(/^\\[object\\s(.*)\\]$/),\n\t\t\ttype = match && match[1] || \"\";\n\n\t\tswitch ( type ) {\n\t\t\tcase \"Number\":\n\t\t\t\tif ( isNaN(obj) ) {\n\t\t\t\t\treturn \"nan\";\n\t\t\t\t}\n\t\t\t\treturn \"number\";\n\t\t\tcase \"String\":\n\t\t\tcase \"Boolean\":\n\t\t\tcase \"Array\":\n\t\t\tcase \"Date\":\n\t\t\tcase \"RegExp\":\n\t\t\tcase \"Function\":\n\t\t\t\treturn type.toLowerCase();\n\t\t}\n\t\tif ( typeof obj === \"object\" ) {\n\t\t\treturn \"object\";\n\t\t}\n\t\treturn undefined;\n\t},\n\n\tpush: function( result, actual, expected, message ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"assertion outside test context, was \" + sourceFromStacktrace() );\n\t\t}\n\n\t\tvar output, source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: message,\n\t\t\t\tactual: actual,\n\t\t\t\texpected: expected\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || ( result ? \"okay\" : \"failed\" );\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\tif ( !result ) {\n\t\t\texpected = escapeText( QUnit.jsDump.parse(expected) );\n\t\t\tactual = escapeText( QUnit.jsDump.parse(actual) );\n\t\t\toutput += \"<table><tr class='test-expected'><th>Expected: </th><td><pre>\" + expected + \"</pre></td></tr>\";\n\n\t\t\tif ( actual !== expected ) {\n\t\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + actual + \"</pre></td></tr>\";\n\t\t\t\toutput += \"<tr class='test-diff'><th>Diff: </th><td><pre>\" + QUnit.diff( expected, actual ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\tsource = sourceFromStacktrace();\n\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\toutput += \"</table>\";\n\t\t}\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: !!result,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\tpushFailure: function( message, source, actual ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"pushFailure() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\n\t\tvar output,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: false,\n\t\t\t\tmessage: message\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || \"error\";\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\toutput += \"<table>\";\n\n\t\tif ( actual ) {\n\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + escapeText( actual ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\tif ( source ) {\n\t\t\tdetails.source = source;\n\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\toutput += \"</table>\";\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: false,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\turl: function( params ) {\n\t\tparams = extend( extend( {}, QUnit.urlParams ), params );\n\t\tvar key,\n\t\t\tquerystring = \"?\";\n\n\t\tfor ( key in params ) {\n\t\t\tif ( hasOwn.call( params, key ) ) {\n\t\t\t\tquerystring += encodeURIComponent( key ) + \"=\" +\n\t\t\t\t\tencodeURIComponent( params[ key ] ) + \"&\";\n\t\t\t}\n\t\t}\n\t\treturn window.location.protocol + \"//\" + window.location.host +\n\t\t\twindow.location.pathname + querystring.slice( 0, -1 );\n\t},\n\n\textend: extend,\n\tid: id,\n\taddEvent: addEvent,\n\taddClass: addClass,\n\thasClass: hasClass,\n\tremoveClass: removeClass\n\t// load, equiv, jsDump, diff: Attached later\n});\n\n/**\n * @deprecated: Created for backwards compatibility with test runner that set the hook function\n * into QUnit.{hook}, instead of invoking it and passing the hook function.\n * QUnit.constructor is set to the empty F() above so that we can add to it's prototype here.\n * Doing this allows us to tell if the following methods have been overwritten on the actual\n * QUnit object.\n */\nextend( QUnit.constructor.prototype, {\n\n\t// Logging callbacks; all receive a single argument with the listed properties\n\t// run test/logs.html for any related changes\n\tbegin: registerLoggingCallback( \"begin\" ),\n\n\t// done: { failed, passed, total, runtime }\n\tdone: registerLoggingCallback( \"done\" ),\n\n\t// log: { result, actual, expected, message }\n\tlog: registerLoggingCallback( \"log\" ),\n\n\t// testStart: { name }\n\ttestStart: registerLoggingCallback( \"testStart\" ),\n\n\t// testDone: { name, failed, passed, total, duration }\n\ttestDone: registerLoggingCallback( \"testDone\" ),\n\n\t// moduleStart: { name }\n\tmoduleStart: registerLoggingCallback( \"moduleStart\" ),\n\n\t// moduleDone: { name, failed, passed, total }\n\tmoduleDone: registerLoggingCallback( \"moduleDone\" )\n});\n\nif ( typeof document === \"undefined\" || document.readyState === \"complete\" ) {\n\tconfig.autorun = true;\n}\n\nQUnit.load = function() {\n\trunLoggingCallbacks( \"begin\", QUnit, {} );\n\n\t// Initialize the config, saving the execution queue\n\tvar banner, filter, i, label, len, main, ol, toolbar, userAgent, val,\n\t\turlConfigCheckboxesContainer, urlConfigCheckboxes, moduleFilter,\n\t\tnumModules = 0,\n\t\tmoduleNames = [],\n\t\tmoduleFilterHtml = \"\",\n\t\turlConfigHtml = \"\",\n\t\toldconfig = extend( {}, config );\n\n\tQUnit.init();\n\textend(config, oldconfig);\n\n\tconfig.blocking = false;\n\n\tlen = config.urlConfig.length;\n\n\tfor ( i = 0; i < len; i++ ) {\n\t\tval = config.urlConfig[i];\n\t\tif ( typeof val === \"string\" ) {\n\t\t\tval = {\n\t\t\t\tid: val,\n\t\t\t\tlabel: val,\n\t\t\t\ttooltip: \"[no tooltip available]\"\n\t\t\t};\n\t\t}\n\t\tconfig[ val.id ] = QUnit.urlParams[ val.id ];\n\t\turlConfigHtml += \"<input id='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' name='\" + escapeText( val.id ) +\n\t\t\t\"' type='checkbox'\" + ( config[ val.id ] ? \" checked='checked'\" : \"\" ) +\n\t\t\t\" title='\" + escapeText( val.tooltip ) +\n\t\t\t\"'><label for='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' title='\" + escapeText( val.tooltip ) + \"'>\" + val.label + \"</label>\";\n\t}\n\tfor ( i in config.modules ) {\n\t\tif ( config.modules.hasOwnProperty( i ) ) {\n\t\t\tmoduleNames.push(i);\n\t\t}\n\t}\n\tnumModules = moduleNames.length;\n\tmoduleNames.sort( function( a, b ) {\n\t\treturn a.localeCompare( b );\n\t});\n\tmoduleFilterHtml += \"<label for='qunit-modulefilter'>Module: </label><select id='qunit-modulefilter' name='modulefilter'><option value='' \" +\n\t\t( config.module === undefined  ? \"selected='selected'\" : \"\" ) +\n\t\t\">< All Modules ></option>\";\n\n\n\tfor ( i = 0; i < numModules; i++) {\n\t\t\tmoduleFilterHtml += \"<option value='\" + escapeText( encodeURIComponent(moduleNames[i]) ) + \"' \" +\n\t\t\t\t( config.module === moduleNames[i] ? \"selected='selected'\" : \"\" ) +\n\t\t\t\t\">\" + escapeText(moduleNames[i]) + \"</option>\";\n\t}\n\tmoduleFilterHtml += \"</select>\";\n\n\t// `userAgent` initialized at top of scope\n\tuserAgent = id( \"qunit-userAgent\" );\n\tif ( userAgent ) {\n\t\tuserAgent.innerHTML = navigator.userAgent;\n\t}\n\n\t// `banner` initialized at top of scope\n\tbanner = id( \"qunit-header\" );\n\tif ( banner ) {\n\t\tbanner.innerHTML = \"<a href='\" + QUnit.url({ filter: undefined, module: undefined, testNumber: undefined }) + \"'>\" + banner.innerHTML + \"</a> \";\n\t}\n\n\t// `toolbar` initialized at top of scope\n\ttoolbar = id( \"qunit-testrunner-toolbar\" );\n\tif ( toolbar ) {\n\t\t// `filter` initialized at top of scope\n\t\tfilter = document.createElement( \"input\" );\n\t\tfilter.type = \"checkbox\";\n\t\tfilter.id = \"qunit-filter-pass\";\n\n\t\taddEvent( filter, \"click\", function() {\n\t\t\tvar tmp,\n\t\t\t\tol = document.getElementById( \"qunit-tests\" );\n\n\t\t\tif ( filter.checked ) {\n\t\t\t\tol.className = ol.className + \" hidepass\";\n\t\t\t} else {\n\t\t\t\ttmp = \" \" + ol.className.replace( /[\\n\\t\\r]/g, \" \" ) + \" \";\n\t\t\t\tol.className = tmp.replace( / hidepass /, \" \" );\n\t\t\t}\n\t\t\tif ( defined.sessionStorage ) {\n\t\t\t\tif (filter.checked) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-filter-passed-tests\", \"true\" );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-filter-passed-tests\" );\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif ( config.hidepassed || defined.sessionStorage && sessionStorage.getItem( \"qunit-filter-passed-tests\" ) ) {\n\t\t\tfilter.checked = true;\n\t\t\t// `ol` initialized at top of scope\n\t\t\tol = document.getElementById( \"qunit-tests\" );\n\t\t\tol.className = ol.className + \" hidepass\";\n\t\t}\n\t\ttoolbar.appendChild( filter );\n\n\t\t// `label` initialized at top of scope\n\t\tlabel = document.createElement( \"label\" );\n\t\tlabel.setAttribute( \"for\", \"qunit-filter-pass\" );\n\t\tlabel.setAttribute( \"title\", \"Only show tests and assertions that fail. Stored in sessionStorage.\" );\n\t\tlabel.innerHTML = \"Hide passed tests\";\n\t\ttoolbar.appendChild( label );\n\n\t\turlConfigCheckboxesContainer = document.createElement(\"span\");\n\t\turlConfigCheckboxesContainer.innerHTML = urlConfigHtml;\n\t\turlConfigCheckboxes = urlConfigCheckboxesContainer.getElementsByTagName(\"input\");\n\t\t// For oldIE support:\n\t\t// * Add handlers to the individual elements instead of the container\n\t\t// * Use \"click\" instead of \"change\"\n\t\t// * Fallback from event.target to event.srcElement\n\t\taddEvents( urlConfigCheckboxes, \"click\", function( event ) {\n\t\t\tvar params = {},\n\t\t\t\ttarget = event.target || event.srcElement;\n\t\t\tparams[ target.name ] = target.checked ? true : undefined;\n\t\t\twindow.location = QUnit.url( params );\n\t\t});\n\t\ttoolbar.appendChild( urlConfigCheckboxesContainer );\n\n\t\tif (numModules > 1) {\n\t\t\tmoduleFilter = document.createElement( \"span\" );\n\t\t\tmoduleFilter.setAttribute( \"id\", \"qunit-modulefilter-container\" );\n\t\t\tmoduleFilter.innerHTML = moduleFilterHtml;\n\t\t\taddEvent( moduleFilter.lastChild, \"change\", function() {\n\t\t\t\tvar selectBox = moduleFilter.getElementsByTagName(\"select\")[0],\n\t\t\t\t\tselectedModule = decodeURIComponent(selectBox.options[selectBox.selectedIndex].value);\n\n\t\t\t\twindow.location = QUnit.url({\n\t\t\t\t\tmodule: ( selectedModule === \"\" ) ? undefined : selectedModule,\n\t\t\t\t\t// Remove any existing filters\n\t\t\t\t\tfilter: undefined,\n\t\t\t\t\ttestNumber: undefined\n\t\t\t\t});\n\t\t\t});\n\t\t\ttoolbar.appendChild(moduleFilter);\n\t\t}\n\t}\n\n\t// `main` initialized at top of scope\n\tmain = id( \"qunit-fixture\" );\n\tif ( main ) {\n\t\tconfig.fixture = main.innerHTML;\n\t}\n\n\tif ( config.autostart ) {\n\t\tQUnit.start();\n\t}\n};\n\naddEvent( window, \"load\", QUnit.load );\n\n// `onErrorFnPrev` initialized at top of scope\n// Preserve other handlers\nonErrorFnPrev = window.onerror;\n\n// Cover uncaught exceptions\n// Returning true will suppress the default browser handler,\n// returning false will let it run.\nwindow.onerror = function ( error, filePath, linerNr ) {\n\tvar ret = false;\n\tif ( onErrorFnPrev ) {\n\t\tret = onErrorFnPrev( error, filePath, linerNr );\n\t}\n\n\t// Treat return value as window.onerror itself does,\n\t// Only do our handling if not suppressed.\n\tif ( ret !== true ) {\n\t\tif ( QUnit.config.current ) {\n\t\t\tif ( QUnit.config.current.ignoreGlobalErrors ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t} else {\n\t\t\tQUnit.test( \"global failure\", extend( function() {\n\t\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t\t}, { validTest: validTest } ) );\n\t\t}\n\t\treturn false;\n\t}\n\n\treturn ret;\n};\n\nfunction done() {\n\tconfig.autorun = true;\n\n\t// Log the last module results\n\tif ( config.currentModule ) {\n\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\tname: config.currentModule,\n\t\t\tfailed: config.moduleStats.bad,\n\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\ttotal: config.moduleStats.all\n\t\t});\n\t}\n\tdelete config.previousModule;\n\n\tvar i, key,\n\t\tbanner = id( \"qunit-banner\" ),\n\t\ttests = id( \"qunit-tests\" ),\n\t\truntime = +new Date() - config.started,\n\t\tpassed = config.stats.all - config.stats.bad,\n\t\thtml = [\n\t\t\t\"Tests completed in \",\n\t\t\truntime,\n\t\t\t\" milliseconds.<br/>\",\n\t\t\t\"<span class='passed'>\",\n\t\t\tpassed,\n\t\t\t\"</span> assertions of <span class='total'>\",\n\t\t\tconfig.stats.all,\n\t\t\t\"</span> passed, <span class='failed'>\",\n\t\t\tconfig.stats.bad,\n\t\t\t\"</span> failed.\"\n\t\t].join( \"\" );\n\n\tif ( banner ) {\n\t\tbanner.className = ( config.stats.bad ? \"qunit-fail\" : \"qunit-pass\" );\n\t}\n\n\tif ( tests ) {\n\t\tid( \"qunit-testresult\" ).innerHTML = html;\n\t}\n\n\tif ( config.altertitle && typeof document !== \"undefined\" && document.title ) {\n\t\t// show ✖ for good, ✔ for bad suite result in title\n\t\t// use escape sequences in case file gets loaded with non-utf-8-charset\n\t\tdocument.title = [\n\t\t\t( config.stats.bad ? \"\\u2716\" : \"\\u2714\" ),\n\t\t\tdocument.title.replace( /^[\\u2714\\u2716] /i, \"\" )\n\t\t].join( \" \" );\n\t}\n\n\t// clear own sessionStorage items if all tests passed\n\tif ( config.reorder && defined.sessionStorage && config.stats.bad === 0 ) {\n\t\t// `key` & `i` initialized at top of scope\n\t\tfor ( i = 0; i < sessionStorage.length; i++ ) {\n\t\t\tkey = sessionStorage.key( i++ );\n\t\t\tif ( key.indexOf( \"qunit-test-\" ) === 0 ) {\n\t\t\t\tsessionStorage.removeItem( key );\n\t\t\t}\n\t\t}\n\t}\n\n\t// scroll back to top to show results\n\tif ( window.scrollTo ) {\n\t\twindow.scrollTo(0, 0);\n\t}\n\n\trunLoggingCallbacks( \"done\", QUnit, {\n\t\tfailed: config.stats.bad,\n\t\tpassed: passed,\n\t\ttotal: config.stats.all,\n\t\truntime: runtime\n\t});\n}\n\n/** @return Boolean: true if this test should be ran */\nfunction validTest( test ) {\n\tvar include,\n\t\tfilter = config.filter && config.filter.toLowerCase(),\n\t\tmodule = config.module && config.module.toLowerCase(),\n\t\tfullName = (test.module + \": \" + test.testName).toLowerCase();\n\n\t// Internally-generated tests are always valid\n\tif ( test.callback && test.callback.validTest === validTest ) {\n\t\tdelete test.callback.validTest;\n\t\treturn true;\n\t}\n\n\tif ( config.testNumber ) {\n\t\treturn test.testNumber === config.testNumber;\n\t}\n\n\tif ( module && ( !test.module || test.module.toLowerCase() !== module ) ) {\n\t\treturn false;\n\t}\n\n\tif ( !filter ) {\n\t\treturn true;\n\t}\n\n\tinclude = filter.charAt( 0 ) !== \"!\";\n\tif ( !include ) {\n\t\tfilter = filter.slice( 1 );\n\t}\n\n\t// If the filter matches, we need to honour include\n\tif ( fullName.indexOf( filter ) !== -1 ) {\n\t\treturn include;\n\t}\n\n\t// Otherwise, do the opposite\n\treturn !include;\n}\n\n// so far supports only Firefox, Chrome and Opera (buggy), Safari (for real exceptions)\n// Later Safari and IE10 are supposed to support error.stack as well\n// See also https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error/Stack\nfunction extractStacktrace( e, offset ) {\n\toffset = offset === undefined ? 3 : offset;\n\n\tvar stack, include, i;\n\n\tif ( e.stacktrace ) {\n\t\t// Opera\n\t\treturn e.stacktrace.split( \"\\n\" )[ offset + 3 ];\n\t} else if ( e.stack ) {\n\t\t// Firefox, Chrome\n\t\tstack = e.stack.split( \"\\n\" );\n\t\tif (/^error$/i.test( stack[0] ) ) {\n\t\t\tstack.shift();\n\t\t}\n\t\tif ( fileName ) {\n\t\t\tinclude = [];\n\t\t\tfor ( i = offset; i < stack.length; i++ ) {\n\t\t\t\tif ( stack[ i ].indexOf( fileName ) !== -1 ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tinclude.push( stack[ i ] );\n\t\t\t}\n\t\t\tif ( include.length ) {\n\t\t\t\treturn include.join( \"\\n\" );\n\t\t\t}\n\t\t}\n\t\treturn stack[ offset ];\n\t} else if ( e.sourceURL ) {\n\t\t// Safari, PhantomJS\n\t\t// hopefully one day Safari provides actual stacktraces\n\t\t// exclude useless self-reference for generated Error objects\n\t\tif ( /qunit.js$/.test( e.sourceURL ) ) {\n\t\t\treturn;\n\t\t}\n\t\t// for actual exceptions, this is useful\n\t\treturn e.sourceURL + \":\" + e.line;\n\t}\n}\nfunction sourceFromStacktrace( offset ) {\n\ttry {\n\t\tthrow new Error();\n\t} catch ( e ) {\n\t\treturn extractStacktrace( e, offset );\n\t}\n}\n\n/**\n * Escape text for attribute or text content.\n */\nfunction escapeText( s ) {\n\tif ( !s ) {\n\t\treturn \"\";\n\t}\n\ts = s + \"\";\n\t// Both single quotes and double quotes (for attributes)\n\treturn s.replace( /['\"<>&]/g, function( s ) {\n\t\tswitch( s ) {\n\t\t\tcase \"'\":\n\t\t\t\treturn \"&#039;\";\n\t\t\tcase \"\\\"\":\n\t\t\t\treturn \"&quot;\";\n\t\t\tcase \"<\":\n\t\t\t\treturn \"&lt;\";\n\t\t\tcase \">\":\n\t\t\t\treturn \"&gt;\";\n\t\t\tcase \"&\":\n\t\t\t\treturn \"&amp;\";\n\t\t}\n\t});\n}\n\nfunction synchronize( callback, last ) {\n\tconfig.queue.push( callback );\n\n\tif ( config.autorun && !config.blocking ) {\n\t\tprocess( last );\n\t}\n}\n\nfunction process( last ) {\n\tfunction next() {\n\t\tprocess( last );\n\t}\n\tvar start = new Date().getTime();\n\tconfig.depth = config.depth ? config.depth + 1 : 1;\n\n\twhile ( config.queue.length && !config.blocking ) {\n\t\tif ( !defined.setTimeout || config.updateRate <= 0 || ( ( new Date().getTime() - start ) < config.updateRate ) ) {\n\t\t\tconfig.queue.shift()();\n\t\t} else {\n\t\t\tsetTimeout( next, 13 );\n\t\t\tbreak;\n\t\t}\n\t}\n\tconfig.depth--;\n\tif ( last && !config.blocking && !config.queue.length && config.depth === 0 ) {\n\t\tdone();\n\t}\n}\n\nfunction saveGlobal() {\n\tconfig.pollution = [];\n\n\tif ( config.noglobals ) {\n\t\tfor ( var key in window ) {\n\t\t\tif ( hasOwn.call( window, key ) ) {\n\t\t\t\t// in Opera sometimes DOM element ids show up here, ignore them\n\t\t\t\tif ( /^qunit-test-output/.test( key ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tconfig.pollution.push( key );\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction checkPollution() {\n\tvar newGlobals,\n\t\tdeletedGlobals,\n\t\told = config.pollution;\n\n\tsaveGlobal();\n\n\tnewGlobals = diff( config.pollution, old );\n\tif ( newGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Introduced global variable(s): \" + newGlobals.join(\", \") );\n\t}\n\n\tdeletedGlobals = diff( old, config.pollution );\n\tif ( deletedGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Deleted global variable(s): \" + deletedGlobals.join(\", \") );\n\t}\n}\n\n// returns a new Array with the elements that are in a but not in b\nfunction diff( a, b ) {\n\tvar i, j,\n\t\tresult = a.slice();\n\n\tfor ( i = 0; i < result.length; i++ ) {\n\t\tfor ( j = 0; j < b.length; j++ ) {\n\t\t\tif ( result[i] === b[j] ) {\n\t\t\t\tresult.splice( i, 1 );\n\t\t\t\ti--;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\treturn result;\n}\n\nfunction extend( a, b ) {\n\tfor ( var prop in b ) {\n\t\tif ( hasOwn.call( b, prop ) ) {\n\t\t\t// Avoid \"Member not found\" error in IE8 caused by messing with window.constructor\n\t\t\tif ( !( prop === \"constructor\" && a === window ) ) {\n\t\t\t\tif ( b[ prop ] === undefined ) {\n\t\t\t\t\tdelete a[ prop ];\n\t\t\t\t} else {\n\t\t\t\t\ta[ prop ] = b[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a;\n}\n\n/**\n * @param {HTMLElement} elem\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvent( elem, type, fn ) {\n\t// Standards-based browsers\n\tif ( elem.addEventListener ) {\n\t\telem.addEventListener( type, fn, false );\n\t// IE\n\t} else {\n\t\telem.attachEvent( \"on\" + type, fn );\n\t}\n}\n\n/**\n * @param {Array|NodeList} elems\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvents( elems, type, fn ) {\n\tvar i = elems.length;\n\twhile ( i-- ) {\n\t\taddEvent( elems[i], type, fn );\n\t}\n}\n\nfunction hasClass( elem, name ) {\n\treturn (\" \" + elem.className + \" \").indexOf(\" \" + name + \" \") > -1;\n}\n\nfunction addClass( elem, name ) {\n\tif ( !hasClass( elem, name ) ) {\n\t\telem.className += (elem.className ? \" \" : \"\") + name;\n\t}\n}\n\nfunction removeClass( elem, name ) {\n\tvar set = \" \" + elem.className + \" \";\n\t// Class name may appear multiple times\n\twhile ( set.indexOf(\" \" + name + \" \") > -1 ) {\n\t\tset = set.replace(\" \" + name + \" \" , \" \");\n\t}\n\t// If possible, trim it for prettiness, but not necessarily\n\telem.className = typeof set.trim === \"function\" ? set.trim() : set.replace(/^\\s+|\\s+$/g, \"\");\n}\n\nfunction id( name ) {\n\treturn !!( typeof document !== \"undefined\" && document && document.getElementById ) &&\n\t\tdocument.getElementById( name );\n}\n\nfunction registerLoggingCallback( key ) {\n\treturn function( callback ) {\n\t\tconfig[key].push( callback );\n\t};\n}\n\n// Supports deprecated method of completely overwriting logging callbacks\nfunction runLoggingCallbacks( key, scope, args ) {\n\tvar i, callbacks;\n\tif ( QUnit.hasOwnProperty( key ) ) {\n\t\tQUnit[ key ].call(scope, args );\n\t} else {\n\t\tcallbacks = config[ key ];\n\t\tfor ( i = 0; i < callbacks.length; i++ ) {\n\t\t\tcallbacks[ i ].call( scope, args );\n\t\t}\n\t}\n}\n\n// Test for equality any JavaScript type.\n// Author: Philippe Rathé <prathe@gmail.com>\nQUnit.equiv = (function() {\n\n\t// Call the o related callback with the given arguments.\n\tfunction bindCallbacks( o, callbacks, args ) {\n\t\tvar prop = QUnit.objectType( o );\n\t\tif ( prop ) {\n\t\t\tif ( QUnit.objectType( callbacks[ prop ] ) === \"function\" ) {\n\t\t\t\treturn callbacks[ prop ].apply( callbacks, args );\n\t\t\t} else {\n\t\t\t\treturn callbacks[ prop ]; // or undefined\n\t\t\t}\n\t\t}\n\t}\n\n\t// the real equiv function\n\tvar innerEquiv,\n\t\t// stack to decide between skip/abort functions\n\t\tcallers = [],\n\t\t// stack to avoiding loops from circular referencing\n\t\tparents = [],\n\t\tparentsB = [],\n\n\t\tgetProto = Object.getPrototypeOf || function ( obj ) {\n\t\t\t/*jshint camelcase:false */\n\t\t\treturn obj.__proto__;\n\t\t},\n\t\tcallbacks = (function () {\n\n\t\t\t// for string, boolean, number and null\n\t\t\tfunction useStrictEquality( b, a ) {\n\t\t\t\t/*jshint eqeqeq:false */\n\t\t\t\tif ( b instanceof a.constructor || a instanceof b.constructor ) {\n\t\t\t\t\t// to catch short annotation VS 'new' annotation of a\n\t\t\t\t\t// declaration\n\t\t\t\t\t// e.g. var i = 1;\n\t\t\t\t\t// var j = new Number(1);\n\t\t\t\t\treturn a == b;\n\t\t\t\t} else {\n\t\t\t\t\treturn a === b;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\t\"string\": useStrictEquality,\n\t\t\t\t\"boolean\": useStrictEquality,\n\t\t\t\t\"number\": useStrictEquality,\n\t\t\t\t\"null\": useStrictEquality,\n\t\t\t\t\"undefined\": useStrictEquality,\n\n\t\t\t\t\"nan\": function( b ) {\n\t\t\t\t\treturn isNaN( b );\n\t\t\t\t},\n\n\t\t\t\t\"date\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"date\" && a.valueOf() === b.valueOf();\n\t\t\t\t},\n\n\t\t\t\t\"regexp\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"regexp\" &&\n\t\t\t\t\t\t// the regex itself\n\t\t\t\t\t\ta.source === b.source &&\n\t\t\t\t\t\t// and its modifiers\n\t\t\t\t\t\ta.global === b.global &&\n\t\t\t\t\t\t// (gmi) ...\n\t\t\t\t\t\ta.ignoreCase === b.ignoreCase &&\n\t\t\t\t\t\ta.multiline === b.multiline &&\n\t\t\t\t\t\ta.sticky === b.sticky;\n\t\t\t\t},\n\n\t\t\t\t// - skip when the property is a method of an instance (OOP)\n\t\t\t\t// - abort otherwise,\n\t\t\t\t// initial === would have catch identical references anyway\n\t\t\t\t\"function\": function() {\n\t\t\t\t\tvar caller = callers[callers.length - 1];\n\t\t\t\t\treturn caller !== Object && typeof caller !== \"undefined\";\n\t\t\t\t},\n\n\t\t\t\t\"array\": function( b, a ) {\n\t\t\t\t\tvar i, j, len, loop, aCircular, bCircular;\n\n\t\t\t\t\t// b could be an object literal here\n\t\t\t\t\tif ( QUnit.objectType( b ) !== \"array\" ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\tlen = a.length;\n\t\t\t\t\tif ( len !== b.length ) {\n\t\t\t\t\t\t// safe and faster\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\t\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\n\t\t\t\t\"object\": function( b, a ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar i, j, loop, aCircular, bCircular,\n\t\t\t\t\t\t// Default to true\n\t\t\t\t\t\teq = true,\n\t\t\t\t\t\taProperties = [],\n\t\t\t\t\t\tbProperties = [];\n\n\t\t\t\t\t// comparing constructors is more strict than using\n\t\t\t\t\t// instanceof\n\t\t\t\t\tif ( a.constructor !== b.constructor ) {\n\t\t\t\t\t\t// Allow objects with no prototype to be equivalent to\n\t\t\t\t\t\t// objects with Object as their constructor.\n\t\t\t\t\t\tif ( !(( getProto(a) === null && getProto(b) === Object.prototype ) ||\n\t\t\t\t\t\t\t( getProto(b) === null && getProto(a) === Object.prototype ) ) ) {\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// stack constructor before traversing properties\n\t\t\t\t\tcallers.push( a.constructor );\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\n\t\t\t\t\t// be strict: don't ensure hasOwnProperty and go deep\n\t\t\t\t\tfor ( i in a ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\taProperties.push(i);\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\tcallers.pop(); // unstack, we are done\n\n\t\t\t\t\tfor ( i in b ) {\n\t\t\t\t\t\tbProperties.push( i ); // collect b's properties\n\t\t\t\t\t}\n\n\t\t\t\t\t// Ensures identical properties name\n\t\t\t\t\treturn eq && innerEquiv( aProperties.sort(), bProperties.sort() );\n\t\t\t\t}\n\t\t\t};\n\t\t}());\n\n\tinnerEquiv = function() { // can take multiple arguments\n\t\tvar args = [].slice.apply( arguments );\n\t\tif ( args.length < 2 ) {\n\t\t\treturn true; // end transition\n\t\t}\n\n\t\treturn (function( a, b ) {\n\t\t\tif ( a === b ) {\n\t\t\t\treturn true; // catch the most you can\n\t\t\t} else if ( a === null || b === null || typeof a === \"undefined\" ||\n\t\t\t\t\ttypeof b === \"undefined\" ||\n\t\t\t\t\tQUnit.objectType(a) !== QUnit.objectType(b) ) {\n\t\t\t\treturn false; // don't lose time with error prone cases\n\t\t\t} else {\n\t\t\t\treturn bindCallbacks(a, callbacks, [ b, a ]);\n\t\t\t}\n\n\t\t\t// apply transition with (1..n) arguments\n\t\t}( args[0], args[1] ) && innerEquiv.apply( this, args.splice(1, args.length - 1 )) );\n\t};\n\n\treturn innerEquiv;\n}());\n\n/**\n * jsDump Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com |\n * http://flesler.blogspot.com Licensed under BSD\n * (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008\n *\n * @projectDescription Advanced and extensible data dumping for Javascript.\n * @version 1.0.0\n * @author Ariel Flesler\n * @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}\n */\nQUnit.jsDump = (function() {\n\tfunction quote( str ) {\n\t\treturn \"\\\"\" + str.toString().replace( /\"/g, \"\\\\\\\"\" ) + \"\\\"\";\n\t}\n\tfunction literal( o ) {\n\t\treturn o + \"\";\n\t}\n\tfunction join( pre, arr, post ) {\n\t\tvar s = jsDump.separator(),\n\t\t\tbase = jsDump.indent(),\n\t\t\tinner = jsDump.indent(1);\n\t\tif ( arr.join ) {\n\t\t\tarr = arr.join( \",\" + s + inner );\n\t\t}\n\t\tif ( !arr ) {\n\t\t\treturn pre + post;\n\t\t}\n\t\treturn [ pre, inner + arr, base + post ].join(s);\n\t}\n\tfunction array( arr, stack ) {\n\t\tvar i = arr.length, ret = new Array(i);\n\t\tthis.up();\n\t\twhile ( i-- ) {\n\t\t\tret[i] = this.parse( arr[i] , undefined , stack);\n\t\t}\n\t\tthis.down();\n\t\treturn join( \"[\", ret, \"]\" );\n\t}\n\n\tvar reName = /^function (\\w+)/,\n\t\tjsDump = {\n\t\t\t// type is used mostly internally, you can fix a (custom)type in advance\n\t\t\tparse: function( obj, type, stack ) {\n\t\t\t\tstack = stack || [ ];\n\t\t\t\tvar inStack, res,\n\t\t\t\t\tparser = this.parsers[ type || this.typeOf(obj) ];\n\n\t\t\t\ttype = typeof parser;\n\t\t\t\tinStack = inArray( obj, stack );\n\n\t\t\t\tif ( inStack !== -1 ) {\n\t\t\t\t\treturn \"recursion(\" + (inStack - stack.length) + \")\";\n\t\t\t\t}\n\t\t\t\tif ( type === \"function\" )  {\n\t\t\t\t\tstack.push( obj );\n\t\t\t\t\tres = parser.call( this, obj, stack );\n\t\t\t\t\tstack.pop();\n\t\t\t\t\treturn res;\n\t\t\t\t}\n\t\t\t\treturn ( type === \"string\" ) ? parser : this.parsers.error;\n\t\t\t},\n\t\t\ttypeOf: function( obj ) {\n\t\t\t\tvar type;\n\t\t\t\tif ( obj === null ) {\n\t\t\t\t\ttype = \"null\";\n\t\t\t\t} else if ( typeof obj === \"undefined\" ) {\n\t\t\t\t\ttype = \"undefined\";\n\t\t\t\t} else if ( QUnit.is( \"regexp\", obj) ) {\n\t\t\t\t\ttype = \"regexp\";\n\t\t\t\t} else if ( QUnit.is( \"date\", obj) ) {\n\t\t\t\t\ttype = \"date\";\n\t\t\t\t} else if ( QUnit.is( \"function\", obj) ) {\n\t\t\t\t\ttype = \"function\";\n\t\t\t\t} else if ( typeof obj.setInterval !== undefined && typeof obj.document !== \"undefined\" && typeof obj.nodeType === \"undefined\" ) {\n\t\t\t\t\ttype = \"window\";\n\t\t\t\t} else if ( obj.nodeType === 9 ) {\n\t\t\t\t\ttype = \"document\";\n\t\t\t\t} else if ( obj.nodeType ) {\n\t\t\t\t\ttype = \"node\";\n\t\t\t\t} else if (\n\t\t\t\t\t// native arrays\n\t\t\t\t\ttoString.call( obj ) === \"[object Array]\" ||\n\t\t\t\t\t// NodeList objects\n\t\t\t\t\t( typeof obj.length === \"number\" && typeof obj.item !== \"undefined\" && ( obj.length ? obj.item(0) === obj[0] : ( obj.item( 0 ) === null && typeof obj[0] === \"undefined\" ) ) )\n\t\t\t\t) {\n\t\t\t\t\ttype = \"array\";\n\t\t\t\t} else if ( obj.constructor === Error.prototype.constructor ) {\n\t\t\t\t\ttype = \"error\";\n\t\t\t\t} else {\n\t\t\t\t\ttype = typeof obj;\n\t\t\t\t}\n\t\t\t\treturn type;\n\t\t\t},\n\t\t\tseparator: function() {\n\t\t\t\treturn this.multiline ?\tthis.HTML ? \"<br />\" : \"\\n\" : this.HTML ? \"&nbsp;\" : \" \";\n\t\t\t},\n\t\t\t// extra can be a number, shortcut for increasing-calling-decreasing\n\t\t\tindent: function( extra ) {\n\t\t\t\tif ( !this.multiline ) {\n\t\t\t\t\treturn \"\";\n\t\t\t\t}\n\t\t\t\tvar chr = this.indentChar;\n\t\t\t\tif ( this.HTML ) {\n\t\t\t\t\tchr = chr.replace( /\\t/g, \"   \" ).replace( / /g, \"&nbsp;\" );\n\t\t\t\t}\n\t\t\t\treturn new Array( this.depth + ( extra || 0 ) ).join(chr);\n\t\t\t},\n\t\t\tup: function( a ) {\n\t\t\t\tthis.depth += a || 1;\n\t\t\t},\n\t\t\tdown: function( a ) {\n\t\t\t\tthis.depth -= a || 1;\n\t\t\t},\n\t\t\tsetParser: function( name, parser ) {\n\t\t\t\tthis.parsers[name] = parser;\n\t\t\t},\n\t\t\t// The next 3 are exposed so you can use them\n\t\t\tquote: quote,\n\t\t\tliteral: literal,\n\t\t\tjoin: join,\n\t\t\t//\n\t\t\tdepth: 1,\n\t\t\t// This is the list of parsers, to modify them, use jsDump.setParser\n\t\t\tparsers: {\n\t\t\t\twindow: \"[Window]\",\n\t\t\t\tdocument: \"[Document]\",\n\t\t\t\terror: function(error) {\n\t\t\t\t\treturn \"Error(\\\"\" + error.message + \"\\\")\";\n\t\t\t\t},\n\t\t\t\tunknown: \"[Unknown]\",\n\t\t\t\t\"null\": \"null\",\n\t\t\t\t\"undefined\": \"undefined\",\n\t\t\t\t\"function\": function( fn ) {\n\t\t\t\t\tvar ret = \"function\",\n\t\t\t\t\t\t// functions never have name in IE\n\t\t\t\t\t\tname = \"name\" in fn ? fn.name : (reName.exec(fn) || [])[1];\n\n\t\t\t\t\tif ( name ) {\n\t\t\t\t\t\tret += \" \" + name;\n\t\t\t\t\t}\n\t\t\t\t\tret += \"( \";\n\n\t\t\t\t\tret = [ ret, QUnit.jsDump.parse( fn, \"functionArgs\" ), \"){\" ].join( \"\" );\n\t\t\t\t\treturn join( ret, QUnit.jsDump.parse(fn,\"functionCode\" ), \"}\" );\n\t\t\t\t},\n\t\t\t\tarray: array,\n\t\t\t\tnodelist: array,\n\t\t\t\t\"arguments\": array,\n\t\t\t\tobject: function( map, stack ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar ret = [ ], keys, key, val, i;\n\t\t\t\t\tQUnit.jsDump.up();\n\t\t\t\t\tkeys = [];\n\t\t\t\t\tfor ( key in map ) {\n\t\t\t\t\t\tkeys.push( key );\n\t\t\t\t\t}\n\t\t\t\t\tkeys.sort();\n\t\t\t\t\tfor ( i = 0; i < keys.length; i++ ) {\n\t\t\t\t\t\tkey = keys[ i ];\n\t\t\t\t\t\tval = map[ key ];\n\t\t\t\t\t\tret.push( QUnit.jsDump.parse( key, \"key\" ) + \": \" + QUnit.jsDump.parse( val, undefined, stack ) );\n\t\t\t\t\t}\n\t\t\t\t\tQUnit.jsDump.down();\n\t\t\t\t\treturn join( \"{\", ret, \"}\" );\n\t\t\t\t},\n\t\t\t\tnode: function( node ) {\n\t\t\t\t\tvar len, i, val,\n\t\t\t\t\t\topen = QUnit.jsDump.HTML ? \"&lt;\" : \"<\",\n\t\t\t\t\t\tclose = QUnit.jsDump.HTML ? \"&gt;\" : \">\",\n\t\t\t\t\t\ttag = node.nodeName.toLowerCase(),\n\t\t\t\t\t\tret = open + tag,\n\t\t\t\t\t\tattrs = node.attributes;\n\n\t\t\t\t\tif ( attrs ) {\n\t\t\t\t\t\tfor ( i = 0, len = attrs.length; i < len; i++ ) {\n\t\t\t\t\t\t\tval = attrs[i].nodeValue;\n\t\t\t\t\t\t\t// IE6 includes all attributes in .attributes, even ones not explicitly set.\n\t\t\t\t\t\t\t// Those have values like undefined, null, 0, false, \"\" or \"inherit\".\n\t\t\t\t\t\t\tif ( val && val !== \"inherit\" ) {\n\t\t\t\t\t\t\t\tret += \" \" + attrs[i].nodeName + \"=\" + QUnit.jsDump.parse( val, \"attribute\" );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tret += close;\n\n\t\t\t\t\t// Show content of TextNode or CDATASection\n\t\t\t\t\tif ( node.nodeType === 3 || node.nodeType === 4 ) {\n\t\t\t\t\t\tret += node.nodeValue;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn ret + open + \"/\" + tag + close;\n\t\t\t\t},\n\t\t\t\t// function calls it internally, it's the arguments part of the function\n\t\t\t\tfunctionArgs: function( fn ) {\n\t\t\t\t\tvar args,\n\t\t\t\t\t\tl = fn.length;\n\n\t\t\t\t\tif ( !l ) {\n\t\t\t\t\t\treturn \"\";\n\t\t\t\t\t}\n\n\t\t\t\t\targs = new Array(l);\n\t\t\t\t\twhile ( l-- ) {\n\t\t\t\t\t\t// 97 is 'a'\n\t\t\t\t\t\targs[l] = String.fromCharCode(97+l);\n\t\t\t\t\t}\n\t\t\t\t\treturn \" \" + args.join( \", \" ) + \" \";\n\t\t\t\t},\n\t\t\t\t// object calls it internally, the key part of an item in a map\n\t\t\t\tkey: quote,\n\t\t\t\t// function calls it internally, it's the content of the function\n\t\t\t\tfunctionCode: \"[code]\",\n\t\t\t\t// node calls it internally, it's an html attribute value\n\t\t\t\tattribute: quote,\n\t\t\t\tstring: quote,\n\t\t\t\tdate: quote,\n\t\t\t\tregexp: literal,\n\t\t\t\tnumber: literal,\n\t\t\t\t\"boolean\": literal\n\t\t\t},\n\t\t\t// if true, entities are escaped ( <, >, \\t, space and \\n )\n\t\t\tHTML: false,\n\t\t\t// indentation unit\n\t\t\tindentChar: \"  \",\n\t\t\t// if true, items in a collection, are separated by a \\n, else just a space.\n\t\t\tmultiline: true\n\t\t};\n\n\treturn jsDump;\n}());\n\n// from jquery.js\nfunction inArray( elem, array ) {\n\tif ( array.indexOf ) {\n\t\treturn array.indexOf( elem );\n\t}\n\n\tfor ( var i = 0, length = array.length; i < length; i++ ) {\n\t\tif ( array[ i ] === elem ) {\n\t\t\treturn i;\n\t\t}\n\t}\n\n\treturn -1;\n}\n\n/*\n * Javascript Diff Algorithm\n *  By John Resig (http://ejohn.org/)\n *  Modified by Chu Alan \"sprite\"\n *\n * Released under the MIT license.\n *\n * More Info:\n *  http://ejohn.org/projects/javascript-diff-algorithm/\n *\n * Usage: QUnit.diff(expected, actual)\n *\n * QUnit.diff( \"the quick brown fox jumped over\", \"the quick fox jumps over\" ) == \"the  quick <del>brown </del> fox <del>jumped </del><ins>jumps </ins> over\"\n */\nQUnit.diff = (function() {\n\t/*jshint eqeqeq:false, eqnull:true */\n\tfunction diff( o, n ) {\n\t\tvar i,\n\t\t\tns = {},\n\t\t\tos = {};\n\n\t\tfor ( i = 0; i < n.length; i++ ) {\n\t\t\tif ( !hasOwn.call( ns, n[i] ) ) {\n\t\t\t\tns[ n[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\to: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tns[ n[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i = 0; i < o.length; i++ ) {\n\t\t\tif ( !hasOwn.call( os, o[i] ) ) {\n\t\t\t\tos[ o[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\tn: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tos[ o[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i in ns ) {\n\t\t\tif ( hasOwn.call( ns, i ) ) {\n\t\t\t\tif ( ns[i].rows.length === 1 && hasOwn.call( os, i ) && os[i].rows.length === 1 ) {\n\t\t\t\t\tn[ ns[i].rows[0] ] = {\n\t\t\t\t\t\ttext: n[ ns[i].rows[0] ],\n\t\t\t\t\t\trow: os[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t\to[ os[i].rows[0] ] = {\n\t\t\t\t\t\ttext: o[ os[i].rows[0] ],\n\t\t\t\t\t\trow: ns[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = 0; i < n.length - 1; i++ ) {\n\t\t\tif ( n[i].text != null && n[ i + 1 ].text == null && n[i].row + 1 < o.length && o[ n[i].row + 1 ].text == null &&\n\t\t\t\t\t\tn[ i + 1 ] == o[ n[i].row + 1 ] ) {\n\n\t\t\t\tn[ i + 1 ] = {\n\t\t\t\t\ttext: n[ i + 1 ],\n\t\t\t\t\trow: n[i].row + 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row + 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row + 1 ],\n\t\t\t\t\trow: i + 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = n.length - 1; i > 0; i-- ) {\n\t\t\tif ( n[i].text != null && n[ i - 1 ].text == null && n[i].row > 0 && o[ n[i].row - 1 ].text == null &&\n\t\t\t\t\t\tn[ i - 1 ] == o[ n[i].row - 1 ]) {\n\n\t\t\t\tn[ i - 1 ] = {\n\t\t\t\t\ttext: n[ i - 1 ],\n\t\t\t\t\trow: n[i].row - 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row - 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row - 1 ],\n\t\t\t\t\trow: i - 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\treturn {\n\t\t\to: o,\n\t\t\tn: n\n\t\t};\n\t}\n\n\treturn function( o, n ) {\n\t\to = o.replace( /\\s+$/, \"\" );\n\t\tn = n.replace( /\\s+$/, \"\" );\n\n\t\tvar i, pre,\n\t\t\tstr = \"\",\n\t\t\tout = diff( o === \"\" ? [] : o.split(/\\s+/), n === \"\" ? [] : n.split(/\\s+/) ),\n\t\t\toSpace = o.match(/\\s+/g),\n\t\t\tnSpace = n.match(/\\s+/g);\n\n\t\tif ( oSpace == null ) {\n\t\t\toSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\toSpace.push( \" \" );\n\t\t}\n\n\t\tif ( nSpace == null ) {\n\t\t\tnSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\tnSpace.push( \" \" );\n\t\t}\n\n\t\tif ( out.n.length === 0 ) {\n\t\t\tfor ( i = 0; i < out.o.length; i++ ) {\n\t\t\t\tstr += \"<del>\" + out.o[i] + oSpace[i] + \"</del>\";\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tif ( out.n[0].text == null ) {\n\t\t\t\tfor ( n = 0; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\tstr += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( i = 0; i < out.n.length; i++ ) {\n\t\t\t\tif (out.n[i].text == null) {\n\t\t\t\t\tstr += \"<ins>\" + out.n[i] + nSpace[i] + \"</ins>\";\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// `pre` initialized at top of scope\n\t\t\t\t\tpre = \"\";\n\n\t\t\t\t\tfor ( n = out.n[i].row + 1; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\t\tpre += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t\t}\n\t\t\t\t\tstr += \" \" + out.n[i].text + nSpace[i] + pre;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn str;\n\t};\n}());\n\n// for CommonJS environments, export everything\nif ( typeof exports !== \"undefined\" ) {\n\textend( exports, QUnit.constructor.prototype );\n}\n\n// get at whatever the global object is, like window in browsers\n}( (function() {return this;}.call()) ));"
  },
  {
    "path": "doc/cppnow-2017/test/test-markdown-element-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Element Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\" data-element-attributes=\"{_\\s*?([^}]+?)}\">>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\t\t\t\t\t\t<!-- {_class=\"fragment fade-out\" data-fragment-index=\"1\"} -->\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\t\t\t\t\t\t<!-- {_class=\"fragment shrink\"} -->\n\n\t\t\t\t\t\tParagraph 1\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\tParagraph 2\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 2 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 3 <!-- {_class=\"fragment grow\"} -->\n\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\n\n\t\t\t\t\t\tParagraph 1.2  \n\t\t\t\t\t\tmulti-line <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.2 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.3 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.4 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 2<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 3<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 4\n\t\t\t\t\t\t<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 5<!-- {_class=\"fragment highlight-green\"} -->\n\n\t\t\t\t\t\tTest\n\n\t\t\t\t\t\t![Example Picture](examples/assets/image2.png)\n\t\t\t\t\t\t<!-- {_class=\"reveal stretch\"} -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def <!-- .element: class=\"fragment highlight-red\" data-fragment-index=\"1\" -->\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .element: class=\"fragment highlight-red\" -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\t\t\t\t\tA paragraph\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tMultiple  \n\t\t\t\t\tLine\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tTest<!-- .element: class=\"fragment highlight-blue\" -->\n\n\t\t\t\t\tMore Test\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-element-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/test-markdown-element-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 4, 'found four slides' );\n\t});\n\n\n\ttest( 'Attributes on element header in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.fade-out' ).length, 1, 'found one vertical slide with class fragment.fade-out on header' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.shrink' ).length, 1, 'found one vertical slide with class fragment.shrink on header' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section p.fragment.grow' ).length, 2, 'found a vertical slide with two paragraphs with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element list items in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-red' ).length, 4, 'found a horizontal slide with four paragraphs with class fragment.grow' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section li.fragment.highlight-green' ).length, 5, 'found a horizontal slide with five list items with class fragment.roll-in' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section img.reveal.stretch' ).length, 1, 'found a horizontal slide with stretched image, class img.reveal.stretch' );\n\t});\n\n\ttest( 'Attributes on elements in vertical slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section h2.fragment.highlight-red' ).length, 2, 'found two h2 titles with fragment highlight-red in vertical slides with default element attribute separator' );\n\t});\n\n\ttest( 'Attributes on elements in single slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-blue' ).length, 3, 'found three elements with fragment highlight-blue in single slide with default element attribute separator' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cppnow-2017/test/test-markdown-slide-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by three lines, vertical slides by two lines, attributes are one any line starting with (spaces and) two dashes -->\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-attributes=\"--\\s(.*?)$\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown\n\t\t\t\t\t\t## Slide 1\n\n\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t\t<!-- -- id=\"slide2\" data-transition=\"zoom\" data-background=\"#A0C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1\n\t\t\t\t\t\t<!-- -- data-background=\"#ff0000\" data-transition=\"fade\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2\n\t\t\t\t\t\t[Link to Slide2](#/slide2)\n\n\n\n\t\t\t\t\t\t## Slide 3\n\t\t\t\t\t\t<!-- -- data-transition=\"zoom\" data-background=\"#C6916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def\n\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .slide: id=\"slide2def\" data-transition=\"concave\" data-background=\"#A7C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1 Def\n\t\t\t\t\t\t<!-- .slide: data-background=\"#f70000\" data-transition=\"page\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2 Def\n\t\t\t\t\t\t[Link to Slide2](#/slide2def)\n\n\n\n\t\t\t\t\t\t## Slide 3 Def\n\t\t\t\t\t\t<!-- .slide: data-transition=\"concave\" data-background=\"#C7916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\n\t\t\t\t\t\tTest\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\n\t\t\t\t\t\tMore Test\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-slide-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/test-markdown-slide-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 6, 'found six vertical slides' );\n\t});\n\n\ttest( 'Id on slide', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section#slide2' ).length, 1, 'found one slide with id slide2' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section a[href=\"#/slide2\"]' ).length, 1, 'found one slide with a link to slide2' );\n\t});\n\n\ttest( 'data-background attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A0C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#ff0000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C6916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"zoom\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"fade\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"zoom\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-background attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A7C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#f70000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C7916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"concave\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"page\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"concave\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-transition attributes with inline content', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#ff0000\"]' ).length, 3, 'found three horizontal slides with data-background=\"#ff0000\"' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cppnow-2017/test/test-markdown.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/test-markdown.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cppnow-2017/test/test-pdf.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test PDF exports</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../css/print/pdf.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-pdf.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/test-pdf.js",
    "content": "\nReveal.addEventListener( 'ready', function() {\n\n\t// Only one test for now, we're mainly ensuring that there\n\t// are no execution errors when running PDF mode\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\n} );\n\nReveal.initialize({ pdf: true });\n\n"
  },
  {
    "path": "doc/cppnow-2017/test/test.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Tests</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background-image=\"examples/assets/image1.png\">\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t\t<video data-src=\"fake-url.mp4\"></video>\n\t\t\t\t\t<audio data-src=\"fake-url.mp3\"></audio>\n\t\t\t\t\t<aside class=\"notes\">speaker notes 1</aside>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"examples/assets/image2.png\" data-notes=\"speaker notes 2\">\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t<iframe data-src=\"http://example.com\"></iframe>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/cppnow-2017/test/test.js",
    "content": "\n// These tests expect the DOM to contain a presentation\n// with the following slide structure:\n//\n// 1\n// 2 - Three sub-slides\n// 3 - Three fragment elements\n// 3 - Two fragments with same data-fragment-index\n// 4\n\n\nReveal.addEventListener( 'ready', function() {\n\n\t// ---------------------------------------------------------------\n\t// DOM TESTS\n\n\tQUnit.module( 'DOM' );\n\n\ttest( 'Initial slides classes', function() {\n\t\tvar horizontalSlides = document.querySelectorAll( '.reveal .slides>section' )\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.past' ).length, 0, 'no .past slides' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.present' ).length, 1, 'one .present slide' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section.future' ).length, horizontalSlides.length - 1, 'remaining horizontal slides are .future' );\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.stack' ).length, 2, 'two .stacks' );\n\n\t\tok( document.querySelectorAll( '.reveal .slides section.stack' )[0].querySelectorAll( '.future' ).length > 0, 'vertical slides are given .future' );\n\t});\n\n\t// ---------------------------------------------------------------\n\t// API TESTS\n\n\tQUnit.module( 'API' );\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\ttest( 'Reveal.isOverview', function() {\n\t\tstrictEqual( Reveal.isOverview(), false, 'false by default' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), true, 'true after toggling on' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), false, 'false after toggling off' );\n\t});\n\n\ttest( 'Reveal.isPaused', function() {\n\t\tstrictEqual( Reveal.isPaused(), false, 'false by default' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), true, 'true after pausing' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), false, 'false after resuming' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), false, 'false after Reveal.slide( 1, 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide after vertical slide', function() {\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide after vertical slide', function() {\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( lastSlideIndex );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\t});\n\n\ttest( 'Reveal.getTotalSlides', function() {\n\t\tstrictEqual( Reveal.getTotalSlides(), 8, 'eight slides in total' );\n\t});\n\n\ttest( 'Reveal.getIndices', function() {\n\t\tvar indices = Reveal.getIndices();\n\n\t\tok( indices.hasOwnProperty( 'h' ), 'h exists' );\n\t\tok( indices.hasOwnProperty( 'v' ), 'v exists' );\n\t\tok( indices.hasOwnProperty( 'f' ), 'f exists' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\n\t\tReveal.slide( 1, 2 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 2, 'v 2' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 0, 'h 0' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\t});\n\n\ttest( 'Reveal.getSlide', function() {\n\t\tequal( Reveal.getSlide( 0 ), document.querySelector( '.reveal .slides>section:first-child' ), 'gets correct first slide' );\n\t\tequal( Reveal.getSlide( 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlide( 1, 0 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlide( 1, 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlide( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlide( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideBackground', function() {\n\t\tequal( Reveal.getSlideBackground( 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:first-child' ), 'gets correct first background' );\n\t\tequal( Reveal.getSlideBackground( 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlideBackground( 1, 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlideBackground( 1, 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlideBackground( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlideBackground( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideNotes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 1', 'works with <aside class=\"notes\">' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 2', 'works with <section data-notes=\"\">' );\n\t});\n\n\ttest( 'Reveal.getPreviousSlide/getCurrentSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tReveal.slide( 1, 0 );\n\n\t\tvar firstSlide = document.querySelector( '.reveal .slides>section:first-child' );\n\t\tvar secondSlide = document.querySelector( '.reveal .slides>section:nth-child(2)>section' );\n\n\t\tequal( Reveal.getPreviousSlide(), firstSlide, 'previous is slide #0' );\n\t\tequal( Reveal.getCurrentSlide(), secondSlide, 'current is slide #1' );\n\t});\n\n\ttest( 'Reveal.getProgress', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 0, 'progress is 0 on first slide' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 1, 'progress is 1 on last slide' );\n\t});\n\n\ttest( 'Reveal.getScale', function() {\n\t\tok( typeof Reveal.getScale() === 'number', 'has scale' );\n\t});\n\n\ttest( 'Reveal.getConfig', function() {\n\t\tok( typeof Reveal.getConfig() === 'object', 'has config' );\n\t});\n\n\ttest( 'Reveal.configure', function() {\n\t\tstrictEqual( Reveal.getConfig().loop, false, '\"loop\" is false to start with' );\n\n\t\tReveal.configure({ loop: true });\n\t\tstrictEqual( Reveal.getConfig().loop, true, '\"loop\" has changed to true' );\n\n\t\tReveal.configure({ loop: false, customTestValue: 1 });\n\t\tstrictEqual( Reveal.getConfig().customTestValue, 1, 'supports custom values' );\n\t});\n\n\ttest( 'Reveal.availableRoutes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: false, up: false, down: false, right: true }, 'correct for first slide' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: true, up: false, down: true, right: true }, 'correct for vertical slide' );\n\t});\n\n\ttest( 'Reveal.next', function() {\n\t\tReveal.slide( 0, 0 );\n\n\t\t// Step through vertical child slides\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 1, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 2, f: undefined } );\n\n\t\t// Step through fragments\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 } );\n\t});\n\n\ttest( 'Reveal.next at end', function() {\n\t\tReveal.slide( 3 );\n\n\t\t// We're at the end, this should have no effect\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// FRAGMENT TESTS\n\n\tQUnit.module( 'Fragments' );\n\n\ttest( 'Sliding to fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 }, 'Reveal.slide( 2, 0, -1 )' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'Reveal.slide( 2, 0, 0 )' );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'Reveal.slide( 2, 0, 2 )' );\n\n\t\tReveal.slide( 2, 0, 1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'Reveal.slide( 2, 0, 1 )' );\n\t});\n\n\ttest( 'Hiding all fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 1, 'one fragment visible when index is 0' );\n\n\t\tReveal.slide( 2, 0, -1 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when index is -1' );\n\t});\n\n\ttest( 'Current fragment', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment at index -1' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 1, 'one current fragment at index 0' );\n\n\t\tReveal.slide( 1, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to next slide' );\n\t});\n\n\ttest( 'Stepping through fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\n\t\t// forwards:\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'next() goes to next fragment' );\n\n\t\tReveal.right();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'right() goes to next fragment' );\n\n\t\tReveal.down();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'down() goes to next fragment' );\n\n\t\tReveal.down(); // moves to f #3\n\n\t\t// backwards:\n\n\t\tReveal.prev();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'prev() goes to prev fragment' );\n\n\t\tReveal.left();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'left() goes to prev fragment' );\n\n\t\tReveal.up();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'up() goes to prev fragment' );\n\t});\n\n\ttest( 'Stepping past fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 0, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when on previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 3, 'all fragments visible when on future slide' );\n\t});\n\n\ttest( 'Fragment indices', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(2)' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 2, 'both fragments of same index are shown' );\n\n\t\t// This slide has three fragments, first one is index 0, second and third have index 1\n\t\tReveal.slide( 2, 2, 0 );\n\t\tequal( Reveal.getIndices().f, 0, 'returns correct index for first fragment' );\n\n\t\tReveal.slide( 2, 2, 1 );\n\t\tequal( Reveal.getIndices().f, 1, 'returns correct index for two fragments with same index' );\n\t});\n\n\ttest( 'Index generation', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\t// These have no indices defined to start with\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '2' );\n\t});\n\n\ttest( 'Index normalization', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(3)' );\n\n\t\t// These start out as 1-4-4 and should normalize to 0-1-1\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '1' );\n\t});\n\n\tasyncTest( 'fragmentshown event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmentshown', _onEvent );\n\n\t\tReveal.slide( 2, 0 );\n\t\tReveal.slide( 2, 0 ); // should do nothing\n\t\tReveal.slide( 2, 0, 0 ); // should do nothing\n\t\tReveal.next();\n\t\tReveal.next();\n\t\tReveal.prev(); // shouldn't fire fragmentshown\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmentshown', _onEvent );\n\t});\n\n\tasyncTest( 'fragmenthidden event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmenthidden', _onEvent );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tReveal.slide( 2, 0, 2 ); // should do nothing\n\t\tReveal.prev();\n\t\tReveal.prev();\n\t\tReveal.next(); // shouldn't fire fragmenthidden\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmenthidden', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// AUTO-SLIDE TESTS\n\n\tQUnit.module( 'Auto Sliding' );\n\n\ttest( 'Reveal.isAutoSliding', function() {\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false by default' );\n\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after starting' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after setting to 0' );\n\t});\n\n\ttest( 'Reveal.toggleAutoSlide', function() {\n\t\tReveal.configure({ autoSlide: 10000 });\n\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after first toggle' );\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after second toggle' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t});\n\n\tasyncTest( 'autoslidepaused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslidepaused', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslidepaused', _onEvent );\n\t});\n\n\tasyncTest( 'autoslideresumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslideresumed', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslideresumed', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// CONFIGURATION VALUES\n\n\tQUnit.module( 'Configuration' );\n\n\ttest( 'Controls', function() {\n\t\tvar controlsElement = document.querySelector( '.reveal>.controls' );\n\n\t\tReveal.configure({ controls: false });\n\t\tequal( controlsElement.style.display, 'none', 'controls are hidden' );\n\n\t\tReveal.configure({ controls: true });\n\t\tequal( controlsElement.style.display, 'block', 'controls are visible' );\n\t});\n\n\ttest( 'Progress', function() {\n\t\tvar progressElement = document.querySelector( '.reveal>.progress' );\n\n\t\tReveal.configure({ progress: false });\n\t\tequal( progressElement.style.display, 'none', 'progress are hidden' );\n\n\t\tReveal.configure({ progress: true });\n\t\tequal( progressElement.style.display, 'block', 'progress are visible' );\n\t});\n\n\ttest( 'Loop', function() {\n\t\tReveal.configure({ loop: true });\n\n\t\tReveal.slide( 0, 0 );\n\n\t\tReveal.left();\n\t\tnotEqual( Reveal.getIndices().h, 0, 'looped from start to end' );\n\n\t\tReveal.right();\n\t\tequal( Reveal.getIndices().h, 0, 'looped from end to start' );\n\n\t\tReveal.configure({ loop: false });\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// LAZY-LOADING TESTS\n\n\tQUnit.module( 'Lazy-Loading' );\n\n\ttest( 'img with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section img[src]' ).length, 1, 'Image source has been set' );\n\t});\n\n\ttest( 'video with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section video[src]' ).length, 1, 'Video source has been set' );\n\t});\n\n\ttest( 'audio with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section audio[src]' ).length, 1, 'Audio source has been set' );\n\t});\n\n\ttest( 'iframe with data-src', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t\tReveal.slide( 2, 1 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 1, 'Iframe source is set' );\n\t\tReveal.slide( 2, 2 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t});\n\n\ttest( 'background images', function() {\n\t\tvar imageSource1 = Reveal.getSlide( 0 ).getAttribute( 'data-background-image' );\n\t\tvar imageSource2 = Reveal.getSlide( 1, 0 ).getAttribute( 'data-background' );\n\n\t\t// check that the images are applied to the background elements\n\t\tok( Reveal.getSlideBackground( 0 ).style.backgroundImage.indexOf( imageSource1 ) !== -1, 'data-background-image worked' );\n\t\tok( Reveal.getSlideBackground( 1, 0 ).style.backgroundImage.indexOf( imageSource2 ) !== -1, 'data-background worked' );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// EVENT TESTS\n\n\tQUnit.module( 'Events' );\n\n\tasyncTest( 'slidechanged', function() {\n\t\texpect( 3 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'slidechanged', _onEvent );\n\n\t\tReveal.slide( 1, 0 ); // should trigger\n\t\tReveal.slide( 1, 0 ); // should do nothing\n\t\tReveal.next(); // should trigger\n\t\tReveal.slide( 3, 0 ); // should trigger\n\t\tReveal.next(); // should do nothing\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'slidechanged', _onEvent );\n\n\t});\n\n\tasyncTest( 'paused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'paused', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'paused', _onEvent );\n\t});\n\n\tasyncTest( 'resumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'resumed', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'resumed', _onEvent );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/cppnow-2017/uml/app0.uml",
    "content": "@startuml\n\nApp : run() : void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/cppnow-2017/uml/app1.uml",
    "content": "@startuml\n\n\"Printer\" : show(int) : void\n\"Reader\" : read() : int\n\n\"App\" ..> \"Reader\"\n\"App\" ..> \"Printer\"\n\n\"App\" : run() : void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/cppnow-2017/uml/app2.uml",
    "content": "@startuml\n\n\"Printer\" : show(int) : void\n\"Reader\" : read() : int\n\n\"App\" *.. \"Reader\"\n\"App\" *.. \"Printer\"\n\n\"App\" : run() : void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/cppnow-2017/uml/app3.uml",
    "content": "@startuml\n\n\"IPrinter\" : show(int) : void\n\"IReader\" : read() : int\n\n\"ConsolePrinter\" -up-|> \"IPrinter\"\n\"ConsolePrinter\" : show(int) : void\n\n\"FileReader\" -up-|> \"IReader\"\n\"FileReader\" : read() : int\n\n\"App\" ..> \"IReader\"\n\"App\" ..> \"IPrinter\"\n\n\"App\" : run: void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/cppnow-2017/uml/app4.uml",
    "content": "@startuml\n\n\"Printer<T>\" : show(int) : void\n\"Reader<T>\" : read() : int\n\n\"ConsolePrinter\" -up-|> \"Printer<T>\"\n\"ConsolePrinter\" : show(int) : void\n\n\"FileReader\" -up-|> \"Reader<T>\"\n\"FileReader\" : read() : int\n\n\"App\" ..> \"Reader<T>\"\n\"App\" ..> \"Printer<T>\"\n\n\"App\" : run: void\n\nnote right: Generated by [Boost].DI\n\n@enduml\n"
  },
  {
    "path": "doc/cppnow-2017/uml/guideline.uml",
    "content": "@startuml\n\nstart\n\nif (I know the dependency at compile time?) then (yes)\n  :Concepts;\nelse (no)\n   if (I need max performance and no heap?) then (yes)\n    :Type Erasure;\n   else (no)\n    :Virtual Functions;\n   endif\nendif\n\nstop\n\n@enduml\n"
  },
  {
    "path": "doc/examples.md",
    "content": "* [Hello World](#hello-world)\n* [Bindings](#bindings)\n* [Dynamic Bindings](#dynamic-bindings)\n* [Forward Bindings](#forward-bindings)\n* [Multiple Bindings](#multiple-bindings)\n* [Binding Non-owning Pointer](#binding-non-owning-pointer)\n* [Automatic Injection](#automatic-injection)\n* [Constructor Signature](#constructor-signature)\n* [Constructor Injection](#constructor-injection)\n* [Multiple Interface](#multiple-interfaces)\n* [Annotations](#annotations)\n* [Deduce Scope](#deduce-scope)\n* [Custom Scope](#custom-scope)\n* [Eager Singletons](#eager-singletons)\n* [Modules](#modules)\n* [Modules (hpp/cpp)](#modules-hppcpp)\n* [Custom Policy](#custom-policy)\n* [Custom Provider](#custom-provider)\n* [Pool Provider](#pool-provider)\n* [Configuration](#configuration)\n\n---\n\n###Hello World\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/try_it.cpp)\n\n###Bindings\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/bindings.cpp)\n\n###Dynamic Bindings\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/dynamic_bindings.cpp)\n\n###Forward Bindings\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/fwd_bindings.cpp)\n\n###Multiple Bindings\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/multiple_bindings.cpp)\n\n###Binding Non-owning Pointer\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/bind_non_owning_ptr.cpp)\n\n###Automatic Injection\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/automatic_injection.cpp)\n\n###Constructor Signature\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/constructor_signature.cpp)\n\n###Constructor Injection\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/constructor_injection.cpp)\n\n###Multiple Interface\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/multiple_interfaces.cpp)\n\n###Annotations\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/annotations.cpp)\n\n###Deduce Scope\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/deduce_scope.cpp)\n\n###Custom Scope\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_scope.cpp)\n\n###Eager Singletons\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/eager_singletons.cpp)\n\n###Modules\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/modules.cpp)\n\n###Modules (hpp/cpp)\n\n* See [https://github.com/boost-experimental/di/tree/cpp14/example/modules](https://github.com/boost-experimental/di/tree/cpp14/example/modules)\n\n###Custom Policy\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_policy.cpp)\n\n###Custom Provider\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_provider.cpp)\n\n###Pool Provider\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/pool_provider.cpp)\n\n###Configuration\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/configuration.cpp)\n"
  },
  {
    "path": "doc/extensions.md",
    "content": "* [Constructor Bindings](#constructor-bindings)\n* [Contextual Bindings](#contextual-bindings)\n* [Assisted Injection](#assisted-injection)\n* [Concepts](#concepts)\n* [Factory](#factory)\n* [Generics / Typed Erasure Interfaces](#generics-typed-erasure-interfaces)\n* [Lazy](#lazy)\n* [Named Parameters](#named-parameters)\n* [XML Injection](#xml-injection)\n* [Serialize](#serialize)\n* [Types Dumper](#types-dumper)\n* [UML Dumper](#uml-dumper)\n* [Mocks Provider](#mocks-provider)\n* [Scoped Scope](#scoped-scope)\n* [Session Scope](#session-scope)\n* [Shared Scope](#shared-scope)\n\n---\n\n###Constructor Bindings\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/bindings/constructor_bindings.cpp)\n\n###Contextual Bindings\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/bindings/contextual_bindings.cpp)\n\n###Assisted Injection\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/assisted_injection.cpp)\n\n###Concepts\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/concepts.cpp)\n\n###Factory\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/factory.cpp)\n\n###Generics / Typed Erasure Interfaces\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/generics.cpp)\n\n###Lazy\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/lazy.cpp)\n\n###Named Parameters\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/named_parameters.cpp)\n\n###XML Injection\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/xml_injection.cpp)\n\n###Serialize\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/serialize.cpp)\n\n###Types Dumper\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/types_dumper.cpp)\n\n###UML Dumper\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/uml_dumper.cpp)\n\n[![UML Dumper](images/uml_dumper.png)](images/uml_dumper.png)\n\n###Mocks Provider\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/providers/mocks_provider.cpp)\n\n###Scoped Scope\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/scopes/scoped_scope.cpp)\n\n###Session Scope\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/scopes/session_scope.cpp)\n\n###Shared Scope\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/scopes/shared_scope.cpp)\n"
  },
  {
    "path": "doc/index.md",
    "content": "<a href=\"http://www.boost.org/LICENSE_1_0.txt\" target=\"_blank\">![Boost Licence](http://img.shields.io/badge/license-boost-blue.svg)</a>\n<a href=\"https://github.com/boost-experimental/di/releases\" target=\"_blank\">![Version](https://badge.fury.io/gh/boost-experimental%2Fdi.svg)</a>\n<a href=\"https://travis-ci.org/boost-experimental/di\" target=\"_blank\">![Build Status](https://img.shields.io/travis/boost-experimental/di/cpp14.svg?label=linux/osx)</a>\n<a href=\"https://ci.appveyor.com/project/krzysztof-jusiak/di\" target=\"_blank\">![Build Status](https://img.shields.io/appveyor/ci/krzysztof-jusiak/di/cpp14.svg?label=windows)</a>\n<a href=\"https://codecov.io/gh/boost-experimental/di\" target=\"_blank\">![Coveralls](https://codecov.io/gh/boost-experimental/di/branch/cpp14/graph/badge.svg)</a>\n<a href=\"http://github.com/boost-experimental/di/issues\" target=\"_blank\">![Github Issues](https://img.shields.io/github/issues/boost-experimental/di.svg)</a>\n\n---------------------------------------\n\nIntroduction\n============\n\n| **[Boost].DI** | |\n| - | - |\n| Your C++14 header only Dependency Injection library with no dependencies ([__Try it online!__](http://boost-experimental.github.io/di/try_it/index.html)) | <a class=\"github-button\" href=\"https://github.com/boost-experimental/di\" data-style=\"mega\" data-count-href=\"/boost-experimental/di/stargazers\" data-count-api=\"/repos/boost-experimental/di#stargazers_count\" data-count-aria-label=\"# stargazers on GitHub\" aria-label=\"Star boost-experimental/di on GitHub\">GitHub</a> |\n\n<div class=\"important\">\n<h3 class=\"wy-text-neutral\"><span class=\"fa fa-info-circle wy-text-info\"></span>&nbsp; Latest Release: <b>v1.0.1</b> (May 4, 2016)</h3>\n<a href=\"../releases\" class=\"btn btn-success\" style=\"margin-bottom:8px;\" role=\"button\"><span class=\"fa fa-download\"></span>&nbsp; <b>Download</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href=\"CHANGELOG/index.html\" class=\"btn btn-info\" style=\"margin-bottom:8px;\" role=\"button\"><span class=\"fa fa-reorder\"></span>&nbsp; <b>Changelog</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href=\"tutorial/index.html\" class=\"btn btn-warning\" style=\"margin-bottom:8px;\" role=\"button\"><span class=\"fa fa-gear\"></span>&nbsp; <b>Tutorial</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href=\"examples/index.html\" class=\"btn btn-danger\" style=\"margin-bottom:8px;\" role=\"button\"><span class=\"fa fa-book\"></span>&nbsp; <b>Examples</b></a>\n</div>\n\n#What is Dependency Injection?\n> \"Don't call us, we'll call you\", Hollywood principle\n\n**[Dependency Injection](http://www.youtube.com/watch?v=IKD2-MAkXyQ) (DI)** involves passing (injecting) one or more dependencies (or services) to a dependent object (or client) which become part of the client’s state.\nIt is like the Strategy Pattern, except the strategy is set once, at construction. DI enables loosely coupled designs, which are easier to maintain and test.\n\n<center>\nIn short, DI is all about construction!\n\n> **\"Let's make some coffee!\"**\n\n[![Coffee Maker](images/coffee_maker.png)](images/coffee_maker.png)\n</center>\n\n```cpp\n                      No Dependency injection                 | Dependency Injection\n                      ----------------------------------------|-------------------------------------------\n                      class coffee_maker {                    | class coffee_maker {\n                      public:                                 | public:\n                          void brew() {                       |   coffee_maker(const shared_ptr<iheater>& heater\n                              heater->on();                   |              , unique_ptr<ipump> pump)\n                              pump->pump();                   |         : heater(heater), pump(move(pump))\n                              clog << \"coffee\"! << endl;      |     { }\n                              heater->off();                  |\n                          }                                   |     void brew() {\n                                                              |         heater->on();\n                      private:                                |         pump->pump();\n                          shared_ptr<iheater> heater =        |         clog << \"coffee!\" << endl;\n                              make_shared<electric_heater>(); |         heater->off();\n                                                              |     }\n                          unique_ptr<ipump> pump =            |\n                              make_unique<heat_pump>(heater); | private:\n                      };                                      |     shared_ptr<iheater> heater;\n                                                              |     unique_ptr<ipump> pump;\n                                                              | };\n```\n\n###Do I use a Dependency Injection already?\n\n* If you are using constructors in your code then you are probably using some form of Dependency Injection too!\n\n```cpp\nclass Button {\n public:\n  Button(const std::string& name, Position position); // Dependency Injection!\n};\n```\n\n###Do I use Dependency Injection correctly?\n\nCommon mistakes when using Dependency Injection are:\n\n  * **Passing a dependency to create another dependency inside your object**\n\n    It's a bad practice to pass dependencies to an object just in order\n    to create another one with those dependencies.\n    It's much cleaner to create the latter object beforehand and pass it to the former.\n\n```cpp\nclass Model {\n public:\n   Model(int width, int height) \n     : board(std::make_unique<Board>(width, height)) // Bad\n   { } \n\n   explicit Model(std::unique_ptr<IBoard> board) // Better\n     : board(std::move(board))\n   { } \n\n   ...\n\n private:\n  std::unique_ptr<IBoard> board;\n};\n```\n\n  * **Carrying dependencies**\n\n    It's also important NOT to pass depenencies through layers of constructors (carrying them).\n    It's much better to always pass only dependecies which are required ONLY by the given constructor.\n\n```cpp\nclass Model : public Service { // Bad\n public:\n   explicit Model(std::unique_ptr<IBoard> board) // Bad\n     : Service(std::move(board))\n   { } \n\n   void update() {\n     Service::do_something_with_board(); // Bad\n   }\n};\n\nclass Model { // Better\n public:\n   explicit Model(std::unique_ptr<Service> service) // Better\n     : service(std::move(service))\n   { } \n\n   void update() {\n     service->do_something_with_board(); // Better\n   }\n\n private:\n   std::unique_ptr<Service> service;\n};\n```\n\n  * **Carrying injector (Service Locator pattern)**\n\n    Service locator is consider to be an anti-pattern because its instance\n    is required to be passed as the ONLY constructor parameter into all\n    constructors. Such approach makes the code highly coupled to the Service Locator framework.\n    It's better to pass required dependencies direclty instead and use a DI framework to inject them.\n\n```cpp\nclass Model {\n public:\n   explicit Model(service_locator& sl) // Bad (ask)\n     : service(sl.resolve<unique_ptr<Service>>())\n   { } \n\n   explicit Model(std::unique_ptr<Service> service) // Better (tell)\n     : service(std::move(service))\n   { } \n\n   ...\n\n private:\n   std::unique_ptr<Service> service;\n};\n```\n\n  * **Not using strong typedefs for consturctor parameters**\n\n    Being explicit and declarative is always better than being impilicit.\n    Using common types (ex. numbers) in order to define any common-like type may cause\n    missusage of the constructor interface. Using `strong typedefs` is easier to follow and\n    protects against missusage of the constructor interface.\n\n```cpp\nclass Board {\n public:\n   Board(int /*width*/, int /*height*/)  // Bad; Board{2, 3} vs Board{3, 2}?\n\n   Board(width, height) // Better, explicit; Board{width{2}, height{3}};\n\n   ...\n};\n```\n\n###Do I need a Dependency Injection?\n\n* DI provides loosely coupled code (separation of business logic and object creation)\n* DI provides easier to maintain code (different objects might be easily injected)\n* DI provides easier to test code (fakes objects might be injected)\n\n####STUPID vs SOLID - \"Clean Code\" Uncle Bob\n\n<table>\n  <tr><td><b>S</b></td><td>Singleton</td></tr>\n  <tr><td><b>T</b></td><td>Tight Coupling</td></tr>\n  <tr><td><b>U</b></td><td>Untestability</td></tr>\n  <tr><td><b>P</b></td><td>Premature Optimization</td></tr>\n  <tr><td><b>I</b></td><td>Indescriptive Naming</td></tr>\n  <tr><td><b>D</b></td><td>Duplication</td></tr>\n</table>\n\n> vs\n\n<table>\n  <tr><td><b>S</b></td><td><b>Single Responsibility</b></td></tr>\n  <tr><td><b>O</b></td><td>Open-close</td></tr>\n  <tr><td><b>L</b></td><td>Liskov substitution</td></tr>\n  <tr><td><b>I</b></td><td>Interface segregation</td></tr>\n  <tr><td><b>D</b></td><td><b>Dependency inversion</b></td></tr>\n</table>\n\n###Do I need a DI Framework/Library?\n\nDepending on a project and its scale you may put up with or without a DI library, however, in any project\na DI framework may **free you** from maintaining a following (boilerplate) code...\n\n```cpp\nlogger logger_;\nrenderer renderer_;\nview view_{renderer_, logger_};\nmodel model_{logger_};\ncontroller controller_{model_, view_, logger_};\nuser user_{logger_};\napp app_{controller_, user_};\n```\nNotice that **ORDER** in which above dependencies are created is **IMPORTANT** as well as that\n**ANY** change in **ANY** of the objects constructor will **REQUIRE** a change in this code!\n\n####Manual DI - Wiring Mess (Avoid it by using [Boost].DI)\n\n```\n* Single Responsibility Principle\n  =>\n    * A lot of classes\n    =>\n      * Wiring Mess\n      =>\n        * Hard to maintain + Lazy programmers (99%)\n        =>\n          * Hacks/Workarounds (~~Single Responsibility~~)\n```\n\n![CPP(BTN)](Run_Motivation_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/motivation.cpp)\n<br />\n\nRight now, imagine a project with hundreds or thousands of those dependencies and a critical issue\nwhich has to be fixed ASAP. Unfortunately, in order to fix the bug properly a new non-trivial dependency has to be\nintroduced.\n\nNow, imagine that a 'smart' dev figured out that it will be much easier to extend the functionally\nof already passed object and sneak a workaround/'solution' this way. Such approach will possibly break the **[single responsibility principle](https://en.wikipedia.org/wiki/Single_responsibility_principle)**\nof the changed object but no worries though, it might be refactored later on (meaning: most likely, the workaround will stay unchanged forever and that there are no tests).\n\n**If that sounds familiar**, take a look into DI library as it helps to solve developer dilemma by taking care\nof creating all required dependencies whereas dev may focus on fixing and testing the issue.\n\n---\n\n**DI library**, not only let you forget about maintaining dependencies creation (See [Create Objects Tree](tutorial.md#1-basic-create-objects-tree)),\nbut also can help you with...\n\n* Testing (See [Mocks Provider](extensions.md#mocks-provider))\n* Serializing (See [Serialize](extensions.md#serialize))\n* Understand code dependencies (See [UML Dumper](extensions.md#uml-dumper))\n* Restrict what types and how they should be created (See [Constructible Policy](user_guide.md#di_constructible))\n\n###Real Life examples?\n\n* [Match-3 Game](https://github.com/modern-cpp-examples/match3)\n    * Simple web game in C++14 using SDL2 / Model View Controller / Meta State Machine / Dependency Injection / Range-V3 / Emscripten\n        * [Play it online!](http://modern-cpp-examples.github.io/match3)\n\n>\n\n* [Automatic Mocks Injector](https://github.com/krzysztof-jusiak/mocks_injector)\n    * Automatically create and inject required mocks to tested classes via constructors\n\n>\n\n* [Experimental Boost.SML](http://boost-experimental.github.io/sml)\n    * C++14 header only Meta State Machine library with no dependencies\n\n###Why [Boost].DI?\n\n* [Boost].DI has none run-time overhead (See [Performance](overview.md#performance))\n* [Boost].DI compiles fast / **Faster than Java-[Dagger2]!** (See [Benchmarks](overview.md#benchmarks))\n* [Boost].DI gives short diagnostic messages (See [Error messages](overview.md#error-messages))\n* [Boost].DI is non-intrusive (See [Injections](user_guide.md#injections))\n* [Boost].DI reduces boilerplate code (See [Create Objects Tree](tutorial.md#1-basic-create-objects-tree))\n* [Boost].DI reduces testing effort (See [Mocks Provider](extensions.md#mocks-provider))\n* [Boost].DI gives better control of what and how is created (See [Constructible Policy](user_guide.md#di_constructible))\n* [Boost].DI gives better understanding about objects hierarchy (See [UML Dumper](extensions.md#uml-dumper))\n\n> [__Try it online!__](http://boost-experimental.github.io/di/try_it/index.html)\n\n![CPP(BTN)](Run_UML_Dumper_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/uml_dumper.cpp)\n![CPP(BTN)](Run_XML_Injection_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/xml_injection.cpp)\n![CPP(BTN)](Run_Constructible_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/policies_constructible_local.cpp)\n\n<br /><br />\n\n###[Boost].DI design goals\n\n* Be as fast as possible (See [Performance](overview.md#performance))\n* Compile as fast as possible (See [Benchmarks](overview.md#benchmarks))\n* Give short and intuitive error messages (See [Error messages](overview.md#error-messages))\n* Guarantee object creation at compile-time (See [Create Objects Tree](tutorial.md#1-basic-create-objects-tree))\n* Be as non-intrusive as possible (See [Injections](user_guide.md#injections))\n* Be easy to extend (See [Extensions](extensions.md))\n\n###Articles\n\n* [Inversion of Control Containers and the Dependency Injection pattern](http://martinfowler.com/articles/injection.html)\n* [DIP in the Wild](http://martinfowler.com/articles/dipInTheWild.html)\n* [Concepts driven design with Dependency Injection](http://boost-experimental.github.io/di/concepts-driven-design-with-di)\n\n###Videos\n\n* [Dependency Injection](https://www.youtube.com/watch?v=IKD2-MAkXyQ)\n* [The Clean Code Talks - Don't Look For Things!](https://www.youtube.com/watch?v=RlfLCWKxHJ0)\n* [C++Now 2016: C++14 Dependency Injection Library](https://www.youtube.com/watch?v=comZthFv3PM) | [Slides](http://boost-experimental.github.io/di/cppnow-2016)\n* [Meeting C++ 2016: TDD/BDD and Dependency Injection](https://www.youtube.com/watch?v=T3uMcxhzRUE) | [Slides](http://boost-experimental.github.io/di/meetingcpp-2016)\n* [Boost your design with C++14 dependency injection](https://skillsmatter.com/skillscasts/9830-boost-your-design-with-c-plus-plus14-dependency-injection) | [Slides](http://boost-experimental.github.io/di/cpp-london-2017)\n* [A New Type of dependency injection](http://www.youtube.com/watch?v=oK_XtfXPkqw)\n* [The Future of Dependency Injection with Dagger 2](https://www.youtube.com/watch?v=plK0zyRLIP8)\n* [Design Patterns in C++: Creational](https://www.pluralsight.com/courses/design-patterns-cpp-creational)\n\n###Acknowledgements\n* Thanks to **Bartosz Kalinczuk** for code review and tips how to improve `[Boost].DI`\n* Thanks to **Sohail Somani** for support and tips how to improve `[Boost].DI`\n* Thanks to **Olof Edlund** for very useful feedback and for all the improvements to the documentation\n* Thanks to **Rob Stewart** and **Robert Ramey** for documentation feedback and tips how to improve it\n\n[Dagger2]: https://github.com/google/dagger\n"
  },
  {
    "path": "doc/meetingcpp-2016/.gitignore",
    "content": ".DS_Store\n.svn\nlog/*.log\ntmp/**\nnode_modules/\n.sass-cache\ncss/reveal.min.css\njs/reveal.min.js\n"
  },
  {
    "path": "doc/meetingcpp-2016/.travis.yml",
    "content": "language: node_js\nnode_js:\n  - 4.1.1\nbefore_script:\n  - npm install -g grunt-cli"
  },
  {
    "path": "doc/meetingcpp-2016/CONTRIBUTING.md",
    "content": "## Contributing\n\nPlease keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.\n\n\n### Personal Support\nIf you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).\n\n\n### Bug Reports\nWhen reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.\n\n\n### Pull Requests\n- Should follow the coding style of the file you work in, most importantly:\n  - Tabs to indent\n  - Single-quoted strings\n- Should be made towards the **dev branch**\n- Should be submitted from a feature/topic branch (not your master)\n\n\n### Plugins\nPlease do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines\n"
  },
  {
    "path": "doc/meetingcpp-2016/Gruntfile.js",
    "content": "/* global module:false */\nmodule.exports = function(grunt) {\n\tvar port = grunt.option('port') || 8000;\n\tvar base = grunt.option('base') || '.';\n\n\t// Project configuration\n\tgrunt.initConfig({\n\t\tpkg: grunt.file.readJSON('package.json'),\n\t\tmeta: {\n\t\t\tbanner:\n\t\t\t\t'/*!\\n' +\n\t\t\t\t' * reveal.js <%= pkg.version %> (<%= grunt.template.today(\"yyyy-mm-dd, HH:MM\") %>)\\n' +\n\t\t\t\t' * http://lab.hakim.se/reveal-js\\n' +\n\t\t\t\t' * MIT licensed\\n' +\n\t\t\t\t' *\\n' +\n\t\t\t\t' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\\n' +\n\t\t\t\t' */'\n\t\t},\n\n\t\tqunit: {\n\t\t\tfiles: [ 'test/*.html' ]\n\t\t},\n\n\t\tuglify: {\n\t\t\toptions: {\n\t\t\t\tbanner: '<%= meta.banner %>\\n'\n\t\t\t},\n\t\t\tbuild: {\n\t\t\t\tsrc: 'js/reveal.js',\n\t\t\t\tdest: 'js/reveal.min.js'\n\t\t\t}\n\t\t},\n\n\t\tsass: {\n\t\t\tcore: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.css': 'css/reveal.scss',\n\t\t\t\t}\n\t\t\t},\n\t\t\tthemes: {\n\t\t\t\tfiles: [\n\t\t\t\t\t{\n\t\t\t\t\t\texpand: true,\n\t\t\t\t\t\tcwd: 'css/theme/source',\n\t\t\t\t\t\tsrc: ['*.scss'],\n\t\t\t\t\t\tdest: 'css/theme',\n\t\t\t\t\t\text: '.css'\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t},\n\n\t\tautoprefixer: {\n\t\t\tdist: {\n\t\t\t\tsrc: 'css/reveal.css'\n\t\t\t}\n\t\t},\n\n\t\tcssmin: {\n\t\t\tcompress: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.min.css': [ 'css/reveal.css' ]\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tjshint: {\n\t\t\toptions: {\n\t\t\t\tcurly: false,\n\t\t\t\teqeqeq: true,\n\t\t\t\timmed: true,\n\t\t\t\tlatedef: true,\n\t\t\t\tnewcap: true,\n\t\t\t\tnoarg: true,\n\t\t\t\tsub: true,\n\t\t\t\tundef: true,\n\t\t\t\teqnull: true,\n\t\t\t\tbrowser: true,\n\t\t\t\texpr: true,\n\t\t\t\tglobals: {\n\t\t\t\t\thead: false,\n\t\t\t\t\tmodule: false,\n\t\t\t\t\tconsole: false,\n\t\t\t\t\tunescape: false,\n\t\t\t\t\tdefine: false,\n\t\t\t\t\texports: false\n\t\t\t\t}\n\t\t\t},\n\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ]\n\t\t},\n\n\t\tconnect: {\n\t\t\tserver: {\n\t\t\t\toptions: {\n\t\t\t\t\tport: port,\n\t\t\t\t\tbase: base,\n\t\t\t\t\tlivereload: true,\n\t\t\t\t\topen: true\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tzip: {\n\t\t\t'reveal-js-presentation.zip': [\n\t\t\t\t'index.html',\n\t\t\t\t'css/**',\n\t\t\t\t'js/**',\n\t\t\t\t'lib/**',\n\t\t\t\t'images/**',\n\t\t\t\t'plugin/**',\n\t\t\t\t'**.md'\n\t\t\t]\n\t\t},\n\n\t\twatch: {\n\t\t\toptions: {\n\t\t\t\tlivereload: true\n\t\t\t},\n\t\t\tjs: {\n\t\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ],\n\t\t\t\ttasks: 'js'\n\t\t\t},\n\t\t\ttheme: {\n\t\t\t\tfiles: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],\n\t\t\t\ttasks: 'css-themes'\n\t\t\t},\n\t\t\tcss: {\n\t\t\t\tfiles: [ 'css/reveal.scss' ],\n\t\t\t\ttasks: 'css-core'\n\t\t\t},\n\t\t\thtml: {\n\t\t\t\tfiles: [ 'index.html']\n\t\t\t},\n\t\t\tmarkdown: {\n\t\t\t\tfiles: [ './*.md' ]\n\t\t\t}\n\t\t}\n\n\t});\n\n\t// Dependencies\n\tgrunt.loadNpmTasks( 'grunt-contrib-qunit' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-jshint' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-cssmin' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-uglify' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-watch' );\n\tgrunt.loadNpmTasks( 'grunt-sass' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-connect' );\n\tgrunt.loadNpmTasks( 'grunt-autoprefixer' );\n\tgrunt.loadNpmTasks( 'grunt-zip' );\n\n\t// Default task\n\tgrunt.registerTask( 'default', [ 'css', 'js' ] );\n\n\t// JS task\n\tgrunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );\n\n\t// Theme CSS\n\tgrunt.registerTask( 'css-themes', [ 'sass:themes' ] );\n\n\t// Core framework CSS\n\tgrunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );\n\n\t// All CSS\n\tgrunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );\n\n\t// Package presentation to archive\n\tgrunt.registerTask( 'package', [ 'default', 'zip' ] );\n\n\t// Serve presentation locally\n\tgrunt.registerTask( 'serve', [ 'connect', 'watch' ] );\n\n\t// Run tests\n\tgrunt.registerTask( 'test', [ 'jshint', 'qunit' ] );\n\n};\n"
  },
  {
    "path": "doc/meetingcpp-2016/LICENSE",
    "content": "Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "doc/meetingcpp-2016/README.md",
    "content": "# reveal.js [![Build Status](https://travis-ci.org/hakimel/reveal.js.svg?branch=master)](https://travis-ci.org/hakimel/reveal.js)\n\nA framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/).\n\nreveal.js comes with a broad range of features including [nested slides](https://github.com/hakimel/reveal.js#markup), [Markdown contents](https://github.com/hakimel/reveal.js#markdown), [PDF export](https://github.com/hakimel/reveal.js#pdf-export), [speaker notes](https://github.com/hakimel/reveal.js#speaker-notes) and a [JavaScript API](https://github.com/hakimel/reveal.js#api). It's best viewed in a modern browser but [fallbacks](https://github.com/hakimel/reveal.js/wiki/Browser-Support) are available to make sure your presentation can still be viewed elsewhere.\n\n\n#### More reading:\n- [Installation](#installation): Step-by-step instructions for getting reveal.js running on your computer.\n- [Changelog](https://github.com/hakimel/reveal.js/releases): Up-to-date version history.\n- [Examples](https://github.com/hakimel/reveal.js/wiki/Example-Presentations): Presentations created with reveal.js, add your own!\n- [Browser Support](https://github.com/hakimel/reveal.js/wiki/Browser-Support): Explanation of browser support and fallbacks.\n- [Plugins](https://github.com/hakimel/reveal.js/wiki/Plugins,-Tools-and-Hardware): A list of plugins that can be used to extend reveal.js.\n\n## Online Editor\n\nPresentations are written using HTML or Markdown but there's also an online editor for those of you who prefer a graphical interface. Give it a try at [http://slides.com](http://slides.com).\n\n\n## Instructions\n\n### Markup\n\nMarkup hierarchy needs to be ``<div class=\"reveal\"> <div class=\"slides\"> <section>`` where the ``<section>`` represents one slide and can be repeated indefinitely. If you place multiple ``<section>``'s inside of another ``<section>`` they will be shown as vertical slides. The first of the vertical slides is the \"root\" of the others (at the top), and it will be included in the horizontal sequence. For example:\n\n```html\n<div class=\"reveal\">\n\t<div class=\"slides\">\n\t\t<section>Single Horizontal Slide</section>\n\t\t<section>\n\t\t\t<section>Vertical Slide 1</section>\n\t\t\t<section>Vertical Slide 2</section>\n\t\t</section>\n\t</div>\n</div>\n```\n\n### Markdown\n\nIt's possible to write your slides using Markdown. To enable Markdown, add the ```data-markdown``` attribute to your ```<section>``` elements and wrap the contents in a ```<script type=\"text/template\">``` like the example below.\n\nThis is based on [data-markdown](https://gist.github.com/1343518) from [Paul Irish](https://github.com/paulirish) modified to use [marked](https://github.com/chjj/marked) to support [Github Flavoured Markdown](https://help.github.com/articles/github-flavored-markdown). Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks).\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t## Page title\n\n\t\tA paragraph with some text and a [link](http://hakim.se).\n\t</script>\n</section>\n```\n\n#### External Markdown\n\nYou can write your content as a separate file and have reveal.js load it at runtime. Note the separator arguments which determine how slides are delimited in the external file. The ```data-charset``` attribute is optional and specifies which charset to use when loading the external file.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section data-markdown=\"example.md\"  \n         data-separator=\"^\\n\\n\\n\"  \n         data-separator-vertical=\"^\\n\\n\"  \n         data-separator-notes=\"^Note:\"  \n         data-charset=\"iso-8859-15\">\n</section>\n```\n\n#### Element Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to Markdown elements. This is useful for fragments, amongst other things.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t- Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n\t\t- Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n\t</script>\n</section>\n```\n\n#### Slide Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to the slide `<section>` elements generated by your Markdown.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\tMarkdown content\n\t</script>\n</section>\n```\n\n\n### Configuration\n\nAt the end of your page you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below.\n\n```javascript\nReveal.initialize({\n\n\t// Display controls in the bottom right corner\n\tcontrols: true,\n\n\t// Display a presentation progress bar\n\tprogress: true,\n\n\t// Display the page number of the current slide\n\tslideNumber: false,\n\n\t// Push each slide change to the browser history\n\thistory: false,\n\n\t// Enable keyboard shortcuts for navigation\n\tkeyboard: true,\n\n\t// Enable the slide overview mode\n\toverview: true,\n\n\t// Vertical centering of slides\n\tcenter: true,\n\n\t// Enables touch navigation on devices with touch input\n\ttouch: true,\n\n\t// Loop the presentation\n\tloop: false,\n\n\t// Change the presentation direction to be RTL\n\trtl: false,\n\n\t// Turns fragments on and off globally\n\tfragments: true,\n\n\t// Flags if the presentation is running in an embedded mode,\n\t// i.e. contained within a limited portion of the screen\n\tembedded: false,\n\n\t// Flags if we should show a help overlay when the questionmark\n\t// key is pressed\n\thelp: true,\n\n\t// Flags if speaker notes should be visible to all viewers\n\tshowNotes: false,\n\n\t// Number of milliseconds between automatically proceeding to the\n\t// next slide, disabled when set to 0, this value can be overwritten\n\t// by using a data-autoslide attribute on your slides\n\tautoSlide: 0,\n\n\t// Stop auto-sliding after user input\n\tautoSlideStoppable: true,\n\n\t// Enable slide navigation via mouse wheel\n\tmouseWheel: false,\n\n\t// Hides the address bar on mobile devices\n\thideAddressBar: true,\n\n\t// Opens links in an iframe preview overlay\n\tpreviewLinks: false,\n\n\t// Transition style\n\ttransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Transition speed\n\ttransitionSpeed: 'default', // default/fast/slow\n\n\t// Transition style for full page slide backgrounds\n\tbackgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Number of slides away from the current that are visible\n\tviewDistance: 3,\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n\t// Amount to move parallax background (horizontal and vertical) on slide change\n\t// Number, e.g. 100\n\tparallaxBackgroundHorizontal: '',\n\tparallaxBackgroundVertical: ''\n\n});\n```\n\n\nThe configuration can be updated after initialization using the ```configure``` method:\n\n```javascript\n// Turn autoSlide off\nReveal.configure({ autoSlide: 0 });\n\n// Start auto-sliding every 5s\nReveal.configure({ autoSlide: 5000 });\n```\n\n\n### Presentation Size\n\nAll presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport.\n\nSee below for a list of configuration options related to sizing, including default values:\n\n```javascript\nReveal.initialize({\n\n\t...\n\n\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t// when the presentation is scaled to fit different resolutions. Can be\n\t// specified using percentage units.\n\twidth: 960,\n\theight: 700,\n\n\t// Factor of the display size that should remain empty around the content\n\tmargin: 0.1,\n\n\t// Bounds for smallest/largest possible scale to apply to content\n\tminScale: 0.2,\n\tmaxScale: 1.5\n\n});\n```\n\n\n### Dependencies\n\nReveal.js doesn't _rely_ on any third party scripts to work but a few optional libraries are included by default. These libraries are loaded as dependencies in the order they appear, for example:\n\n```javascript\nReveal.initialize({\n\tdependencies: [\n\t\t// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/\n\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\n\t\t// Interpret Markdown in <section> elements\n\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\n\t\t// Syntax highlight for <code> elements\n\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\n\t\t// Zoom in and out with Alt+click\n\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\n\t\t// Speaker notes\n\t\t{ src: 'plugin/notes/notes.js', async: true },\n\n\t\t// MathJax\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n});\n```\n\nYou can add your own extensions using the same syntax. The following properties are available for each dependency object:\n- **src**: Path to the script to load\n- **async**: [optional] Flags if the script should load after reveal.js has started, defaults to false\n- **callback**: [optional] Function to execute when the script has loaded\n- **condition**: [optional] Function which must return true for the script to be loaded\n\n\n### Ready Event\n\nA 'ready' event is fired when reveal.js has loaded all non-async dependencies and is ready to start navigating. To check if reveal.js is already 'ready' you can call `Reveal.isReady()`.\n\n```javascript\nReveal.addEventListener( 'ready', function( event ) {\n\t// event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n\n### Auto-sliding\n\nPresentations can be configured to progress through slides automatically, without any user input. To enable this you will need to tell the framework how many milliseconds it should wait between slides:\n\n```javascript\n// Slide every five seconds\nReveal.configure({\n  autoSlide: 5000\n});\n```\nWhen this is turned on a control element will appear that enables users to pause and resume auto-sliding. Alternatively, sliding can be paused or resumed by pressing »a« on the keyboard. Sliding is paused automatically as soon as the user starts navigating. You can disable these controls by specifying ```autoSlideStoppable: false``` in your reveal.js config.\n\nYou can also override the slide duration for individual slides and fragments by using the ```data-autoslide``` attribute:\n\n```html\n<section data-autoslide=\"2000\">\n\t<p>After 2 seconds the first fragment will be shown.</p>\n\t<p class=\"fragment\" data-autoslide=\"10000\">After 10 seconds the next fragment will be shown.</p>\n\t<p class=\"fragment\">Now, the fragment is displayed for 2 seconds before the next slide is shown.</p>\n</section>\n```\n\nWhenever the auto-slide mode is resumed or paused the ```autoslideresumed``` and ```autoslidepaused``` events are fired.\n\n\n### Keyboard Bindings\n\nIf you're unhappy with any of the default keyboard bindings you can override them using the ```keyboard``` config option:\n\n```javascript\nReveal.configure({\n  keyboard: {\n    13: 'next', // go to the next slide when the ENTER key is pressed\n    27: function() {}, // do something custom when ESC is pressed\n    32: null // don't do anything when SPACE is pressed (i.e. disable a reveal.js default binding)\n  }\n});\n```\n\n### Touch Navigation\n\nYou can swipe to navigate through a presentation on any touch-enabled device. Horizontal swipes change between horizontal slides, vertical swipes change between vertical slides. If you wish to disable this you can set the `touch` config option to false when initializing reveal.js.\n\nIf there's some part of your content that needs to remain accessible to touch events you'll need to highlight this by adding a `data-prevent-swipe` attribute to the element. One common example where this is useful is elements that need to be scrolled.\n\n\n### Lazy Loading\n\nWhen working on presentation with a lot of media or iframe content it's important to load lazily. Lazy loading means that reveal.js will only load content for the few slides nearest to the current slide. The number of slides that are preloaded is determined by the `viewDistance` configuration option.\n\nTo enable lazy loading all you need to do is change your \"src\" attributes to \"data-src\" as shown below. This is supported for image, video, audio and iframe elements. Lazy loaded iframes will also unload when the containing slide is no longer visible.\n\n```html\n<section>\n  <img data-src=\"image.png\">\n  <iframe data-src=\"http://hakim.se\"></iframe>\n  <video>\n    <source data-src=\"video.webm\" type=\"video/webm\" />\n    <source data-src=\"video.mp4\" type=\"video/mp4\" />\n  </video>\n</section>\n```\n\n\n### API\n\nThe ``Reveal`` object exposes a JavaScript API for controlling navigation and reading state:\n\n```javascript\n// Navigation\nReveal.slide( indexh, indexv, indexf );\nReveal.left();\nReveal.right();\nReveal.up();\nReveal.down();\nReveal.prev();\nReveal.next();\nReveal.prevFragment();\nReveal.nextFragment();\n\n// Toggle presentation states, optionally pass true/false to force on/off\nReveal.toggleOverview();\nReveal.togglePause();\nReveal.toggleAutoSlide();\n\n// Change a config value at runtime\nReveal.configure({ controls: true });\n\n// Returns the present configuration options\nReveal.getConfig();\n\n// Fetch the current scale of the presentation\nReveal.getScale();\n\n// Retrieves the previous and current slide elements\nReveal.getPreviousSlide();\nReveal.getCurrentSlide();\n\nReveal.getIndices(); // { h: 0, v: 0 } }\nReveal.getProgress(); // 0-1\nReveal.getTotalSlides();\n\n// Returns the speaker notes for the current slide\nReveal.getSlideNotes();\n\n// State checks\nReveal.isFirstSlide();\nReveal.isLastSlide();\nReveal.isOverview();\nReveal.isPaused();\nReveal.isAutoSliding();\n```\n\n### Slide Changed Event\n\nA 'slidechanged' event is fired each time the slide is changed (regardless of state). The event object holds the index values of the current slide as well as a reference to the previous and current slide HTML nodes.\n\nSome libraries, like MathJax (see [#226](https://github.com/hakimel/reveal.js/issues/226#issuecomment-10261609)), get confused by the transforms and display states of slides. Often times, this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'slidechanged', function( event ) {\n\t// event.previousSlide, event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n### Presentation State\n\nThe presentation's current state can be fetched by using the `getState` method. A state object contains all of the information required to put the presentation back as it was when `getState` was first called. Sort of like a snapshot. It's a simple object that can easily be stringified and persisted or sent over the wire.\n\n```javascript\nReveal.slide( 1 );\n// we're on slide 1\n\nvar state = Reveal.getState();\n\nReveal.slide( 3 );\n// we're on slide 3\n\nReveal.setState( state );\n// we're back on slide 1\n```\n\n### Slide States\n\nIf you set ``data-state=\"somestate\"`` on a slide ``<section>``, \"somestate\" will be applied as a class on the document element when that slide is opened. This allows you to apply broad style changes to the page based on the active slide.\n\nFurthermore you can also listen to these changes in state via JavaScript:\n\n```javascript\nReveal.addEventListener( 'somestate', function() {\n\t// TODO: Sprinkle magic\n}, false );\n```\n\n### Slide Backgrounds\n\nSlides are contained within a limited portion of the screen by default to allow them to fit any display and scale uniformly. You can apply full page backgrounds outside of the slide area by adding a ```data-background``` attribute to your ```<section>``` elements. Four different types of backgrounds are supported: color, image, video and iframe. Below are a few examples.\n\n```html\n<section data-background=\"#ff0000\">\n\t<h2>All CSS color formats are supported, like rgba() or hsl().</h2>\n</section>\n<section data-background=\"http://example.com/image.png\">\n\t<h2>This slide will have a full-size background image.</h2>\n</section>\n<section data-background=\"http://example.com/image.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\">\n\t<h2>This background image will be sized to 100px and repeated.</h2>\n</section>\n<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\" data-background-video-loop>\n\t<h2>Video. Multiple sources can be defined using a comma separated list. Video will loop when the data-background-video-loop attribute is provided.</h2>\n</section>\n<section data-background-iframe=\"https://slides.com\">\n\t<h2>Embeds a web page as a background. Note that the page won't be interactive.</h2>\n</section>\n```\n\nBackgrounds transition using a fade animation by default. This can be changed to a linear sliding transition by passing ```backgroundTransition: 'slide'``` to the ```Reveal.initialize()``` call. Alternatively you can set ```data-background-transition``` on any section with a background to override that specific transition.\n\n\n### Parallax Background\n\nIf you want to use a parallax scrolling background, set the first two config properties below when initializing reveal.js (the other two are optional).\n\n```javascript\nReveal.initialize({\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\" - currently only pixels are supported (don't use % or auto)\n\n\t// Amount of pixels to move the parallax background per slide step,\n\t// a value of 0 disables movement along the given axis\n\t// These are optional, if they aren't specified they'll be calculated automatically\n\tparallaxBackgroundHorizontal: 200,\n\tparallaxBackgroundVertical: 50\n\n});\n```\n\nMake sure that the background size is much bigger than screen size to allow for some scrolling. [View example](http://lab.hakim.se/reveal-js/?parallaxBackgroundImage=https%3A%2F%2Fs3.amazonaws.com%2Fhakim-static%2Freveal-js%2Freveal-parallax-1.jpg&parallaxBackgroundSize=2100px%20900px).\n\n\n\n### Slide Transitions\nThe global presentation transition is set using the ```transition``` config value. You can override the global transition for a specific slide by using the ```data-transition``` attribute:\n\n```html\n<section data-transition=\"zoom\">\n\t<h2>This slide will override the presentation transition and zoom!</h2>\n</section>\n\n<section data-transition-speed=\"fast\">\n\t<h2>Choose from three transition speeds: default, fast or slow!</h2>\n</section>\n```\n\nYou can also use different in and out transitions for the same slide:\n\n```html\n<section data-transition=\"slide\">\n    The train goes on … \n</section>\n<section data-transition=\"slide\"> \n    and on … \n</section>\n<section data-transition=\"slide-in fade-out\"> \n    and stops.\n</section>\n<section data-transition=\"fade-in slide-out\"> \n    (Passengers entering and leaving)\n</section>\n<section data-transition=\"slide\">\n    And it starts again.\n</section>\n```\n\n\n### Internal links\n\nIt's easy to link between slides. The first example below targets the index of another slide whereas the second targets a slide with an ID attribute (```<section id=\"some-slide\">```):\n\n```html\n<a href=\"#/2/2\">Link</a>\n<a href=\"#/some-slide\">Link</a>\n```\n\nYou can also add relative navigation links, similar to the built in reveal.js controls, by appending one of the following classes on any element. Note that each element is automatically given an ```enabled``` class when it's a valid navigation route based on the current slide.\n\n```html\n<a href=\"#\" class=\"navigate-left\">\n<a href=\"#\" class=\"navigate-right\">\n<a href=\"#\" class=\"navigate-up\">\n<a href=\"#\" class=\"navigate-down\">\n<a href=\"#\" class=\"navigate-prev\"> <!-- Previous vertical or horizontal slide -->\n<a href=\"#\" class=\"navigate-next\"> <!-- Next vertical or horizontal slide -->\n```\n\n\n### Fragments\nFragments are used to highlight individual elements on a slide. Every element with the class ```fragment``` will be stepped through before moving on to the next slide. Here's an example: http://lab.hakim.se/reveal-js/#/fragments\n\nThe default fragment style is to start out invisible and fade in. This style can be changed by appending a different class to the fragment:\n\n```html\n<section>\n\t<p class=\"fragment grow\">grow</p>\n\t<p class=\"fragment shrink\">shrink</p>\n\t<p class=\"fragment fade-out\">fade-out</p>\n\t<p class=\"fragment current-visible\">visible only once</p>\n\t<p class=\"fragment highlight-current-blue\">blue only once</p>\n\t<p class=\"fragment highlight-red\">highlight-red</p>\n\t<p class=\"fragment highlight-green\">highlight-green</p>\n\t<p class=\"fragment highlight-blue\">highlight-blue</p>\n</section>\n```\n\nMultiple fragments can be applied to the same element sequentially by wrapping it, this will fade in the text on the first step and fade it back out on the second.\n\n```html\n<section>\n\t<span class=\"fragment fade-in\">\n\t\t<span class=\"fragment fade-out\">I'll fade in, then out</span>\n\t</span>\n</section>\n```\n\nThe display order of fragments can be controlled using the ```data-fragment-index``` attribute.\n\n```html\n<section>\n\t<p class=\"fragment\" data-fragment-index=\"3\">Appears last</p>\n\t<p class=\"fragment\" data-fragment-index=\"1\">Appears first</p>\n\t<p class=\"fragment\" data-fragment-index=\"2\">Appears second</p>\n</section>\n```\n\n### Fragment events\n\nWhen a slide fragment is either shown or hidden reveal.js will dispatch an event.\n\nSome libraries, like MathJax (see #505), get confused by the initially hidden fragment elements. Often times this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'fragmentshown', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\nReveal.addEventListener( 'fragmenthidden', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\n```\n\n### Code syntax highlighting\n\nBy default, Reveal is configured with [highlight.js](https://highlightjs.org/) for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted. When the `data-trim` attribute is present surrounding whitespace is automatically removed.\n\n```html\n<section>\n\t<pre><code data-trim>\n(def lazy-fib\n  (concat\n   [0 1]\n   ((fn rfib [a b]\n        (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))\n\t</code></pre>\n</section>\n```\n\n### Slide number\nIf you would like to display the page number of the current slide you can do so using the ```slideNumber``` configuration value.\n\n```javascript\n// Shows the slide number using default formatting\nReveal.configure({ slideNumber: true });\n\n// Slide number formatting can be configured using these variables:\n//  \"h.v\": \thorizontal . vertical slide number (default)\n//  \"h/v\": \thorizontal / vertical slide number\n//    \"c\": \tflattened slide number\n//  \"c/t\": \tflattened slide number / total slides\nReveal.configure({ slideNumber: 'c/t' });\n\n```\n\n\n### Overview mode\n\nPress \"Esc\" or \"o\" keys to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides,\nas if you were at 1,000 feet above your presentation. The overview mode comes with a few API hooks:\n\n```javascript\nReveal.addEventListener( 'overviewshown', function( event ) { /* ... */ } );\nReveal.addEventListener( 'overviewhidden', function( event ) { /* ... */ } );\n\n// Toggle the overview mode programmatically\nReveal.toggleOverview();\n```\n\n### Fullscreen mode\nJust press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode.\n\n\n### Embedded media\nEmbedded HTML5 `<video>`/`<audio>` and YouTube iframes are automatically paused when you navigate away from a slide. This can be disabled by decorating your element with a `data-ignore` attribute.\n\nAdd `data-autoplay` to your media element if you want it to automatically start playing when the slide is shown:\n\n```html\n<video data-autoplay src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n```\n\nAdditionally the framework automatically pushes two [post messages](https://developer.mozilla.org/en-US/docs/Web/API/Window.postMessage) to all iframes, ```slide:start``` when the slide containing the iframe is made visible and ```slide:stop``` when it is hidden.\n\n\n### Stretching elements\nSometimes it's desirable to have an element, like an image or video, stretch to consume as much space as possible within a given slide. This can be done by adding the ```.stretch``` class to an element as seen below:\n\n```html\n<section>\n\t<h2>This video will use up the remaining space on the slide</h2>\n    <video class=\"stretch\" src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n</section>\n```\n\nLimitations:\n- Only direct descendants of a slide section can be stretched\n- Only one descendant per slide section can be stretched\n\n\n### postMessage API\nThe framework has a built-in postMessage API that can be used when communicating with a presentation inside of another window. Here's an example showing how you'd make a reveal.js instance in the given window proceed to slide 2:\n\n```javascript\n<window>.postMessage( JSON.stringify({ method: 'slide', args: [ 2 ] }), '*' );\n```\n\nWhen reveal.js runs inside of an iframe it can optionally bubble all of its events to the parent. Bubbled events are stringified JSON with three fields: namespace, eventName and state. Here's how you subscribe to them from the parent window:\n\n```javascript\nwindow.addEventListener( 'message', function( event ) {\n\tvar data = JSON.parse( event.data );\n\tif( data.namespace === 'reveal' && data.eventName ==='slidechanged' ) {\n\t\t// Slide changed, see data.state for slide number\n\t}\n} );\n```\n\nThis cross-window messaging can be toggled on or off using configuration flags.\n\n```javascript\nReveal.initialize({\n\t...,\n\n\t// Exposes the reveal.js API through window.postMessage\n\tpostMessage: true,\n\n\t// Dispatches all reveal.js events to the parent window through postMessage\n\tpostMessageEvents: false\n});\n```\n\n\n## PDF Export\n\nPresentations can be exported to PDF via a special print stylesheet. This feature requires that you use [Google Chrome](http://google.com/chrome) or [Chromium](https://www.chromium.org/Home).\nHere's an example of an exported presentation that's been uploaded to SlideShare: http://www.slideshare.net/hakimel/revealjs-300.\n\n1. Open your presentation with `print-pdf` included anywhere in the query string. This triggers the default index HTML to load the PDF print stylesheet ([css/print/pdf.css](https://github.com/hakimel/reveal.js/blob/master/css/print/pdf.css)). You can test this with [lab.hakim.se/reveal-js?print-pdf](http://lab.hakim.se/reveal-js?print-pdf).\n2. Open the in-browser print dialog (CMD+P).\n3. Change the **Destination** setting to **Save as PDF**.\n4. Change the **Layout** to **Landscape**.\n5. Change the **Margins** to **None**.\n6. Click **Save**.\n\n![Chrome Print Settings](https://s3.amazonaws.com/hakim-static/reveal-js/pdf-print-settings.png)\n\nAlternatively you can use the [decktape](https://github.com/astefanutti/decktape) project.\n\n## Theming\n\nThe framework comes with a few different themes included:\n\n- black: Black background, white text, blue links (default theme)\n- white: White background, black text, blue links\n- league: Gray background, white text, blue links (default theme for reveal.js < 3.0.0)\n- beige: Beige background, dark text, brown links\n- sky: Blue background, thin dark text, blue links\n- night: Black background, thick white text, orange links\n- serif: Cappuccino background, gray text, brown links\n- simple: White background, black text, blue links\n- solarized: Cream-colored background, dark green text, blue links\n\nEach theme is available as a separate stylesheet. To change theme you will need to replace **black** below with your desired theme name in index.html:\n\n```html\n<link rel=\"stylesheet\" href=\"css/theme/black.css\" id=\"theme\">\n```\n\nIf you want to add a theme of your own see the instructions here: [/css/theme/README.md](https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md).\n\n\n## Speaker Notes\n\nreveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Press the 's' key on your keyboard to open the notes window.\n\nNotes are defined by appending an ```<aside>``` element to a slide as seen below. You can add the ```data-markdown``` attribute to the aside element if you prefer writing notes using Markdown.\n\nAlternatively you can add your notes in a `data-notes` attribute on the slide. Like `<section data-notes=\"Something important\"></section>`.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section>\n\t<h2>Some Slide</h2>\n\n\t<aside class=\"notes\">\n\t\tOh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).\n\t</aside>\n</section>\n```\n\nNotes are only visible to you in the speaker view. If you wish to share your notes with the audience initialize reveal.js with the `showNotes` config value set to `true`.\n\nIf you're using the external Markdown plugin, you can add notes with the help of a special delimiter:\n\n```html\n<section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\" data-separator-notes=\"^Note:\"></section>\n\n# Title\n## Sub-title\n\nHere is some content...\n\nNote:\nThis will only display in the notes window.\n```\n\n## Server Side Speaker Notes\n\nIn some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the required scripts by adding the following dependencies:\n\n```javascript\nReveal.initialize({\n\t...\n\n\tdependencies: [\n\t\t{ src: 'socket.io/socket.io.js', async: true },\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\t]\n});\n```\n\nThen:\n\n1. Install [Node.js](http://nodejs.org/)\n2. Run ```npm install```\n3. Run ```node plugin/notes-server```\n\n\n## Multiplexing\n\nThe multiplex plugin allows your audience to view the slides of the presentation you are controlling on their own phone, tablet or laptop. As the master presentation navigates the slides, all client presentations will update in real time. See a demo at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nThe multiplex plugin needs the following 3 things to operate:\n\n1. Master presentation that has control\n2. Client presentations that follow the master\n3. Socket.io server to broadcast events from the master to the clients\n\nMore details:\n\n#### Master presentation\nServed from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation: \n\n1. ```npm install node-static```\n2. ```static```\n\nIf you want to use the speaker notes plugin with your master presentation then make sure you have the speaker notes plugin configured correctly along with the configuration shown below, then execute ```node plugin/notes-server``` in the directory of your master presentation. The configuration below will cause it to connect to the socket.io server as a master, as well as launch your speaker-notes/static-file server.\n\nYou can then access your master presentation at ```http://localhost:1947```\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\n\t\t// and if you want speaker notes\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Client presentation\nServed from a publicly accessible static file server. Examples include: GitHub Pages, Amazon S3, Dreamhost, Akamai, etc. The more reliable, the better. Your audience can then access the client presentation via ```http://example.com/path/to/presentation/client/index.html```, with the configuration below causing them to connect to the socket.io server as clients.\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Socket.io server\nServer that receives the slideChanged events from the master presentation and broadcasts them out to the connected client presentations. This needs to be publicly accessible. You can run your own socket.io server with the commands:\n\n1. ```npm install```\n2. ```node plugin/multiplex```\n\nOr you use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nYou'll need to generate a unique secret and token pair for your master and client presentations. To do so, visit ```http://example.com/token```, where ```http://example.com``` is the location of your socket.io server. Or if you're going to use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), visit [http://revealjs-51546.onmodulus.net/token](http://revealjs-51546.onmodulus.net/token).\n\nYou are very welcome to point your presentations at the Socket.io server running at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), but availability and stability are not guaranteed. For anything mission critical I recommend you run your own server. It is simple to deploy to nodejitsu, heroku, your own environment, etc.\n\n##### socket.io server as file static server\n\nThe socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match.)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n```\n\nIt can also play the role of static file server for your master presentation and client presentations at the same time (as long as you don't want to use speaker notes). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match. Navigate through the slides on the second, and the first will update to match.) This is probably not desirable, because you don't want your audience to mess with your slides while you're presenting. ;)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n## MathJax\n\nIf you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies).\n\nThe plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value. \n\nBelow is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all.\n\n```js\nReveal.initialize({\n\n\t// other options ...\n\n\tmath: {\n\t\tmathjax: 'https://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\tconfig: 'TeX-AMS_HTML-full'  // See http://docs.mathjax.org/en/latest/config-files.html\n\t},\n\t\n\tdependencies: [\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n\n});\n```\n\nRead MathJax's documentation if you need [HTTPS delivery](http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn) or serving of [specific versions](http://docs.mathjax.org/en/latest/configuration.html#loading-mathjax-from-the-cdn) for stability.\n\n\n## Installation\n\nThe **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features and plugins such as speaker notes as well as the development tasks needed to make changes to the source.\n\n### Basic setup\n\nThe core of reveal.js is very easy to install. You'll simply need to download a copy of this repository and open the index.html file directly in your browser.\n\n1. Download the latest version of reveal.js from <https://github.com/hakimel/reveal.js/releases>\n\n2. Unzip and replace the example contents in index.html with your own\n\n3. Open index.html in a browser to view it\n\n\n### Full setup\n\nSome reveal.js features, like external Markdown and speaker notes, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code.\n\n1. Install [Node.js](http://nodejs.org/)\n\n2. Install [Grunt](http://gruntjs.com/getting-started#installing-the-cli)\n\n4. Clone the reveal.js repository\n   ```sh\n   $ git clone https://github.com/hakimel/reveal.js.git\n   ```\n\n5. Navigate to the reveal.js folder\n   ```sh\n   $ cd reveal.js\n   ```\n\n6. Install dependencies\n   ```sh\n   $ npm install\n   ```\n\n7. Serve the presentation and monitor source files for changes\n   ```sh\n   $ grunt serve\n   ```\n\n8. Open <http://localhost:8000> to view your presentation\n\n   You can change the port by using `grunt serve --port 8001`.\n\n\n### Folder Structure\n- **css/** Core styles without which the project does not function\n- **js/** Like above but for JavaScript\n- **plugin/** Components that have been developed as extensions to reveal.js\n- **lib/** All other third party assets (JavaScript, CSS, fonts)\n\n\n## License\n\nMIT licensed\n\nCopyright (C) 2015 Hakim El Hattab, http://hakim.se\n"
  },
  {
    "path": "doc/meetingcpp-2016/bower.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"main\": [\n    \"js/reveal.js\",\n    \"css/reveal.css\"\n  ],\n  \"homepage\": \"http://lab.hakim.se/reveal-js/\",\n  \"license\": \"MIT\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"authors\": [\n    \"Hakim El Hattab <hakim.elhattab@gmail.com>\"\n  ],\n  \"dependencies\": {\n    \"headjs\": \"~1.0.3\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"ignore\": [\n    \"**/.*\",\n    \"node_modules\",\n    \"bower_components\",\n    \"test\"\n  ]\n}"
  },
  {
    "path": "doc/meetingcpp-2016/css/print/paper.css",
    "content": "/* Default Print Stylesheet Template\n   by Rob Glazebrook of CSSnewbie.com\n   Last Updated: June 4, 2008\n\n   Feel free (nay, compelled) to edit, append, and\n   manipulate this file as you see fit. */\n\n\n@media print {\n\n\t/* SECTION 1: Set default width, margin, float, and\n\t   background. This prevents elements from extending\n\t   beyond the edge of the printed page, and prevents\n\t   unnecessary background images from printing */\n\thtml {\n\t\tbackground: #fff;\n\t\twidth: auto;\n\t\theight: auto;\n\t\toverflow: visible;\n\t}\n\tbody {\n\t\tbackground: #fff;\n\t\tfont-size: 20pt;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tborder: 0;\n\t\tmargin: 0 5%;\n\t\tpadding: 0;\n\t\toverflow: visible;\n\t\tfloat: none !important;\n\t}\n\n\t/* SECTION 2: Remove any elements not needed in print.\n\t   This would include navigation, ads, sidebars, etc. */\n\t.nestedarrow,\n\t.controls,\n\t.fork-reveal,\n\t.share-reveal,\n\t.state-background,\n\t.reveal .progress,\n\t.reveal .backgrounds {\n\t\tdisplay: none !important;\n\t}\n\n\t/* SECTION 3: Set body font face, size, and color.\n\t   Consider using a serif font for readability. */\n\tbody, p, td, li, div {\n\t\tfont-size: 20pt!important;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\tcolor: #000;\n\t}\n\n\t/* SECTION 4: Set heading font face, sizes, and color.\n\t   Differentiate your headings from your body text.\n\t   Perhaps use a large sans-serif for distinction. */\n\th1,h2,h3,h4,h5,h6 {\n\t\tcolor: #000!important;\n\t\theight: auto;\n\t\tline-height: normal;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\ttext-shadow: 0 0 0 #000 !important;\n\t\ttext-align: left;\n\t\tletter-spacing: normal;\n\t}\n\t/* Need to reduce the size of the fonts for printing */\n\th1 { font-size: 28pt !important;  }\n\th2 { font-size: 24pt !important; }\n\th3 { font-size: 22pt !important; }\n\th4 { font-size: 22pt !important; font-variant: small-caps; }\n\th5 { font-size: 21pt !important; }\n\th6 { font-size: 20pt !important; font-style: italic; }\n\n\t/* SECTION 5: Make hyperlinks more usable.\n\t   Ensure links are underlined, and consider appending\n\t   the URL to the end of the link for usability. */\n\ta:link,\n\ta:visited {\n\t\tcolor: #000 !important;\n\t\tfont-weight: bold;\n\t\ttext-decoration: underline;\n\t}\n\t/*\n\t.reveal a:link:after,\n\t.reveal a:visited:after {\n\t\tcontent: \" (\" attr(href) \") \";\n\t\tcolor: #222 !important;\n\t\tfont-size: 90%;\n\t}\n\t*/\n\n\n\t/* SECTION 6: more reveal.js specific additions by @skypanther */\n\tul, ol, div, p {\n\t\tvisibility: visible;\n\t\tposition: static;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tdisplay: block;\n\t\toverflow: visible;\n\t\tmargin: 0;\n\t\ttext-align: left !important;\n\t}\n\t.reveal pre,\n\t.reveal table {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n\t.reveal pre code {\n\t\tpadding: 20px;\n\t\tborder: 1px solid #ddd;\n\t}\n\t.reveal blockquote {\n\t\tmargin: 20px 0;\n\t}\n\t.reveal .slides {\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 0 !important;\n\t\tzoom: 1 !important;\n\n\t\toverflow: visible !important;\n\t\tdisplay: block !important;\n\n\t\ttext-align: left !important;\n\t\t-webkit-perspective: none;\n\t\t   -moz-perspective: none;\n\t\t    -ms-perspective: none;\n\t\t        perspective: none;\n\n\t\t-webkit-perspective-origin: 50% 50%;\n\t\t   -moz-perspective-origin: 50% 50%;\n\t\t    -ms-perspective-origin: 50% 50%;\n\t\t        perspective-origin: 50% 50%;\n\t}\n\t.reveal .slides section {\n\t\tvisibility: visible !important;\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\t\tdisplay: block !important;\n\t\toverflow: visible !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 60px 20px !important;\n\t\tz-index: auto !important;\n\n\t\topacity: 1 !important;\n\n\t\tpage-break-after: always !important;\n\n\t\t-webkit-transform-style: flat !important;\n\t\t   -moz-transform-style: flat !important;\n\t\t    -ms-transform-style: flat !important;\n\t\t        transform-style: flat !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\n\t\t-webkit-transition: none !important;\n\t\t   -moz-transition: none !important;\n\t\t    -ms-transition: none !important;\n\t\t        transition: none !important;\n\t}\n\t.reveal .slides section.stack {\n\t\tpadding: 0 !important;\n\t}\n\t.reveal section:last-of-type {\n\t\tpage-break-after: avoid !important;\n\t}\n\t.reveal section .fragment {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\t}\n\t.reveal section img {\n\t\tdisplay: block;\n\t\tmargin: 15px 0px;\n\t\tbackground: rgba(255,255,255,1);\n\t\tborder: 1px solid #666;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal section small {\n\t\tfont-size: 0.8em;\n\t}\n\n}"
  },
  {
    "path": "doc/meetingcpp-2016/css/print/pdf.css",
    "content": "/**\n * This stylesheet is used to print reveal.js\n * presentations to PDF.\n *\n * https://github.com/hakimel/reveal.js#pdf-export\n */\n\n* {\n\t-webkit-print-color-adjust: exact;\n}\n\nbody {\n\tmargin: 0 auto !important;\n\tborder: 0;\n\tpadding: 0;\n\tfloat: none !important;\n\toverflow: visible;\n}\n\nhtml {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: visible;\n}\n\n/* Remove any elements not needed in print. */\n.nestedarrow,\n.reveal .controls,\n.reveal .progress,\n.reveal .playback,\n.reveal.overview,\n.fork-reveal,\n.share-reveal,\n.state-background {\n\tdisplay: none !important;\n}\n\nh1, h2, h3, h4, h5, h6 {\n\ttext-shadow: 0 0 0 #000 !important;\n}\n\n.reveal pre code {\n\toverflow: hidden !important;\n\tfont-family: Courier, 'Courier New', monospace !important;\n}\n\nul, ol, div, p {\n\tvisibility: visible;\n\tposition: static;\n\twidth: auto;\n\theight: auto;\n\tdisplay: block;\n\toverflow: visible;\n\tmargin: auto;\n}\n.reveal {\n\twidth: auto !important;\n\theight: auto !important;\n\toverflow: hidden !important;\n}\n.reveal .slides {\n\tposition: static;\n\twidth: 100%;\n\theight: auto;\n\n\tleft: auto;\n\ttop: auto;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\n\toverflow: visible;\n\tdisplay: block;\n\n\t-webkit-perspective: none;\n\t   -moz-perspective: none;\n\t    -ms-perspective: none;\n\t        perspective: none;\n\n\t-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */\n\t   -moz-perspective-origin: 50% 50%;\n\t    -ms-perspective-origin: 50% 50%;\n\t        perspective-origin: 50% 50%;\n}\n\n.reveal .slides section {\n\tpage-break-after: always !important;\n\n\tvisibility: visible !important;\n\tposition: relative !important;\n\tdisplay: block !important;\n\tposition: relative !important;\n\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tbox-sizing: border-box !important;\n\tmin-height: 1px;\n\n\topacity: 1 !important;\n\n\t-webkit-transform-style: flat !important;\n\t   -moz-transform-style: flat !important;\n\t    -ms-transform-style: flat !important;\n\t        transform-style: flat !important;\n\n\t-webkit-transform: none !important;\n\t   -moz-transform: none !important;\n\t    -ms-transform: none !important;\n\t        transform: none !important;\n}\n\n.reveal section.stack {\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tpage-break-after: avoid !important;\n\theight: auto !important;\n\tmin-height: auto !important;\n}\n\n.reveal img {\n\tbox-shadow: none;\n}\n\n.reveal .roll {\n\toverflow: visible;\n\tline-height: 1em;\n}\n\n/* Slide backgrounds are placed inside of their slide when exporting to PDF */\n.reveal section .slide-background {\n\tdisplay: block !important;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\tz-index: -1;\n}\n\n/* All elements should be above the slide-background */\n.reveal section>* {\n\tposition: relative;\n\tz-index: 1;\n}\n\n/* Display slide speaker notes when 'showNotes' is enabled */\n.reveal .speaker-notes-pdf {\n\tdisplay: block;\n\twidth: 100%;\n\tmax-height: none;\n\tleft: auto;\n\ttop: auto;\n\tz-index: 100;\n}\n\n/* Display slide numbers when 'slideNumber' is enabled */\n.reveal .slide-number-pdf {\n\tdisplay: block;\n\tposition: absolute;\n\tfont-size: 14px;\n}\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/reveal.css",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n/*********************************************\n * RESET STYLES\n *********************************************/\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n  margin: 0;\n  padding: 0;\n  border: 0;\n  font-size: 100%;\n  font: inherit;\n  vertical-align: baseline; }\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n  display: block; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n  overflow: hidden; }\n\nbody {\n  position: relative;\n  line-height: 1;\n  background-color: #fff;\n  color: #000; }\n\nhtml:-webkit-full-screen-ancestor {\n  background-color: inherit; }\n\nhtml:-moz-full-screen-ancestor {\n  background-color: inherit; }\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n.reveal .slides section .fragment {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease; }\n  .reveal .slides section .fragment.visible {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.grow {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.grow.visible {\n    -webkit-transform: scale(1.3);\n        -ms-transform: scale(1.3);\n            transform: scale(1.3); }\n\n.reveal .slides section .fragment.shrink {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.shrink.visible {\n    -webkit-transform: scale(0.7);\n        -ms-transform: scale(0.7);\n            transform: scale(0.7); }\n\n.reveal .slides section .fragment.zoom-in {\n  -webkit-transform: scale(0.1);\n      -ms-transform: scale(0.1);\n          transform: scale(0.1); }\n  .reveal .slides section .fragment.zoom-in.visible {\n    -webkit-transform: none;\n        -ms-transform: none;\n            transform: none; }\n\n.reveal .slides section .fragment.fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.fade-out.visible {\n    opacity: 0;\n    visibility: hidden; }\n\n.reveal .slides section .fragment.semi-fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.semi-fade-out.visible {\n    opacity: 0.5;\n    visibility: visible; }\n\n.reveal .slides section .fragment.strike {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.strike.visible {\n    text-decoration: line-through; }\n\n.reveal .slides section .fragment.current-visible {\n  opacity: 0;\n  visibility: hidden; }\n  .reveal .slides section .fragment.current-visible.current-fragment {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red.visible {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-green.visible {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-blue.visible {\n  color: #1b91ff; }\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n  color: #1b91ff; }\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic; }\n\n.reveal iframe {\n  z-index: 1; }\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n  position: relative; }\n\n.reveal .stretch {\n  max-width: none;\n  max-height: none; }\n\n.reveal pre.stretch code {\n  height: 100%;\n  max-height: 100%;\n  box-sizing: border-box; }\n\n/*********************************************\n * CONTROLS\n *********************************************/\n.reveal .controls {\n  display: none;\n  position: fixed;\n  width: 110px;\n  height: 110px;\n  z-index: 30;\n  right: 10px;\n  bottom: 10px;\n  -webkit-user-select: none; }\n\n.reveal .controls button {\n  padding: 0;\n  position: absolute;\n  opacity: 0.05;\n  width: 0;\n  height: 0;\n  background-color: transparent;\n  border: 12px solid transparent;\n  -webkit-transform: scale(0.9999);\n      -ms-transform: scale(0.9999);\n          transform: scale(0.9999);\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease;\n  -webkit-appearance: none;\n  -webkit-tap-highlight-color: transparent; }\n\n.reveal .controls .enabled {\n  opacity: 0.7;\n  cursor: pointer; }\n\n.reveal .controls .enabled:active {\n  margin-top: 1px; }\n\n.reveal .controls .navigate-left {\n  top: 42px;\n  border-right-width: 22px;\n  border-right-color: #000; }\n\n.reveal .controls .navigate-left.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-right {\n  left: 74px;\n  top: 42px;\n  border-left-width: 22px;\n  border-left-color: #000; }\n\n.reveal .controls .navigate-right.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-up {\n  left: 42px;\n  border-bottom-width: 22px;\n  border-bottom-color: #000; }\n\n.reveal .controls .navigate-up.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-down {\n  left: 42px;\n  top: 74px;\n  border-top-width: 22px;\n  border-top-color: #000; }\n\n.reveal .controls .navigate-down.fragmented {\n  opacity: 0.3; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  position: fixed;\n  display: none;\n  height: 3px;\n  width: 100%;\n  bottom: 0;\n  left: 0;\n  z-index: 10;\n  background-color: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress:after {\n  content: '';\n  display: block;\n  position: absolute;\n  height: 20px;\n  width: 100%;\n  top: -20px; }\n\n.reveal .progress span {\n  display: block;\n  height: 100%;\n  width: 0px;\n  background-color: #000;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n.reveal .slide-number {\n  position: fixed;\n  display: block;\n  right: 8px;\n  bottom: 8px;\n  z-index: 31;\n  font-family: Helvetica, sans-serif;\n  font-size: 12px;\n  line-height: 1;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.4);\n  padding: 5px; }\n\n.reveal .slide-number-delimiter {\n  margin: 0 3px; }\n\n/*********************************************\n * SLIDES\n *********************************************/\n.reveal {\n  position: relative;\n  width: 100%;\n  height: 100%;\n  overflow: hidden;\n  -ms-touch-action: none;\n      touch-action: none; }\n\n.reveal .slides {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  overflow: visible;\n  z-index: 1;\n  text-align: center;\n  -webkit-perspective: 600px;\n          perspective: 600px;\n  -webkit-perspective-origin: 50% 40%;\n          perspective-origin: 50% 40%; }\n\n.reveal .slides > section {\n  -ms-perspective: 600px; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  display: none;\n  position: absolute;\n  width: 100%;\n  padding: 20px 0px;\n  z-index: 10;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: -ms-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] .slides section {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal .slides section[data-transition-speed=\"slow\"] {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n.reveal .slides > section.stack {\n  padding-top: 0;\n  padding-bottom: 0; }\n\n.reveal .slides > section.present,\n.reveal .slides > section > section.present {\n  display: block;\n  z-index: 11;\n  opacity: 1; }\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n  min-height: 0 !important; }\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides > section.future,\n.reveal .slides > section > section.future,\n.reveal .slides > section.past,\n.reveal .slides > section > section.past {\n  pointer-events: none; }\n\n.reveal.overview .slides > section,\n.reveal.overview .slides > section > section {\n  pointer-events: auto; }\n\n.reveal .slides > section.past,\n.reveal .slides > section.future,\n.reveal .slides > section > section.past,\n.reveal .slides > section > section.future {\n  opacity: 0; }\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n.reveal.slide section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=slide].past,\n.reveal .slides > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=slide].future,\n.reveal .slides > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=slide].past,\n.reveal .slides > section > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=slide].future,\n.reveal .slides > section > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n.reveal.linear section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=linear].past,\n.reveal .slides > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=linear].future,\n.reveal .slides > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=linear].past,\n.reveal .slides > section > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=linear].future,\n.reveal .slides > section > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n.reveal .slides > section[data-transition=default].past,\n.reveal .slides > section[data-transition~=default-out].past,\n.reveal.default .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=default].future,\n.reveal .slides > section[data-transition~=default-in].future,\n.reveal.default .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=default].past,\n.reveal .slides > section > section[data-transition~=default-out].past,\n.reveal.default .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=default].future,\n.reveal .slides > section > section[data-transition~=default-in].future,\n.reveal.default .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n.reveal .slides > section[data-transition=convex].past,\n.reveal .slides > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=convex].future,\n.reveal .slides > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=convex].past,\n.reveal .slides > section > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=convex].future,\n.reveal .slides > section > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n.reveal .slides > section[data-transition=concave].past,\n.reveal .slides > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=concave].future,\n.reveal .slides > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=concave].past,\n.reveal .slides > section > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n          transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); }\n\n.reveal .slides > section > section[data-transition=concave].future,\n.reveal .slides > section > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n          transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); }\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=zoom],\n.reveal.zoom .slides section:not([data-transition]) {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal .slides > section[data-transition=zoom].past,\n.reveal .slides > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section:not([data-transition]).past {\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal .slides > section[data-transition=zoom].future,\n.reveal .slides > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section:not([data-transition]).future {\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .slides > section > section[data-transition=zoom].past,\n.reveal .slides > section > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=zoom].future,\n.reveal .slides > section > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n.reveal.cube .slides {\n  -webkit-perspective: 1300px;\n          perspective: 1300px; }\n\n.reveal.cube .slides section {\n  padding: 30px;\n  min-height: 700px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  box-sizing: border-box; }\n\n.reveal.center.cube .slides section {\n  min-height: 0; }\n\n.reveal.cube .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  border-radius: 4px;\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.cube .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg);\n          transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.cube .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.cube .slides > section.past {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg); }\n\n.reveal.cube .slides > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);\n          transform: translate3d(100%, 0, 0) rotateY(90deg); }\n\n.reveal.cube .slides > section > section.past {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);\n          transform: translate3d(0, -100%, 0) rotateX(90deg); }\n\n.reveal.cube .slides > section > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg); }\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n.reveal.page .slides {\n  -webkit-perspective-origin: 0% 50%;\n          perspective-origin: 0% 50%;\n  -webkit-perspective: 3000px;\n          perspective: 3000px; }\n\n.reveal.page .slides section {\n  padding: 30px;\n  min-height: 700px;\n  box-sizing: border-box; }\n\n.reveal.page .slides section.past {\n  z-index: 12; }\n\n.reveal.page .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.page .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.page .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.page .slides > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);\n          transform: translate3d(-40%, 0, 0) rotateY(-80deg); }\n\n.reveal.page .slides > section.future {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n.reveal.page .slides > section > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);\n          transform: translate3d(0, -40%, 0) rotateX(80deg); }\n\n.reveal.page .slides > section > section.future {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides > section > section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: opacity 0.5s;\n          transition: opacity 0.5s; }\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides > section > section {\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=none],\n.reveal.none .slides section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n.reveal .pause-overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  background: black;\n  visibility: hidden;\n  opacity: 0;\n  z-index: 100;\n  -webkit-transition: all 1s ease;\n          transition: all 1s ease; }\n\n.reveal.paused .pause-overlay {\n  visibility: visible;\n  opacity: 1; }\n\n/*********************************************\n * FALLBACK\n *********************************************/\n.no-transforms {\n  overflow-y: auto; }\n\n.no-transforms .reveal .slides {\n  position: relative;\n  width: 80%;\n  height: auto !important;\n  top: 0;\n  left: 50%;\n  margin: 0;\n  text-align: center; }\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n  display: none !important; }\n\n.no-transforms .reveal .slides section {\n  display: block !important;\n  opacity: 1 !important;\n  position: relative !important;\n  height: auto;\n  min-height: 0;\n  top: 0;\n  left: -50%;\n  margin: 70px 0;\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none; }\n\n.no-transforms .reveal .slides section section {\n  left: 0; }\n\n.reveal .no-transition,\n.reveal .no-transition * {\n  -webkit-transition: none !important;\n          transition: none !important; }\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n.reveal .backgrounds {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  -webkit-perspective: 600px;\n          perspective: 600px; }\n\n.reveal .slide-background {\n  display: none;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  opacity: 0;\n  visibility: hidden;\n  background-color: transparent;\n  background-position: 50% 50%;\n  background-repeat: no-repeat;\n  background-size: cover;\n  -webkit-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal .slide-background.stack {\n  display: block; }\n\n.reveal .slide-background.present {\n  opacity: 1;\n  visibility: visible; }\n\n.print-pdf .reveal .slide-background {\n  opacity: 1 !important;\n  visibility: visible !important; }\n\n/* Video backgrounds */\n.reveal .slide-background video {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  max-width: none;\n  max-height: none;\n  top: 0;\n  left: 0; }\n\n/* Immediate transition style */\n.reveal[data-background-transition=none] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=none] {\n  -webkit-transition: none;\n          transition: none; }\n\n/* Slide */\n.reveal[data-background-transition=slide] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=slide] {\n  opacity: 1;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(-100%, 0);\n      -ms-transform: translate(-100%, 0);\n          transform: translate(-100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(100%, 0);\n      -ms-transform: translate(100%, 0);\n          transform: translate(100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(0, -100%);\n      -ms-transform: translate(0, -100%);\n          transform: translate(0, -100%); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(0, 100%);\n      -ms-transform: translate(0, 100%);\n          transform: translate(0, 100%); }\n\n/* Convex */\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); }\n\n/* Concave */\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); }\n\n/* Zoom */\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=zoom] {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n.reveal.overview {\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%;\n  -webkit-perspective: 700px;\n          perspective: 700px; }\n  .reveal.overview .slides section {\n    height: 700px;\n    opacity: 1 !important;\n    overflow: hidden;\n    visibility: visible !important;\n    cursor: pointer;\n    box-sizing: border-box; }\n  .reveal.overview .slides section:hover,\n  .reveal.overview .slides section.present {\n    outline: 10px solid rgba(150, 150, 150, 0.4);\n    outline-offset: 10px; }\n  .reveal.overview .slides section .fragment {\n    opacity: 1;\n    -webkit-transition: none;\n            transition: none; }\n  .reveal.overview .slides section:after,\n  .reveal.overview .slides section:before {\n    display: none !important; }\n  .reveal.overview .slides > section.stack {\n    padding: 0;\n    top: 0 !important;\n    background: none;\n    outline: none;\n    overflow: visible; }\n  .reveal.overview .backgrounds {\n    -webkit-perspective: inherit;\n            perspective: inherit; }\n  .reveal.overview .backgrounds .slide-background {\n    opacity: 1;\n    visibility: visible;\n    outline: 10px solid rgba(150, 150, 150, 0.1);\n    outline-offset: 10px; }\n\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview-animated .slides {\n  -webkit-transition: -webkit-transform 0.4s ease;\n          transition: transform 0.4s ease; }\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n  direction: rtl;\n  font-family: sans-serif; }\n\n.reveal.rtl pre,\n.reveal.rtl code {\n  direction: ltr; }\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n  text-align: right; }\n\n.reveal.rtl .progress span {\n  float: right; }\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n.reveal.has-parallax-background .backgrounds {\n  -webkit-transition: all 0.8s ease;\n          transition: all 0.8s ease; }\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n.reveal .overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1000;\n  background: rgba(0, 0, 0, 0.9);\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.visible {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay .spinner {\n  position: absolute;\n  display: block;\n  top: 50%;\n  left: 50%;\n  width: 32px;\n  height: 32px;\n  margin: -16px 0 0 -16px;\n  z-index: 10;\n  background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n  visibility: visible;\n  opacity: 0.6;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay header {\n  position: absolute;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 40px;\n  z-index: 2;\n  border-bottom: 1px solid #222; }\n\n.reveal .overlay header a {\n  display: inline-block;\n  width: 40px;\n  height: 40px;\n  padding: 0 10px;\n  float: right;\n  opacity: 0.6;\n  box-sizing: border-box; }\n\n.reveal .overlay header a:hover {\n  opacity: 1; }\n\n.reveal .overlay header a .icon {\n  display: inline-block;\n  width: 20px;\n  height: 20px;\n  background-position: 50% 50%;\n  background-size: 100%;\n  background-repeat: no-repeat; }\n\n.reveal .overlay header a.close .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); }\n\n.reveal .overlay header a.external .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); }\n\n.reveal .overlay .viewport {\n  position: absolute;\n  top: 40px;\n  right: 0;\n  bottom: 0;\n  left: 0; }\n\n.reveal .overlay.overlay-preview .viewport iframe {\n  width: 100%;\n  height: 100%;\n  max-width: 100%;\n  max-height: 100%;\n  border: 0;\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.overlay-preview.loaded .viewport iframe {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay.overlay-preview.loaded .spinner {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .overlay.overlay-help .viewport {\n  overflow: auto;\n  color: #fff; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner {\n  width: 600px;\n  margin: 0 auto;\n  padding: 60px;\n  text-align: center;\n  letter-spacing: normal; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n  font-size: 20px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table {\n  border: 1px solid #fff;\n  border-collapse: collapse;\n  font-size: 14px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n  width: 200px;\n  padding: 10px;\n  border: 1px solid #fff;\n  vertical-align: middle; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n  padding-top: 20px;\n  padding-bottom: 20px; }\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n.reveal .playback {\n  position: fixed;\n  left: 15px;\n  bottom: 20px;\n  z-index: 30;\n  cursor: pointer;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease; }\n\n.reveal.overview .playback {\n  opacity: 0;\n  visibility: hidden; }\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n.reveal .roll {\n  display: inline-block;\n  line-height: 1.2;\n  overflow: hidden;\n  vertical-align: top;\n  -webkit-perspective: 400px;\n          perspective: 400px;\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%; }\n\n.reveal .roll:hover {\n  background: none;\n  text-shadow: none; }\n\n.reveal .roll span {\n  display: block;\n  position: relative;\n  padding: 0 2px;\n  pointer-events: none;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .roll:hover span {\n  background: rgba(0, 0, 0, 0.5);\n  -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg);\n          transform: translate3d(0px, 0px, -45px) rotateX(90deg); }\n\n.reveal .roll span:after {\n  content: attr(data-title);\n  display: block;\n  position: absolute;\n  left: 0;\n  top: 0;\n  padding: 0 2px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg);\n          transform: translate3d(0px, 110%, 0px) rotateX(-90deg); }\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n.reveal aside.notes {\n  display: none; }\n\n.reveal .speaker-notes {\n  display: none;\n  position: absolute;\n  width: 70%;\n  max-height: 15%;\n  left: 15%;\n  bottom: 26px;\n  padding: 10px;\n  z-index: 1;\n  font-size: 18px;\n  line-height: 1.4;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.5);\n  overflow: auto;\n  box-sizing: border-box;\n  text-align: left;\n  font-family: Helvetica, sans-serif;\n  -webkit-overflow-scrolling: touch; }\n\n.reveal .speaker-notes.visible:not(:empty) {\n  display: block; }\n\n@media screen and (max-width: 1024px) {\n  .reveal .speaker-notes {\n    font-size: 14px; } }\n\n@media screen and (max-width: 600px) {\n  .reveal .speaker-notes {\n    width: 90%;\n    left: 5%; } }\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n  -webkit-backface-visibility: visible !important;\n          backface-visibility: visible !important; }\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n  opacity: 0; }\n\n.zoomed .reveal .roll span {\n  background: none; }\n\n.zoomed .reveal .roll span:after {\n  visibility: hidden; }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/reveal.scss",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n/*********************************************\n * RESET STYLES\n *********************************************/\n\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\tfont-size: 100%;\n\tfont: inherit;\n\tvertical-align: baseline;\n}\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n\tdisplay: block;\n}\n\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nhtml,\nbody {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n}\n\nbody {\n\tposition: relative;\n\tline-height: 1;\n\n\tbackground-color: #fff;\n\tcolor: #000;\n}\n\n// Ensures that the main background color matches the\n// theme in fullscreen mode\nhtml:-webkit-full-screen-ancestor {\n\tbackground-color: inherit;\n}\nhtml:-moz-full-screen-ancestor {\n\tbackground-color: inherit;\n}\n\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n\n.reveal .slides section .fragment {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all .2s ease;\n\n\t&.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.grow {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 1.3 );\n\t}\n}\n\n.reveal .slides section .fragment.shrink {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 0.7 );\n\t}\n}\n\n.reveal .slides section .fragment.zoom-in {\n\ttransform: scale( 0.1 );\n\n\t&.visible {\n\t\ttransform: none;\n\t}\n}\n\n.reveal .slides section .fragment.fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t}\n}\n\n.reveal .slides section .fragment.semi-fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0.5;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.strike {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttext-decoration: line-through;\n\t}\n}\n\n.reveal .slides section .fragment.current-visible {\n\topacity: 0;\n\tvisibility: hidden;\n\n\t&.current-fragment {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n\topacity: 1;\n\tvisibility: visible;\n}\n\t.reveal .slides section .fragment.highlight-red.visible {\n\t\tcolor: #ff2c2d\n\t}\n\t.reveal .slides section .fragment.highlight-green.visible {\n\t\tcolor: #17ff2e;\n\t}\n\t.reveal .slides section .fragment.highlight-blue.visible {\n\t\tcolor: #1b91ff;\n\t}\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n\tcolor: #ff2c2d\n}\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n\tcolor: #17ff2e;\n}\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n\tcolor: #1b91ff;\n}\n\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic;\n}\n\n.reveal iframe {\n\tz-index: 1;\n}\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n\tposition: relative;\n}\n\n.reveal .stretch {\n\tmax-width: none;\n\tmax-height: none;\n}\n\n.reveal pre.stretch code {\n\theight: 100%;\n\tmax-height: 100%;\n\tbox-sizing: border-box;\n}\n\n\n/*********************************************\n * CONTROLS\n *********************************************/\n\n.reveal .controls {\n\tdisplay: none;\n\tposition: fixed;\n\twidth: 110px;\n\theight: 110px;\n\tz-index: 30;\n\tright: 10px;\n\tbottom: 10px;\n\n\t-webkit-user-select: none;\n}\n\n.reveal .controls button {\n\tpadding: 0;\n\tposition: absolute;\n\topacity: 0.05;\n\twidth: 0;\n\theight: 0;\n\tbackground-color: transparent;\n\tborder: 12px solid transparent;\n\ttransform: scale(.9999);\n\ttransition: all 0.2s ease;\n\t-webkit-appearance: none;\n\t-webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );\n}\n\n.reveal .controls .enabled {\n\topacity: 0.7;\n\tcursor: pointer;\n}\n\n.reveal .controls .enabled:active {\n\tmargin-top: 1px;\n}\n\n\t.reveal .controls .navigate-left {\n\t\ttop: 42px;\n\n\t\tborder-right-width: 22px;\n\t\tborder-right-color: #000;\n\t}\n\t\t.reveal .controls .navigate-left.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-right {\n\t\tleft: 74px;\n\t\ttop: 42px;\n\n\t\tborder-left-width: 22px;\n\t\tborder-left-color: #000;\n\t}\n\t\t.reveal .controls .navigate-right.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-up {\n\t\tleft: 42px;\n\n\t\tborder-bottom-width: 22px;\n\t\tborder-bottom-color: #000;\n\t}\n\t\t.reveal .controls .navigate-up.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-down {\n\t\tleft: 42px;\n\t\ttop: 74px;\n\n\t\tborder-top-width: 22px;\n\t\tborder-top-color: #000;\n\t}\n\t\t.reveal .controls .navigate-down.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tposition: fixed;\n\tdisplay: none;\n\theight: 3px;\n\twidth: 100%;\n\tbottom: 0;\n\tleft: 0;\n\tz-index: 10;\n\n\tbackground-color: rgba( 0, 0, 0, 0.2 );\n}\n\t.reveal .progress:after {\n\t\tcontent: '';\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\theight: 20px;\n\t\twidth: 100%;\n\t\ttop: -20px;\n\t}\n\t.reveal .progress span {\n\t\tdisplay: block;\n\t\theight: 100%;\n\t\twidth: 0px;\n\n\t\tbackground-color: #000;\n\t\ttransition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n\n.reveal .slide-number {\n\tposition: fixed;\n\tdisplay: block;\n\tright: 8px;\n\tbottom: 8px;\n\tz-index: 31;\n\tfont-family: Helvetica, sans-serif;\n\tfont-size: 12px;\n\tline-height: 1;\n\tcolor: #fff;\n\tbackground-color: rgba( 0, 0, 0, 0.4 );\n\tpadding: 5px;\n}\n\n.reveal .slide-number-delimiter {\n\tmargin: 0 3px;\n}\n\n/*********************************************\n * SLIDES\n *********************************************/\n\n.reveal {\n\tposition: relative;\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n\ttouch-action: none;\n}\n\n.reveal .slides {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tmargin: auto;\n\n\toverflow: visible;\n\tz-index: 1;\n\ttext-align: center;\n\tperspective: 600px;\n\tperspective-origin: 50% 40%;\n}\n\n.reveal .slides>section {\n\t-ms-perspective: 600px;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 100%;\n\tpadding: 20px 0px;\n\n\tz-index: 10;\n\ttransform-style: preserve-3d;\n\ttransition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\ttransform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\tvisibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\topacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n}\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"] .slides section {\n\ttransition-duration: 1200ms;\n}\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n\ttransition-duration: 400ms;\n}\n.reveal .slides section[data-transition-speed=\"slow\"] {\n\ttransition-duration: 1200ms;\n}\n\n.reveal .slides>section.stack {\n\tpadding-top: 0;\n\tpadding-bottom: 0;\n}\n\n.reveal .slides>section.present,\n.reveal .slides>section>section.present {\n\tdisplay: block;\n\tz-index: 11;\n\topacity: 1;\n}\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n\tmin-height: 0 !important;\n}\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides>section.future,\n.reveal .slides>section>section.future,\n.reveal .slides>section.past,\n.reveal .slides>section>section.past {\n\tpointer-events: none;\n}\n\n.reveal.overview .slides>section,\n.reveal.overview .slides>section>section {\n\tpointer-events: auto;\n}\n\n.reveal .slides>section.past,\n.reveal .slides>section.future,\n.reveal .slides>section>section.past,\n.reveal .slides>section>section.future {\n\topacity: 0;\n}\n\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n\n@mixin transition-global($style) {\n\t.reveal .slides section[data-transition=#{$style}],\n\t.reveal.#{$style} .slides section:not([data-transition]) {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-past($style) {\n\t.reveal .slides>section[data-transition=#{$style}].past,\n\t.reveal .slides>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-future($style) {\n\t.reveal .slides>section[data-transition=#{$style}].future,\n\t.reveal .slides>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n@mixin transition-vertical-past($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].past,\n\t.reveal .slides>section>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-vertical-future($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].future,\n\t.reveal .slides>section>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n\n@each $stylename in slide, linear {\n\t.reveal.#{$stylename} section {\n\t\tbackface-visibility: hidden;\n\t}\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate(-150%, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate(150%, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate(0, -150%);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate(0, 150%);\n\t}\n}\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n\n@each $stylename in default, convex {\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n\t}\n}\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n\n@include transition-horizontal-past(concave) {\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n@include transition-horizontal-future(concave) {\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n@include transition-vertical-past(concave) {\n\ttransform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n}\n@include transition-vertical-future(concave) {\n\ttransform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n}\n\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n\n@include transition-global(zoom) {\n\ttransition-timing-function: ease;\n}\n@include transition-horizontal-past(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n@include transition-horizontal-future(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n@include transition-vertical-past(zoom) {\n\ttransform: translate(0, -150%);\n}\n@include transition-vertical-future(zoom) {\n\ttransform: translate(0, 150%);\n}\n\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n\n.reveal.cube .slides {\n\tperspective: 1300px;\n}\n\n.reveal.cube .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbackface-visibility: hidden;\n\tbox-sizing: border-box;\n}\n\t.reveal.center.cube .slides section {\n\t\tmin-height: 0;\n\t}\n\t.reveal.cube .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\tborder-radius: 4px;\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.cube .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\t\ttransform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.cube .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.cube .slides>section.past {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg);\n}\n\n.reveal.cube .slides>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg);\n}\n\n.reveal.cube .slides>section>section.past {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg);\n}\n\n.reveal.cube .slides>section>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg);\n}\n\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n\n.reveal.page .slides {\n\tperspective-origin: 0% 50%;\n\tperspective: 3000px;\n}\n\n.reveal.page .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbox-sizing: border-box;\n}\n\t.reveal.page .slides section.past {\n\t\tz-index: 12;\n\t}\n\t.reveal.page .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.page .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\n\t\t-webkit-transform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.page .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.page .slides>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(-40%, 0, 0) rotateY(-80deg);\n}\n\n.reveal.page .slides>section.future {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n.reveal.page .slides>section>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, -40%, 0) rotateX(80deg);\n}\n\n.reveal.page .slides>section>section.future {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides>section>section:not([data-transition]) {\n\ttransform: none;\n\ttransition: opacity 0.5s;\n}\n\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides>section>section {\n\ttransition: none;\n}\n\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n\n@include transition-global(none) {\n\ttransform: none;\n\ttransition: none;\n}\n\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n\n.reveal .pause-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tbackground: black;\n\tvisibility: hidden;\n\topacity: 0;\n\tz-index: 100;\n\ttransition: all 1s ease;\n}\n.reveal.paused .pause-overlay {\n\tvisibility: visible;\n\topacity: 1;\n}\n\n\n/*********************************************\n * FALLBACK\n *********************************************/\n\n.no-transforms {\n\toverflow-y: auto;\n}\n\n.no-transforms .reveal .slides {\n\tposition: relative;\n\twidth: 80%;\n\theight: auto !important;\n\ttop: 0;\n\tleft: 50%;\n\tmargin: 0;\n\ttext-align: center;\n}\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n\tdisplay: none !important;\n}\n\n.no-transforms .reveal .slides section {\n\tdisplay: block !important;\n\topacity: 1 !important;\n\tposition: relative !important;\n\theight: auto;\n\tmin-height: 0;\n\ttop: 0;\n\tleft: -50%;\n\tmargin: 70px 0;\n\ttransform: none;\n}\n\n.no-transforms .reveal .slides section section {\n\tleft: 0;\n}\n\n.reveal .no-transition,\n.reveal .no-transition * {\n\ttransition: none !important;\n}\n\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n\n.reveal .backgrounds {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tperspective: 600px;\n}\n\t.reveal .slide-background {\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\n\t\tbackground-color: rgba( 0, 0, 0, 0 );\n\t\tbackground-position: 50% 50%;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: cover;\n\n\t\ttransition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\t.reveal .slide-background.stack {\n\t\tdisplay: block;\n\t}\n\n\t.reveal .slide-background.present {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.print-pdf .reveal .slide-background {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\t}\n\n/* Video backgrounds */\n.reveal .slide-background video {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\tmax-width: none;\n\tmax-height: none;\n\ttop: 0;\n\tleft: 0;\n}\n\n/* Immediate transition style */\n.reveal[data-background-transition=none]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=none] {\n\ttransition: none;\n}\n\n/* Slide */\n.reveal[data-background-transition=slide]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=slide] {\n\topacity: 1;\n\tbackface-visibility: hidden;\n}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.past,\n\t.reveal>.backgrounds .slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(-100%, 0);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.future,\n\t.reveal>.backgrounds .slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(100%, 0);\n\t}\n\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past,\n\t.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(0, -100%);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future,\n\t.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(0, 100%);\n\t}\n\n\n/* Convex */\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n}\n\n\n/* Concave */\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n}\n\n/* Zoom */\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=zoom] {\n\ttransition-timing-function: ease;\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"]>.backgrounds .slide-background {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"]>.backgrounds .slide-background {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n\n.reveal.overview {\n\tperspective-origin: 50% 50%;\n\tperspective: 700px;\n\n\t.slides section {\n\t\theight: 700px;\n\t\topacity: 1 !important;\n\t\toverflow: hidden;\n\t\tvisibility: visible !important;\n\t\tcursor: pointer;\n\t\tbox-sizing: border-box;\n\t}\n\t.slides section:hover,\n\t.slides section.present {\n\t\toutline: 10px solid rgba(150,150,150,0.4);\n\t\toutline-offset: 10px;\n\t}\n\t.slides section .fragment {\n\t\topacity: 1;\n\t\ttransition: none;\n\t}\n\t.slides section:after,\n\t.slides section:before {\n\t\tdisplay: none !important;\n\t}\n\t.slides>section.stack {\n\t\tpadding: 0;\n\t\ttop: 0 !important;\n\t\tbackground: none;\n\t\toutline: none;\n\t\toverflow: visible;\n\t}\n\n\t.backgrounds {\n\t\tperspective: inherit;\n\t}\n\n\t.backgrounds .slide-background {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\n\t\t// This can't be applied to the slide itself in Safari\n\t\toutline: 10px solid rgba(150,150,150,0.1);\n\t\toutline-offset: 10px;\n\t}\n}\n\n// Disable transitions transitions while we're activating\n// or deactivating the overview mode.\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n\ttransition: none;\n}\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n\ttransition: none;\n}\n\n.reveal.overview-animated .slides {\n\ttransition: transform 0.4s ease;\n}\n\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n\tdirection: rtl;\n\tfont-family: sans-serif;\n}\n\n.reveal.rtl pre,\n.reveal.rtl code {\n\tdirection: ltr;\n}\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n\ttext-align: right;\n}\n\n.reveal.rtl .progress span {\n\tfloat: right\n}\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n\n.reveal.has-parallax-background .backgrounds {\n\ttransition: all 0.8s ease;\n}\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n\ttransition-duration: 400ms;\n}\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n\n.reveal .overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1000;\n\tbackground: rgba( 0, 0, 0, 0.9 );\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all 0.3s ease;\n}\n\t.reveal .overlay.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay .spinner {\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\ttop: 50%;\n\t\tleft: 50%;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tmargin: -16px 0 0 -16px;\n\t\tz-index: 10;\n\t\tbackground-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n\n\t\tvisibility: visible;\n\t\topacity: 0.6;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay header {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\twidth: 100%;\n\t\theight: 40px;\n\t\tz-index: 2;\n\t\tborder-bottom: 1px solid #222;\n\t}\n\t\t.reveal .overlay header a {\n\t\t\tdisplay: inline-block;\n\t\t\twidth: 40px;\n\t\t\theight: 40px;\n\t\t\tpadding: 0 10px;\n\t\t\tfloat: right;\n\t\t\topacity: 0.6;\n\n\t\t\tbox-sizing: border-box;\n\t\t}\n\t\t\t.reveal .overlay header a:hover {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t\t.reveal .overlay header a .icon {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: 20px;\n\t\t\t\theight: 20px;\n\n\t\t\t\tbackground-position: 50% 50%;\n\t\t\t\tbackground-size: 100%;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t}\n\t\t\t.reveal .overlay header a.close .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC);\n\t\t\t}\n\t\t\t.reveal .overlay header a.external .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==);\n\t\t\t}\n\n\t.reveal .overlay .viewport {\n\t\tposition: absolute;\n\t\ttop: 40px;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\n\t.reveal .overlay.overlay-preview .viewport iframe {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tmax-width: 100%;\n\t\tmax-height: 100%;\n\t\tborder: 0;\n\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .viewport iframe {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .spinner {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(0.2);\n\t}\n\n\t.reveal .overlay.overlay-help .viewport {\n\t\toverflow: auto;\n\t\tcolor: #fff;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner {\n\t\twidth: 600px;\n\t\tmargin: 0 auto;\n\t\tpadding: 60px;\n\t\ttext-align: center;\n\t\tletter-spacing: normal;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n\t\tfont-size: 20px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table {\n\t\tborder: 1px solid #fff;\n\t\tborder-collapse: collapse;\n\t\tfont-size: 14px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n\t\twidth: 200px;\n\t\tpadding: 10px;\n\t\tborder: 1px solid #fff;\n\t\tvertical-align: middle;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n\t\tpadding-top: 20px;\n\t\tpadding-bottom: 20px;\n\t}\n\n\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n\n.reveal .playback {\n\tposition: fixed;\n\tleft: 15px;\n\tbottom: 20px;\n\tz-index: 30;\n\tcursor: pointer;\n\ttransition: all 400ms ease;\n}\n\n.reveal.overview .playback {\n\topacity: 0;\n\tvisibility: hidden;\n}\n\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n\n.reveal .roll {\n\tdisplay: inline-block;\n\tline-height: 1.2;\n\toverflow: hidden;\n\n\tvertical-align: top;\n\tperspective: 400px;\n\tperspective-origin: 50% 50%;\n}\n\t.reveal .roll:hover {\n\t\tbackground: none;\n\t\ttext-shadow: none;\n\t}\n.reveal .roll span {\n\tdisplay: block;\n\tposition: relative;\n\tpadding: 0 2px;\n\n\tpointer-events: none;\n\ttransition: all 400ms ease;\n\ttransform-origin: 50% 0%;\n\ttransform-style: preserve-3d;\n\tbackface-visibility: hidden;\n}\n\t.reveal .roll:hover span {\n\t    background: rgba(0,0,0,0.5);\n\t    transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );\n\t}\n.reveal .roll span:after {\n\tcontent: attr(data-title);\n\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 0;\n\ttop: 0;\n\tpadding: 0 2px;\n\tbackface-visibility: hidden;\n\ttransform-origin: 50% 0%;\n\ttransform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );\n}\n\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n\n// Hide on-page notes\n.reveal aside.notes {\n\tdisplay: none;\n}\n\n// An interface element that can optionally be used to show the\n// speaker notes to all viewers, on top of the presentation\n.reveal .speaker-notes {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 70%;\n\tmax-height: 15%;\n\tleft: 15%;\n\tbottom: 26px;\n\tpadding: 10px;\n\tz-index: 1;\n\tfont-size: 18px;\n\tline-height: 1.4;\n\tcolor: #fff;\n\tbackground-color: rgba(0,0,0,0.5);\n\toverflow: auto;\n\tbox-sizing: border-box;\n\ttext-align: left;\n\tfont-family: Helvetica, sans-serif;\n\t-webkit-overflow-scrolling: touch;\n}\n\n.reveal .speaker-notes.visible:not(:empty) {\n\tdisplay: block;\n}\n\n@media screen and (max-width: 1024px) {\n\t.reveal .speaker-notes {\n\t\tfont-size: 14px;\n\t}\n}\n\n@media screen and (max-width: 600px) {\n\t.reveal .speaker-notes {\n\t\twidth: 90%;\n\t\tleft: 5%;\n\t}\n}\n\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n\tbackface-visibility: visible !important;\n}\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n\topacity: 0;\n}\n\n.zoomed .reveal .roll span {\n\tbackground: none;\n}\n\n.zoomed .reveal .roll span:after {\n\tvisibility: hidden;\n}\n\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/README.md",
    "content": "## Dependencies\n\nThemes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup\n\n## Creating a Theme\n\nTo create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`.\n\nEach theme file does four things in the following order:\n\n1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**\nShared utility functions.\n\n2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**\nDeclares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.\n\n3. **Override**\nThis is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.\n\n4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**\nThe template theme file which will generate final CSS output based on the currently defined variables.\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/beige.css",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #f7f2d3;\n  background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));\n  background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background-color: #f7f3de; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: rgba(79, 64, 28, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #8b743d;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #c0a86e;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #564826; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #8b743d;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #8b743d; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #8b743d; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #8b743d; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #8b743d; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #c0a86e; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #c0a86e; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #c0a86e; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #c0a86e; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #8b743d;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/black.css",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {\n  color: #222; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: black; }\n\n::selection {\n  color: #fff;\n  background: #bee4fd;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #ff6a00;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #42affa;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8dcffc;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #068de9; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #fff;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #42affa;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #42affa; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #42affa; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #42affa; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #42affa; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8dcffc; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8dcffc; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8dcffc; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8dcffc; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #42affa;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/blood.css",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: Ubuntu, \"sans-serif\";\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #a23;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: Ubuntu, \"sans-serif\";\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 2px 2px 2px #222;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #a23;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #dd5566;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #6a1520; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #a23;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #a23; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #a23; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #a23; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #a23; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #dd5566; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #dd5566; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #dd5566; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #dd5566; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #a23;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal p {\n  font-weight: 300;\n  text-shadow: 1px 1px #222; }\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  font-weight: 700; }\n\n.reveal p code {\n  background-color: #23241f;\n  display: inline-block;\n  border-radius: 7px; }\n\n.reveal small code {\n  vertical-align: baseline; }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/league.css",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #1c1e20;\n  background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));\n  background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background-color: #2b2b2b; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #FF5E99;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #13DAEC;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #71e9f4;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #0d99a5; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #13DAEC;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #13DAEC; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #13DAEC; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #13DAEC; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #13DAEC; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #71e9f4; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #71e9f4; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #71e9f4; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #71e9f4; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #13DAEC;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/moon.css",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #002b36;\n  background-color: #002b36; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #93a1a1; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee8d5;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #93a1a1;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/night.css",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #111;\n  background-color: #111; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 30px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #e7ad52;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"Montserrat\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.03em;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #e7ad52;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #f3d7ac;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #d08a1d; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #e7ad52;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #e7ad52; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #e7ad52; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #e7ad52; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #e7ad52; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #f3d7ac; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #f3d7ac; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #f3d7ac; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #f3d7ac; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #e7ad52;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/serif.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #F0F1EB;\n  background-color: #F0F1EB; }\n\n.reveal {\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: #26351C;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #383D3D;\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #51483D;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8b7c69;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #25211c; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #51483D;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #51483D; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #51483D; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #51483D; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #51483D; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8b7c69; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8b7c69; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8b7c69; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8b7c69; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #51483D;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/simple.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: rgba(0, 0, 0, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #000;\n  font-family: \"News Cycle\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #00008B;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #0000f1;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #00003f; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #00008B;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #00008B; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #00008B; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #00008B; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #00008B; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #0000f1; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #0000f1; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #0000f1; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #0000f1; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #00008B;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/sky.css",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #add9e4;\n  background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));\n  background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background-color: #f7fbfc; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: #134674;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"Quicksand\", sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.08em;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #3b759e;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #74a7cb;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #264c66; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #3b759e;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #3b759e; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #3b759e; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #3b759e; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #3b759e; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #74a7cb; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #74a7cb; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #74a7cb; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #74a7cb; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #3b759e;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/solarized.css",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fdf6e3;\n  background-color: #fdf6e3; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #657b83; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #586e75;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #657b83;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/beige.scss",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: #333;\n$headingColor: #333;\n$headingTextShadow: none;\n$backgroundColor: #f7f3de;\n$linkColor: #8b743d;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(79, 64, 28, 0.99);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/black.scss",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #222;\n\n$mainColor: #fff;\n$headingColor: #fff;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #42affa;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-light-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #222;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/blood.scss",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n\n // Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n// Include theme-specific fonts\n\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n\n// Colors used in the theme\n$blood: #a23;\n$coal: #222;\n$codeBackground: #23241f;\n\n$backgroundColor: $coal;\n\n// Main text\n$mainFont: Ubuntu, 'sans-serif';\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Headings\n$headingFont: Ubuntu, 'sans-serif';\n$headingTextShadow: 2px 2px 2px $coal;\n\n// h1 shadow, borrowed humbly from \n// (c) Default theme by Hakim El Hattab\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Links\n$linkColor: $blood;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: $blood;\n$selectionColor: #fff;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n\n// some overrides after theme template import\n\n.reveal p {\n    font-weight: 300;\n    text-shadow: 1px 1px $coal;\n}\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n    font-weight: 700;\n}\n\n.reveal p code {\n    background-color: $codeBackground;\n    display: inline-block;\n    border-radius: 7px;\n}\n\n.reveal small code {\n    vertical-align: baseline;\n}"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/league.scss",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n// Override theme settings (see ../template/settings.scss)\n$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/moon.scss",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base1;\n$headingColor: $base2;\n$headingTextShadow: none;\n$backgroundColor: $base03;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/night.scss",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #111;\n\n$mainFont: 'Open Sans', sans-serif;\n$linkColor: #e7ad52;\n$linkColorHover: lighten( $linkColor, 20% );\n$headingFont: 'Montserrat', Impact, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: -0.03em;\n$headingTextTransform: none;\n$selectionBackgroundColor: #e7ad52;\n$mainFontSize: 30px;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/serif.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$mainColor: #000;\n$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$headingColor: #383D3D;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #F0F1EB;\n$linkColor: #51483D;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #26351C;\n\n.reveal a {\n  line-height: 1.3em;\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/simple.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Lato', sans-serif;\n$mainColor: #000;\n$headingFont: 'News Cycle', Impact, sans-serif;\n$headingColor: #000;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #fff;\n$linkColor: #00008B;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(0, 0, 0, 0.99);\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/sky.scss",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Open Sans', sans-serif;\n$mainColor: #333;\n$headingFont: 'Quicksand', sans-serif;\n$headingColor: #333;\n$headingLetterSpacing: -0.08em;\n$headingTextShadow: none;\n$backgroundColor: #f7fbfc;\n$linkColor: #3b759e;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #134674;\n\n// Fix links so they are not cut off\n.reveal a {\n\tline-height: 1.3em;\n}\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( #add9e4, #f7fbfc );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/solarized.scss",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base00;\n$headingColor: $base01;\n$headingTextShadow: none;\n$backgroundColor: $base3;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n// Background generator\n// @mixin bodyBackground() {\n// \t@include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );\n// }\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/source/white.scss",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #fff;\n\n$mainColor: #222;\n$headingColor: #222;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #2a76dd;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-dark-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #fff;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/template/mixins.scss",
    "content": "@mixin vertical-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( top, $top 0%, $bottom 100% );\n}\n\n@mixin horizontal-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( left, $top 0%, $bottom 100% );\n}\n\n@mixin radial-gradient( $outer, $inner, $type: circle ) {\n\tbackground: $outer;\n\tbackground: -moz-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );\n\tbackground: -webkit-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -o-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -ms-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n}"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/template/settings.scss",
    "content": "// Base settings for all themes that can optionally be\n// overridden by the super-theme\n\n// Background of the presentation\n$backgroundColor: #2b2b2b;\n\n// Primary/body text\n$mainFont: 'Lato', sans-serif;\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Vertical spacing between blocks of text\n$blockMargin: 20px;\n\n// Headings\n$headingMargin: 0 0 $blockMargin 0;\n$headingFont: 'League Gothic', Impact, sans-serif;\n$headingColor: #eee;\n$headingLineHeight: 1.2;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingTextShadow: none;\n$headingFontWeight: normal;\n$heading1TextShadow: $headingTextShadow;\n\n$heading1Size: 3.77em;\n$heading2Size: 2.11em;\n$heading3Size: 1.55em;\n$heading4Size: 1.00em;\n\n// Links and actions\n$linkColor: #13DAEC;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: #FF5E99;\n$selectionColor: #fff;\n\n// Generates the presentation background, can be overridden\n// to return a background image or gradient\n@mixin bodyBackground() {\n\tbackground: $backgroundColor;\n}"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/template/theme.scss",
    "content": "// Base theme template for reveal.js\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nbody {\n\t@include bodyBackground();\n\tbackground-color: $backgroundColor;\n}\n\n.reveal {\n\tfont-family: $mainFont;\n\tfont-size: $mainFontSize;\n\tfont-weight: normal;\n\tcolor: $mainColor;\n}\n\n::selection {\n\tcolor: $selectionColor;\n\tbackground: $selectionBackgroundColor;\n\ttext-shadow: none;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tline-height: 1.3;\n\tfont-weight: inherit;\n}\n\n/*********************************************\n * HEADERS\n *********************************************/\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n\tmargin: $headingMargin;\n\tcolor: $headingColor;\n\n\tfont-family: $headingFont;\n\tfont-weight: $headingFontWeight;\n\tline-height: $headingLineHeight;\n\tletter-spacing: $headingLetterSpacing;\n\n\ttext-transform: $headingTextTransform;\n\ttext-shadow: $headingTextShadow;\n\n\tword-wrap: break-word;\n}\n\n.reveal h1 {font-size: $heading1Size; }\n.reveal h2 {font-size: $heading2Size; }\n.reveal h3 {font-size: $heading3Size; }\n.reveal h4 {font-size: $heading4Size; }\n\n.reveal h1 {\n\ttext-shadow: $heading1TextShadow;\n}\n\n\n/*********************************************\n * OTHER\n *********************************************/\n\n.reveal p {\n\tmargin: $blockMargin 0;\n\tline-height: 1.3;\n}\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n\tmax-width: 95%;\n\tmax-height: 95%;\n}\n.reveal strong,\n.reveal b {\n\tfont-weight: bold;\n}\n\n.reveal em {\n\tfont-style: italic;\n}\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n\tdisplay: inline-block;\n\n\ttext-align: left;\n\tmargin: 0 0 0 1em;\n}\n\n.reveal ol {\n\tlist-style-type: decimal;\n}\n\n.reveal ul {\n\tlist-style-type: disc;\n}\n\n.reveal ul ul {\n\tlist-style-type: square;\n}\n\n.reveal ul ul ul {\n\tlist-style-type: circle;\n}\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n\tdisplay: block;\n\tmargin-left: 40px;\n}\n\n.reveal dt {\n\tfont-weight: bold;\n}\n\n.reveal dd {\n\tmargin-left: 40px;\n}\n\n.reveal q,\n.reveal blockquote {\n\tquotes: none;\n}\n\n.reveal blockquote {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 70%;\n\tmargin: $blockMargin auto;\n\tpadding: 5px;\n\n\tfont-style: italic;\n\tbackground: rgba(255, 255, 255, 0.05);\n\tbox-shadow: 0px 0px 2px rgba(0,0,0,0.2);\n}\n\t.reveal blockquote p:first-child,\n\t.reveal blockquote p:last-child {\n\t\tdisplay: inline-block;\n\t}\n\n.reveal q {\n\tfont-style: italic;\n}\n\n.reveal pre {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 90%;\n\tmargin: $blockMargin auto;\n\n\ttext-align: left;\n\tfont-size: 0.55em;\n\tfont-family: monospace;\n\tline-height: 1.2em;\n\n\tword-wrap: break-word;\n\n\tbox-shadow: 0px 0px 6px rgba(0,0,0,0.3);\n}\n.reveal code {\n\tfont-family: monospace;\n}\n\n.reveal pre code {\n\tdisplay: block;\n\tpadding: 5px;\n\toverflow: auto;\n\tmax-height: 400px;\n\tword-wrap: normal;\n}\n\n.reveal table {\n\tmargin: auto;\n\tborder-collapse: collapse;\n\tborder-spacing: 0;\n}\n\n.reveal table th {\n\tfont-weight: bold;\n}\n\n.reveal table th,\n.reveal table td {\n\ttext-align: left;\n\tpadding: 0.2em 0.5em 0.2em 0.5em;\n\tborder-bottom: 1px solid;\n}\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n\ttext-align: center;\n}\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n\ttext-align: right;\n}\n\n.reveal table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.reveal sup {\n\tvertical-align: super;\n}\n.reveal sub {\n\tvertical-align: sub;\n}\n\n.reveal small {\n\tdisplay: inline-block;\n\tfont-size: 0.6em;\n\tline-height: 1.2em;\n\tvertical-align: top;\n}\n\n.reveal small * {\n\tvertical-align: top;\n}\n\n\n/*********************************************\n * LINKS\n *********************************************/\n\n.reveal a {\n\tcolor: $linkColor;\n\ttext-decoration: none;\n\n\t-webkit-transition: color .15s ease;\n\t   -moz-transition: color .15s ease;\n\t        transition: color .15s ease;\n}\n\t.reveal a:hover {\n\t\tcolor: $linkColorHover;\n\n\t\ttext-shadow: none;\n\t\tborder: none;\n\t}\n\n.reveal .roll span:after {\n\tcolor: #fff;\n\tbackground: darken( $linkColor, 15% );\n}\n\n\n/*********************************************\n * IMAGES\n *********************************************/\n\n.reveal section img {\n\tmargin: 15px 0px;\n\tbackground: rgba(255,255,255,0.12);\n\tborder: 4px solid $mainColor;\n\n\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.15);\n}\n\n\t.reveal section img.plain {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal a img {\n\t\t-webkit-transition: all .15s linear;\n\t\t   -moz-transition: all .15s linear;\n\t\t        transition: all .15s linear;\n\t}\n\n\t.reveal a:hover img {\n\t\tbackground: rgba(255,255,255,0.2);\n\t\tborder-color: $linkColor;\n\n\t\tbox-shadow: 0 0 20px rgba(0, 0, 0, 0.55);\n\t}\n\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n\tborder-right-color: $linkColor;\n}\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n\tborder-left-color: $linkColor;\n}\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n\tborder-bottom-color: $linkColor;\n}\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n\tborder-top-color: $linkColor;\n}\n\n.reveal .controls .navigate-left.enabled:hover {\n\tborder-right-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-right.enabled:hover {\n\tborder-left-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-up.enabled:hover {\n\tborder-bottom-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-down.enabled:hover {\n\tborder-top-color: $linkColorHover;\n}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tbackground: rgba(0,0,0,0.2);\n}\n\t.reveal .progress span {\n\t\tbackground: $linkColor;\n\n\t\t-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t   -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t        transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/css/theme/white.css",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {\n  color: #fff; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: #222; }\n\n::selection {\n  color: #fff;\n  background: #98bdef;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #222;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #2a76dd;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #6ca0e8;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a53a1; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #222;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #2a76dd;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #2a76dd; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #2a76dd; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #2a76dd; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #2a76dd; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #6ca0e8; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #6ca0e8; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #6ca0e8; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #6ca0e8; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #2a76dd;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "doc/meetingcpp-2016/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>TDD/BDD and Dependency Injection</title>\n\n\t\t<meta name=\"description\" content=\"A framework for easily creating beautiful presentations using HTML\">\n\t\t<meta name=\"author\" content=\"Hakim El Hattab\">\n\n\t\t<meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n\t\t<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\">\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui\">\n\n\t\t<link rel=\"stylesheet\" href=\"css/reveal.css\">\n    <link rel=\"stylesheet\" href=\"css/theme/league.css\" id=\"theme\">\n\n\t\t<!-- Code syntax highlighting -->\n    <link rel=\"stylesheet\" href=\"lib/css/zenburn.css\">\n\n\t\t<!-- Printing and PDF exports -->\n\t\t<script>\n\t\t\tvar link = document.createElement( 'link' );\n\t\t\tlink.rel = 'stylesheet';\n\t\t\tlink.type = 'text/css';\n\t\t\tlink.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';\n\t\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( link );\n\t\t</script>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\t\t\t<div class=\"slides\">\n          <section data-markdown=\"\"\n                   data-separator=\"^====+$\"\n                   data-separator-vertical=\"^----+$\"\n                   data-notes=\"^Note:\">\n\t\t\t\t\t<script type=\"text/template\">\n\nMeeting C++ 2016\n\n#TDD/BDD and Dependency Injection\n\nKris Jusiak\n\n---\n\n[kris@jusiak.net](mailto:kris@jusiak.net) | [@krisjusiak](https://twitter.com/krisjusiak) | [linkedin.com/in/kris-jusiak](https://www.linkedin.com/in/kris-jusiak)\n\n==============================================================================\n\n##Testing\n\n> \"If you liked it then you should have put a test on it\", Beyonce rule\n\n-----\n\n##TDD - Test Driven Development (the when)\n\n> Unit Tests (the what)\n\n----\n\n##TDD Mantra - Red-Green-Refactor\n\n<img src=\"images/tdd.gif\" width=\"40%\" />\n\n> Refactor => remove duplicates!\n\n----\n\n##BDD - Behaviour Driven Development\n\n> Unit/Integration/Functional Tests (the how)\n\nComplementary with TDD\n\n==============================================================================\n\n##Mocking\n\n> Mock objects are simulated objects with expectations that mimic the behavior of the real ones\n\n----\n\n###Mocking (Example)\n\n####Interface/Mock\n```cpp\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void foo(bool) = 0;\n};\n```\n\n```cpp\nstruct interface_mock : interface {\n  void foo(bool) override { magic...; }\n};\n```\n\n####Test\n```cpp\n\"should mock foo call\"_test = [] {\n  // given\n  interface_mock mock;\n  // when\n  mock.foo(true); mock.foo(false);\n  // then\n  expect_call(mock, foo(true)); expect_call(mock, foo(false));\n};\n```\n\n==============================================================================\n\n##Dependency Injection\n\n> \"Don't call us, we'll call you\", Hollywood principle\n\n----\n\n## It's all about the construction!\n\n####No DI\n```cpp\ncoffee_maker()\n  : heater(make_shared<electric_heater>()) // construct dependencies\n  , pump(make_unique<heat_pump>(heater))\n{ }\n```\n\n####DI\n```cpp\ncoffee_maker(shared_ptr<iheater> heater // inject dependencies\n           , unique_ptr<ipump> pump)\n  : heater(heater)\n  , pump(move(pump))\n{ }\n```\n\n==============================================================================\n\n##Automatic mocks injector\n\n> Create and inject mocks automatically using [Boost].DI and FakeIt!\n\n----\n\n##Automatic mocks injector - Goal\n\n```cpp\nstruct app {\n  app(const interface1& i1, interface2& i2);\n  void update() {\n    if (i1.foo()) {\n      i2.bar();\n    }\n  }\n};\n```\n\n```cpp\n\"should update app\"_test = [] {\n  // given\n  const auto injector = di::make_injector<mocks_provider>();\n\n  // when\n  When(Method(mock<interface1>, foo)).Return(true);\n  injector.create<app>().update();\n\n  // then\n  Verify(Method(mock<interface2>, bar).Times(1);\n};\n```\n\n----\n\n##Requirements\n\n----\n\n##FakeIt\n\n> A Mocking library\n\nhttps://github.com/eranpeer/FakeIt\n\n----\n\n##FakeIt\n\n* Not standard, depening on vtable layout\n* Supported compilers (C++11)\n  * GCC/Clang/MSVC\n\n----\n\n##FakeIt - Hello World\n\n```cpp\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual bool foo() = 0;\n};\n```\n\n```cpp\n// given\nMock<interface> mock;\nWhen(Method(mock, foo)).Return(true);\n\n// when\nauto &i = mock.get();\ni.foo(true);\n\n// then\nVerify(Method(mock,foo).Using(true));\n```\n\n----\n\n##[Boost].DI\n\n> Dependency Injection Library\n\nhttps://github.com/boost-experimental/di\n\n----\n\n##[Boost].DI\n\n* One header - 3k LOC - (boost/di.hpp) / generated\n* Neither Boost nor STL is required\n* No 'if's, 'virtual', 'exceptions' (-fno-rtti, -fno-exceptions)\n* Non-intrusive, no run-time overhead\n* Quick compilation times and short error messages\n* Supported compilers (C++14)\n  * [Clang-3.4+](https://travis-ci.org/boost-experimental/di), [XCode-6.1+](https://travis-ci.org/boost-experimental/di), [GCC-5.2+](https://travis-ci.org/boost-experimental/di), [MSVC-2015+](https://ci.appveyor.com/project/krzysztof-jusiak/di)\n\n----\n\n##[Boost].DI - Hello World\n\n```cpp\n#include <boost/di.hpp>\nnamespace di = boost::di;\n```\n\n```cpp\nstruct iworld { virtual ~iworld() noexcept = default; };\nstruct world : iworld {};\nstruct ihello { virtual ~ihello() noexcept = default; };\nstruct hello : ihello {};\n```\n\n```cpp\nstruct hello_world {\n  hello_world(const ihello&, const iworld&); // DI handles order\n};                  ^              ^         // and types\n                    |              \\------------\\\n                    \\----------------------\\    |\nint main() {                               |    |\n  const auto injector = di::make_injector( |    |\n     di::bind<ihello>.to<hello>() ---------/    |\n   , di::bind<iworld>.to<world>() -------------/\n  );\n\n  auto hw = injector.create<hello_world>();\n}\n```\n\n----\n\n##[Boost].DI vs Java\n\n|    | **[Boost].DI** | **Guice** | **Dagger2** |\n| ------------------- | ------------ | ---------------- | ------------- |\n| Language    | C++14    | Java | Java |\n| Errors      | compile-time | exceptions (reflection) | compile-time (annotations) |\n| [Test - 64 unique types](http://boost-experimental.github.io/di/benchmarks/index.html) | | | |\n| Compilation time    | 0.376s       |  0.570s            | 1.411s        |\n| Execution time      | 0.002s       |  0.528s            | 0.157s        |\n\n----\n\n##Mocks Provider\n\n```cpp\ntemplate <class T>\nauto& mock() {\n  return fakeit::Mock<T>();\n}\n\nstruct mocks_provider {\n  template <class T, class... TArgs>\n  auto get(TArgs&&... args) const {\n    if constexpr(std::is_polymorphic<T>{} && !is_bound<T>{}) {\n      return mock<T>();\n    } else {\n      return make_unique<T>(std::forward<TArgs>(args)...);\n    }\n  }\n};\n```\n\n==============================================================================\n\n##TDD By Example\n\n----\n\n##Use Case\n\n> Let's put coffee to the test!\n\n![coffee_maker](images/coffee_maker.png)\n\n----\n\n##Making a brew Test\n\n```cpp\n\"brew should pump and heat water\"_test = [] {\n  // given\n  auto cm = di::make_injector().create<coffee_maker>();\n\n  // when\n  cm.brew();\n\n  // then\n  Verify(Method(mock<iheater>, on));\n  Verify(Method(mock<ipump>, pump));\n  Verify(Method(mock<iheater>, off));\n};\n```\n\n----\n\n##Coffee Maker?\n\n####Constructor (As Usual)\n```cpp\nstruct coffee_maker {                struct coffee_maker {\n  coffee_maker(iheater&, ipump&);      coffee_maker(ipump&, iheater&);\n  void brew();                         void brew();\n};                                   };\n\nstruct coffee_maker {\n  coffee_maker(\n    unique_ptr<ipump>,               etc...\n    const shared_ptr<iheater>&);\n  void brew();\n};\n```\n\n###With DI constructor types and its order doesn't matter! (Easy refactor)\n\n----\n\n##Interfaces/Mocks?\n\n####Interfaces (As usual)\n```cpp\nstruct iheater {\n  virtual ~iheater() noexcept = default;\n  virtual void on() = 0;\n  virtual void off() = 0;\n};\n\nstruct ipump {\n  virtual ~ipump() noexcept = default;\n  virtual void pump() = 0;\n};\n```\n\n###No mocks required!\n\n==============================================================================\n\n##BDD By Example\n\n----\n\n##Feature - Player plays match-3 game\n\n![game](images/game.png)\n\n----\n\n##Scenario - Player swipe items\n\n* GIVEN\n  * Player has 1 move left\n\n* WHEN\n  * Player swipe 2 items resulting in a match-3\n\n* THEN\n  * Player has no more moves\n  * Player see updated board\n\n----\n\n###Player swipe items test (Integration/Functional Tests)\n\n```cpp\n\"given player has 1 move, when player swipes then no moves\"_test = [] {\n  // given\n  const auto injector = di::make_injector<mocks_provider>(\n     di::bind<>.to(config{8/*width*/, 10/*height*/, 1/*moves*/})\n   , di::bind<board::colors_t[]>.to({3,5,1,4,3,2,2,...})\n  );\n  auto game = injector.create<Game>();\n```\n\n```cpp\n  // when\n  game.start();\n\n  // then\n  Verify(Method(mock<icanvas>, show_moves).Using(1);\n  Verify(Method(mock<icanvas>, show_board).Using({3,5,1,4,3,2,2,...});\n```\n\n```cpp\n  // when\n  game.swipe({3, 5}, {3, 6}); // a winning swipe\n\n  // then\n  Verify(Method(mock<icanvas>, show_moves).Using(0);\n  Verify(Method(mock<icanvas>, show_board).Using({5,2,1,1,4,2,2,...});\n};\n```\n\n----\n\n##DI - Wiring mess\n\n####Create a game (Simplified)\n```cpp\n Manual DI                                   | [Boost].DI\n---------------------------------------------+----------------------------------\n StrictMock<canvas_mock> canvas;             | auto game = di::make_injector(\n Config config{8, 10, 1};                    |   di::bind<>.to(config{8, 10, 1})\n Board board{config, {{3,5,1,4,3,2,2, ...}}};| ).create<Game>();\n Contoller controller{config, board};        |\n Game game{controller, canvas};              |\n```\n<!-- .element: style=\"margin-left:0%; width:100%\" -->\n\n----\n\n##DI - Wiring mess\n\n####Simple Refactor\n```cpp\nBoard(const config&, initializer_list<int>); -> Board(initializer_list<int>, const config&);\nGame(Contoller&, const icanvas&)             -> Game(const icanvas&, unique_ptr<Contoller>);\n```\n<!-- .element: style=\"margin-left:-10%; width:120%\" -->\n\n####Make a game\n```cpp\n Manual DI                                            | [Boost].DI (No changes required!)\n------------------------------------------------------+----------------------------------\n StrictMock<canvas_mock> canvas;                      |\n Config config{8, 10, 1};                             | auto game = di::make_injector(\n Board board{{{3,5,1,4,3,2,2, ...}}, config}; /*DIFF*/|   di::bind<>.to(config{8, 10, 1})\n auto controller =                                    | ).create<Game>(); // same old\n   make_unique<Contoller>(board, config); /*DIFF*/    |\n Game game{canvas, controller}; /*DIFF*/              |\n```\n<!-- .element: style=\"margin-left:-10%; width:120%\" -->\n\n==============================================================================\n\n##Summary\n\n----\n\n###Less work is better than more work\n> * Think scale\n> * Treat testing code as production code\n\n----\n\n###Potentially non-functional changes cause tests modifications\n\n> * Tedious/Boilerplate changes\n\n----\n\n###Wiring mess\n\n> * Boilerplate code\n  * Hard to maintain\n    * Order of initializing dependencies is important\n  * Usually leads into a bad design\n    * Breaks Single Responsibly Principle as it's easier to do a workaround\n\n==============================================================================\n\n##Questions?\n\n|   |   |\n| - | - |\n| [Boost].DI | https://github.com/boost-experimental/di |\n| FakeIt   | https://github.com/eranpeer/FakeIt |\n\n-\n\n> * [kris@jusiak.net](mailto:kris@jusiak.net)\n* [@krisjusiak](https://twitter.com/krisjusiak)\n* [linkedin.com/in/kris-jusiak](https://www.linkedin.com/in/kris-jusiak)\n\n==============================================================================\n\n##Bonus - Simplest test framework\n\n----\n\n###'Test Framework'\n\n####Implementation\n```cpp\ntemplate <char...>\nstruct test {\n  template <class Test>\n  auto operator=(const Test& test) { test(); return true; }\n};\n\n// GNU extension for now, maybe in C++20\ntemplate <class T, T... Chars>\nconstexpr auto operator\"\"_test() { return test<Chars...>{}; }\n```\n\n####Usage\n```cpp\n\"should be equal\"_test = [] {\n  assert(0 == 0);\n};\n\n\"should not be equal\"_test = [] {\n  assert(!(1 == 0));\n};\n```\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"lib/js/head.min.js\"></script>\n\t\t<script src=\"js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available at:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\n        // Display controls in the bottom right corner\n        controls: true,\n\n        // Display a presentation progress bar\n        progress: true,\n\n        // Display the page number of the current slide\n        slideNumber: true,\n\n        // Push each slide change to the browser history\n        history: true,\n\n        // Enable keyboard shortcuts for navigation\n        keyboard: true,\n\n        // Enable the slide overview mode\n        overview: true,\n\n        // Vertical centering of slides\n        center: true,\n\n        // Enables touch navigation on devices with touch input\n        touch: true,\n\n        // Loop the presentation\n        loop: false,\n\n        // Change the presentation direction to be RTL\n        rtl: false,\n\n        // Turns fragments on and off globally\n        fragments: false,\n\n        // Flags if the presentation is running in an embedded mode,\n        // i.e. contained within a limited portion of the screen\n        embedded: false,\n\n        // Flags if we should show a help overlay when the questionmark\n        // key is pressed\n        help: true,\n\n        // Flags if speaker notes should be visible to all viewers\n        showNotes: false,\n\n        // Number of milliseconds between automatically proceeding to the\n        // next slide, disabled when set to 0, this value can be overwritten\n        // by using a data-autoslide attribute on your slides\n        autoSlide: 0,\n\n        // Stop auto-sliding after user input\n        autoSlideStoppable: true,\n\n        // Enable slide navigation via mouse wheel\n        mouseWheel: true,\n\n        // Hides the address bar on mobile devices\n        hideAddressBar: true,\n\n        // Opens links in an iframe preview overlay\n        previewLinks: false,\n\n        // Transition style\n        transition: 'convex', // none/fade/slide/convex/concave/zoom\n\n        // Transition speed\n        transitionSpeed: 'default', // default/fast/slow\n\n        // Transition style for full page slide backgrounds\n        backgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n        // Number of slides away from the current that are visible\n        viewDistance: 3,\n\n        // Parallax background image\n        parallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n        // Parallax background size\n        parallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n        // Number of pixels to move the parallax background per slide\n        // - Calculated automatically unless specified\n        // - Set to 0 to disable movement along an axis\n        parallaxBackgroundHorizontal: null,\n        parallaxBackgroundVertical: null,\n\n\t\t\t\t// Optional reveal.js plugins\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\t\t\t\t\t{ src: 'plugin/notes/notes.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/js/reveal.js",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n(function( root, factory ) {\n\tif( typeof define === 'function' && define.amd ) {\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine( function() {\n\t\t\troot.Reveal = factory();\n\t\t\treturn root.Reveal;\n\t\t} );\n\t} else if( typeof exports === 'object' ) {\n\t\t// Node. Does not work with strict CommonJS.\n\t\tmodule.exports = factory();\n\t} else {\n\t\t// Browser globals.\n\t\troot.Reveal = factory();\n\t}\n}( this, function() {\n\n\t'use strict';\n\n\tvar Reveal;\n\n\tvar SLIDES_SELECTOR = '.slides section',\n\t\tHORIZONTAL_SLIDES_SELECTOR = '.slides>section',\n\t\tVERTICAL_SLIDES_SELECTOR = '.slides>section.present>section',\n\t\tHOME_SLIDE_SELECTOR = '.slides>section:first-of-type',\n\n\t\t// Configuration defaults, can be overridden at initialization time\n\t\tconfig = {\n\n\t\t\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t\t\t// when the presentation is scaled to fit different resolutions\n\t\t\twidth: 960,\n\t\t\theight: 700,\n\n\t\t\t// Factor of the display size that should remain empty around the content\n\t\t\tmargin: 0.1,\n\n\t\t\t// Bounds for smallest/largest possible scale to apply to content\n\t\t\tminScale: 0.2,\n\t\t\tmaxScale: 1.5,\n\n\t\t\t// Display controls in the bottom right corner\n\t\t\tcontrols: true,\n\n\t\t\t// Display a presentation progress bar\n\t\t\tprogress: true,\n\n\t\t\t// Display the page number of the current slide\n\t\t\tslideNumber: false,\n\n\t\t\t// Push each slide change to the browser history\n\t\t\thistory: false,\n\n\t\t\t// Enable keyboard shortcuts for navigation\n\t\t\tkeyboard: true,\n\n\t\t\t// Optional function that blocks keyboard events when retuning false\n\t\t\tkeyboardCondition: null,\n\n\t\t\t// Enable the slide overview mode\n\t\t\toverview: true,\n\n\t\t\t// Vertical centering of slides\n\t\t\tcenter: true,\n\n\t\t\t// Enables touch navigation on devices with touch input\n\t\t\ttouch: true,\n\n\t\t\t// Loop the presentation\n\t\t\tloop: false,\n\n\t\t\t// Change the presentation direction to be RTL\n\t\t\trtl: false,\n\n\t\t\t// Turns fragments on and off globally\n\t\t\tfragments: true,\n\n\t\t\t// Flags if the presentation is running in an embedded mode,\n\t\t\t// i.e. contained within a limited portion of the screen\n\t\t\tembedded: false,\n\n\t\t\t// Flags if we should show a help overlay when the questionmark\n\t\t\t// key is pressed\n\t\t\thelp: true,\n\n\t\t\t// Flags if it should be possible to pause the presentation (blackout)\n\t\t\tpause: true,\n\n\t\t\t// Flags if speaker notes should be visible to all viewers\n\t\t\tshowNotes: false,\n\n\t\t\t// Number of milliseconds between automatically proceeding to the\n\t\t\t// next slide, disabled when set to 0, this value can be overwritten\n\t\t\t// by using a data-autoslide attribute on your slides\n\t\t\tautoSlide: 0,\n\n\t\t\t// Stop auto-sliding after user input\n\t\t\tautoSlideStoppable: true,\n\n\t\t\t// Enable slide navigation via mouse wheel\n\t\t\tmouseWheel: false,\n\n\t\t\t// Apply a 3D roll to links on hover\n\t\t\trollingLinks: false,\n\n\t\t\t// Hides the address bar on mobile devices\n\t\t\thideAddressBar: true,\n\n\t\t\t// Opens links in an iframe preview overlay\n\t\t\tpreviewLinks: false,\n\n\t\t\t// Exposes the reveal.js API through window.postMessage\n\t\t\tpostMessage: true,\n\n\t\t\t// Dispatches all reveal.js events to the parent window through postMessage\n\t\t\tpostMessageEvents: false,\n\n\t\t\t// Focuses body when page changes visiblity to ensure keyboard shortcuts work\n\t\t\tfocusBodyOnPageVisibilityChange: true,\n\n\t\t\t// Transition style\n\t\t\ttransition: 'slide', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Transition speed\n\t\t\ttransitionSpeed: 'default', // default/fast/slow\n\n\t\t\t// Transition style for full page slide backgrounds\n\t\t\tbackgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Parallax background image\n\t\t\tparallaxBackgroundImage: '', // CSS syntax, e.g. \"a.jpg\"\n\n\t\t\t// Parallax background size\n\t\t\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"3000px 2000px\"\n\n\t\t\t// Amount of pixels to move the parallax background per slide step\n\t\t\tparallaxBackgroundHorizontal: null,\n\t\t\tparallaxBackgroundVertical: null,\n\n\t\t\t// Number of slides away from the current that are visible\n\t\t\tviewDistance: 3,\n\n\t\t\t// Script dependencies to load\n\t\t\tdependencies: []\n\n\t\t},\n\n\t\t// Flags if reveal.js is loaded (has dispatched the 'ready' event)\n\t\tloaded = false,\n\n\t\t// Flags if the overview mode is currently active\n\t\toverview = false,\n\n\t\t// The horizontal and vertical index of the currently active slide\n\t\tindexh,\n\t\tindexv,\n\n\t\t// The previous and current slide HTML elements\n\t\tpreviousSlide,\n\t\tcurrentSlide,\n\n\t\tpreviousBackground,\n\n\t\t// Slides may hold a data-state attribute which we pick up and apply\n\t\t// as a class to the body. This list contains the combined state of\n\t\t// all current slides.\n\t\tstate = [],\n\n\t\t// The current scale of the presentation (see width/height config)\n\t\tscale = 1,\n\n\t\t// CSS transform that is currently applied to the slides container,\n\t\t// split into two groups\n\t\tslidesTransform = { layout: '', overview: '' },\n\n\t\t// Cached references to DOM elements\n\t\tdom = {},\n\n\t\t// Features supported by the browser, see #checkCapabilities()\n\t\tfeatures = {},\n\n\t\t// Client is a mobile device, see #checkCapabilities()\n\t\tisMobileDevice,\n\n\t\t// Throttles mouse wheel navigation\n\t\tlastMouseWheelStep = 0,\n\n\t\t// Delays updates to the URL due to a Chrome thumbnailer bug\n\t\twriteURLTimeout = 0,\n\n\t\t// Flags if the interaction event listeners are bound\n\t\teventsAreBound = false,\n\n\t\t// The current auto-slide duration\n\t\tautoSlide = 0,\n\n\t\t// Auto slide properties\n\t\tautoSlidePlayer,\n\t\tautoSlideTimeout = 0,\n\t\tautoSlideStartTime = -1,\n\t\tautoSlidePaused = false,\n\n\t\t// Holds information about the currently ongoing touch input\n\t\ttouch = {\n\t\t\tstartX: 0,\n\t\t\tstartY: 0,\n\t\t\tstartSpan: 0,\n\t\t\tstartCount: 0,\n\t\t\tcaptured: false,\n\t\t\tthreshold: 40\n\t\t},\n\n\t\t// Holds information about the keyboard shortcuts\n\t\tkeyboardShortcuts = {\n\t\t\t'N  ,  SPACE':\t\t\t'Next slide',\n\t\t\t'P':\t\t\t\t\t'Previous slide',\n\t\t\t'&#8592;  ,  H':\t\t'Navigate left',\n\t\t\t'&#8594;  ,  L':\t\t'Navigate right',\n\t\t\t'&#8593;  ,  K':\t\t'Navigate up',\n\t\t\t'&#8595;  ,  J':\t\t'Navigate down',\n\t\t\t'Home':\t\t\t\t\t'First slide',\n\t\t\t'End':\t\t\t\t\t'Last slide',\n\t\t\t'B  ,  .':\t\t\t\t'Pause',\n\t\t\t'F':\t\t\t\t\t'Fullscreen',\n\t\t\t'ESC, O':\t\t\t\t'Slide overview'\n\t\t};\n\n\t/**\n\t * Starts up the presentation if the client is capable.\n\t */\n\tfunction initialize( options ) {\n\n\t\tcheckCapabilities();\n\n\t\tif( !features.transforms2d && !features.transforms3d ) {\n\t\t\tdocument.body.setAttribute( 'class', 'no-transforms' );\n\n\t\t\t// Since JS won't be running any further, we load all lazy\n\t\t\t// loading elements upfront\n\t\t\tvar images = toArray( document.getElementsByTagName( 'img' ) ),\n\t\t\t\tiframes = toArray( document.getElementsByTagName( 'iframe' ) );\n\n\t\t\tvar lazyLoadable = images.concat( iframes );\n\n\t\t\tfor( var i = 0, len = lazyLoadable.length; i < len; i++ ) {\n\t\t\t\tvar element = lazyLoadable[i];\n\t\t\t\tif( element.getAttribute( 'data-src' ) ) {\n\t\t\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\t\t\telement.removeAttribute( 'data-src' );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If the browser doesn't support core features we won't be\n\t\t\t// using JavaScript to control the presentation\n\t\t\treturn;\n\t\t}\n\n\t\t// Cache references to key DOM elements\n\t\tdom.wrapper = document.querySelector( '.reveal' );\n\t\tdom.slides = document.querySelector( '.reveal .slides' );\n\n\t\t// Force a layout when the whole page, incl fonts, has loaded\n\t\twindow.addEventListener( 'load', layout, false );\n\n\t\tvar query = Reveal.getQueryHash();\n\n\t\t// Do not accept new dependencies via query config to avoid\n\t\t// the potential of malicious script injection\n\t\tif( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies'];\n\n\t\t// Copy options over to our config object\n\t\textend( config, options );\n\t\textend( config, query );\n\n\t\t// Hide the address bar in mobile browsers\n\t\thideAddressBar();\n\n\t\t// Loads the dependencies and continues to #start() once done\n\t\tload();\n\n\t}\n\n\t/**\n\t * Inspect the client to see what it's capable of, this\n\t * should only happens once per runtime.\n\t */\n\tfunction checkCapabilities() {\n\n\t\tfeatures.transforms3d = 'WebkitPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'msPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'OPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'perspective' in document.body.style;\n\n\t\tfeatures.transforms2d = 'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\t\tfeatures.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;\n\t\tfeatures.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function';\n\n\t\tfeatures.canvas = !!document.createElement( 'canvas' ).getContext;\n\n\t\tfeatures.touch = !!( 'ontouchstart' in window );\n\n\t\t// Transitions in the overview are disabled in desktop and\n\t\t// mobile Safari due to lag\n\t\tfeatures.overviewTransitions = !/Version\\/[\\d\\.]+.*Safari/.test( navigator.userAgent );\n\n\t\tisMobileDevice = /(iphone|ipod|ipad|android)/gi.test( navigator.userAgent );\n\n\t}\n\n    /**\n     * Loads the dependencies of reveal.js. Dependencies are\n     * defined via the configuration option 'dependencies'\n     * and will be loaded prior to starting/binding reveal.js.\n     * Some dependencies may have an 'async' flag, if so they\n     * will load after reveal.js has been started up.\n     */\n\tfunction load() {\n\n\t\tvar scripts = [],\n\t\t\tscriptsAsync = [],\n\t\t\tscriptsToPreload = 0;\n\n\t\t// Called once synchronous scripts finish loading\n\t\tfunction proceed() {\n\t\t\tif( scriptsAsync.length ) {\n\t\t\t\t// Load asynchronous scripts\n\t\t\t\thead.js.apply( null, scriptsAsync );\n\t\t\t}\n\n\t\t\tstart();\n\t\t}\n\n\t\tfunction loadScript( s ) {\n\t\t\thead.ready( s.src.match( /([\\w\\d_\\-]*)\\.?js$|[^\\\\\\/]*$/i )[0], function() {\n\t\t\t\t// Extension may contain callback functions\n\t\t\t\tif( typeof s.callback === 'function' ) {\n\t\t\t\t\ts.callback.apply( this );\n\t\t\t\t}\n\n\t\t\t\tif( --scriptsToPreload === 0 ) {\n\t\t\t\t\tproceed();\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfor( var i = 0, len = config.dependencies.length; i < len; i++ ) {\n\t\t\tvar s = config.dependencies[i];\n\n\t\t\t// Load if there's no condition or the condition is truthy\n\t\t\tif( !s.condition || s.condition() ) {\n\t\t\t\tif( s.async ) {\n\t\t\t\t\tscriptsAsync.push( s.src );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tscripts.push( s.src );\n\t\t\t\t}\n\n\t\t\t\tloadScript( s );\n\t\t\t}\n\t\t}\n\n\t\tif( scripts.length ) {\n\t\t\tscriptsToPreload = scripts.length;\n\n\t\t\t// Load synchronous scripts\n\t\t\thead.js.apply( null, scripts );\n\t\t}\n\t\telse {\n\t\t\tproceed();\n\t\t}\n\n\t}\n\n\t/**\n\t * Starts up reveal.js by binding input events and navigating\n\t * to the current URL deeplink if there is one.\n\t */\n\tfunction start() {\n\n\t\t// Make sure we've got all the DOM elements we need\n\t\tsetupDOM();\n\n\t\t// Listen to messages posted to this window\n\t\tsetupPostMessage();\n\n\t\t// Prevent iframes from scrolling the slides out of view\n\t\tsetupIframeScrollPrevention();\n\n\t\t// Resets all vertical slides so that only the first is visible\n\t\tresetVerticalSlides();\n\n\t\t// Updates the presentation to match the current configuration values\n\t\tconfigure();\n\n\t\t// Read the initial hash\n\t\treadURL();\n\n\t\t// Update all backgrounds\n\t\tupdateBackground( true );\n\n\t\t// Notify listeners that the presentation is ready but use a 1ms\n\t\t// timeout to ensure it's not fired synchronously after #initialize()\n\t\tsetTimeout( function() {\n\t\t\t// Enable transitions now that we're loaded\n\t\t\tdom.slides.classList.remove( 'no-transition' );\n\n\t\t\tloaded = true;\n\n\t\t\tdispatchEvent( 'ready', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\t\t}, 1 );\n\n\t\t// Special setup and config is required when printing to PDF\n\t\tif( isPrintingPDF() ) {\n\t\t\tremoveEventListeners();\n\n\t\t\t// The document needs to have loaded for the PDF layout\n\t\t\t// measurements to be accurate\n\t\t\tif( document.readyState === 'complete' ) {\n\t\t\t\tsetupPDF();\n\t\t\t}\n\t\t\telse {\n\t\t\t\twindow.addEventListener( 'load', setupPDF );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Finds and stores references to DOM elements which are\n\t * required by the presentation. If a required element is\n\t * not found, it is created.\n\t */\n\tfunction setupDOM() {\n\n\t\t// Prevent transitions while we're loading\n\t\tdom.slides.classList.add( 'no-transition' );\n\n\t\t// Background element\n\t\tdom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null );\n\n\t\t// Progress bar\n\t\tdom.progress = createSingletonNode( dom.wrapper, 'div', 'progress', '<span></span>' );\n\t\tdom.progressbar = dom.progress.querySelector( 'span' );\n\n\t\t// Arrow controls\n\t\tcreateSingletonNode( dom.wrapper, 'aside', 'controls',\n\t\t\t'<button class=\"navigate-left\" aria-label=\"previous slide\"></button>' +\n\t\t\t'<button class=\"navigate-right\" aria-label=\"next slide\"></button>' +\n\t\t\t'<button class=\"navigate-up\" aria-label=\"above slide\"></button>' +\n\t\t\t'<button class=\"navigate-down\" aria-label=\"below slide\"></button>' );\n\n\t\t// Slide number\n\t\tdom.slideNumber = createSingletonNode( dom.wrapper, 'div', 'slide-number', '' );\n\n\t\t// Element containing notes that are visible to the audience\n\t\tdom.speakerNotes = createSingletonNode( dom.wrapper, 'div', 'speaker-notes', null );\n\t\tdom.speakerNotes.setAttribute( 'data-prevent-swipe', '' );\n\n\t\t// Overlay graphic which is displayed during the paused mode\n\t\tcreateSingletonNode( dom.wrapper, 'div', 'pause-overlay', null );\n\n\t\t// Cache references to elements\n\t\tdom.controls = document.querySelector( '.reveal .controls' );\n\t\tdom.theme = document.querySelector( '#theme' );\n\n\t\tdom.wrapper.setAttribute( 'role', 'application' );\n\n\t\t// There can be multiple instances of controls throughout the page\n\t\tdom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );\n\t\tdom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) );\n\t\tdom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );\n\t\tdom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) );\n\t\tdom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) );\n\t\tdom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );\n\n\t\tdom.statusDiv = createStatusDiv();\n\t}\n\n\t/**\n\t * Creates a hidden div with role aria-live to announce the\n\t * current slide content. Hide the div off-screen to make it\n\t * available only to Assistive Technologies.\n\t */\n\tfunction createStatusDiv() {\n\n\t\tvar statusDiv = document.getElementById( 'aria-status-div' );\n\t\tif( !statusDiv ) {\n\t\t\tstatusDiv = document.createElement( 'div' );\n\t\t\tstatusDiv.style.position = 'absolute';\n\t\t\tstatusDiv.style.height = '1px';\n\t\t\tstatusDiv.style.width = '1px';\n\t\t\tstatusDiv.style.overflow ='hidden';\n\t\t\tstatusDiv.style.clip = 'rect( 1px, 1px, 1px, 1px )';\n\t\t\tstatusDiv.setAttribute( 'id', 'aria-status-div' );\n\t\t\tstatusDiv.setAttribute( 'aria-live', 'polite' );\n\t\t\tstatusDiv.setAttribute( 'aria-atomic','true' );\n\t\t\tdom.wrapper.appendChild( statusDiv );\n\t\t}\n\t\treturn statusDiv;\n\n\t}\n\n\t/**\n\t * Configures the presentation for printing to a static\n\t * PDF.\n\t */\n\tfunction setupPDF() {\n\n\t\tvar slideSize = getComputedSlideSize( window.innerWidth, window.innerHeight );\n\n\t\t// Dimensions of the PDF pages\n\t\tvar pageWidth = Math.floor( slideSize.width * ( 1 + config.margin ) ),\n\t\t\tpageHeight = Math.floor( slideSize.height * ( 1 + config.margin  ) );\n\n\t\t// Dimensions of slides within the pages\n\t\tvar slideWidth = slideSize.width,\n\t\t\tslideHeight = slideSize.height;\n\n\t\t// Let the browser know what page size we want to print\n\t\tinjectStyleSheet( '@page{size:'+ pageWidth +'px '+ pageHeight +'px; margin: 0;}' );\n\n\t\t// Limit the size of certain elements to the dimensions of the slide\n\t\tinjectStyleSheet( '.reveal section>img, .reveal section>video, .reveal section>iframe{max-width: '+ slideWidth +'px; max-height:'+ slideHeight +'px}' );\n\n\t\tdocument.body.classList.add( 'print-pdf' );\n\t\tdocument.body.style.width = pageWidth + 'px';\n\t\tdocument.body.style.height = pageHeight + 'px';\n\n\t\t// Add each slide's index as attributes on itself, we need these\n\t\t// indices to generate slide numbers below\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\n\t\t// Slide and slide background layout\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\n\t\t\t// Vertical stacks are not centred since their section\n\t\t\t// children will be\n\t\t\tif( slide.classList.contains( 'stack' ) === false ) {\n\t\t\t\t// Center the slide inside of the page, giving the slide some margin\n\t\t\t\tvar left = ( pageWidth - slideWidth ) / 2,\n\t\t\t\t\ttop = ( pageHeight - slideHeight ) / 2;\n\n\t\t\t\tvar contentHeight = getAbsoluteHeight( slide );\n\t\t\t\tvar numberOfPages = Math.max( Math.ceil( contentHeight / pageHeight ), 1 );\n\n\t\t\t\t// Center slides vertically\n\t\t\t\tif( numberOfPages === 1 && config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\ttop = Math.max( ( pageHeight - contentHeight ) / 2, 0 );\n\t\t\t\t}\n\n\t\t\t\t// Position the slide inside of the page\n\t\t\t\tslide.style.left = left + 'px';\n\t\t\t\tslide.style.top = top + 'px';\n\t\t\t\tslide.style.width = slideWidth + 'px';\n\n\t\t\t\t// TODO Backgrounds need to be multiplied when the slide\n\t\t\t\t// stretches over multiple pages\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background ) {\n\t\t\t\t\tbackground.style.width = pageWidth + 'px';\n\t\t\t\t\tbackground.style.height = ( pageHeight * numberOfPages ) + 'px';\n\t\t\t\t\tbackground.style.top = -top + 'px';\n\t\t\t\t\tbackground.style.left = -left + 'px';\n\t\t\t\t}\n\n\t\t\t\t// Inject notes if `showNotes` is enabled\n\t\t\t\tif( config.showNotes ) {\n\t\t\t\t\tvar notes = getSlideNotes( slide );\n\t\t\t\t\tif( notes ) {\n\t\t\t\t\t\tvar notesSpacing = 8;\n\t\t\t\t\t\tvar notesElement = document.createElement( 'div' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes-pdf' );\n\t\t\t\t\t\tnotesElement.innerHTML = notes;\n\t\t\t\t\t\tnotesElement.style.left = ( notesSpacing - left ) + 'px';\n\t\t\t\t\t\tnotesElement.style.bottom = ( notesSpacing - top ) + 'px';\n\t\t\t\t\t\tnotesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px';\n\t\t\t\t\t\tslide.appendChild( notesElement );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Inject slide numbers if `slideNumbers` are enabled\n\t\t\t\tif( config.slideNumber ) {\n\t\t\t\t\tvar slideNumberH = parseInt( slide.getAttribute( 'data-index-h' ), 10 ) + 1,\n\t\t\t\t\t\tslideNumberV = parseInt( slide.getAttribute( 'data-index-v' ), 10 ) + 1;\n\n\t\t\t\t\tvar numberElement = document.createElement( 'div' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number-pdf' );\n\t\t\t\t\tnumberElement.innerHTML = formatSlideNumber( slideNumberH, '.', slideNumberV );\n\t\t\t\t\tbackground.appendChild( numberElement );\n\t\t\t\t}\n\t\t\t}\n\n\t\t} );\n\n\t\t// Show all fragments\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' .fragment' ) ).forEach( function( fragment ) {\n\t\t\tfragment.classList.add( 'visible' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * This is an unfortunate necessity. Iframes can trigger the\n\t * parent window to scroll, for example by focusing an input.\n\t * This scrolling can not be prevented by hiding overflow in\n\t * CSS so we have to resort to repeatedly checking if the\n\t * browser has decided to offset our slides :(\n\t */\n\tfunction setupIframeScrollPrevention() {\n\n\t\tif( dom.slides.querySelector( 'iframe' ) ) {\n\t\t\tsetInterval( function() {\n\t\t\t\tif( dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) {\n\t\t\t\t\tdom.wrapper.scrollTop = 0;\n\t\t\t\t\tdom.wrapper.scrollLeft = 0;\n\t\t\t\t}\n\t\t\t}, 500 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates an HTML element and returns a reference to it.\n\t * If the element already exists the existing instance will\n\t * be returned.\n\t */\n\tfunction createSingletonNode( container, tagname, classname, innerHTML ) {\n\n\t\t// Find all nodes matching the description\n\t\tvar nodes = container.querySelectorAll( '.' + classname );\n\n\t\t// Check all matches to find one which is a direct child of\n\t\t// the specified container\n\t\tfor( var i = 0; i < nodes.length; i++ ) {\n\t\t\tvar testNode = nodes[i];\n\t\t\tif( testNode.parentNode === container ) {\n\t\t\t\treturn testNode;\n\t\t\t}\n\t\t}\n\n\t\t// If no node was found, create it now\n\t\tvar node = document.createElement( tagname );\n\t\tnode.classList.add( classname );\n\t\tif( typeof innerHTML === 'string' ) {\n\t\t\tnode.innerHTML = innerHTML;\n\t\t}\n\t\tcontainer.appendChild( node );\n\n\t\treturn node;\n\n\t}\n\n\t/**\n\t * Creates the slide background elements and appends them\n\t * to the background container. One element is created per\n\t * slide no matter if the given slide has visible background.\n\t */\n\tfunction createBackgrounds() {\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\t// Clear prior backgrounds\n\t\tdom.background.innerHTML = '';\n\t\tdom.background.classList.add( 'no-transition' );\n\n\t\t// Iterate over all horizontal slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( slideh ) {\n\n\t\t\tvar backgroundStack;\n\n\t\t\tif( printMode ) {\n\t\t\t\tbackgroundStack = createBackground( slideh, slideh );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundStack = createBackground( slideh, dom.background );\n\t\t\t}\n\n\t\t\t// Iterate over all vertical slides\n\t\t\ttoArray( slideh.querySelectorAll( 'section' ) ).forEach( function( slidev ) {\n\n\t\t\t\tif( printMode ) {\n\t\t\t\t\tcreateBackground( slidev, slidev );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tcreateBackground( slidev, backgroundStack );\n\t\t\t\t}\n\n\t\t\t\tbackgroundStack.classList.add( 'stack' );\n\n\t\t\t} );\n\n\t\t} );\n\n\t\t// Add parallax background if specified\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tdom.background.style.backgroundImage = 'url(\"' + config.parallaxBackgroundImage + '\")';\n\t\t\tdom.background.style.backgroundSize = config.parallaxBackgroundSize;\n\n\t\t\t// Make sure the below properties are set on the element - these properties are\n\t\t\t// needed for proper transitions to be set on the element via CSS. To remove\n\t\t\t// annoying background slide-in effect when the presentation starts, apply\n\t\t\t// these properties after short time delay\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.wrapper.classList.add( 'has-parallax-background' );\n\t\t\t}, 1 );\n\n\t\t}\n\t\telse {\n\n\t\t\tdom.background.style.backgroundImage = '';\n\t\t\tdom.wrapper.classList.remove( 'has-parallax-background' );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates a background for the given slide.\n\t *\n\t * @param {HTMLElement} slide\n\t * @param {HTMLElement} container The element that the background\n\t * should be appended to\n\t */\n\tfunction createBackground( slide, container ) {\n\n\t\tvar data = {\n\t\t\tbackground: slide.getAttribute( 'data-background' ),\n\t\t\tbackgroundSize: slide.getAttribute( 'data-background-size' ),\n\t\t\tbackgroundImage: slide.getAttribute( 'data-background-image' ),\n\t\t\tbackgroundVideo: slide.getAttribute( 'data-background-video' ),\n\t\t\tbackgroundIframe: slide.getAttribute( 'data-background-iframe' ),\n\t\t\tbackgroundColor: slide.getAttribute( 'data-background-color' ),\n\t\t\tbackgroundRepeat: slide.getAttribute( 'data-background-repeat' ),\n\t\t\tbackgroundPosition: slide.getAttribute( 'data-background-position' ),\n\t\t\tbackgroundTransition: slide.getAttribute( 'data-background-transition' )\n\t\t};\n\n\t\tvar element = document.createElement( 'div' );\n\n\t\t// Carry over custom classes from the slide to the background\n\t\telement.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' );\n\n\t\tif( data.background ) {\n\t\t\t// Auto-wrap image urls in url(...)\n\t\t\tif( /^(http|file|\\/\\/)/gi.test( data.background ) || /\\.(svg|png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) {\n\t\t\t\tslide.setAttribute( 'data-background-image', data.background );\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.background = data.background;\n\t\t\t}\n\t\t}\n\n\t\t// Create a hash for this combination of background settings.\n\t\t// This is used to determine when two slide backgrounds are\n\t\t// the same.\n\t\tif( data.background || data.backgroundColor || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) {\n\t\t\telement.setAttribute( 'data-background-hash', data.background +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundSize +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundImage +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundVideo +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundIframe +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundColor +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundRepeat +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundPosition +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundTransition );\n\t\t}\n\n\t\t// Additional and optional background properties\n\t\tif( data.backgroundSize ) element.style.backgroundSize = data.backgroundSize;\n\t\tif( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;\n\t\tif( data.backgroundRepeat ) element.style.backgroundRepeat = data.backgroundRepeat;\n\t\tif( data.backgroundPosition ) element.style.backgroundPosition = data.backgroundPosition;\n\t\tif( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );\n\n\t\tcontainer.appendChild( element );\n\n\t\t// If backgrounds are being recreated, clear old classes\n\t\tslide.classList.remove( 'has-dark-background' );\n\t\tslide.classList.remove( 'has-light-background' );\n\n\t\t// If this slide has a background color, add a class that\n\t\t// signals if it is light or dark. If the slide has no background\n\t\t// color, no class will be set\n\t\tvar computedBackgroundColor = window.getComputedStyle( element ).backgroundColor;\n\t\tif( computedBackgroundColor ) {\n\t\t\tvar rgb = colorToRgb( computedBackgroundColor );\n\n\t\t\t// Ignore fully transparent backgrounds. Some browsers return\n\t\t\t// rgba(0,0,0,0) when reading the computed background color of\n\t\t\t// an element with no background\n\t\t\tif( rgb && rgb.a !== 0 ) {\n\t\t\t\tif( colorBrightness( computedBackgroundColor ) < 128 ) {\n\t\t\t\t\tslide.classList.add( 'has-dark-background' );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.classList.add( 'has-light-background' );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn element;\n\n\t}\n\n\t/**\n\t * Registers a listener to postMessage events, this makes it\n\t * possible to call all reveal.js API methods from another\n\t * window. For example:\n\t *\n\t * revealWindow.postMessage( JSON.stringify({\n\t *   method: 'slide',\n\t *   args: [ 2 ]\n\t * }), '*' );\n\t */\n\tfunction setupPostMessage() {\n\n\t\tif( config.postMessage ) {\n\t\t\twindow.addEventListener( 'message', function ( event ) {\n\t\t\t\tvar data = event.data;\n\n\t\t\t\t// Make sure we're dealing with JSON\n\t\t\t\tif( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) {\n\t\t\t\t\tdata = JSON.parse( data );\n\n\t\t\t\t\t// Check if the requested method can be found\n\t\t\t\t\tif( data.method && typeof Reveal[data.method] === 'function' ) {\n\t\t\t\t\t\tReveal[data.method].apply( Reveal, data.args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies the configuration settings from the config\n\t * object. May be called multiple times.\n\t */\n\tfunction configure( options ) {\n\n\t\tvar numberOfSlides = dom.wrapper.querySelectorAll( SLIDES_SELECTOR ).length;\n\n\t\tdom.wrapper.classList.remove( config.transition );\n\n\t\t// New config options may be passed when this method\n\t\t// is invoked through the API after initialization\n\t\tif( typeof options === 'object' ) extend( config, options );\n\n\t\t// Force linear transition based on browser capabilities\n\t\tif( features.transforms3d === false ) config.transition = 'linear';\n\n\t\tdom.wrapper.classList.add( config.transition );\n\n\t\tdom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );\n\t\tdom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition );\n\n\t\tdom.controls.style.display = config.controls ? 'block' : 'none';\n\t\tdom.progress.style.display = config.progress ? 'block' : 'none';\n\t\tdom.slideNumber.style.display = config.slideNumber && !isPrintingPDF() ? 'block' : 'none';\n\n\t\tif( config.rtl ) {\n\t\t\tdom.wrapper.classList.add( 'rtl' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'rtl' );\n\t\t}\n\n\t\tif( config.center ) {\n\t\t\tdom.wrapper.classList.add( 'center' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'center' );\n\t\t}\n\n\t\t// Exit the paused mode if it was configured off\n\t\tif( config.pause === false ) {\n\t\t\tresume();\n\t\t}\n\n\t\tif( config.showNotes ) {\n\t\t\tdom.speakerNotes.classList.add( 'visible' );\n\t\t}\n\t\telse {\n\t\t\tdom.speakerNotes.classList.remove( 'visible' );\n\t\t}\n\n\t\tif( config.mouseWheel ) {\n\t\t\tdocument.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.addEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\t\telse {\n\t\t\tdocument.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\n\t\t// Rolling 3D links\n\t\tif( config.rollingLinks ) {\n\t\t\tenableRollingLinks();\n\t\t}\n\t\telse {\n\t\t\tdisableRollingLinks();\n\t\t}\n\n\t\t// Iframe link previews\n\t\tif( config.previewLinks ) {\n\t\t\tenablePreviewLinks();\n\t\t}\n\t\telse {\n\t\t\tdisablePreviewLinks();\n\t\t\tenablePreviewLinks( '[data-preview-link]' );\n\t\t}\n\n\t\t// Remove existing auto-slide controls\n\t\tif( autoSlidePlayer ) {\n\t\t\tautoSlidePlayer.destroy();\n\t\t\tautoSlidePlayer = null;\n\t\t}\n\n\t\t// Generate auto-slide controls if needed\n\t\tif( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) {\n\t\t\tautoSlidePlayer = new Playback( dom.wrapper, function() {\n\t\t\t\treturn Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 );\n\t\t\t} );\n\n\t\t\tautoSlidePlayer.on( 'click', onAutoSlidePlayerClick );\n\t\t\tautoSlidePaused = false;\n\t\t}\n\n\t\t// When fragments are turned off they should be visible\n\t\tif( config.fragments === false ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( '.fragment' ) ).forEach( function( element ) {\n\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t} );\n\t\t}\n\n\t\tsync();\n\n\t}\n\n\t/**\n\t * Binds all event listeners.\n\t */\n\tfunction addEventListeners() {\n\n\t\teventsAreBound = true;\n\n\t\twindow.addEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.addEventListener( 'resize', onWindowResize, false );\n\n\t\tif( config.touch ) {\n\t\t\tdom.wrapper.addEventListener( 'touchstart', onTouchStart, false );\n\t\t\tdom.wrapper.addEventListener( 'touchmove', onTouchMove, false );\n\t\t\tdom.wrapper.addEventListener( 'touchend', onTouchEnd, false );\n\n\t\t\t// Support pointer-style touch interaction as well\n\t\t\tif( window.navigator.pointerEnabled ) {\n\t\t\t\t// IE 11 uses un-prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'pointerdown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointermove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointerup', onPointerUp, false );\n\t\t\t}\n\t\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\t\t// IE 10 uses prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t\t}\n\t\t}\n\n\t\tif( config.keyboard ) {\n\t\t\tdocument.addEventListener( 'keydown', onDocumentKeyDown, false );\n\t\t\tdocument.addEventListener( 'keypress', onDocumentKeyPress, false );\n\t\t}\n\n\t\tif( config.progress && dom.progress ) {\n\t\t\tdom.progress.addEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\tif( config.focusBodyOnPageVisibilityChange ) {\n\t\t\tvar visibilityChange;\n\n\t\t\tif( 'hidden' in document ) {\n\t\t\t\tvisibilityChange = 'visibilitychange';\n\t\t\t}\n\t\t\telse if( 'msHidden' in document ) {\n\t\t\t\tvisibilityChange = 'msvisibilitychange';\n\t\t\t}\n\t\t\telse if( 'webkitHidden' in document ) {\n\t\t\t\tvisibilityChange = 'webkitvisibilitychange';\n\t\t\t}\n\n\t\t\tif( visibilityChange ) {\n\t\t\t\tdocument.addEventListener( visibilityChange, onPageVisibilityChange, false );\n\t\t\t}\n\t\t}\n\n\t\t// Listen to both touch and click events, in case the device\n\t\t// supports both\n\t\tvar pointerEvents = [ 'touchstart', 'click' ];\n\n\t\t// Only support touch for Android, fixes double navigations in\n\t\t// stock browser\n\t\tif( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tpointerEvents = [ 'touchstart' ];\n\t\t}\n\n\t\tpointerEvents.forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbinds all event listeners.\n\t */\n\tfunction removeEventListeners() {\n\n\t\teventsAreBound = false;\n\n\t\tdocument.removeEventListener( 'keydown', onDocumentKeyDown, false );\n\t\tdocument.removeEventListener( 'keypress', onDocumentKeyPress, false );\n\t\twindow.removeEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.removeEventListener( 'resize', onWindowResize, false );\n\n\t\tdom.wrapper.removeEventListener( 'touchstart', onTouchStart, false );\n\t\tdom.wrapper.removeEventListener( 'touchmove', onTouchMove, false );\n\t\tdom.wrapper.removeEventListener( 'touchend', onTouchEnd, false );\n\n\t\t// IE11\n\t\tif( window.navigator.pointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'pointerdown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointermove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointerup', onPointerUp, false );\n\t\t}\n\t\t// IE10\n\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t}\n\n\t\tif ( config.progress && dom.progress ) {\n\t\t\tdom.progress.removeEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\t[ 'touchstart', 'click' ].forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Extend object a with the properties of object b.\n\t * If there's a conflict, object b takes precedence.\n\t */\n\tfunction extend( a, b ) {\n\n\t\tfor( var i in b ) {\n\t\t\ta[ i ] = b[ i ];\n\t\t}\n\n\t}\n\n\t/**\n\t * Converts the target object to an array.\n\t */\n\tfunction toArray( o ) {\n\n\t\treturn Array.prototype.slice.call( o );\n\n\t}\n\n\t/**\n\t * Utility for deserializing a value.\n\t */\n\tfunction deserialize( value ) {\n\n\t\tif( typeof value === 'string' ) {\n\t\t\tif( value === 'null' ) return null;\n\t\t\telse if( value === 'true' ) return true;\n\t\t\telse if( value === 'false' ) return false;\n\t\t\telse if( value.match( /^\\d+$/ ) ) return parseFloat( value );\n\t\t}\n\n\t\treturn value;\n\n\t}\n\n\t/**\n\t * Measures the distance in pixels between point a\n\t * and point b.\n\t *\n\t * @param {Object} a point with x/y properties\n\t * @param {Object} b point with x/y properties\n\t */\n\tfunction distanceBetween( a, b ) {\n\n\t\tvar dx = a.x - b.x,\n\t\t\tdy = a.y - b.y;\n\n\t\treturn Math.sqrt( dx*dx + dy*dy );\n\n\t}\n\n\t/**\n\t * Applies a CSS transform to the target element.\n\t */\n\tfunction transformElement( element, transform ) {\n\n\t\telement.style.WebkitTransform = transform;\n\t\telement.style.MozTransform = transform;\n\t\telement.style.msTransform = transform;\n\t\telement.style.transform = transform;\n\n\t}\n\n\t/**\n\t * Applies CSS transforms to the slides container. The container\n\t * is transformed from two separate sources: layout and the overview\n\t * mode.\n\t */\n\tfunction transformSlides( transforms ) {\n\n\t\t// Pick up new transforms from arguments\n\t\tif( typeof transforms.layout === 'string' ) slidesTransform.layout = transforms.layout;\n\t\tif( typeof transforms.overview === 'string' ) slidesTransform.overview = transforms.overview;\n\n\t\t// Apply the transforms to the slides container\n\t\tif( slidesTransform.layout ) {\n\t\t\ttransformElement( dom.slides, slidesTransform.layout + ' ' + slidesTransform.overview );\n\t\t}\n\t\telse {\n\t\t\ttransformElement( dom.slides, slidesTransform.overview );\n\t\t}\n\n\t}\n\n\t/**\n\t * Injects the given CSS styles into the DOM.\n\t */\n\tfunction injectStyleSheet( value ) {\n\n\t\tvar tag = document.createElement( 'style' );\n\t\ttag.type = 'text/css';\n\t\tif( tag.styleSheet ) {\n\t\t\ttag.styleSheet.cssText = value;\n\t\t}\n\t\telse {\n\t\t\ttag.appendChild( document.createTextNode( value ) );\n\t\t}\n\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( tag );\n\n\t}\n\n\t/**\n\t * Converts various color input formats to an {r:0,g:0,b:0} object.\n\t *\n\t * @param {String} color The string representation of a color,\n\t * the following formats are supported:\n\t * - #000\n\t * - #000000\n\t * - rgb(0,0,0)\n\t */\n\tfunction colorToRgb( color ) {\n\n\t\tvar hex3 = color.match( /^#([0-9a-f]{3})$/i );\n\t\tif( hex3 && hex3[1] ) {\n\t\t\thex3 = hex3[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex3.charAt( 0 ), 16 ) * 0x11,\n\t\t\t\tg: parseInt( hex3.charAt( 1 ), 16 ) * 0x11,\n\t\t\t\tb: parseInt( hex3.charAt( 2 ), 16 ) * 0x11\n\t\t\t};\n\t\t}\n\n\t\tvar hex6 = color.match( /^#([0-9a-f]{6})$/i );\n\t\tif( hex6 && hex6[1] ) {\n\t\t\thex6 = hex6[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex6.substr( 0, 2 ), 16 ),\n\t\t\t\tg: parseInt( hex6.substr( 2, 2 ), 16 ),\n\t\t\t\tb: parseInt( hex6.substr( 4, 2 ), 16 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgb = color.match( /^rgb\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\)$/i );\n\t\tif( rgb ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgb[1], 10 ),\n\t\t\t\tg: parseInt( rgb[2], 10 ),\n\t\t\t\tb: parseInt( rgb[3], 10 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgba = color.match( /^rgba\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\,\\s*([\\d]+|[\\d]*.[\\d]+)\\s*\\)$/i );\n\t\tif( rgba ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgba[1], 10 ),\n\t\t\t\tg: parseInt( rgba[2], 10 ),\n\t\t\t\tb: parseInt( rgba[3], 10 ),\n\t\t\t\ta: parseFloat( rgba[4] )\n\t\t\t};\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Calculates brightness on a scale of 0-255.\n\t *\n\t * @param color See colorStringToRgb for supported formats.\n\t */\n\tfunction colorBrightness( color ) {\n\n\t\tif( typeof color === 'string' ) color = colorToRgb( color );\n\n\t\tif( color ) {\n\t\t\treturn ( color.r * 299 + color.g * 587 + color.b * 114 ) / 1000;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the height of the given element by looking\n\t * at the position and height of its immediate children.\n\t */\n\tfunction getAbsoluteHeight( element ) {\n\n\t\tvar height = 0;\n\n\t\tif( element ) {\n\t\t\tvar absoluteChildren = 0;\n\n\t\t\ttoArray( element.childNodes ).forEach( function( child ) {\n\n\t\t\t\tif( typeof child.offsetTop === 'number' && child.style ) {\n\t\t\t\t\t// Count # of abs children\n\t\t\t\t\tif( window.getComputedStyle( child ).position === 'absolute' ) {\n\t\t\t\t\t\tabsoluteChildren += 1;\n\t\t\t\t\t}\n\n\t\t\t\t\theight = Math.max( height, child.offsetTop + child.offsetHeight );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t// If there are no absolute children, use offsetHeight\n\t\t\tif( absoluteChildren === 0 ) {\n\t\t\t\theight = element.offsetHeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Returns the remaining height within the parent of the\n\t * target element.\n\t *\n\t * remaining height = [ configured parent height ] - [ current parent height ]\n\t */\n\tfunction getRemainingHeight( element, height ) {\n\n\t\theight = height || 0;\n\n\t\tif( element ) {\n\t\t\tvar newHeight, oldHeight = element.style.height;\n\n\t\t\t// Change the .stretch element height to 0 in order find the height of all\n\t\t\t// the other elements\n\t\t\telement.style.height = '0px';\n\t\t\tnewHeight = height - element.parentNode.offsetHeight;\n\n\t\t\t// Restore the old height, just in case\n\t\t\telement.style.height = oldHeight + 'px';\n\n\t\t\treturn newHeight;\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Checks if this instance is being used to print a PDF.\n\t */\n\tfunction isPrintingPDF() {\n\n\t\treturn ( /print-pdf/gi ).test( window.location.search );\n\n\t}\n\n\t/**\n\t * Hides the address bar if we're on a mobile device.\n\t */\n\tfunction hideAddressBar() {\n\n\t\tif( config.hideAddressBar && isMobileDevice ) {\n\t\t\t// Events that should trigger the address bar to hide\n\t\t\twindow.addEventListener( 'load', removeAddressBar, false );\n\t\t\twindow.addEventListener( 'orientationchange', removeAddressBar, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Causes the address bar to hide on mobile devices,\n\t * more vertical space ftw.\n\t */\n\tfunction removeAddressBar() {\n\n\t\tsetTimeout( function() {\n\t\t\twindow.scrollTo( 0, 1 );\n\t\t}, 10 );\n\n\t}\n\n\t/**\n\t * Dispatches an event of the specified type from the\n\t * reveal DOM element.\n\t */\n\tfunction dispatchEvent( type, args ) {\n\n\t\tvar event = document.createEvent( 'HTMLEvents', 1, 2 );\n\t\tevent.initEvent( type, true, true );\n\t\textend( event, args );\n\t\tdom.wrapper.dispatchEvent( event );\n\n\t\t// If we're in an iframe, post each reveal.js event to the\n\t\t// parent window. Used by the notes plugin\n\t\tif( config.postMessageEvents && window.parent !== window.self ) {\n\t\t\twindow.parent.postMessage( JSON.stringify({ namespace: 'reveal', eventName: type, state: getState() }), '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Wrap all links in 3D goodness.\n\t */\n\tfunction enableRollingLinks() {\n\n\t\tif( features.transforms3d && !( 'msPerspective' in document.body.style ) ) {\n\t\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a' );\n\n\t\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\t\tvar anchor = anchors[i];\n\n\t\t\t\tif( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {\n\t\t\t\t\tvar span = document.createElement('span');\n\t\t\t\t\tspan.setAttribute('data-title', anchor.text);\n\t\t\t\t\tspan.innerHTML = anchor.innerHTML;\n\n\t\t\t\t\tanchor.classList.add( 'roll' );\n\t\t\t\t\tanchor.innerHTML = '';\n\t\t\t\t\tanchor.appendChild(span);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Unwrap all 3D links.\n\t */\n\tfunction disableRollingLinks() {\n\n\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );\n\n\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\tvar anchor = anchors[i];\n\t\t\tvar span = anchor.querySelector( 'span' );\n\n\t\t\tif( span ) {\n\t\t\t\tanchor.classList.remove( 'roll' );\n\t\t\t\tanchor.innerHTML = span.innerHTML;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Bind preview frame links.\n\t */\n\tfunction enablePreviewLinks( selector ) {\n\n\t\tvar anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.addEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbind preview frame links.\n\t */\n\tfunction disablePreviewLinks() {\n\n\t\tvar anchors = toArray( document.querySelectorAll( 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.removeEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Opens a preview window for the target URL.\n\t */\n\tfunction showPreview( url ) {\n\n\t\tcloseOverlay();\n\n\t\tdom.overlay = document.createElement( 'div' );\n\t\tdom.overlay.classList.add( 'overlay' );\n\t\tdom.overlay.classList.add( 'overlay-preview' );\n\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\tdom.overlay.innerHTML = [\n\t\t\t'<header>',\n\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'<a class=\"external\" href=\"'+ url +'\" target=\"_blank\"><span class=\"icon\"></span></a>',\n\t\t\t'</header>',\n\t\t\t'<div class=\"spinner\"></div>',\n\t\t\t'<div class=\"viewport\">',\n\t\t\t\t'<iframe src=\"'+ url +'\"></iframe>',\n\t\t\t'</div>'\n\t\t].join('');\n\n\t\tdom.overlay.querySelector( 'iframe' ).addEventListener( 'load', function( event ) {\n\t\t\tdom.overlay.classList.add( 'loaded' );\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t\tevent.preventDefault();\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.external' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t}, false );\n\n\t\tsetTimeout( function() {\n\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Opens a overlay window with help material.\n\t */\n\tfunction showHelp() {\n\n\t\tif( config.help ) {\n\n\t\t\tcloseOverlay();\n\n\t\t\tdom.overlay = document.createElement( 'div' );\n\t\t\tdom.overlay.classList.add( 'overlay' );\n\t\t\tdom.overlay.classList.add( 'overlay-help' );\n\t\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\t\tvar html = '<p class=\"title\">Keyboard Shortcuts</p><br/>';\n\n\t\t\thtml += '<table><th>KEY</th><th>ACTION</th>';\n\t\t\tfor( var key in keyboardShortcuts ) {\n\t\t\t\thtml += '<tr><td>' + key + '</td><td>' + keyboardShortcuts[ key ] + '</td></tr>';\n\t\t\t}\n\n\t\t\thtml += '</table>';\n\n\t\t\tdom.overlay.innerHTML = [\n\t\t\t\t'<header>',\n\t\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'</header>',\n\t\t\t\t'<div class=\"viewport\">',\n\t\t\t\t\t'<div class=\"viewport-inner\">'+ html +'</div>',\n\t\t\t\t'</div>'\n\t\t\t].join('');\n\n\t\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\t\tcloseOverlay();\n\t\t\t\tevent.preventDefault();\n\t\t\t}, false );\n\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t\t}, 1 );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Closes any currently open overlay.\n\t */\n\tfunction closeOverlay() {\n\n\t\tif( dom.overlay ) {\n\t\t\tdom.overlay.parentNode.removeChild( dom.overlay );\n\t\t\tdom.overlay = null;\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies JavaScript-controlled layout rules to the\n\t * presentation.\n\t */\n\tfunction layout() {\n\n\t\tif( dom.wrapper && !isPrintingPDF() ) {\n\n\t\t\tvar size = getComputedSlideSize();\n\n\t\t\tvar slidePadding = 20; // TODO Dig this out of DOM\n\n\t\t\t// Layout the contents of the slides\n\t\t\tlayoutSlideContents( config.width, config.height, slidePadding );\n\n\t\t\tdom.slides.style.width = size.width + 'px';\n\t\t\tdom.slides.style.height = size.height + 'px';\n\n\t\t\t// Determine scale of content to fit within available space\n\t\t\tscale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height );\n\n\t\t\t// Respect max/min scale settings\n\t\t\tscale = Math.max( scale, config.minScale );\n\t\t\tscale = Math.min( scale, config.maxScale );\n\n\t\t\t// Don't apply any scaling styles if scale is 1\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\tdom.slides.style.left = '';\n\t\t\t\tdom.slides.style.top = '';\n\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\tdom.slides.style.right = '';\n\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Use zoom to scale up in desktop Chrome so that content\n\t\t\t\t// remains crisp. We don't use zoom to scale down since that\n\t\t\t\t// can lead to shifts in text layout/line breaks.\n\t\t\t\tif( scale > 1 && !isMobileDevice && /chrome/i.test( navigator.userAgent ) && typeof dom.slides.style.zoom !== 'undefined' ) {\n\t\t\t\t\tdom.slides.style.zoom = scale;\n\t\t\t\t\tdom.slides.style.left = '';\n\t\t\t\t\tdom.slides.style.top = '';\n\t\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\t\tdom.slides.style.right = '';\n\t\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t\t}\n\t\t\t\t// Apply scale transform as a fallback\n\t\t\t\telse {\n\t\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\t\tdom.slides.style.left = '50%';\n\t\t\t\t\tdom.slides.style.top = '50%';\n\t\t\t\t\tdom.slides.style.bottom = 'auto';\n\t\t\t\t\tdom.slides.style.right = 'auto';\n\t\t\t\t\ttransformSlides( { layout: 'translate(-50%, -50%) scale('+ scale +')' } );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Select all slides, vertical and horizontal\n\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) );\n\n\t\t\tfor( var i = 0, len = slides.length; i < len; i++ ) {\n\t\t\t\tvar slide = slides[ i ];\n\n\t\t\t\t// Don't bother updating invisible slides\n\t\t\t\tif( slide.style.display === 'none' ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\t// Vertical stacks are not centred since their section\n\t\t\t\t\t// children will be\n\t\t\t\t\tif( slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\t\tslide.style.top = 0;\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tslide.style.top = Math.max( ( ( size.height - getAbsoluteHeight( slide ) ) / 2 ) - slidePadding, 0 ) + 'px';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.style.top = '';\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tupdateProgress();\n\t\t\tupdateParallax();\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies layout logic to the contents of all slides in\n\t * the presentation.\n\t */\n\tfunction layoutSlideContents( width, height, padding ) {\n\n\t\t// Handle sizing of elements with the 'stretch' class\n\t\ttoArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) {\n\n\t\t\t// Determine how much vertical space we can use\n\t\t\tvar remainingHeight = getRemainingHeight( element, height );\n\n\t\t\t// Consider the aspect ratio of media elements\n\t\t\tif( /(img|video)/gi.test( element.nodeName ) ) {\n\t\t\t\tvar nw = element.naturalWidth || element.videoWidth,\n\t\t\t\t\tnh = element.naturalHeight || element.videoHeight;\n\n\t\t\t\tvar es = Math.min( width / nw, remainingHeight / nh );\n\n\t\t\t\telement.style.width = ( nw * es ) + 'px';\n\t\t\t\telement.style.height = ( nh * es ) + 'px';\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.width = width + 'px';\n\t\t\t\telement.style.height = remainingHeight + 'px';\n\t\t\t}\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Calculates the computed pixel size of our slides. These\n\t * values are based on the width and height configuration\n\t * options.\n\t */\n\tfunction getComputedSlideSize( presentationWidth, presentationHeight ) {\n\n\t\tvar size = {\n\t\t\t// Slide size\n\t\t\twidth: config.width,\n\t\t\theight: config.height,\n\n\t\t\t// Presentation size\n\t\t\tpresentationWidth: presentationWidth || dom.wrapper.offsetWidth,\n\t\t\tpresentationHeight: presentationHeight || dom.wrapper.offsetHeight\n\t\t};\n\n\t\t// Reduce available space by margin\n\t\tsize.presentationWidth -= ( size.presentationWidth * config.margin );\n\t\tsize.presentationHeight -= ( size.presentationHeight * config.margin );\n\n\t\t// Slide width may be a percentage of available width\n\t\tif( typeof size.width === 'string' && /%$/.test( size.width ) ) {\n\t\t\tsize.width = parseInt( size.width, 10 ) / 100 * size.presentationWidth;\n\t\t}\n\n\t\t// Slide height may be a percentage of available height\n\t\tif( typeof size.height === 'string' && /%$/.test( size.height ) ) {\n\t\t\tsize.height = parseInt( size.height, 10 ) / 100 * size.presentationHeight;\n\t\t}\n\n\t\treturn size;\n\n\t}\n\n\t/**\n\t * Stores the vertical index of a stack so that the same\n\t * vertical slide can be selected when navigating to and\n\t * from the stack.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t * @param {int} v Index to memorize\n\t */\n\tfunction setPreviousVerticalIndex( stack, v ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {\n\t\t\tstack.setAttribute( 'data-previous-indexv', v || 0 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the vertical index which was stored using\n\t * #setPreviousVerticalIndex() or 0 if no previous index\n\t * exists.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t */\n\tfunction getPreviousVerticalIndex( stack ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {\n\t\t\t// Prefer manually defined start-indexv\n\t\t\tvar attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv';\n\n\t\t\treturn parseInt( stack.getAttribute( attributeName ) || 0, 10 );\n\t\t}\n\n\t\treturn 0;\n\n\t}\n\n\t/**\n\t * Displays the overview of slides (quick nav) by scaling\n\t * down and arranging all slide elements.\n\t */\n\tfunction activateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview && !isOverview() ) {\n\n\t\t\toverview = true;\n\n\t\t\tdom.wrapper.classList.add( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\n\t\t\tif( features.overviewTransitions ) {\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tdom.wrapper.classList.add( 'overview-animated' );\n\t\t\t\t}, 1 );\n\t\t\t}\n\n\t\t\t// Don't auto-slide while in overview mode\n\t\t\tcancelAutoSlide();\n\n\t\t\t// Move the backgrounds element into the slide container to\n\t\t\t// that the same scaling is applied\n\t\t\tdom.slides.appendChild( dom.background );\n\n\t\t\t// Clicking on an overview slide navigates to it\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\tif( !slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\tslide.addEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tupdateSlidesVisibility();\n\t\t\tlayoutOverview();\n\t\t\tupdateOverview();\n\n\t\t\tlayout();\n\n\t\t\t// Notify observers of the overview showing\n\t\t\tdispatchEvent( 'overviewshown', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Uses CSS transforms to position all slides in a grid for\n\t * display inside of the overview mode.\n\t */\n\tfunction layoutOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\t// Layout slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\t\t\ttransformElement( hslide, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\n\t\t\t\t\ttransformElement( vslide, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t\t} );\n\n\t\t\t}\n\t\t} );\n\n\t\t// Layout slide backgrounds\n\t\ttoArray( dom.background.childNodes ).forEach( function( hbackground, h ) {\n\t\t\ttransformElement( hbackground, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\ttoArray( hbackground.querySelectorAll( '.slide-background' ) ).forEach( function( vbackground, v ) {\n\t\t\t\ttransformElement( vbackground, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Moves the overview viewport to the current slides.\n\t * Called each time the current slide changes.\n\t */\n\tfunction updateOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\ttransformSlides( {\n\t\t\toverview: [\n\t\t\t\t'translateX('+ ( -indexh * slideWidth ) +'px)',\n\t\t\t\t'translateY('+ ( -indexv * slideHeight ) +'px)',\n\t\t\t\t'translateZ('+ ( window.innerWidth < 400 ? -1000 : -2500 ) +'px)'\n\t\t\t].join( ' ' )\n\t\t} );\n\n\t}\n\n\t/**\n\t * Exits the slide overview and enters the currently\n\t * active slide.\n\t */\n\tfunction deactivateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview ) {\n\n\t\t\toverview = false;\n\n\t\t\tdom.wrapper.classList.remove( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-animated' );\n\n\t\t\t// Temporarily add a class so that transitions can do different things\n\t\t\t// depending on whether they are exiting/entering overview, or just\n\t\t\t// moving from slide to slide\n\t\t\tdom.wrapper.classList.add( 'overview-deactivating' );\n\n\t\t\tsetTimeout( function () {\n\t\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\t\t\t}, 1 );\n\n\t\t\t// Move the background element back out\n\t\t\tdom.wrapper.appendChild( dom.background );\n\n\t\t\t// Clean up changes made to slides\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\ttransformElement( slide, '' );\n\n\t\t\t\tslide.removeEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t} );\n\n\t\t\t// Clean up changes made to backgrounds\n\t\t\ttoArray( dom.background.querySelectorAll( '.slide-background' ) ).forEach( function( background ) {\n\t\t\t\ttransformElement( background, '' );\n\t\t\t} );\n\n\t\t\ttransformSlides( { overview: '' } );\n\n\t\t\tslide( indexh, indexv );\n\n\t\t\tlayout();\n\n\t\t\tcueAutoSlide();\n\n\t\t\t// Notify observers of the overview hiding\n\t\t\tdispatchEvent( 'overviewhidden', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\t}\n\n\t/**\n\t * Toggles the slide overview mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which overrides the\n\t * toggle logic and forcibly sets the desired state. True means\n\t * overview is open, false means it's closed.\n\t */\n\tfunction toggleOverview( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? activateOverview() : deactivateOverview();\n\t\t}\n\t\telse {\n\t\t\tisOverview() ? deactivateOverview() : activateOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the overview is currently active.\n\t *\n\t * @return {Boolean} true if the overview is active,\n\t * false otherwise\n\t */\n\tfunction isOverview() {\n\n\t\treturn overview;\n\n\t}\n\n\t/**\n\t * Checks if the current or specified slide is vertical\n\t * (nested within another slide).\n\t *\n\t * @param {HTMLElement} slide [optional] The slide to check\n\t * orientation of\n\t */\n\tfunction isVerticalSlide( slide ) {\n\n\t\t// Prefer slide argument, otherwise use current slide\n\t\tslide = slide ? slide : currentSlide;\n\n\t\treturn slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i );\n\n\t}\n\n\t/**\n\t * Handling the fullscreen functionality via the fullscreen API\n\t *\n\t * @see http://fullscreen.spec.whatwg.org/\n\t * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode\n\t */\n\tfunction enterFullscreen() {\n\n\t\tvar element = document.body;\n\n\t\t// Check which implementation is available\n\t\tvar requestMethod = element.requestFullScreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullscreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullScreen ||\n\t\t\t\t\t\t\telement.mozRequestFullScreen ||\n\t\t\t\t\t\t\telement.msRequestFullscreen;\n\n\t\tif( requestMethod ) {\n\t\t\trequestMethod.apply( element );\n\t\t}\n\n\t}\n\n\t/**\n\t * Enters the paused mode which fades everything on screen to\n\t * black.\n\t */\n\tfunction pause() {\n\n\t\tif( config.pause ) {\n\t\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\n\t\t\tcancelAutoSlide();\n\t\t\tdom.wrapper.classList.add( 'paused' );\n\n\t\t\tif( wasPaused === false ) {\n\t\t\t\tdispatchEvent( 'paused' );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Exits from the paused mode.\n\t */\n\tfunction resume() {\n\n\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\t\tdom.wrapper.classList.remove( 'paused' );\n\n\t\tcueAutoSlide();\n\n\t\tif( wasPaused ) {\n\t\t\tdispatchEvent( 'resumed' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Toggles the paused mode on and off.\n\t */\n\tfunction togglePause( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? pause() : resume();\n\t\t}\n\t\telse {\n\t\t\tisPaused() ? resume() : pause();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if we are currently in the paused mode.\n\t */\n\tfunction isPaused() {\n\n\t\treturn dom.wrapper.classList.contains( 'paused' );\n\n\t}\n\n\t/**\n\t * Toggles the auto slide mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which sets the desired state.\n\t * True means autoplay starts, false means it stops.\n\t */\n\n\tfunction toggleAutoSlide( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t\telse {\n\t\t\tautoSlidePaused ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the auto slide mode is currently on.\n\t */\n\tfunction isAutoSliding() {\n\n\t\treturn !!( autoSlide && !autoSlidePaused );\n\n\t}\n\n\t/**\n\t * Steps from the current point in the presentation to the\n\t * slide which matches the specified horizontal and vertical\n\t * indices.\n\t *\n\t * @param {int} h Horizontal index of the target slide\n\t * @param {int} v Vertical index of the target slide\n\t * @param {int} f Optional index of a fragment within the\n\t * target slide to activate\n\t * @param {int} o Optional origin for use in multimaster environments\n\t */\n\tfunction slide( h, v, f, o ) {\n\n\t\t// Remember where we were at before\n\t\tpreviousSlide = currentSlide;\n\n\t\t// Query all horizontal slides in the deck\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );\n\n\t\t// If no vertical index is specified and the upcoming slide is a\n\t\t// stack, resume at its previous vertical index\n\t\tif( v === undefined && !isOverview() ) {\n\t\t\tv = getPreviousVerticalIndex( horizontalSlides[ h ] );\n\t\t}\n\n\t\t// If we were on a vertical stack, remember what vertical index\n\t\t// it was on so we can resume at the same position when returning\n\t\tif( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {\n\t\t\tsetPreviousVerticalIndex( previousSlide.parentNode, indexv );\n\t\t}\n\n\t\t// Remember the state before this slide\n\t\tvar stateBefore = state.concat();\n\n\t\t// Reset the state array\n\t\tstate.length = 0;\n\n\t\tvar indexhBefore = indexh || 0,\n\t\t\tindexvBefore = indexv || 0;\n\n\t\t// Activate and transition to the new slide\n\t\tindexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );\n\t\tindexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );\n\n\t\t// Update the visibility of slides now that the indices have changed\n\t\tupdateSlidesVisibility();\n\n\t\tlayout();\n\n\t\t// Apply the new state\n\t\tstateLoop: for( var i = 0, len = state.length; i < len; i++ ) {\n\t\t\t// Check if this state existed on the previous slide. If it\n\t\t\t// did, we will avoid adding it repeatedly\n\t\t\tfor( var j = 0; j < stateBefore.length; j++ ) {\n\t\t\t\tif( stateBefore[j] === state[i] ) {\n\t\t\t\t\tstateBefore.splice( j, 1 );\n\t\t\t\t\tcontinue stateLoop;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdocument.documentElement.classList.add( state[i] );\n\n\t\t\t// Dispatch custom event matching the state's name\n\t\t\tdispatchEvent( state[i] );\n\t\t}\n\n\t\t// Clean up the remains of the previous state\n\t\twhile( stateBefore.length ) {\n\t\t\tdocument.documentElement.classList.remove( stateBefore.pop() );\n\t\t}\n\n\t\t// Update the overview if it's currently active\n\t\tif( isOverview() ) {\n\t\t\tupdateOverview();\n\t\t}\n\n\t\t// Find the current horizontal slide and any possible vertical slides\n\t\t// within it\n\t\tvar currentHorizontalSlide = horizontalSlides[ indexh ],\n\t\t\tcurrentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );\n\n\t\t// Store references to the previous and current slides\n\t\tcurrentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;\n\n\t\t// Show fragment, if specified\n\t\tif( typeof f !== 'undefined' ) {\n\t\t\tnavigateFragment( f );\n\t\t}\n\n\t\t// Dispatch an event if the slide changed\n\t\tvar slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore );\n\t\tif( slideChanged ) {\n\t\t\tdispatchEvent( 'slidechanged', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'previousSlide': previousSlide,\n\t\t\t\t'currentSlide': currentSlide,\n\t\t\t\t'origin': o\n\t\t\t} );\n\t\t}\n\t\telse {\n\t\t\t// Ensure that the previous slide is never the same as the current\n\t\t\tpreviousSlide = null;\n\t\t}\n\n\t\t// Solves an edge case where the previous slide maintains the\n\t\t// 'present' class when navigating between adjacent vertical\n\t\t// stacks\n\t\tif( previousSlide ) {\n\t\t\tpreviousSlide.classList.remove( 'present' );\n\t\t\tpreviousSlide.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t// Reset all slides upon navigate to home\n\t\t\t// Issue: #285\n\t\t\tif ( dom.wrapper.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) {\n\t\t\t\t// Launch async task\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i;\n\t\t\t\t\tfor( i in slides ) {\n\t\t\t\t\t\tif( slides[i] ) {\n\t\t\t\t\t\t\t// Reset stack\n\t\t\t\t\t\t\tsetPreviousVerticalIndex( slides[i], 0 );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}, 0 );\n\t\t\t}\n\t\t}\n\n\t\t// Handle embedded content\n\t\tif( slideChanged || !previousSlide ) {\n\t\t\tstopEmbeddedContent( previousSlide );\n\t\t\tstartEmbeddedContent( currentSlide );\n\t\t}\n\n\t\t// Announce the current slide contents, for screen readers\n\t\tdom.statusDiv.textContent = currentSlide.textContent;\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground();\n\t\tupdateParallax();\n\t\tupdateSlideNumber();\n\t\tupdateNotes();\n\n\t\t// Update the URL hash\n\t\twriteURL();\n\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Syncs the presentation with the current DOM. Useful\n\t * when new slides or control elements are added or when\n\t * the configuration has changed.\n\t */\n\tfunction sync() {\n\n\t\t// Subscribe to input\n\t\tremoveEventListeners();\n\t\taddEventListeners();\n\n\t\t// Force a layout to make sure the current config is accounted for\n\t\tlayout();\n\n\t\t// Reflect the current autoSlide value\n\t\tautoSlide = config.autoSlide;\n\n\t\t// Start auto-sliding if it's enabled\n\t\tcueAutoSlide();\n\n\t\t// Re-create the slide backgrounds\n\t\tcreateBackgrounds();\n\n\t\t// Write the current hash to the URL\n\t\twriteURL();\n\n\t\tsortAllFragments();\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground( true );\n\t\tupdateSlideNumber();\n\t\tupdateSlidesVisibility();\n\t\tupdateNotes();\n\n\t\tformatEmbeddedContent();\n\t\tstartEmbeddedContent( currentSlide );\n\n\t\tif( isOverview() ) {\n\t\t\tlayoutOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Resets all vertical slides so that only the first\n\t * is visible.\n\t */\n\tfunction resetVerticalSlides() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tif( y > 0 ) {\n\t\t\t\t\tverticalSlide.classList.remove( 'present' );\n\t\t\t\t\tverticalSlide.classList.remove( 'past' );\n\t\t\t\t\tverticalSlide.classList.add( 'future' );\n\t\t\t\t\tverticalSlide.setAttribute( 'aria-hidden', 'true' );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Sorts and formats all of fragments in the\n\t * presentation.\n\t */\n\tfunction sortAllFragments() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tsortFragments( verticalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t\t} );\n\n\t\t\tif( verticalSlides.length === 0 ) sortFragments( horizontalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Updates one dimension of slides by showing the slide\n\t * with the specified index.\n\t *\n\t * @param {String} selector A CSS selector that will fetch\n\t * the group of slides we are working with\n\t * @param {Number} index The index of the slide that should be\n\t * shown\n\t *\n\t * @return {Number} The index of the slide that is now shown,\n\t * might differ from the passed in index if it was out of\n\t * bounds.\n\t */\n\tfunction updateSlides( selector, index ) {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar slides = toArray( dom.wrapper.querySelectorAll( selector ) ),\n\t\t\tslidesLength = slides.length;\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\tif( slidesLength ) {\n\n\t\t\t// Should the index loop?\n\t\t\tif( config.loop ) {\n\t\t\t\tindex %= slidesLength;\n\n\t\t\t\tif( index < 0 ) {\n\t\t\t\t\tindex = slidesLength + index;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Enforce max and minimum index bounds\n\t\t\tindex = Math.max( Math.min( index, slidesLength - 1 ), 0 );\n\n\t\t\tfor( var i = 0; i < slidesLength; i++ ) {\n\t\t\t\tvar element = slides[i];\n\n\t\t\t\tvar reverse = config.rtl && !isVerticalSlide( element );\n\n\t\t\t\telement.classList.remove( 'past' );\n\t\t\t\telement.classList.remove( 'present' );\n\t\t\t\telement.classList.remove( 'future' );\n\n\t\t\t\t// http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute\n\t\t\t\telement.setAttribute( 'hidden', '' );\n\t\t\t\telement.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t\t// If this element contains vertical slides\n\t\t\t\tif( element.querySelector( 'section' ) ) {\n\t\t\t\t\telement.classList.add( 'stack' );\n\t\t\t\t}\n\n\t\t\t\t// If we're printing static slides, all slides are \"present\"\n\t\t\t\tif( printMode ) {\n\t\t\t\t\telement.classList.add( 'present' );\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( i < index ) {\n\t\t\t\t\t// Any element previous to index is given the 'past' class\n\t\t\t\t\telement.classList.add( reverse ? 'future' : 'past' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar pastFragments = toArray( element.querySelectorAll( '.fragment' ) );\n\n\t\t\t\t\t\t// Show all fragments on prior slides\n\t\t\t\t\t\twhile( pastFragments.length ) {\n\t\t\t\t\t\t\tvar pastFragment = pastFragments.pop();\n\t\t\t\t\t\t\tpastFragment.classList.add( 'visible' );\n\t\t\t\t\t\t\tpastFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( i > index ) {\n\t\t\t\t\t// Any element subsequent to index is given the 'future' class\n\t\t\t\t\telement.classList.add( reverse ? 'past' : 'future' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar futureFragments = toArray( element.querySelectorAll( '.fragment.visible' ) );\n\n\t\t\t\t\t\t// No fragments in future slides should be visible ahead of time\n\t\t\t\t\t\twhile( futureFragments.length ) {\n\t\t\t\t\t\t\tvar futureFragment = futureFragments.pop();\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'visible' );\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Mark the current slide as present\n\t\t\tslides[index].classList.add( 'present' );\n\t\t\tslides[index].removeAttribute( 'hidden' );\n\t\t\tslides[index].removeAttribute( 'aria-hidden' );\n\n\t\t\t// If this slide has a state associated with it, add it\n\t\t\t// onto the current state of the deck\n\t\t\tvar slideState = slides[index].getAttribute( 'data-state' );\n\t\t\tif( slideState ) {\n\t\t\t\tstate = state.concat( slideState.split( ' ' ) );\n\t\t\t}\n\n\t\t}\n\t\telse {\n\t\t\t// Since there are no slides we can't be anywhere beyond the\n\t\t\t// zeroth index\n\t\t\tindex = 0;\n\t\t}\n\n\t\treturn index;\n\n\t}\n\n\t/**\n\t * Optimization method; hide all slides that are far away\n\t * from the present slide.\n\t */\n\tfunction updateSlidesVisibility() {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ),\n\t\t\thorizontalSlidesLength = horizontalSlides.length,\n\t\t\tdistanceX,\n\t\t\tdistanceY;\n\n\t\tif( horizontalSlidesLength && typeof indexh !== 'undefined' ) {\n\n\t\t\t// The number of steps away from the present slide that will\n\t\t\t// be visible\n\t\t\tvar viewDistance = isOverview() ? 10 : config.viewDistance;\n\n\t\t\t// Limit view distance on weaker devices\n\t\t\tif( isMobileDevice ) {\n\t\t\t\tviewDistance = isOverview() ? 6 : 2;\n\t\t\t}\n\n\t\t\t// All slides need to be visible when exporting to PDF\n\t\t\tif( isPrintingPDF() ) {\n\t\t\t\tviewDistance = Number.MAX_VALUE;\n\t\t\t}\n\n\t\t\tfor( var x = 0; x < horizontalSlidesLength; x++ ) {\n\t\t\t\tvar horizontalSlide = horizontalSlides[x];\n\n\t\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ),\n\t\t\t\t\tverticalSlidesLength = verticalSlides.length;\n\n\t\t\t\t// Determine how far away this slide is from the present\n\t\t\t\tdistanceX = Math.abs( ( indexh || 0 ) - x ) || 0;\n\n\t\t\t\t// If the presentation is looped, distance should measure\n\t\t\t\t// 1 between the first and last slides\n\t\t\t\tif( config.loop ) {\n\t\t\t\t\tdistanceX = Math.abs( ( ( indexh || 0 ) - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0;\n\t\t\t\t}\n\n\t\t\t\t// Show the horizontal slide if it's within the view distance\n\t\t\t\tif( distanceX < viewDistance ) {\n\t\t\t\t\tshowSlide( horizontalSlide );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\thideSlide( horizontalSlide );\n\t\t\t\t}\n\n\t\t\t\tif( verticalSlidesLength ) {\n\n\t\t\t\t\tvar oy = getPreviousVerticalIndex( horizontalSlide );\n\n\t\t\t\t\tfor( var y = 0; y < verticalSlidesLength; y++ ) {\n\t\t\t\t\t\tvar verticalSlide = verticalSlides[y];\n\n\t\t\t\t\t\tdistanceY = x === ( indexh || 0 ) ? Math.abs( ( indexv || 0 ) - y ) : Math.abs( y - oy );\n\n\t\t\t\t\t\tif( distanceX + distanceY < viewDistance ) {\n\t\t\t\t\t\t\tshowSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\thideSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Pick up notes from the current slide and display tham\n\t * to the viewer.\n\t *\n\t * @see `showNotes` config value\n\t */\n\tfunction updateNotes() {\n\n\t\tif( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) {\n\n\t\t\tdom.speakerNotes.innerHTML = getSlideNotes() || '';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the progress bar to reflect the current slide.\n\t */\n\tfunction updateProgress() {\n\n\t\t// Update progress if enabled\n\t\tif( config.progress && dom.progressbar ) {\n\n\t\t\tdom.progressbar.style.width = getProgress() * dom.wrapper.offsetWidth + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the slide number div to reflect the current slide.\n\t *\n\t * The following slide number formats are available:\n\t *  \"h.v\": \thorizontal . vertical slide number (default)\n\t *  \"h/v\": \thorizontal / vertical slide number\n\t *    \"c\": \tflattened slide number\n\t *  \"c/t\": \tflattened slide number / total slides\n\t */\n\tfunction updateSlideNumber() {\n\n\t\t// Update slide number if enabled\n\t\tif( config.slideNumber && dom.slideNumber ) {\n\n\t\t\tvar value = [];\n\t\t\tvar format = 'h.v';\n\n\t\t\t// Check if a custom number format is available\n\t\t\tif( typeof config.slideNumber === 'string' ) {\n\t\t\t\tformat = config.slideNumber;\n\t\t\t}\n\n\t\t\tswitch( format ) {\n\t\t\t\tcase 'c':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'c/t':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1, '/', getTotalSlides() );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'h/v':\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '/', indexv + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '.', indexv + 1 );\n\t\t\t}\n\n\t\t\tdom.slideNumber.innerHTML = formatSlideNumber( value[0], value[1], value[2] );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies HTML formatting to a slide number before it's\n\t * written to the DOM.\n\t */\n\tfunction formatSlideNumber( a, delimiter, b ) {\n\n\t\tif( typeof b === 'number' && !isNaN( b ) ) {\n\t\t\treturn  '<span class=\"slide-number-a\">'+ a +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-delimiter\">'+ delimiter +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-b\">'+ b +'</span>';\n\t\t}\n\t\telse {\n\t\t\treturn '<span class=\"slide-number-a\">'+ a +'</span>';\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the state of all control/navigation arrows.\n\t */\n\tfunction updateControls() {\n\n\t\tvar routes = availableRoutes();\n\t\tvar fragments = availableFragments();\n\n\t\t// Remove the 'enabled' class from all directions\n\t\tdom.controlsLeft.concat( dom.controlsRight )\n\t\t\t\t\t\t.concat( dom.controlsUp )\n\t\t\t\t\t\t.concat( dom.controlsDown )\n\t\t\t\t\t\t.concat( dom.controlsPrev )\n\t\t\t\t\t\t.concat( dom.controlsNext ).forEach( function( node ) {\n\t\t\tnode.classList.remove( 'enabled' );\n\t\t\tnode.classList.remove( 'fragmented' );\n\t\t} );\n\n\t\t// Add the 'enabled' class to the available routes\n\t\tif( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Prev/next buttons\n\t\tif( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Highlight fragment directions\n\t\tif( currentSlide ) {\n\n\t\t\t// Always apply fragment decorator to prev/next buttons\n\t\t\tif( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\tif( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\n\t\t\t// Apply fragment decorators to directional buttons based on\n\t\t\t// what slide axis they are in\n\t\t\tif( isVerticalSlide( currentSlide ) ) {\n\t\t\t\tif( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the background elements to reflect the current\n\t * slide.\n\t *\n\t * @param {Boolean} includeAll If true, the backgrounds of\n\t * all vertical slides (not just the present) will be updated.\n\t */\n\tfunction updateBackground( includeAll ) {\n\n\t\tvar currentBackground = null;\n\n\t\t// Reverse past/future classes when in RTL mode\n\t\tvar horizontalPast = config.rtl ? 'future' : 'past',\n\t\t\thorizontalFuture = config.rtl ? 'past' : 'future';\n\n\t\t// Update the classes of all backgrounds to match the\n\t\t// states of their slides (past/present/future)\n\t\ttoArray( dom.background.childNodes ).forEach( function( backgroundh, h ) {\n\n\t\t\tbackgroundh.classList.remove( 'past' );\n\t\t\tbackgroundh.classList.remove( 'present' );\n\t\t\tbackgroundh.classList.remove( 'future' );\n\n\t\t\tif( h < indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalPast );\n\t\t\t}\n\t\t\telse if ( h > indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalFuture );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundh.classList.add( 'present' );\n\n\t\t\t\t// Store a reference to the current background element\n\t\t\t\tcurrentBackground = backgroundh;\n\t\t\t}\n\n\t\t\tif( includeAll || h === indexh ) {\n\t\t\t\ttoArray( backgroundh.querySelectorAll( '.slide-background' ) ).forEach( function( backgroundv, v ) {\n\n\t\t\t\t\tbackgroundv.classList.remove( 'past' );\n\t\t\t\t\tbackgroundv.classList.remove( 'present' );\n\t\t\t\t\tbackgroundv.classList.remove( 'future' );\n\n\t\t\t\t\tif( v < indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'past' );\n\t\t\t\t\t}\n\t\t\t\t\telse if ( v > indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'future' );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tbackgroundv.classList.add( 'present' );\n\n\t\t\t\t\t\t// Only if this is the present horizontal and vertical slide\n\t\t\t\t\t\tif( h === indexh ) currentBackground = backgroundv;\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\t\t\t}\n\n\t\t} );\n\n\t\t// Stop any currently playing video background\n\t\tif( previousBackground ) {\n\n\t\t\tvar previousVideo = previousBackground.querySelector( 'video' );\n\t\t\tif( previousVideo ) previousVideo.pause();\n\n\t\t}\n\n\t\tif( currentBackground ) {\n\n\t\t\t// Start video playback\n\t\t\tvar currentVideo = currentBackground.querySelector( 'video' );\n\t\t\tif( currentVideo ) {\n\t\t\t\tif( currentVideo.currentTime > 0 ) currentVideo.currentTime = 0;\n\t\t\t\tcurrentVideo.play();\n\t\t\t}\n\n\t\t\tvar backgroundImageURL = currentBackground.style.backgroundImage || '';\n\n\t\t\t// Restart GIFs (doesn't work in Firefox)\n\t\t\tif( /\\.gif/i.test( backgroundImageURL ) ) {\n\t\t\t\tcurrentBackground.style.backgroundImage = '';\n\t\t\t\twindow.getComputedStyle( currentBackground ).opacity;\n\t\t\t\tcurrentBackground.style.backgroundImage = backgroundImageURL;\n\t\t\t}\n\n\t\t\t// Don't transition between identical backgrounds. This\n\t\t\t// prevents unwanted flicker.\n\t\t\tvar previousBackgroundHash = previousBackground ? previousBackground.getAttribute( 'data-background-hash' ) : null;\n\t\t\tvar currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' );\n\t\t\tif( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== previousBackground ) {\n\t\t\t\tdom.background.classList.add( 'no-transition' );\n\t\t\t}\n\n\t\t\tpreviousBackground = currentBackground;\n\n\t\t}\n\n\t\t// If there's a background brightness flag for this slide,\n\t\t// bubble it to the .reveal container\n\t\tif( currentSlide ) {\n\t\t\t[ 'has-light-background', 'has-dark-background' ].forEach( function( classToBubble ) {\n\t\t\t\tif( currentSlide.classList.contains( classToBubble ) ) {\n\t\t\t\t\tdom.wrapper.classList.add( classToBubble );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tdom.wrapper.classList.remove( classToBubble );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Allow the first background to apply without transition\n\t\tsetTimeout( function() {\n\t\t\tdom.background.classList.remove( 'no-transition' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Updates the position of the parallax background based\n\t * on the current slide index.\n\t */\n\tfunction updateParallax() {\n\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\t\tvar backgroundSize = dom.background.style.backgroundSize.split( ' ' ),\n\t\t\t\tbackgroundWidth, backgroundHeight;\n\n\t\t\tif( backgroundSize.length === 1 ) {\n\t\t\t\tbackgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundWidth = parseInt( backgroundSize[0], 10 );\n\t\t\t\tbackgroundHeight = parseInt( backgroundSize[1], 10 );\n\t\t\t}\n\n\t\t\tvar slideWidth = dom.background.offsetWidth,\n\t\t\t\thorizontalSlideCount = horizontalSlides.length,\n\t\t\t\thorizontalOffsetMultiplier,\n\t\t\t\thorizontalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundHorizontal === 'number' ) {\n\t\t\t\thorizontalOffsetMultiplier = config.parallaxBackgroundHorizontal;\n\t\t\t}\n\t\t\telse {\n\t\t\t\thorizontalOffsetMultiplier = ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 );\n\t\t\t}\n\n\t\t\thorizontalOffset = horizontalOffsetMultiplier * indexh * -1;\n\n\t\t\tvar slideHeight = dom.background.offsetHeight,\n\t\t\t\tverticalSlideCount = verticalSlides.length,\n\t\t\t\tverticalOffsetMultiplier,\n\t\t\t\tverticalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundVertical === 'number' ) {\n\t\t\t\tverticalOffsetMultiplier = config.parallaxBackgroundVertical;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tverticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 );\n\t\t\t}\n\n\t\t\tverticalOffset = verticalSlideCount > 0 ?  verticalOffsetMultiplier * indexv * 1 : 0;\n\n\t\t\tdom.background.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is within the configured view\n\t * distance. Shows the slide element and loads any content\n\t * that is set to load lazily (data-src).\n\t */\n\tfunction showSlide( slide ) {\n\n\t\t// Show the slide element\n\t\tslide.style.display = 'block';\n\n\t\t// Media elements with data-src attributes\n\t\ttoArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src]' ) ).forEach( function( element ) {\n\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\telement.removeAttribute( 'data-src' );\n\t\t} );\n\n\t\t// Media elements with <source> children\n\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( media ) {\n\t\t\tvar sources = 0;\n\n\t\t\ttoArray( media.querySelectorAll( 'source[data-src]' ) ).forEach( function( source ) {\n\t\t\t\tsource.setAttribute( 'src', source.getAttribute( 'data-src' ) );\n\t\t\t\tsource.removeAttribute( 'data-src' );\n\t\t\t\tsources += 1;\n\t\t\t} );\n\n\t\t\t// If we rewrote sources for this video/audio element, we need\n\t\t\t// to manually tell it to load from its new origin\n\t\t\tif( sources > 0 ) {\n\t\t\t\tmedia.load();\n\t\t\t}\n\t\t} );\n\n\n\t\t// Show the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'block';\n\n\t\t\t// If the background contains media, load it\n\t\t\tif( background.hasAttribute( 'data-loaded' ) === false ) {\n\t\t\t\tbackground.setAttribute( 'data-loaded', 'true' );\n\n\t\t\t\tvar backgroundImage = slide.getAttribute( 'data-background-image' ),\n\t\t\t\t\tbackgroundVideo = slide.getAttribute( 'data-background-video' ),\n\t\t\t\t\tbackgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ),\n\t\t\t\t\tbackgroundIframe = slide.getAttribute( 'data-background-iframe' );\n\n\t\t\t\t// Images\n\t\t\t\tif( backgroundImage ) {\n\t\t\t\t\tbackground.style.backgroundImage = 'url('+ backgroundImage +')';\n\t\t\t\t}\n\t\t\t\t// Videos\n\t\t\t\telse if ( backgroundVideo && !isSpeakerNotes() ) {\n\t\t\t\t\tvar video = document.createElement( 'video' );\n\n\t\t\t\t\tif( backgroundVideoLoop ) {\n\t\t\t\t\t\tvideo.setAttribute( 'loop', '' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support comma separated lists of video sources\n\t\t\t\t\tbackgroundVideo.split( ',' ).forEach( function( source ) {\n\t\t\t\t\t\tvideo.innerHTML += '<source src=\"'+ source +'\">';\n\t\t\t\t\t} );\n\n\t\t\t\t\tbackground.appendChild( video );\n\t\t\t\t}\n\t\t\t\t// Iframes\n\t\t\t\telse if( backgroundIframe ) {\n\t\t\t\t\tvar iframe = document.createElement( 'iframe' );\n\t\t\t\t\t\tiframe.setAttribute( 'src', backgroundIframe );\n\t\t\t\t\t\tiframe.style.width  = '100%';\n\t\t\t\t\t\tiframe.style.height = '100%';\n\t\t\t\t\t\tiframe.style.maxHeight = '100%';\n\t\t\t\t\t\tiframe.style.maxWidth = '100%';\n\n\t\t\t\t\tbackground.appendChild( iframe );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is moved outside of the\n\t * configured view distance.\n\t */\n\tfunction hideSlide( slide ) {\n\n\t\t// Hide the slide element\n\t\tslide.style.display = 'none';\n\n\t\t// Hide the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'none';\n\t\t}\n\n\t}\n\n\t/**\n\t * Determine what available routes there are for navigation.\n\t *\n\t * @return {Object} containing four booleans: left/right/up/down\n\t */\n\tfunction availableRoutes() {\n\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\tvar routes = {\n\t\t\tleft: indexh > 0 || config.loop,\n\t\t\tright: indexh < horizontalSlides.length - 1 || config.loop,\n\t\t\tup: indexv > 0,\n\t\t\tdown: indexv < verticalSlides.length - 1\n\t\t};\n\n\t\t// reverse horizontal controls for rtl\n\t\tif( config.rtl ) {\n\t\t\tvar left = routes.left;\n\t\t\troutes.left = routes.right;\n\t\t\troutes.right = left;\n\t\t}\n\n\t\treturn routes;\n\n\t}\n\n\t/**\n\t * Returns an object describing the available fragment\n\t * directions.\n\t *\n\t * @return {Object} two boolean properties: prev/next\n\t */\n\tfunction availableFragments() {\n\n\t\tif( currentSlide && config.fragments ) {\n\t\t\tvar fragments = currentSlide.querySelectorAll( '.fragment' );\n\t\t\tvar hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' );\n\n\t\t\treturn {\n\t\t\t\tprev: fragments.length - hiddenFragments.length > 0,\n\t\t\t\tnext: !!hiddenFragments.length\n\t\t\t};\n\t\t}\n\t\telse {\n\t\t\treturn { prev: false, next: false };\n\t\t}\n\n\t}\n\n\t/**\n\t * Enforces origin-specific format rules for embedded media.\n\t */\n\tfunction formatEmbeddedContent() {\n\n\t\tvar _appendParamToIframeSource = function( sourceAttribute, sourceURL, param ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( 'iframe['+ sourceAttribute +'*=\"'+ sourceURL +'\"]' ) ).forEach( function( el ) {\n\t\t\t\tvar src = el.getAttribute( sourceAttribute );\n\t\t\t\tif( src && src.indexOf( param ) === -1 ) {\n\t\t\t\t\tel.setAttribute( sourceAttribute, src + ( !/\\?/.test( src ) ? '?' : '&' ) + param );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\t// YouTube frames must include \"?enablejsapi=1\"\n\t\t_appendParamToIframeSource( 'src', 'youtube.com/embed/', 'enablejsapi=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'youtube.com/embed/', 'enablejsapi=1' );\n\n\t\t// Vimeo frames must include \"?api=1\"\n\t\t_appendParamToIframeSource( 'src', 'player.vimeo.com/', 'api=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'player.vimeo.com/', 'api=1' );\n\n\t}\n\n\t/**\n\t * Start playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction startEmbeddedContent( slide ) {\n\n\t\tif( slide && !isSpeakerNotes() ) {\n\t\t\t// Restart GIFs\n\t\t\ttoArray( slide.querySelectorAll( 'img[src$=\".gif\"]' ) ).forEach( function( el ) {\n\t\t\t\t// Setting the same unchanged source like this was confirmed\n\t\t\t\t// to work in Chrome, FF & Safari\n\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'src' ) );\n\t\t\t} );\n\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) && typeof el.play === 'function' ) {\n\t\t\t\t\tel.play();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Normal iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src]' ) ).forEach( function( el ) {\n\t\t\t\tstartEmbeddedIframe( { target: el } );\n\t\t\t} );\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\tif( el.getAttribute( 'src' ) !== el.getAttribute( 'data-src' ) ) {\n\t\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe ); // remove first to avoid dupes\n\t\t\t\t\tel.addEventListener( 'load', startEmbeddedIframe );\n\t\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'data-src' ) );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * \"Starts\" the content of an embedded iframe using the\n\t * postmessage API.\n\t */\n\tfunction startEmbeddedIframe( event ) {\n\n\t\tvar iframe = event.target;\n\n\t\t// YouTube postMessage API\n\t\tif( /youtube\\.com\\/embed\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"playVideo\",\"args\":\"\"}', '*' );\n\t\t}\n\t\t// Vimeo postMessage API\n\t\telse if( /player\\.vimeo\\.com\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"method\":\"play\"}', '*' );\n\t\t}\n\t\t// Generic postMessage API\n\t\telse {\n\t\t\tiframe.contentWindow.postMessage( 'slide:start', '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Stop playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction stopEmbeddedContent( slide ) {\n\n\t\tif( slide && slide.parentNode ) {\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) {\n\t\t\t\t\tel.pause();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Generic postMessage API for non-lazy loaded iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe' ) ).forEach( function( el ) {\n\t\t\t\tel.contentWindow.postMessage( 'slide:stop', '*' );\n\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe );\n\t\t\t});\n\n\t\t\t// YouTube postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"youtube.com/embed/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"pauseVideo\",\"args\":\"\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Vimeo postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"player.vimeo.com/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"method\":\"pause\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\t// Only removing the src doesn't actually unload the frame\n\t\t\t\t// in all browsers (Firefox) so we set it to blank first\n\t\t\t\tel.setAttribute( 'src', 'about:blank' );\n\t\t\t\tel.removeAttribute( 'src' );\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Returns the number of past slides. This can be used as a global\n\t * flattened index for slides.\n\t */\n\tfunction getSlidePastCount() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t// The number of past slides\n\t\tvar pastCount = 0;\n\n\t\t// Step through all slides and count the past ones\n\t\tmainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) {\n\n\t\t\tvar horizontalSlide = horizontalSlides[i];\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\n\t\t\tfor( var j = 0; j < verticalSlides.length; j++ ) {\n\n\t\t\t\t// Stop as soon as we arrive at the present\n\t\t\t\tif( verticalSlides[j].classList.contains( 'present' ) ) {\n\t\t\t\t\tbreak mainLoop;\n\t\t\t\t}\n\n\t\t\t\tpastCount++;\n\n\t\t\t}\n\n\t\t\t// Stop as soon as we arrive at the present\n\t\t\tif( horizontalSlide.classList.contains( 'present' ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// Don't count the wrapping section for vertical slides\n\t\t\tif( horizontalSlide.classList.contains( 'stack' ) === false ) {\n\t\t\t\tpastCount++;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount;\n\n\t}\n\n\t/**\n\t * Returns a value ranging from 0-1 that represents\n\t * how far into the presentation we have navigated.\n\t */\n\tfunction getProgress() {\n\n\t\t// The number of past and total slides\n\t\tvar totalCount = getTotalSlides();\n\t\tvar pastCount = getSlidePastCount();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar allFragments = currentSlide.querySelectorAll( '.fragment' );\n\n\t\t\t// If there are fragments in the current slide those should be\n\t\t\t// accounted for in the progress.\n\t\t\tif( allFragments.length > 0 ) {\n\t\t\t\tvar visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );\n\n\t\t\t\t// This value represents how big a portion of the slide progress\n\t\t\t\t// that is made up by its fragments (0-1)\n\t\t\t\tvar fragmentWeight = 0.9;\n\n\t\t\t\t// Add fragment progress to the past slide count\n\t\t\t\tpastCount += ( visibleFragments.length / allFragments.length ) * fragmentWeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount / ( totalCount - 1 );\n\n\t}\n\n\t/**\n\t * Checks if this presentation is running inside of the\n\t * speaker notes window.\n\t */\n\tfunction isSpeakerNotes() {\n\n\t\treturn !!window.location.search.match( /receiver/gi );\n\n\t}\n\n\t/**\n\t * Reads the current URL (hash) and navigates accordingly.\n\t */\n\tfunction readURL() {\n\n\t\tvar hash = window.location.hash;\n\n\t\t// Attempt to parse the hash as either an index or name\n\t\tvar bits = hash.slice( 2 ).split( '/' ),\n\t\t\tname = hash.replace( /#|\\//gi, '' );\n\n\t\t// If the first bit is invalid and there is a name we can\n\t\t// assume that this is a named link\n\t\tif( isNaN( parseInt( bits[0], 10 ) ) && name.length ) {\n\t\t\tvar element;\n\n\t\t\t// Ensure the named link is a valid HTML ID attribute\n\t\t\tif( /^[a-zA-Z][\\w:.-]*$/.test( name ) ) {\n\t\t\t\t// Find the slide with the specified ID\n\t\t\t\telement = document.getElementById( name );\n\t\t\t}\n\n\t\t\tif( element ) {\n\t\t\t\t// Find the position of the named slide and navigate to it\n\t\t\t\tvar indices = Reveal.getIndices( element );\n\t\t\t\tslide( indices.h, indices.v );\n\t\t\t}\n\t\t\t// If the slide doesn't exist, navigate to the current slide\n\t\t\telse {\n\t\t\t\tslide( indexh || 0, indexv || 0 );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Read the index components of the hash\n\t\t\tvar h = parseInt( bits[0], 10 ) || 0,\n\t\t\t\tv = parseInt( bits[1], 10 ) || 0;\n\n\t\t\tif( h !== indexh || v !== indexv ) {\n\t\t\t\tslide( h, v );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the page URL (hash) to reflect the current\n\t * state.\n\t *\n\t * @param {Number} delay The time in ms to wait before\n\t * writing the hash\n\t */\n\tfunction writeURL( delay ) {\n\n\t\tif( config.history ) {\n\n\t\t\t// Make sure there's never more than one timeout running\n\t\t\tclearTimeout( writeURLTimeout );\n\n\t\t\t// If a delay is specified, timeout this call\n\t\t\tif( typeof delay === 'number' ) {\n\t\t\t\twriteURLTimeout = setTimeout( writeURL, delay );\n\t\t\t}\n\t\t\telse if( currentSlide ) {\n\t\t\t\tvar url = '/';\n\n\t\t\t\t// Attempt to create a named link based on the slide's ID\n\t\t\t\tvar id = currentSlide.getAttribute( 'id' );\n\t\t\t\tif( id ) {\n\t\t\t\t\tid = id.replace( /[^a-zA-Z0-9\\-\\_\\:\\.]/g, '' );\n\t\t\t\t}\n\n\t\t\t\t// If the current slide has an ID, use that as a named link\n\t\t\t\tif( typeof id === 'string' && id.length ) {\n\t\t\t\t\turl = '/' + id;\n\t\t\t\t}\n\t\t\t\t// Otherwise use the /h/v index\n\t\t\t\telse {\n\t\t\t\t\tif( indexh > 0 || indexv > 0 ) url += indexh;\n\t\t\t\t\tif( indexv > 0 ) url += '/' + indexv;\n\t\t\t\t}\n\n\t\t\t\twindow.location.hash = url;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the h/v location of the current, or specified,\n\t * slide.\n\t *\n\t * @param {HTMLElement} slide If specified, the returned\n\t * index will be for this slide rather than the currently\n\t * active one\n\t *\n\t * @return {Object} { h: <int>, v: <int>, f: <int> }\n\t */\n\tfunction getIndices( slide ) {\n\n\t\t// By default, return the current indices\n\t\tvar h = indexh,\n\t\t\tv = indexv,\n\t\t\tf;\n\n\t\t// If a slide is specified, return the indices of that slide\n\t\tif( slide ) {\n\t\t\tvar isVertical = isVerticalSlide( slide );\n\t\t\tvar slideh = isVertical ? slide.parentNode : slide;\n\n\t\t\t// Select all horizontal slides\n\t\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t\t// Now that we know which the horizontal slide is, get its index\n\t\t\th = Math.max( horizontalSlides.indexOf( slideh ), 0 );\n\n\t\t\t// Assume we're not vertical\n\t\t\tv = undefined;\n\n\t\t\t// If this is a vertical slide, grab the vertical index\n\t\t\tif( isVertical ) {\n\t\t\t\tv = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 );\n\t\t\t}\n\t\t}\n\n\t\tif( !slide && currentSlide ) {\n\t\t\tvar hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0;\n\t\t\tif( hasFragments ) {\n\t\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\t\t\t\tif( currentFragment && currentFragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\tf = parseInt( currentFragment.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tf = currentSlide.querySelectorAll( '.fragment.visible' ).length - 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn { h: h, v: v, f: f };\n\n\t}\n\n\t/**\n\t * Retrieves the total number of slides in this presentation.\n\t */\n\tfunction getTotalSlides() {\n\n\t\treturn dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;\n\n\t}\n\n\t/**\n\t * Returns the slide element matching the specified index.\n\t */\n\tfunction getSlide( x, y ) {\n\n\t\tvar horizontalSlide = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];\n\t\tvar verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );\n\n\t\tif( verticalSlides && verticalSlides.length && typeof y === 'number' ) {\n\t\t\treturn verticalSlides ? verticalSlides[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalSlide;\n\n\t}\n\n\t/**\n\t * Returns the background element for the given slide.\n\t * All slides, even the ones with no background properties\n\t * defined, have a background element so as long as the\n\t * index is valid an element will be returned.\n\t */\n\tfunction getSlideBackground( x, y ) {\n\n\t\t// When printing to PDF the slide backgrounds are nested\n\t\t// inside of the slides\n\t\tif( isPrintingPDF() ) {\n\t\t\tvar slide = getSlide( x, y );\n\t\t\tif( slide ) {\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background && background.parentNode === slide ) {\n\t\t\t\t\treturn background;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn undefined;\n\t\t}\n\n\t\tvar horizontalBackground = dom.wrapper.querySelectorAll( '.backgrounds>.slide-background' )[ x ];\n\t\tvar verticalBackgrounds = horizontalBackground && horizontalBackground.querySelectorAll( '.slide-background' );\n\n\t\tif( verticalBackgrounds && verticalBackgrounds.length && typeof y === 'number' ) {\n\t\t\treturn verticalBackgrounds ? verticalBackgrounds[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalBackground;\n\n\t}\n\n\t/**\n\t * Retrieves the speaker notes from a slide. Notes can be\n\t * defined in two ways:\n\t * 1. As a data-notes attribute on the slide <section>\n\t * 2. As an <aside class=\"notes\"> inside of the slide\n\t */\n\tfunction getSlideNotes( slide ) {\n\n\t\t// Default to the current slide\n\t\tslide = slide || currentSlide;\n\n\t\t// Notes can be specified via the data-notes attribute...\n\t\tif( slide.hasAttribute( 'data-notes' ) ) {\n\t\t\treturn slide.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// ... or using an <aside class=\"notes\"> element\n\t\tvar notesElement = slide.querySelector( 'aside.notes' );\n\t\tif( notesElement ) {\n\t\t\treturn notesElement.innerHTML;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the current state of the presentation as\n\t * an object. This state can then be restored at any\n\t * time.\n\t */\n\tfunction getState() {\n\n\t\tvar indices = getIndices();\n\n\t\treturn {\n\t\t\tindexh: indices.h,\n\t\t\tindexv: indices.v,\n\t\t\tindexf: indices.f,\n\t\t\tpaused: isPaused(),\n\t\t\toverview: isOverview()\n\t\t};\n\n\t}\n\n\t/**\n\t * Restores the presentation to the given state.\n\t *\n\t * @param {Object} state As generated by getState()\n\t */\n\tfunction setState( state ) {\n\n\t\tif( typeof state === 'object' ) {\n\t\t\tslide( deserialize( state.indexh ), deserialize( state.indexv ), deserialize( state.indexf ) );\n\n\t\t\tvar pausedFlag = deserialize( state.paused ),\n\t\t\t\toverviewFlag = deserialize( state.overview );\n\n\t\t\tif( typeof pausedFlag === 'boolean' && pausedFlag !== isPaused() ) {\n\t\t\t\ttogglePause( pausedFlag );\n\t\t\t}\n\n\t\t\tif( typeof overviewFlag === 'boolean' && overviewFlag !== isOverview() ) {\n\t\t\t\ttoggleOverview( overviewFlag );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Return a sorted fragments list, ordered by an increasing\n\t * \"data-fragment-index\" attribute.\n\t *\n\t * Fragments will be revealed in the order that they are returned by\n\t * this function, so you can use the index attributes to control the\n\t * order of fragment appearance.\n\t *\n\t * To maintain a sensible default fragment order, fragments are presumed\n\t * to be passed in document order. This function adds a \"fragment-index\"\n\t * attribute to each node if such an attribute is not already present,\n\t * and sets that attribute to an integer value which is the position of\n\t * the fragment within the fragments list.\n\t */\n\tfunction sortFragments( fragments ) {\n\n\t\tfragments = toArray( fragments );\n\n\t\tvar ordered = [],\n\t\t\tunordered = [],\n\t\t\tsorted = [];\n\n\t\t// Group ordered and unordered elements\n\t\tfragments.forEach( function( fragment, i ) {\n\t\t\tif( fragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\tvar index = parseInt( fragment.getAttribute( 'data-fragment-index' ), 10 );\n\n\t\t\t\tif( !ordered[index] ) {\n\t\t\t\t\tordered[index] = [];\n\t\t\t\t}\n\n\t\t\t\tordered[index].push( fragment );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tunordered.push( [ fragment ] );\n\t\t\t}\n\t\t} );\n\n\t\t// Append fragments without explicit indices in their\n\t\t// DOM order\n\t\tordered = ordered.concat( unordered );\n\n\t\t// Manually count the index up per group to ensure there\n\t\t// are no gaps\n\t\tvar index = 0;\n\n\t\t// Push all fragments in their sorted order to an array,\n\t\t// this flattens the groups\n\t\tordered.forEach( function( group ) {\n\t\t\tgroup.forEach( function( fragment ) {\n\t\t\t\tsorted.push( fragment );\n\t\t\t\tfragment.setAttribute( 'data-fragment-index', index );\n\t\t\t} );\n\n\t\t\tindex ++;\n\t\t} );\n\n\t\treturn sorted;\n\n\t}\n\n\t/**\n\t * Navigate to the specified slide fragment.\n\t *\n\t * @param {Number} index The index of the fragment that\n\t * should be shown, -1 means all are invisible\n\t * @param {Number} offset Integer offset to apply to the\n\t * fragment index\n\t *\n\t * @return {Boolean} true if a change was made in any\n\t * fragments visibility as part of this call\n\t */\n\tfunction navigateFragment( index, offset ) {\n\n\t\tif( currentSlide && config.fragments ) {\n\n\t\t\tvar fragments = sortFragments( currentSlide.querySelectorAll( '.fragment' ) );\n\t\t\tif( fragments.length ) {\n\n\t\t\t\t// If no index is specified, find the current\n\t\t\t\tif( typeof index !== 'number' ) {\n\t\t\t\t\tvar lastVisibleFragment = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) ).pop();\n\n\t\t\t\t\tif( lastVisibleFragment ) {\n\t\t\t\t\t\tindex = parseInt( lastVisibleFragment.getAttribute( 'data-fragment-index' ) || 0, 10 );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tindex = -1;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If an offset is specified, apply it to the index\n\t\t\t\tif( typeof offset === 'number' ) {\n\t\t\t\t\tindex += offset;\n\t\t\t\t}\n\n\t\t\t\tvar fragmentsShown = [],\n\t\t\t\t\tfragmentsHidden = [];\n\n\t\t\t\ttoArray( fragments ).forEach( function( element, i ) {\n\n\t\t\t\t\tif( element.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\t\ti = parseInt( element.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Visible fragments\n\t\t\t\t\tif( i <= index ) {\n\t\t\t\t\t\tif( !element.classList.contains( 'visible' ) ) fragmentsShown.push( element );\n\t\t\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\n\t\t\t\t\t\t// Announce the fragments one by one to the Screen Reader\n\t\t\t\t\t\tdom.statusDiv.textContent = element.textContent;\n\n\t\t\t\t\t\tif( i === index ) {\n\t\t\t\t\t\t\telement.classList.add( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Hidden fragments\n\t\t\t\t\telse {\n\t\t\t\t\t\tif( element.classList.contains( 'visible' ) ) fragmentsHidden.push( element );\n\t\t\t\t\t\telement.classList.remove( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t\t\t}\n\n\n\t\t\t\t} );\n\n\t\t\t\tif( fragmentsHidden.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmenthidden', { fragment: fragmentsHidden[0], fragments: fragmentsHidden } );\n\t\t\t\t}\n\n\t\t\t\tif( fragmentsShown.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmentshown', { fragment: fragmentsShown[0], fragments: fragmentsShown } );\n\t\t\t\t}\n\n\t\t\t\tupdateControls();\n\t\t\t\tupdateProgress();\n\n\t\t\t\treturn !!( fragmentsShown.length || fragmentsHidden.length );\n\n\t\t\t}\n\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Navigate to the next slide fragment.\n\t *\n\t * @return {Boolean} true if there was a next fragment,\n\t * false otherwise\n\t */\n\tfunction nextFragment() {\n\n\t\treturn navigateFragment( null, 1 );\n\n\t}\n\n\t/**\n\t * Navigate to the previous slide fragment.\n\t *\n\t * @return {Boolean} true if there was a previous fragment,\n\t * false otherwise\n\t */\n\tfunction previousFragment() {\n\n\t\treturn navigateFragment( null, -1 );\n\n\t}\n\n\t/**\n\t * Cues a new automated slide if enabled in the config.\n\t */\n\tfunction cueAutoSlide() {\n\n\t\tcancelAutoSlide();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\n\t\t\tvar fragmentAutoSlide = currentFragment ? currentFragment.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar parentAutoSlide = currentSlide.parentNode ? currentSlide.parentNode.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar slideAutoSlide = currentSlide.getAttribute( 'data-autoslide' );\n\n\t\t\t// Pick value in the following priority order:\n\t\t\t// 1. Current fragment's data-autoslide\n\t\t\t// 2. Current slide's data-autoslide\n\t\t\t// 3. Parent slide's data-autoslide\n\t\t\t// 4. Global autoSlide setting\n\t\t\tif( fragmentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( fragmentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( slideAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( slideAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( parentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( parentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tautoSlide = config.autoSlide;\n\t\t\t}\n\n\t\t\t// If there are media elements with data-autoplay,\n\t\t\t// automatically set the autoSlide duration to the\n\t\t\t// length of that media. Not applicable if the slide\n\t\t\t// is divided up into fragments.\n\t\t\tif( currentSlide.querySelectorAll( '.fragment' ).length === 0 ) {\n\t\t\t\ttoArray( currentSlide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) ) {\n\t\t\t\t\t\tif( autoSlide && el.duration * 1000 > autoSlide ) {\n\t\t\t\t\t\t\tautoSlide = ( el.duration * 1000 ) + 1000;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Cue the next auto-slide if:\n\t\t\t// - There is an autoSlide value\n\t\t\t// - Auto-sliding isn't paused by the user\n\t\t\t// - The presentation isn't paused\n\t\t\t// - The overview isn't active\n\t\t\t// - The presentation isn't over\n\t\t\tif( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || availableFragments().next || config.loop === true ) ) {\n\t\t\t\tautoSlideTimeout = setTimeout( navigateNext, autoSlide );\n\t\t\t\tautoSlideStartTime = Date.now();\n\t\t\t}\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( autoSlideTimeout !== -1 );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Cancels any ongoing request to auto-slide.\n\t */\n\tfunction cancelAutoSlide() {\n\n\t\tclearTimeout( autoSlideTimeout );\n\t\tautoSlideTimeout = -1;\n\n\t}\n\n\tfunction pauseAutoSlide() {\n\n\t\tif( autoSlide && !autoSlidePaused ) {\n\t\t\tautoSlidePaused = true;\n\t\t\tdispatchEvent( 'autoslidepaused' );\n\t\t\tclearTimeout( autoSlideTimeout );\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( false );\n\t\t\t}\n\t\t}\n\n\t}\n\n\tfunction resumeAutoSlide() {\n\n\t\tif( autoSlide && autoSlidePaused ) {\n\t\t\tautoSlidePaused = false;\n\t\t\tdispatchEvent( 'autoslideresumed' );\n\t\t\tcueAutoSlide();\n\t\t}\n\n\t}\n\n\tfunction navigateLeft() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().left ) {\n\t\t\t\tslide( indexh + 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || previousFragment() === false ) && availableRoutes().left ) {\n\t\t\tslide( indexh - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateRight() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().right ) {\n\t\t\t\tslide( indexh - 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || nextFragment() === false ) && availableRoutes().right ) {\n\t\t\tslide( indexh + 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateUp() {\n\n\t\t// Prioritize hiding fragments\n\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().up ) {\n\t\t\tslide( indexh, indexv - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateDown() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().down ) {\n\t\t\tslide( indexh, indexv + 1 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Navigates backwards, prioritized in the following order:\n\t * 1) Previous fragment\n\t * 2) Previous vertical slide\n\t * 3) Previous horizontal slide\n\t */\n\tfunction navigatePrev() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( previousFragment() === false ) {\n\t\t\tif( availableRoutes().up ) {\n\t\t\t\tnavigateUp();\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Fetch the previous horizontal slide, if there is one\n\t\t\t\tvar previousSlide;\n\n\t\t\t\tif( config.rtl ) {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.future' ) ).pop();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.past' ) ).pop();\n\t\t\t\t}\n\n\t\t\t\tif( previousSlide ) {\n\t\t\t\t\tvar v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;\n\t\t\t\t\tvar h = indexh - 1;\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * The reverse of #navigatePrev().\n\t */\n\tfunction navigateNext() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( nextFragment() === false ) {\n\t\t\tif( availableRoutes().down ) {\n\t\t\t\tnavigateDown();\n\t\t\t}\n\t\t\telse if( config.rtl ) {\n\t\t\t\tnavigateLeft();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigateRight();\n\t\t\t}\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Checks if the target element prevents the triggering of\n\t * swipe navigation.\n\t */\n\tfunction isSwipePrevented( target ) {\n\n\t\twhile( target && typeof target.hasAttribute === 'function' ) {\n\t\t\tif( target.hasAttribute( 'data-prevent-swipe' ) ) return true;\n\t\t\ttarget = target.parentNode;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ----------------------------- EVENTS -------------------------------//\n\t// --------------------------------------------------------------------//\n\n\t/**\n\t * Called by all event handlers that are based on user\n\t * input.\n\t */\n\tfunction onUserInput( event ) {\n\n\t\tif( config.autoSlideStoppable ) {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keypress' event.\n\t */\n\tfunction onDocumentKeyPress( event ) {\n\n\t\t// Check if the pressed key is question mark\n\t\tif( event.shiftKey && event.charCode === 63 ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tshowHelp( true );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keydown' event.\n\t */\n\tfunction onDocumentKeyDown( event ) {\n\n\t\t// If there's a condition specified and it returns false,\n\t\t// ignore this event\n\t\tif( typeof config.keyboardCondition === 'function' && config.keyboardCondition() === false ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Remember if auto-sliding was paused so we can toggle it\n\t\tvar autoSlideWasPaused = autoSlidePaused;\n\n\t\tonUserInput( event );\n\n\t\t// Check if there's a focused element that could be using\n\t\t// the keyboard\n\t\tvar activeElementIsCE = document.activeElement && document.activeElement.contentEditable !== 'inherit';\n\t\tvar activeElementIsInput = document.activeElement && document.activeElement.tagName && /input|textarea/i.test( document.activeElement.tagName );\n\n\t\t// Disregard the event if there's a focused element or a\n\t\t// keyboard modifier key is present\n\t\tif( activeElementIsCE || activeElementIsInput || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t// While paused only allow resume keyboard events; 'b', '.''\n\t\tvar resumeKeyCodes = [66,190,191];\n\t\tvar key;\n\n\t\t// Custom key bindings for togglePause should be able to resume\n\t\tif( typeof config.keyboard === 'object' ) {\n\t\t\tfor( key in config.keyboard ) {\n\t\t\t\tif( config.keyboard[key] === 'togglePause' ) {\n\t\t\t\t\tresumeKeyCodes.push( parseInt( key, 10 ) );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif( isPaused() && resumeKeyCodes.indexOf( event.keyCode ) === -1 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar triggered = false;\n\n\t\t// 1. User defined key bindings\n\t\tif( typeof config.keyboard === 'object' ) {\n\n\t\t\tfor( key in config.keyboard ) {\n\n\t\t\t\t// Check if this binding matches the pressed key\n\t\t\t\tif( parseInt( key, 10 ) === event.keyCode ) {\n\n\t\t\t\t\tvar value = config.keyboard[ key ];\n\n\t\t\t\t\t// Callback function\n\t\t\t\t\tif( typeof value === 'function' ) {\n\t\t\t\t\t\tvalue.apply( null, [ event ] );\n\t\t\t\t\t}\n\t\t\t\t\t// String shortcuts to reveal.js API\n\t\t\t\t\telse if( typeof value === 'string' && typeof Reveal[ value ] === 'function' ) {\n\t\t\t\t\t\tReveal[ value ].call();\n\t\t\t\t\t}\n\n\t\t\t\t\ttriggered = true;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// 2. System defined key bindings\n\t\tif( triggered === false ) {\n\n\t\t\t// Assume true and try to prove false\n\t\t\ttriggered = true;\n\n\t\t\tswitch( event.keyCode ) {\n\t\t\t\t// p, page up\n\t\t\t\tcase 80: case 33: navigatePrev(); break;\n\t\t\t\t// n, page down\n\t\t\t\tcase 78: case 34: navigateNext(); break;\n\t\t\t\t// h, left\n\t\t\t\tcase 72: case 37: navigateLeft(); break;\n\t\t\t\t// l, right\n\t\t\t\tcase 76: case 39: navigateRight(); break;\n\t\t\t\t// k, up\n\t\t\t\tcase 75: case 38: navigateUp(); break;\n\t\t\t\t// j, down\n\t\t\t\tcase 74: case 40: navigateDown(); break;\n\t\t\t\t// home\n\t\t\t\tcase 36: slide( 0 ); break;\n\t\t\t\t// end\n\t\t\t\tcase 35: slide( Number.MAX_VALUE ); break;\n\t\t\t\t// space\n\t\t\t\tcase 32: isOverview() ? deactivateOverview() : event.shiftKey ? navigatePrev() : navigateNext(); break;\n\t\t\t\t// return\n\t\t\t\tcase 13: isOverview() ? deactivateOverview() : triggered = false; break;\n\t\t\t\t// two-spot, semicolon, b, period, Logitech presenter tools \"black screen\" button\n\t\t\t\tcase 58: case 59: case 66: case 190: case 191: togglePause(); break;\n\t\t\t\t// f\n\t\t\t\tcase 70: enterFullscreen(); break;\n\t\t\t\t// a\n\t\t\t\tcase 65: if ( config.autoSlideStoppable ) toggleAutoSlide( autoSlideWasPaused ); break;\n\t\t\t\tdefault:\n\t\t\t\t\ttriggered = false;\n\t\t\t}\n\n\t\t}\n\n\t\t// If the input resulted in a triggered action we should prevent\n\t\t// the browsers default behavior\n\t\tif( triggered ) {\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\t\t// ESC or O key\n\t\telse if ( ( event.keyCode === 27 || event.keyCode === 79 ) && features.transforms3d ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\ttoggleOverview();\n\t\t\t}\n\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Handler for the 'touchstart' event, enables support for\n\t * swipe and pinch gestures.\n\t */\n\tfunction onTouchStart( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\ttouch.startX = event.touches[0].clientX;\n\t\ttouch.startY = event.touches[0].clientY;\n\t\ttouch.startCount = event.touches.length;\n\n\t\t// If there's two touches we need to memorize the distance\n\t\t// between those two points to detect pinching\n\t\tif( event.touches.length === 2 && config.overview ) {\n\t\t\ttouch.startSpan = distanceBetween( {\n\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\ty: event.touches[1].clientY\n\t\t\t}, {\n\t\t\t\tx: touch.startX,\n\t\t\t\ty: touch.startY\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchmove' event.\n\t */\n\tfunction onTouchMove( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\t// Each touch should only trigger one action\n\t\tif( !touch.captured ) {\n\t\t\tonUserInput( event );\n\n\t\t\tvar currentX = event.touches[0].clientX;\n\t\t\tvar currentY = event.touches[0].clientY;\n\n\t\t\t// If the touch started with two points and still has\n\t\t\t// two active touches; test for the pinch gesture\n\t\t\tif( event.touches.length === 2 && touch.startCount === 2 && config.overview ) {\n\n\t\t\t\t// The current distance in pixels between the two touch points\n\t\t\t\tvar currentSpan = distanceBetween( {\n\t\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\t\ty: event.touches[1].clientY\n\t\t\t\t}, {\n\t\t\t\t\tx: touch.startX,\n\t\t\t\t\ty: touch.startY\n\t\t\t\t} );\n\n\t\t\t\t// If the span is larger than the desire amount we've got\n\t\t\t\t// ourselves a pinch\n\t\t\t\tif( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\n\t\t\t\t\tif( currentSpan < touch.startSpan ) {\n\t\t\t\t\t\tactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tdeactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tevent.preventDefault();\n\n\t\t\t}\n\t\t\t// There was only one touch point, look for a swipe\n\t\t\telse if( event.touches.length === 1 && touch.startCount !== 2 ) {\n\n\t\t\t\tvar deltaX = currentX - touch.startX,\n\t\t\t\t\tdeltaY = currentY - touch.startY;\n\n\t\t\t\tif( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateLeft();\n\t\t\t\t}\n\t\t\t\telse if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateRight();\n\t\t\t\t}\n\t\t\t\telse if( deltaY > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateUp();\n\t\t\t\t}\n\t\t\t\telse if( deltaY < -touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateDown();\n\t\t\t\t}\n\n\t\t\t\t// If we're embedded, only block touch events if they have\n\t\t\t\t// triggered an action\n\t\t\t\tif( config.embedded ) {\n\t\t\t\t\tif( touch.captured || isVerticalSlide( currentSlide ) ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Not embedded? Block them all to avoid needless tossing\n\t\t\t\t// around of the viewport in iOS\n\t\t\t\telse {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t\t// There's a bug with swiping on some Android devices unless\n\t\t// the default action is always prevented\n\t\telse if( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchend' event.\n\t */\n\tfunction onTouchEnd( event ) {\n\n\t\ttouch.captured = false;\n\n\t}\n\n\t/**\n\t * Convert pointer down to touch start.\n\t */\n\tfunction onPointerDown( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" ) {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchStart( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer move to touch move.\n\t */\n\tfunction onPointerMove( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchMove( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer up to touch end.\n\t */\n\tfunction onPointerUp( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchEnd( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles mouse wheel scrolling, throttled to avoid skipping\n\t * multiple slides.\n\t */\n\tfunction onDocumentMouseScroll( event ) {\n\n\t\tif( Date.now() - lastMouseWheelStep > 600 ) {\n\n\t\t\tlastMouseWheelStep = Date.now();\n\n\t\t\tvar delta = event.detail || -event.wheelDelta;\n\t\t\tif( delta > 0 ) {\n\t\t\t\tnavigateNext();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigatePrev();\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Clicking on the progress bar results in a navigation to the\n\t * closest approximate horizontal slide using this equation:\n\t *\n\t * ( clickX / presentationWidth ) * numberOfSlides\n\t */\n\tfunction onProgressClicked( event ) {\n\n\t\tonUserInput( event );\n\n\t\tevent.preventDefault();\n\n\t\tvar slidesTotal = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length;\n\t\tvar slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal );\n\n\t\tif( config.rtl ) {\n\t\t\tslideIndex = slidesTotal - slideIndex;\n\t\t}\n\n\t\tslide( slideIndex );\n\n\t}\n\n\t/**\n\t * Event handler for navigation control buttons.\n\t */\n\tfunction onNavigateLeftClicked( event ) { event.preventDefault(); onUserInput(); navigateLeft(); }\n\tfunction onNavigateRightClicked( event ) { event.preventDefault(); onUserInput(); navigateRight(); }\n\tfunction onNavigateUpClicked( event ) { event.preventDefault(); onUserInput(); navigateUp(); }\n\tfunction onNavigateDownClicked( event ) { event.preventDefault(); onUserInput(); navigateDown(); }\n\tfunction onNavigatePrevClicked( event ) { event.preventDefault(); onUserInput(); navigatePrev(); }\n\tfunction onNavigateNextClicked( event ) { event.preventDefault(); onUserInput(); navigateNext(); }\n\n\t/**\n\t * Handler for the window level 'hashchange' event.\n\t */\n\tfunction onWindowHashChange( event ) {\n\n\t\treadURL();\n\n\t}\n\n\t/**\n\t * Handler for the window level 'resize' event.\n\t */\n\tfunction onWindowResize( event ) {\n\n\t\tlayout();\n\n\t}\n\n\t/**\n\t * Handle for the window level 'visibilitychange' event.\n\t */\n\tfunction onPageVisibilityChange( event ) {\n\n\t\tvar isHidden =  document.webkitHidden ||\n\t\t\t\t\t\tdocument.msHidden ||\n\t\t\t\t\t\tdocument.hidden;\n\n\t\t// If, after clicking a link or similar and we're coming back,\n\t\t// focus the document.body to ensure we can use keyboard shortcuts\n\t\tif( isHidden === false && document.activeElement !== document.body ) {\n\t\t\t// Not all elements support .blur() - SVGs among them.\n\t\t\tif( typeof document.activeElement.blur === 'function' ) {\n\t\t\t\tdocument.activeElement.blur();\n\t\t\t}\n\t\t\tdocument.body.focus();\n\t\t}\n\n\t}\n\n\t/**\n\t * Invoked when a slide is and we're in the overview.\n\t */\n\tfunction onOverviewSlideClicked( event ) {\n\n\t\t// TODO There's a bug here where the event listeners are not\n\t\t// removed after deactivating the overview.\n\t\tif( eventsAreBound && isOverview() ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar element = event.target;\n\n\t\t\twhile( element && !element.nodeName.match( /section/gi ) ) {\n\t\t\t\telement = element.parentNode;\n\t\t\t}\n\n\t\t\tif( element && !element.classList.contains( 'disabled' ) ) {\n\n\t\t\t\tdeactivateOverview();\n\n\t\t\t\tif( element.nodeName.match( /section/gi ) ) {\n\t\t\t\t\tvar h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),\n\t\t\t\t\t\tv = parseInt( element.getAttribute( 'data-index-v' ), 10 );\n\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles clicks on links that are set to preview in the\n\t * iframe overlay.\n\t */\n\tfunction onPreviewLinkClicked( event ) {\n\n\t\tif( event.currentTarget && event.currentTarget.hasAttribute( 'href' ) ) {\n\t\t\tvar url = event.currentTarget.getAttribute( 'href' );\n\t\t\tif( url ) {\n\t\t\t\tshowPreview( url );\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles click on the auto-sliding controls element.\n\t */\n\tfunction onAutoSlidePlayerClick( event ) {\n\n\t\t// Replay\n\t\tif( Reveal.isLastSlide() && config.loop === false ) {\n\t\t\tslide( 0, 0 );\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Resume\n\t\telse if( autoSlidePaused ) {\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Pause\n\t\telse {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------ PLAYBACK COMPONENT ------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\t/**\n\t * Constructor for the playback component, which displays\n\t * play/pause/progress controls.\n\t *\n\t * @param {HTMLElement} container The component will append\n\t * itself to this\n\t * @param {Function} progressCheck A method which will be\n\t * called frequently to get the current progress on a range\n\t * of 0-1\n\t */\n\tfunction Playback( container, progressCheck ) {\n\n\t\t// Cosmetics\n\t\tthis.diameter = 50;\n\t\tthis.thickness = 3;\n\n\t\t// Flags if we are currently playing\n\t\tthis.playing = false;\n\n\t\t// Current progress on a 0-1 range\n\t\tthis.progress = 0;\n\n\t\t// Used to loop the animation smoothly\n\t\tthis.progressOffset = 1;\n\n\t\tthis.container = container;\n\t\tthis.progressCheck = progressCheck;\n\n\t\tthis.canvas = document.createElement( 'canvas' );\n\t\tthis.canvas.className = 'playback';\n\t\tthis.canvas.width = this.diameter;\n\t\tthis.canvas.height = this.diameter;\n\t\tthis.context = this.canvas.getContext( '2d' );\n\n\t\tthis.container.appendChild( this.canvas );\n\n\t\tthis.render();\n\n\t}\n\n\tPlayback.prototype.setPlaying = function( value ) {\n\n\t\tvar wasPlaying = this.playing;\n\n\t\tthis.playing = value;\n\n\t\t// Start repainting if we weren't already\n\t\tif( !wasPlaying && this.playing ) {\n\t\t\tthis.animate();\n\t\t}\n\t\telse {\n\t\t\tthis.render();\n\t\t}\n\n\t};\n\n\tPlayback.prototype.animate = function() {\n\n\t\tvar progressBefore = this.progress;\n\n\t\tthis.progress = this.progressCheck();\n\n\t\t// When we loop, offset the progress so that it eases\n\t\t// smoothly rather than immediately resetting\n\t\tif( progressBefore > 0.8 && this.progress < 0.2 ) {\n\t\t\tthis.progressOffset = this.progress;\n\t\t}\n\n\t\tthis.render();\n\n\t\tif( this.playing ) {\n\t\t\tfeatures.requestAnimationFrameMethod.call( window, this.animate.bind( this ) );\n\t\t}\n\n\t};\n\n\t/**\n\t * Renders the current progress and playback state.\n\t */\n\tPlayback.prototype.render = function() {\n\n\t\tvar progress = this.playing ? this.progress : 0,\n\t\t\tradius = ( this.diameter / 2 ) - this.thickness,\n\t\t\tx = this.diameter / 2,\n\t\t\ty = this.diameter / 2,\n\t\t\ticonSize = 14;\n\n\t\t// Ease towards 1\n\t\tthis.progressOffset += ( 1 - this.progressOffset ) * 0.1;\n\n\t\tvar endAngle = ( - Math.PI / 2 ) + ( progress * ( Math.PI * 2 ) );\n\t\tvar startAngle = ( - Math.PI / 2 ) + ( this.progressOffset * ( Math.PI * 2 ) );\n\n\t\tthis.context.save();\n\t\tthis.context.clearRect( 0, 0, this.diameter, this.diameter );\n\n\t\t// Solid background color\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius + 2, 0, Math.PI * 2, false );\n\t\tthis.context.fillStyle = 'rgba( 0, 0, 0, 0.4 )';\n\t\tthis.context.fill();\n\n\t\t// Draw progress track\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius, 0, Math.PI * 2, false );\n\t\tthis.context.lineWidth = this.thickness;\n\t\tthis.context.strokeStyle = '#666';\n\t\tthis.context.stroke();\n\n\t\tif( this.playing ) {\n\t\t\t// Draw progress on top of track\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.arc( x, y, radius, startAngle, endAngle, false );\n\t\t\tthis.context.lineWidth = this.thickness;\n\t\t\tthis.context.strokeStyle = '#fff';\n\t\t\tthis.context.stroke();\n\t\t}\n\n\t\tthis.context.translate( x - ( iconSize / 2 ), y - ( iconSize / 2 ) );\n\n\t\t// Draw play/pause icons\n\t\tif( this.playing ) {\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fillRect( 0, 0, iconSize / 2 - 2, iconSize );\n\t\t\tthis.context.fillRect( iconSize / 2 + 2, 0, iconSize / 2 - 2, iconSize );\n\t\t}\n\t\telse {\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.translate( 2, 0 );\n\t\t\tthis.context.moveTo( 0, 0 );\n\t\t\tthis.context.lineTo( iconSize - 2, iconSize / 2 );\n\t\t\tthis.context.lineTo( 0, iconSize );\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fill();\n\t\t}\n\n\t\tthis.context.restore();\n\n\t};\n\n\tPlayback.prototype.on = function( type, listener ) {\n\t\tthis.canvas.addEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.off = function( type, listener ) {\n\t\tthis.canvas.removeEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.destroy = function() {\n\n\t\tthis.playing = false;\n\n\t\tif( this.canvas.parentNode ) {\n\t\t\tthis.container.removeChild( this.canvas );\n\t\t}\n\n\t};\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------------- API --------------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\tReveal = {\n\t\tinitialize: initialize,\n\t\tconfigure: configure,\n\t\tsync: sync,\n\n\t\t// Navigation methods\n\t\tslide: slide,\n\t\tleft: navigateLeft,\n\t\tright: navigateRight,\n\t\tup: navigateUp,\n\t\tdown: navigateDown,\n\t\tprev: navigatePrev,\n\t\tnext: navigateNext,\n\n\t\t// Fragment methods\n\t\tnavigateFragment: navigateFragment,\n\t\tprevFragment: previousFragment,\n\t\tnextFragment: nextFragment,\n\n\t\t// Deprecated aliases\n\t\tnavigateTo: slide,\n\t\tnavigateLeft: navigateLeft,\n\t\tnavigateRight: navigateRight,\n\t\tnavigateUp: navigateUp,\n\t\tnavigateDown: navigateDown,\n\t\tnavigatePrev: navigatePrev,\n\t\tnavigateNext: navigateNext,\n\n\t\t// Forces an update in slide layout\n\t\tlayout: layout,\n\n\t\t// Returns an object with the available routes as booleans (left/right/top/bottom)\n\t\tavailableRoutes: availableRoutes,\n\n\t\t// Returns an object with the available fragments as booleans (prev/next)\n\t\tavailableFragments: availableFragments,\n\n\t\t// Toggles the overview mode on/off\n\t\ttoggleOverview: toggleOverview,\n\n\t\t// Toggles the \"black screen\" mode on/off\n\t\ttogglePause: togglePause,\n\n\t\t// Toggles the auto slide mode on/off\n\t\ttoggleAutoSlide: toggleAutoSlide,\n\n\t\t// State checks\n\t\tisOverview: isOverview,\n\t\tisPaused: isPaused,\n\t\tisAutoSliding: isAutoSliding,\n\n\t\t// Adds or removes all internal event listeners (such as keyboard)\n\t\taddEventListeners: addEventListeners,\n\t\tremoveEventListeners: removeEventListeners,\n\n\t\t// Facility for persisting and restoring the presentation state\n\t\tgetState: getState,\n\t\tsetState: setState,\n\n\t\t// Presentation progress on range of 0-1\n\t\tgetProgress: getProgress,\n\n\t\t// Returns the indices of the current, or specified, slide\n\t\tgetIndices: getIndices,\n\n\t\tgetTotalSlides: getTotalSlides,\n\n\t\t// Returns the slide element at the specified index\n\t\tgetSlide: getSlide,\n\n\t\t// Returns the slide background element at the specified index\n\t\tgetSlideBackground: getSlideBackground,\n\n\t\t// Returns the speaker notes string for a slide, or null\n\t\tgetSlideNotes: getSlideNotes,\n\n\t\t// Returns the previous slide element, may be null\n\t\tgetPreviousSlide: function() {\n\t\t\treturn previousSlide;\n\t\t},\n\n\t\t// Returns the current slide element\n\t\tgetCurrentSlide: function() {\n\t\t\treturn currentSlide;\n\t\t},\n\n\t\t// Returns the current scale of the presentation content\n\t\tgetScale: function() {\n\t\t\treturn scale;\n\t\t},\n\n\t\t// Returns the current configuration object\n\t\tgetConfig: function() {\n\t\t\treturn config;\n\t\t},\n\n\t\t// Helper method, retrieves query string as a key/value hash\n\t\tgetQueryHash: function() {\n\t\t\tvar query = {};\n\n\t\t\tlocation.search.replace( /[A-Z0-9]+?=([\\w\\.%-]*)/gi, function(a) {\n\t\t\t\tquery[ a.split( '=' ).shift() ] = a.split( '=' ).pop();\n\t\t\t} );\n\n\t\t\t// Basic deserialization\n\t\t\tfor( var i in query ) {\n\t\t\t\tvar value = query[ i ];\n\n\t\t\t\tquery[ i ] = deserialize( unescape( value ) );\n\t\t\t}\n\n\t\t\treturn query;\n\t\t},\n\n\t\t// Returns true if we're currently on the first slide\n\t\tisFirstSlide: function() {\n\t\t\treturn ( indexh === 0 && indexv === 0 );\n\t\t},\n\n\t\t// Returns true if we're currently on the last slide\n\t\tisLastSlide: function() {\n\t\t\tif( currentSlide ) {\n\t\t\t\t// Does this slide has next a sibling?\n\t\t\t\tif( currentSlide.nextElementSibling ) return false;\n\n\t\t\t\t// If it's vertical, does its parent have a next sibling?\n\t\t\t\tif( isVerticalSlide( currentSlide ) && currentSlide.parentNode.nextElementSibling ) return false;\n\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\n\t\t// Checks if reveal.js has been loaded and is ready for use\n\t\tisReady: function() {\n\t\t\treturn loaded;\n\t\t},\n\n\t\t// Forward event binding to the reveal DOM element\n\t\taddEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\t\tremoveEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\n\t\t// Programatically triggers a keyboard event\n\t\ttriggerKey: function( keyCode ) {\n\t\t\tonDocumentKeyDown( { keyCode: keyCode } );\n\t\t}\n\t};\n\n\treturn Reveal;\n\n}));\n"
  },
  {
    "path": "doc/meetingcpp-2016/lib/css/zenburn.css",
    "content": "/*\nZenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>\nbased on dark.css by Ivan Sagalaev\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #3f3f3f;\n  color: #dcdcdc;\n  -webkit-text-size-adjust: none;\n}\n\n.hljs-keyword,\n.hljs-tag,\n.css .hljs-class,\n.css .hljs-id,\n.lisp .hljs-title,\n.nginx .hljs-title,\n.hljs-request,\n.hljs-status,\n.clojure .hljs-attribute {\n  color: #e3ceab;\n}\n\n.django .hljs-template_tag,\n.django .hljs-variable,\n.django .hljs-filter .hljs-argument {\n  color: #dcdcdc;\n}\n\n.hljs-number,\n.hljs-date {\n  color: #8cd0d3;\n}\n\n.dos .hljs-envvar,\n.dos .hljs-stream,\n.hljs-variable,\n.apache .hljs-sqbracket,\n.hljs-name {\n  color: #efdcbc;\n}\n\n.dos .hljs-flow,\n.diff .hljs-change,\n.python .exception,\n.python .hljs-built_in,\n.hljs-literal,\n.tex .hljs-special {\n  color: #efefaf;\n}\n\n.diff .hljs-chunk,\n.hljs-subst {\n  color: #8f8f8f;\n}\n\n.dos .hljs-keyword,\n.hljs-decorator,\n.hljs-title,\n.hljs-type,\n.diff .hljs-header,\n.ruby .hljs-class .hljs-parent,\n.apache .hljs-tag,\n.nginx .hljs-built_in,\n.tex .hljs-command,\n.hljs-prompt {\n  color: #efef8f;\n}\n\n.dos .hljs-winutils,\n.ruby .hljs-symbol,\n.ruby .hljs-symbol .hljs-string,\n.ruby .hljs-string {\n  color: #dca3a3;\n}\n\n.diff .hljs-deletion,\n.hljs-string,\n.hljs-tag .hljs-value,\n.hljs-preprocessor,\n.hljs-pragma,\n.hljs-built_in,\n.smalltalk .hljs-class,\n.smalltalk .hljs-localvars,\n.smalltalk .hljs-array,\n.css .hljs-rule .hljs-value,\n.hljs-attr_selector,\n.hljs-pseudo,\n.apache .hljs-cbracket,\n.tex .hljs-formula,\n.coffeescript .hljs-attribute {\n  color: #cc9393;\n}\n\n.hljs-shebang,\n.diff .hljs-addition,\n.hljs-comment,\n.hljs-annotation,\n.hljs-pi,\n.hljs-doctype {\n  color: #7f9f7f;\n}\n\n.coffeescript .javascript,\n.javascript .xml,\n.tex .hljs-formula,\n.xml .javascript,\n.xml .vbscript,\n.xml .css,\n.xml .hljs-cdata {\n  opacity: 0.5;\n}"
  },
  {
    "path": "doc/meetingcpp-2016/lib/font/league-gothic/LICENSE",
    "content": "SIL Open Font License (OFL)\nhttp://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL\n"
  },
  {
    "path": "doc/meetingcpp-2016/lib/font/league-gothic/league-gothic.css",
    "content": "@font-face {\n    font-family: 'League Gothic';\n    src: url('league-gothic.eot');\n    src: url('league-gothic.eot?#iefix') format('embedded-opentype'),\n         url('league-gothic.woff') format('woff'),\n         url('league-gothic.ttf') format('truetype');\n\n    font-weight: normal;\n    font-style: normal;\n}"
  },
  {
    "path": "doc/meetingcpp-2016/lib/font/source-sans-pro/LICENSE",
    "content": "SIL Open Font License\n\nCopyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL\n\n—————————————————————————————-\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n—————————————————————————————-\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.\n\nDEFINITIONS\n“Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.\n\n“Reserved Font Name” refers to any names specified as such after the copyright statement(s).\n\n“Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).\n\n“Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.\n\n“Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.\n\n5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are not met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE."
  },
  {
    "path": "doc/meetingcpp-2016/lib/font/source-sans-pro/source-sans-pro.css",
    "content": "@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-regular.eot');\n    src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-regular.woff') format('woff'),\n         url('source-sans-pro-regular.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-italic.eot');\n    src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-italic.woff') format('woff'),\n         url('source-sans-pro-italic.ttf') format('truetype');\n    font-weight: normal;\n    font-style: italic;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibold.eot');\n    src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibold.woff') format('woff'),\n         url('source-sans-pro-semibold.ttf') format('truetype');\n    font-weight: 600;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibolditalic.eot');\n    src: url('source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibolditalic.woff') format('woff'),\n         url('source-sans-pro-semibolditalic.ttf') format('truetype');\n    font-weight: 600;\n    font-style: italic;\n}"
  },
  {
    "path": "doc/meetingcpp-2016/lib/js/classList.js",
    "content": "/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/\nif(typeof document!==\"undefined\"&&!(\"classList\" in document.createElement(\"a\"))){(function(j){var a=\"classList\",f=\"prototype\",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\\s+|\\s+$/g,\"\")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p<o;p++){if(p in this&&this[p]===q){return p}}return -1},n=function(o,p){this.name=o;this.code=DOMException[o];this.message=p},g=function(p,o){if(o===\"\"){throw new n(\"SYNTAX_ERR\",\"An invalid or illegal string was specified\")}if(/\\s/.test(o)){throw new n(\"INVALID_CHARACTER_ERR\",\"String contains an invalid character\")}return c.call(p,o)},d=function(s){var r=k.call(s.className),q=r?r.split(/\\s+/):[],p=0,o=q.length;for(;p<o;p++){this.push(q[p])}this._updateClassName=function(){s.className=this.toString()}},e=d[f]=[],i=function(){return new d(this)};n[f]=Error[f];e.item=function(o){return this[o]||null};e.contains=function(o){o+=\"\";return g(this,o)!==-1};e.add=function(o){o+=\"\";if(g(this,o)===-1){this.push(o);this._updateClassName()}};e.remove=function(p){p+=\"\";var o=g(this,p);if(o!==-1){this.splice(o,1);this._updateClassName()}};e.toggle=function(o){o+=\"\";if(g(this,o)===-1){this.add(o)}else{this.remove(o)}};e.toString=function(){return this.join(\" \")};if(b.defineProperty){var l={get:i,enumerable:true,configurable:true};try{b.defineProperty(m,a,l)}catch(h){if(h.number===-2146823252){l.enumerable=false;b.defineProperty(m,a,l)}}}else{if(b[f].__defineGetter__){m.__defineGetter__(a,i)}}}(self))};"
  },
  {
    "path": "doc/meetingcpp-2016/lib/js/html5shiv.js",
    "content": "document.createElement('header');\ndocument.createElement('nav');\ndocument.createElement('section');\ndocument.createElement('article');\ndocument.createElement('aside');\ndocument.createElement('footer');\ndocument.createElement('hgroup');"
  },
  {
    "path": "doc/meetingcpp-2016/package.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"homepage\": \"http://lab.hakim.se/reveal-js\",\n  \"subdomain\": \"revealjs\",\n  \"main\": \"js/reveal.js\",\n  \"scripts\": {\n    \"test\": \"grunt test\",\n    \"start\": \"grunt serve\"\n  },\n  \"author\": {\n    \"name\": \"Hakim El Hattab\",\n    \"email\": \"hakim.elhattab@gmail.com\",\n    \"web\": \"http://hakim.se\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"engines\": {\n    \"node\": \"~4.1.1\"\n  },\n  \"dependencies\": {\n    \"underscore\": \"~1.8.3\",\n    \"express\": \"~4.13.3\",\n    \"mustache\": \"~2.1.3\",\n    \"socket.io\": \"~1.3.7\"\n  },\n  \"devDependencies\": {\n    \"grunt-contrib-qunit\": \"~0.7.0\",\n    \"grunt-contrib-jshint\": \"~0.11.3\",\n    \"grunt-contrib-cssmin\": \"~0.14.0\",\n    \"grunt-contrib-uglify\": \"~0.9.2\",\n    \"grunt-contrib-watch\": \"~0.6.1\",\n    \"grunt-sass\": \"~1.1.0-beta\",\n    \"grunt-contrib-connect\": \"~0.11.2\",\n    \"grunt-autoprefixer\": \"~3.0.3\",\n    \"grunt-zip\": \"~0.17.1\",\n    \"grunt\": \"~0.4.5\",\n    \"node-sass\": \"~3.3.3\"\n  },\n  \n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/highlight/highlight.js",
    "content": "// START CUSTOM REVEAL.JS INTEGRATION\n(function() {\n\tif( typeof window.addEventListener === 'function' ) {\n\t\tvar hljs_nodes = document.querySelectorAll( 'pre code' );\n\n\t\tfor( var i = 0, len = hljs_nodes.length; i < len; i++ ) {\n\t\t\tvar element = hljs_nodes[i];\n\n\t\t\t// trim whitespace if data-trim attribute is present\n\t\t\tif( element.hasAttribute( 'data-trim' ) && typeof element.innerHTML.trim === 'function' ) {\n\t\t\t\telement.innerHTML = element.innerHTML.trim();\n\t\t\t}\n\n\t\t\t// Now escape html unless prevented by author\n\t\t\tif( ! element.hasAttribute( 'data-noescape' )) {\n\t\t\t\telement.innerHTML = element.innerHTML.replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\");\n\t\t\t}\n\n\t\t\t// re-highlight when focus is lost (for edited code)\n\t\t\telement.addEventListener( 'focusout', function( event ) {\n\t\t\t\thljs.highlightBlock( event.currentTarget );\n\t\t\t}, false );\n\t\t}\n\t}\n})();\n// END CUSTOM REVEAL.JS INTEGRATION\n\n// highlight.js v8.9.1 with support for all available languages\n\n!function(e){\"undefined\"!=typeof exports?e(exports):(window.hljs=e({}),\"function\"==typeof define&&define.amd&&define(\"hljs\",[],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var n,t,r,i=e.className+\" \";if(i+=e.parentNode?e.parentNode.className:\"\",t=/\\blang(?:uage)?-([\\w-]+)\\b/i.exec(i))return w(t[1])?t[1]:\"no-highlight\";for(i=i.split(/\\s+/),n=0,r=i.length;r>n;n++)if(w(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+Array.prototype.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"==e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else\"start\"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\b\\w+\\b/,!0),i&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&i.tE&&(a.tE+=(a.e?\"|\":\"\")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push(\"self\"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?\"\":E.classPrefix,i='<span class=\"'+a,o=t?\"\":\"</span>\";return i+=e+'\">',i+n+o}function p(){if(!L.k)return n(M);var e=\"\",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(M);r;){e+=n(M.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=h(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(M)}return e+n(M.substr(t))}function d(){var e=\"string\"==typeof L.sL;if(e&&!x[L.sL])return n(M);var t=e?l(L.sL,M,!0,y[L.sL]):f(M,L.sL.length?L.sL:void 0);return L.r>0&&(B+=t.r),e&&(y[L.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){return void 0!==L.sL?d():p()}function v(e,t){var r=e.cN?h(e.cN,\"\",!0):\"\";e.rB?(k+=r,M=\"\"):e.eB?(k+=n(t)+r,M=\"\"):(k+=r,M=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(M+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(M+=t),k+=b();do L.cN&&(k+=\"</span>\"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),M=\"\",a.starts&&v(a.starts,\"\"),i.rE?0:t.length}if(c(t,L))throw new Error('Illegal lexeme \"'+t+'\" for mode \"'+(L.cN||\"<unnamed>\")+'\"');return M+=t,t.length||1}var N=w(e);if(!N)throw new Error('Unknown language: \"'+e+'\"');s(N);var R,L=i||N,y={},k=\"\";for(R=L;R!=N;R=R.parent)R.cN&&(k=h(R.cN,\"\",!0)+k);var M=\"\",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+=\"</span>\");return{r:B,value:k,language:e,top:L}}catch(O){if(-1!=O.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw O}}function f(e,t){t=t||E.languages||Object.keys(x);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(w(n)){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return E.tabReplace&&(e=e.replace(/^((<[^>]+>|\\t)+)/gm,function(e,n){return n.replace(/\\t/g,E.tabReplace)})),E.useBR&&(e=e.replace(/\\n/g,\"<br>\")),e}function h(e,n,t){var r=n?R[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n=i(e);if(!a(n)){var t;E.useBR?(t=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),t.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):t=e;var r=t.textContent,o=n?l(n,r,!0):f(r),s=u(t);if(s.length){var p=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\");p.innerHTML=o.value,o.value=c(s,u(p),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=h(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){E=o(E,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll(\"pre code\");Array.prototype.forEach.call(e,p)}}function v(){addEventListener(\"DOMContentLoaded\",b,!1),addEventListener(\"load\",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){R[e]=n})}function N(){return Object.keys(x)}function w(e){return e=(e||\"\").toLowerCase(),x[e]||x[R[e]]}var E={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},x={},R={};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=w,e.inherit=o,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:\"doctag\",b:\"(?:TODO|FIXME|NOTE|BUG|XXX):\",r:0}),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e});hljs.registerLanguage(\"cs\",function(e){var r=\"abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield\",t=e.IR+\"(<\"+e.IR+\">)?\";return{aliases:[\"csharp\"],k:r,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line region endregion pragma checksum\"},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},e.ASM,e.QSM,e.CNM,{bK:\"class interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"namespace\",e:/[{;=]/,i:/[^\\s:]/,c:[{cN:\"title\",b:\"[a-zA-Z](\\\\.?\\\\w)*\",r:0},e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage(\"tp\",function(O){var R={cN:\"number\",b:\"[1-9][0-9]*\",r:0},E={cN:\"comment\",b:\":[^\\\\]]+\"},T={cN:\"built_in\",b:\"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|    TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\\\[\",e:\"\\\\]\",c:[\"self\",R,E]},N={cN:\"built_in\",b:\"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\\\[\",e:\"\\\\]\",c:[\"self\",R,O.QSM,E]};return{k:{keyword:\"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET\",constant:\"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET\"},c:[T,N,{cN:\"keyword\",b:\"/(PROG|ATTR|MN|POS|END)\\\\b\"},{cN:\"keyword\",b:\"(CALL|RUN|POINT_LOGIC|LBL)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)\"},{cN:\"number\",b:\"\\\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\\\b\",r:0},O.C(\"//\",\"[;$]\"),O.C(\"!\",\"[;$]\"),O.C(\"--eg:\",\"$\"),O.QSM,{cN:\"string\",b:\"'\",e:\"'\"},O.CNM,{cN:\"variable\",b:\"\\\\$[A-Za-z0-9_]+\"}]}});hljs.registerLanguage(\"irpf90\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here\"};return{cI:!0,k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),e.C(\"begin_doc\",\"end_doc\",{r:10}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"groovy\",function(e){return{k:{typename:\"byte short char int long boolean float double void\",literal:\"true false null\",keyword:\"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},{cN:\"string\",b:\"'''\",e:\"'''\"},{cN:\"string\",b:\"\\\\$/\",e:\"/\\\\$\",r:10},e.ASM,{cN:\"regexp\",b:/~?\\/[^\\/\\n]+\\//,c:[e.BE]},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.BNM,{cN:\"class\",bK:\"class interface trait enum\",e:\"{\",i:\":\",c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{cN:\"string\",b:/[^\\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\\?/,e:/\\:/},{cN:\"label\",b:\"^\\\\s*[A-Za-z0-9_$]+:\",r:0}],i:/#/}});hljs.registerLanguage(\"stata\",function(e){return{aliases:[\"do\",\"ado\"],cI:!0,k:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",c:[{cN:\"label\",v:[{b:\"\\\\$\\\\{?[a-zA-Z0-9_]+\\\\}?\"},{b:\"`[a-zA-Z0-9_]+'\"}]},{cN:\"string\",v:[{b:'`\"[^\\r\\n]*?\"\\''},{b:'\"[^\\r\\n\"]*\"'}]},{cN:\"literal\",v:[{b:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\(|$)\"}]},e.C(\"^[ \t]*\\\\*.*$\",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\.]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",operator:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"shebang\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage(\"handlebars\",function(e){var a=\"each in with if else unless bindattr action collection debugger log outlet template unbound view yield\";return{aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{{\",e:\"}}\",c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a}]}]}});hljs.registerLanguage(\"elm\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],i={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"}].concat(c)},t={cN:\"container\",b:\"{\",e:\"}\",c:n.c};return{k:\"let in if then else case of where module import exposing type alias as infix infixl infixr port\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 as exposing\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"typedef\",b:\"\\\\btype\\\\b\",e:\"$\",k:\"type alias\",c:[i,n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bport\\\\b\",e:\"$\",k:\"port\",c:c},e.QSM,e.CNM,i,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"javascript\",function(e){return{aliases:[\"js\"],k:{keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},c:[{cN:\"pi\",r:10,b:/^\\s*['\"]use (strict|asm)['\"]/},e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,{cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\"}]},e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\\s*[);\\]]/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\\[|%/},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0},{bK:\"import\",e:\"[;$]\",k:\"import from as\",c:[e.ASM,e.QSM]},{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]}],i:/#/}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"tag\",b:\"</?\",e:\">\"},{cN:\"keyword\",b:/\\w+/,r:0,k:{common:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"sqbracket\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"cbracket\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"vhdl\",function(e){var t=\"\\\\d(_|\\\\d)*\",r=\"[eE][-+]?\"+t,n=t+\"(\\\\.\"+t+\")?(\"+r+\")?\",o=\"\\\\w+\",i=t+\"#\"+o+\"(\\\\.\"+o+\")?#(\"+r+\")?\",a=\"\\\\b(\"+i+\"|\"+n+\")\";return{cI:!0,k:{keyword:\"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor\",typename:\"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector\"},i:\"{\",c:[e.CBCM,e.C(\"--\",\"$\"),e.QSM,{cN:\"number\",b:a,r:0},{cN:\"literal\",b:\"'(U|X|0|1|Z|W|L|H|-)'\",c:[e.BE]},{cN:\"attribute\",b:\"'[A-Za-z](_?[A-Za-z0-9])*\",c:[e.BE]}]}});hljs.registerLanguage(\"typescript\",function(e){var r={keyword:\"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void\"};return{aliases:[\"ts\"],k:r,c:[{cN:\"pi\",b:/^\\s*['\"]use strict['\"]/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM],r:0},{cN:\"function\",b:\"function\",e:/[\\{;]/,eE:!0,k:r,c:[\"self\",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/,r:0},{cN:\"constructor\",bK:\"constructor\",e:/\\{/,eE:!0,r:10},{cN:\"module\",bK:\"module\",e:/\\{/,eE:!0},{cN:\"interface\",bK:\"interface\",e:/\\{/,eE:!0,k:\"interface extends\"},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0}]}});hljs.registerLanguage(\"x86asm\",function(s){return{cI:!0,l:\"\\\\.?\"+s.IR,k:{keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",literal:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0  xmm1  xmm2  xmm3  xmm4  xmm5  xmm6  xmm7  xmm8  xmm9 xmm10  xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0  ymm1  ymm2  ymm3  ymm4  ymm5  ymm6  ymm7  ymm8  ymm9 ymm10  ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0  zmm1  zmm2  zmm3  zmm4  zmm5  zmm6  zmm7  zmm8  zmm9 zmm10  zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l\",pseudo:\"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times\",preprocessor:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__  __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__  __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public \",built_in:\"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},c:[s.C(\";\",\"$\",{r:0}),{cN:\"number\",v:[{b:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",r:0},{b:\"\\\\$[0-9][0-9A-Fa-f]*\",r:0},{b:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{b:\"\\\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"}]},s.QSM,{cN:\"string\",v:[{b:\"'\",e:\"[^\\\\\\\\]'\"},{b:\"`\",e:\"[^\\\\\\\\]`\"},{b:\"\\\\.[A-Za-z0-9]+\"}],r:0},{cN:\"label\",v:[{b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\"},{b:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\"}],r:0},{cN:\"argument\",b:\"%[0-9]+\",r:0},{cN:\"built_in\",b:\"%!S+\",r:0}]}});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{cN:\"constant\",e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"title\",b:/^[\\w]+:\\s*$/},{cN:\"phony\",b:/^\\.PHONY:/,e:/$/,k:\".PHONY\",l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"delphi\",function(e){var r=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure\",t=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],i={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:\"string\",b:/(#\\d+)+/},o={b:e.IR+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",rB:!0,c:[e.TM]},n={cN:\"function\",bK:\"function constructor destructor procedure\",e:/[:;]/,k:\"function constructor|10 destructor|10 procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage(\"erb\",function(e){return{sL:\"xml\",c:[e.C(\"<%#\",\"%>\"),{b:\"<%[%=-]?\",e:\"[%-]?%>\",sL:\"ruby\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\\\w+\"},i={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n=\"@interface @class @protocol @implementation\";return{aliases:[\"mm\",\"objc\",\"obj-c\"],k:i,l:o,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"preprocessor\",b:\"#\",e:\"$\",c:[{cN:\"title\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+n.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:n,l:o,c:[e.UTM]},{cN:\"variable\",b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"fortran\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image\"};return{cI:!0,aliases:[\"f90\",\"f95\"],k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"swift\",function(e){var i={keyword:\"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet\",literal:\"true false nil\",built_in:\"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip\"},t={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n=e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),r={cN:\"subst\",b:/\\\\\\(/,e:\"\\\\)\",k:i,c:[]},a={cN:\"number\",b:\"\\\\b([\\\\d_]+(\\\\.[\\\\deE_]+)?|0x[a-fA-F0-9_]+(\\\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\\\b\",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[a],{k:i,c:[o,e.CLCM,n,t,a,{cN:\"func\",bK:\"func\",e:\"{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\\(/}),{cN:\"generics\",b:/</,e:/>/,i:/>/},{cN:\"params\",b:/\\(/,e:/\\)/,endsParent:!0,k:i,c:[\"self\",a,o,e.CBCM,{b:\":\"}],i:/[\"']/}],i:/\\[|%/},{cN:\"class\",bK:\"struct protocol class extension enum\",k:i,e:\"\\\\{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:\"preprocessor\",b:\"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)\"},{bK:\"import\",e:/$/,c:[e.CLCM,n]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",r={cN:\"subst\",b:/#\\{/,e:/}/,k:c},t=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,r]},{b:/\"/,e:/\"/,c:[e.BE,r]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[r,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];r.c=t;var s=e.inherit(e.TM,{b:n}),i=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(t)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:t.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+i,e:\"[-=]>\",rB:!0,c:[s,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:i,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[s]},s]},{cN:\"attribute\",b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"puppet\",function(e){var s={keyword:\"and case default else elsif false if in import enherits node or true undef unless main settings $string \",literal:\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},r=e.C(\"#\",\"$\"),a=\"([A-Za-z_]|::)(\\\\w|::)*\",i=e.inherit(e.TM,{b:a}),o={cN:\"variable\",b:\"\\\\$\"+a},t={cN:\"string\",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]};return{aliases:[\"pp\"],c:[r,o,t,{bK:\"class\",e:\"\\\\{|;\",i:/=/,c:[i,r]},{bK:\"define\",e:/\\{/,c:[{cN:\"title\",b:e.IR,endsParent:!0}]},{b:e.IR+\"\\\\s+\\\\{\",rB:!0,e:/\\S/,c:[{cN:\"name\",b:e.IR},{b:/\\{/,e:/\\}/,k:s,r:0,c:[t,r,{b:\"[a-zA-Z_]+\\\\s*=>\"},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},o]}],r:0}]}});hljs.registerLanguage(\"tex\",function(c){var e={cN:\"command\",b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]?\"},m={cN:\"command\",b:\"\\\\\\\\[^a-zA-Zа-яА-я0-9]\"},r={cN:\"special\",b:\"[{}\\\\[\\\\]\\\\&#~]\",r:0};return{c:[{b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]? *= *-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",rB:!0,c:[e,m,{cN:\"number\",b:\" *=\",e:\"-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",eB:!0}],r:10},e,m,r,{cN:\"formula\",b:\"\\\\$\\\\$\",e:\"\\\\$\\\\$\",c:[e,m,r],r:0},{cN:\"formula\",b:\"\\\\$\",e:\"\\\\$\",c:[e,m,r],r:0},c.C(\"%\",\"$\",{r:0})]}});hljs.registerLanguage(\"glsl\",function(e){return{k:{keyword:\"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly\",built_in:\"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse\",literal:\"true false\"},i:'\"',c:[e.CLCM,e.CBCM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"}]}});hljs.registerLanguage(\"1c\",function(c){var e=\"[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*\",r=\"возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт\",t=\"ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку  стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон\",i={cN:\"dquote\",b:'\"\"'},n={cN:\"string\",b:'\"',e:'\"|$',c:[i]},a={cN:\"string\",b:\"\\\\|\",e:'\"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:\"function\",b:\"(процедура|функция)\",e:\"$\",l:e,k:\"процедура функция\",c:[c.inherit(c.TM,{b:e}),{cN:\"tail\",eW:!0,c:[{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:e,k:\"знач\",c:[n,a]},{cN:\"export\",b:\"экспорт\",eW:!0,l:e,k:\"экспорт\",c:[c.CLCM]}]},c.CLCM]},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"date\",b:\"'\\\\d{2}\\\\.\\\\d{2}\\\\.(\\\\d{2}|\\\\d{4})'\"}]}});hljs.registerLanguage(\"nsis\",function(e){var t={cN:\"symbol\",b:\"\\\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)\"},n={cN:\"constant\",b:\"\\\\$+{[a-zA-Z0-9_]+}\"},i={cN:\"variable\",b:\"\\\\$+[a-zA-Z0-9_]+\",i:\"\\\\(\\\\){}\"},r={cN:\"constant\",b:\"\\\\$+\\\\([a-zA-Z0-9_]+\\\\)\"},o={cN:\"params\",b:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},l={cN:\"constant\",b:\"\\\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)\"};return{cI:!1,k:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user \"},c:[e.HCM,e.CBCM,{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[{cN:\"symbol\",b:\"\\\\$(\\\\\\\\(n|r|t)|\\\\$)\"},t,n,i,r]},e.C(\";\",\"$\",{r:0}),{cN:\"function\",bK:\"Function PageEx Section SectionGroup SubSection\",e:\"$\"},l,n,i,r,o,e.NM,{cN:\"literal\",b:e.IR+\"::\"+e.IR}]}});hljs.registerLanguage(\"axapta\",function(e){return{k:\"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod\",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:\":\",c:[{bK:\"extends implements\"},e.UTM]}]}});hljs.registerLanguage(\"php\",function(e){var c={cN:\"variable\",b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},a={cN:\"preprocessor\",b:/<\\?(php)?|\\?>/},i={cN:\"string\",c:[e.BE,a],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},t={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"},a]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:/<<<['\"]?\\w+['\"]?$/,e:/^\\w+;?$/,c:[e.BE,{cN:\"subst\",v:[{b:/\\$\\w+/},{b:/\\{\\$/,e:/\\}/}]}]},a,c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,i,t]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,t]}});hljs.registerLanguage(\"go\",function(e){var t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer\",constant:\"true false iota nil\",typename:\"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{aliases:[\"golang\"],k:t,i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\"},{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"number\",b:e.CNR+\"[dflsi]?\",r:0},e.CNM]}});hljs.registerLanguage(\"dust\",function(e){var t=\"if eq ne lt lte gt gte select default math sep\";return{aliases:[\"dst\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{\",e:\"}\",r:0,c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:t},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:t},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:t,r:0}]}]}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"chunk\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"header\",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\\-\\-\\-/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+\\+\\+/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"haskell\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],a={cN:\"pragma\",b:\"{-#\",e:\"#-}\"},i={cN:\"preprocessor\",b:\"^#\",e:\"$\"},n={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},t={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[a,i,{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TM,{b:\"[_a-z][\\\\w']*\"})].concat(c)},l={cN:\"container\",b:\"{\",e:\"}\",c:t.c};return{aliases:[\"hs\"],k:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 qualified as hiding\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"class\",b:\"^(\\\\s*)?(class|instance)\\\\b\",e:\"where\",k:\"class family instance where\",c:[n,t].concat(c)},{cN:\"typedef\",b:\"\\\\b(data|(new)?type)\\\\b\",e:\"$\",k:\"data family type newtype deriving\",c:[a,n,t,l].concat(c)},{cN:\"default\",bK:\"default\",e:\"$\",c:[n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bforeign\\\\b\",e:\"$\",k:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",c:[n,e.QSM].concat(c)},{cN:\"shebang\",b:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",e:\"$\"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"erlang-repl\",function(r){return{k:{special_functions:\"spawn spawn_link self\",reserved:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},c:[{cN:\"prompt\",b:\"^[0-9]+> \",r:10},r.C(\"%\",\"$\"),{cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},r.ASM,r.QSM,{cN:\"constant\",b:\"\\\\?(::)?([A-Z]\\\\w*(::)?)+\"},{cN:\"arrow\",b:\"->\"},{cN:\"ok\",b:\"ok\"},{cN:\"exclamation_mark\",b:\"!\"},{cN:\"function_or_atom\",b:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",r:0},{cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_']*\",r:0}]}});hljs.registerLanguage(\"haxe\",function(e){var r=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\";return{aliases:[\"hx\"],k:{keyword:\"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while\",literal:\"true false null\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end error\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:\"type\",b:\":\",e:r,r:10}]}]}});hljs.registerLanguage(\"stylus\",function(t){var e={cN:\"variable\",b:\"\\\\$\"+t.IR},o={cN:\"hexcolor\",b:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\",r:10},i=[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"],r=[\"after\",\"before\",\"first-letter\",\"first-line\",\"active\",\"first-child\",\"focus\",\"hover\",\"lang\",\"link\",\"visited\"],n=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],a=\"[\\\\.\\\\s\\\\n\\\\[\\\\:,]\",l=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"],d=[\"\\\\{\",\"\\\\}\",\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"];return{aliases:[\"styl\"],cI:!1,i:\"(\"+d.join(\"|\")+\")\",k:\"if else for in\",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"class\",b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"id\",b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\b(\"+n.join(\"|\")+\")\"+a,rB:!0,c:[{cN:\"tag\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"}]},{cN:\"pseudo\",b:\"&?:?:\\\\b(\"+r.join(\"|\")+\")\"+a},{cN:\"at_rule\",b:\"@(\"+i.join(\"|\")+\")\\\\b\"},e,t.CSSNM,t.NM,{cN:\"function\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",i:\"[\\\\n]\",rB:!0,c:[{cN:\"title\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{cN:\"params\",b:/\\(/,e:/\\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:\"attribute\",b:\"\\\\b(\"+l.reverse().join(\"|\")+\")\\\\b\"}]}});hljs.registerLanguage(\"inform7\",function(e){var r=\"\\\\[\",o=\"\\\\]\";return{aliases:[\"i7\"],cI:!0,k:{keyword:\"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule\"},c:[{cN:\"string\",b:'\"',e:'\"',r:0,c:[{cN:\"subst\",b:r,e:o}]},{cN:\"title\",b:/^(Volume|Book|Part|Chapter|Section|Table)\\b/,e:\"$\"},{b:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b/,e:\":\",c:[{b:\"\\\\b\\\\(This\",e:\"\\\\)\"}]},{cN:\"comment\",b:r,e:o,c:[\"self\"]}]}});hljs.registerLanguage(\"ini\",function(e){var c={cN:\"string\",c:[e.BE],v:[{b:\"'''\",e:\"'''\",r:10},{b:'\"\"\"',e:'\"\"\"',r:10},{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]};return{aliases:[\"toml\"],cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),e.HCM,{cN:\"title\",b:/^\\s*\\[+/,e:/\\]+/},{cN:\"setting\",b:/^[a-z0-9\\[\\]_-]+\\s*=\\s*/,e:\"$\",c:[{cN:\"value\",eW:!0,k:\"on off true false yes no\",c:[{cN:\"variable\",v:[{b:/\\$[\\w\\d\"][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},c,{cN:\"number\",b:/([\\+\\-]+)?[\\d]+_[\\d_]+/},e.NM],r:0}]}]}});hljs.registerLanguage(\"sqf\",function(e){var t=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"or\",\"plus\",\"^\",\":\",\">>\",\"abs\",\"accTime\",\"acos\",\"action\",\"actionKeys\",\"actionKeysImages\",\"actionKeysNames\",\"actionKeysNamesArray\",\"actionName\",\"activateAddons\",\"activatedAddons\",\"activateKey\",\"addAction\",\"addBackpack\",\"addBackpackCargo\",\"addBackpackCargoGlobal\",\"addBackpackGlobal\",\"addCamShake\",\"addCuratorAddons\",\"addCuratorCameraArea\",\"addCuratorEditableObjects\",\"addCuratorEditingArea\",\"addCuratorPoints\",\"addEditorObject\",\"addEventHandler\",\"addGoggles\",\"addGroupIcon\",\"addHandgunItem\",\"addHeadgear\",\"addItem\",\"addItemCargo\",\"addItemCargoGlobal\",\"addItemPool\",\"addItemToBackpack\",\"addItemToUniform\",\"addItemToVest\",\"addLiveStats\",\"addMagazine\",\"addMagazine array\",\"addMagazineAmmoCargo\",\"addMagazineCargo\",\"addMagazineCargoGlobal\",\"addMagazineGlobal\",\"addMagazinePool\",\"addMagazines\",\"addMagazineTurret\",\"addMenu\",\"addMenuItem\",\"addMissionEventHandler\",\"addMPEventHandler\",\"addMusicEventHandler\",\"addPrimaryWeaponItem\",\"addPublicVariableEventHandler\",\"addRating\",\"addResources\",\"addScore\",\"addScoreSide\",\"addSecondaryWeaponItem\",\"addSwitchableUnit\",\"addTeamMember\",\"addToRemainsCollector\",\"addUniform\",\"addVehicle\",\"addVest\",\"addWaypoint\",\"addWeapon\",\"addWeaponCargo\",\"addWeaponCargoGlobal\",\"addWeaponGlobal\",\"addWeaponPool\",\"addWeaponTurret\",\"agent\",\"agents\",\"AGLToASL\",\"aimedAtTarget\",\"aimPos\",\"airDensityRTD\",\"airportSide\",\"AISFinishHeal\",\"alive\",\"allControls\",\"allCurators\",\"allDead\",\"allDeadMen\",\"allDisplays\",\"allGroups\",\"allMapMarkers\",\"allMines\",\"allMissionObjects\",\"allow3DMode\",\"allowCrewInImmobile\",\"allowCuratorLogicIgnoreAreas\",\"allowDamage\",\"allowDammage\",\"allowFileOperations\",\"allowFleeing\",\"allowGetIn\",\"allPlayers\",\"allSites\",\"allTurrets\",\"allUnits\",\"allUnitsUAV\",\"allVariables\",\"ammo\",\"and\",\"animate\",\"animateDoor\",\"animationPhase\",\"animationState\",\"append\",\"armoryPoints\",\"arrayIntersect\",\"asin\",\"ASLToAGL\",\"ASLToATL\",\"assert\",\"assignAsCargo\",\"assignAsCargoIndex\",\"assignAsCommander\",\"assignAsDriver\",\"assignAsGunner\",\"assignAsTurret\",\"assignCurator\",\"assignedCargo\",\"assignedCommander\",\"assignedDriver\",\"assignedGunner\",\"assignedItems\",\"assignedTarget\",\"assignedTeam\",\"assignedVehicle\",\"assignedVehicleRole\",\"assignItem\",\"assignTeam\",\"assignToAirport\",\"atan\",\"atan2\",\"atg\",\"ATLToASL\",\"attachedObject\",\"attachedObjects\",\"attachedTo\",\"attachObject\",\"attachTo\",\"attackEnabled\",\"backpack\",\"backpackCargo\",\"backpackContainer\",\"backpackItems\",\"backpackMagazines\",\"backpackSpaceFor\",\"behaviour\",\"benchmark\",\"binocular\",\"blufor\",\"boundingBox\",\"boundingBoxReal\",\"boundingCenter\",\"breakOut\",\"breakTo\",\"briefingName\",\"buildingExit\",\"buildingPos\",\"buttonAction\",\"buttonSetAction\",\"cadetMode\",\"call\",\"callExtension\",\"camCommand\",\"camCommit\",\"camCommitPrepared\",\"camCommitted\",\"camConstuctionSetParams\",\"camCreate\",\"camDestroy\",\"cameraEffect\",\"cameraEffectEnableHUD\",\"cameraInterest\",\"cameraOn\",\"cameraView\",\"campaignConfigFile\",\"camPreload\",\"camPreloaded\",\"camPrepareBank\",\"camPrepareDir\",\"camPrepareDive\",\"camPrepareFocus\",\"camPrepareFov\",\"camPrepareFovRange\",\"camPreparePos\",\"camPrepareRelPos\",\"camPrepareTarget\",\"camSetBank\",\"camSetDir\",\"camSetDive\",\"camSetFocus\",\"camSetFov\",\"camSetFovRange\",\"camSetPos\",\"camSetRelPos\",\"camSetTarget\",\"camTarget\",\"camUseNVG\",\"canAdd\",\"canAddItemToBackpack\",\"canAddItemToUniform\",\"canAddItemToVest\",\"cancelSimpleTaskDestination\",\"canFire\",\"canMove\",\"canSlingLoad\",\"canStand\",\"canUnloadInCombat\",\"captive\",\"captiveNum\",\"case\",\"catch\",\"cbChecked\",\"cbSetChecked\",\"ceil\",\"cheatsEnabled\",\"checkAIFeature\",\"civilian\",\"className\",\"clearAllItemsFromBackpack\",\"clearBackpackCargo\",\"clearBackpackCargoGlobal\",\"clearGroupIcons\",\"clearItemCargo\",\"clearItemCargoGlobal\",\"clearItemPool\",\"clearMagazineCargo\",\"clearMagazineCargoGlobal\",\"clearMagazinePool\",\"clearOverlay\",\"clearRadio\",\"clearWeaponCargo\",\"clearWeaponCargoGlobal\",\"clearWeaponPool\",\"closeDialog\",\"closeDisplay\",\"closeOverlay\",\"collapseObjectTree\",\"combatMode\",\"commandArtilleryFire\",\"commandChat\",\"commander\",\"commandFire\",\"commandFollow\",\"commandFSM\",\"commandGetOut\",\"commandingMenu\",\"commandMove\",\"commandRadio\",\"commandStop\",\"commandTarget\",\"commandWatch\",\"comment\",\"commitOverlay\",\"compile\",\"compileFinal\",\"completedFSM\",\"composeText\",\"configClasses\",\"configFile\",\"configHierarchy\",\"configName\",\"configProperties\",\"configSourceMod\",\"configSourceModList\",\"connectTerminalToUAV\",\"controlNull\",\"controlsGroupCtrl\",\"copyFromClipboard\",\"copyToClipboard\",\"copyWaypoints\",\"cos\",\"count\",\"countEnemy\",\"countFriendly\",\"countSide\",\"countType\",\"countUnknown\",\"createAgent\",\"createCenter\",\"createDialog\",\"createDiaryLink\",\"createDiaryRecord\",\"createDiarySubject\",\"createDisplay\",\"createGearDialog\",\"createGroup\",\"createGuardedPoint\",\"createLocation\",\"createMarker\",\"createMarkerLocal\",\"createMenu\",\"createMine\",\"createMissionDisplay\",\"createSimpleTask\",\"createSite\",\"createSoundSource\",\"createTask\",\"createTeam\",\"createTrigger\",\"createUnit\",\"createUnit array\",\"createVehicle\",\"createVehicle array\",\"createVehicleCrew\",\"createVehicleLocal\",\"crew\",\"ctrlActivate\",\"ctrlAddEventHandler\",\"ctrlAutoScrollDelay\",\"ctrlAutoScrollRewind\",\"ctrlAutoScrollSpeed\",\"ctrlChecked\",\"ctrlClassName\",\"ctrlCommit\",\"ctrlCommitted\",\"ctrlCreate\",\"ctrlDelete\",\"ctrlEnable\",\"ctrlEnabled\",\"ctrlFade\",\"ctrlHTMLLoaded\",\"ctrlIDC\",\"ctrlIDD\",\"ctrlMapAnimAdd\",\"ctrlMapAnimClear\",\"ctrlMapAnimCommit\",\"ctrlMapAnimDone\",\"ctrlMapCursor\",\"ctrlMapMouseOver\",\"ctrlMapScale\",\"ctrlMapScreenToWorld\",\"ctrlMapWorldToScreen\",\"ctrlModel\",\"ctrlModelDirAndUp\",\"ctrlModelScale\",\"ctrlParent\",\"ctrlPosition\",\"ctrlRemoveAllEventHandlers\",\"ctrlRemoveEventHandler\",\"ctrlScale\",\"ctrlSetActiveColor\",\"ctrlSetAutoScrollDelay\",\"ctrlSetAutoScrollRewind\",\"ctrlSetAutoScrollSpeed\",\"ctrlSetBackgroundColor\",\"ctrlSetChecked\",\"ctrlSetEventHandler\",\"ctrlSetFade\",\"ctrlSetFocus\",\"ctrlSetFont\",\"ctrlSetFontH1\",\"ctrlSetFontH1B\",\"ctrlSetFontH2\",\"ctrlSetFontH2B\",\"ctrlSetFontH3\",\"ctrlSetFontH3B\",\"ctrlSetFontH4\",\"ctrlSetFontH4B\",\"ctrlSetFontH5\",\"ctrlSetFontH5B\",\"ctrlSetFontH6\",\"ctrlSetFontH6B\",\"ctrlSetFontHeight\",\"ctrlSetFontHeightH1\",\"ctrlSetFontHeightH2\",\"ctrlSetFontHeightH3\",\"ctrlSetFontHeightH4\",\"ctrlSetFontHeightH5\",\"ctrlSetFontHeightH6\",\"ctrlSetFontP\",\"ctrlSetFontPB\",\"ctrlSetForegroundColor\",\"ctrlSetModel\",\"ctrlSetModelDirAndUp\",\"ctrlSetModelScale\",\"ctrlSetPosition\",\"ctrlSetScale\",\"ctrlSetStructuredText\",\"ctrlSetText\",\"ctrlSetTextColor\",\"ctrlSetTooltip\",\"ctrlSetTooltipColorBox\",\"ctrlSetTooltipColorShade\",\"ctrlSetTooltipColorText\",\"ctrlShow\",\"ctrlShown\",\"ctrlText\",\"ctrlTextHeight\",\"ctrlType\",\"ctrlVisible\",\"curatorAddons\",\"curatorCamera\",\"curatorCameraArea\",\"curatorCameraAreaCeiling\",\"curatorCoef\",\"curatorEditableObjects\",\"curatorEditingArea\",\"curatorEditingAreaType\",\"curatorMouseOver\",\"curatorPoints\",\"curatorRegisteredObjects\",\"curatorSelected\",\"curatorWaypointCost\",\"currentChannel\",\"currentCommand\",\"currentMagazine\",\"currentMagazineDetail\",\"currentMagazineDetailTurret\",\"currentMagazineTurret\",\"currentMuzzle\",\"currentNamespace\",\"currentTask\",\"currentTasks\",\"currentThrowable\",\"currentVisionMode\",\"currentWaypoint\",\"currentWeapon\",\"currentWeaponMode\",\"currentWeaponTurret\",\"currentZeroing\",\"cursorTarget\",\"customChat\",\"customRadio\",\"cutFadeOut\",\"cutObj\",\"cutRsc\",\"cutText\",\"damage\",\"date\",\"dateToNumber\",\"daytime\",\"deActivateKey\",\"debriefingText\",\"debugFSM\",\"debugLog\",\"default\",\"deg\",\"deleteAt\",\"deleteCenter\",\"deleteCollection\",\"deleteEditorObject\",\"deleteGroup\",\"deleteIdentity\",\"deleteLocation\",\"deleteMarker\",\"deleteMarkerLocal\",\"deleteRange\",\"deleteResources\",\"deleteSite\",\"deleteStatus\",\"deleteTeam\",\"deleteVehicle\",\"deleteVehicleCrew\",\"deleteWaypoint\",\"detach\",\"detectedMines\",\"diag activeMissionFSMs\",\"diag activeSQFScripts\",\"diag activeSQSScripts\",\"diag captureFrame\",\"diag captureSlowFrame\",\"diag fps\",\"diag fpsMin\",\"diag frameNo\",\"diag log\",\"diag logSlowFrame\",\"diag tickTime\",\"dialog\",\"diarySubjectExists\",\"didJIP\",\"didJIPOwner\",\"difficulty\",\"difficultyEnabled\",\"difficultyEnabledRTD\",\"direction\",\"directSay\",\"disableAI\",\"disableCollisionWith\",\"disableConversation\",\"disableDebriefingStats\",\"disableSerialization\",\"disableTIEquipment\",\"disableUAVConnectability\",\"disableUserInput\",\"displayAddEventHandler\",\"displayCtrl\",\"displayNull\",\"displayRemoveAllEventHandlers\",\"displayRemoveEventHandler\",\"displaySetEventHandler\",\"dissolveTeam\",\"distance\",\"distance2D\",\"distanceSqr\",\"distributionRegion\",\"do\",\"doArtilleryFire\",\"doFire\",\"doFollow\",\"doFSM\",\"doGetOut\",\"doMove\",\"doorPhase\",\"doStop\",\"doTarget\",\"doWatch\",\"drawArrow\",\"drawEllipse\",\"drawIcon\",\"drawIcon3D\",\"drawLine\",\"drawLine3D\",\"drawLink\",\"drawLocation\",\"drawRectangle\",\"driver\",\"drop\",\"east\",\"echo\",\"editObject\",\"editorSetEventHandler\",\"effectiveCommander\",\"else\",\"emptyPositions\",\"enableAI\",\"enableAIFeature\",\"enableAttack\",\"enableCamShake\",\"enableCaustics\",\"enableCollisionWith\",\"enableCopilot\",\"enableDebriefingStats\",\"enableDiagLegend\",\"enableEndDialog\",\"enableEngineArtillery\",\"enableEnvironment\",\"enableFatigue\",\"enableGunLights\",\"enableIRLasers\",\"enableMimics\",\"enablePersonTurret\",\"enableRadio\",\"enableReload\",\"enableRopeAttach\",\"enableSatNormalOnDetail\",\"enableSaving\",\"enableSentences\",\"enableSimulation\",\"enableSimulationGlobal\",\"enableTeamSwitch\",\"enableUAVConnectability\",\"enableUAVWaypoints\",\"endLoadingScreen\",\"endMission\",\"engineOn\",\"enginesIsOnRTD\",\"enginesRpmRTD\",\"enginesTorqueRTD\",\"entities\",\"estimatedEndServerTime\",\"estimatedTimeLeft\",\"evalObjectArgument\",\"everyBackpack\",\"everyContainer\",\"exec\",\"execEditorScript\",\"execFSM\",\"execVM\",\"exit\",\"exitWith\",\"exp\",\"expectedDestination\",\"eyeDirection\",\"eyePos\",\"face\",\"faction\",\"fadeMusic\",\"fadeRadio\",\"fadeSound\",\"fadeSpeech\",\"failMission\",\"false\",\"fillWeaponsFromPool\",\"find\",\"findCover\",\"findDisplay\",\"findEditorObject\",\"findEmptyPosition\",\"findEmptyPositionReady\",\"findNearestEnemy\",\"finishMissionInit\",\"finite\",\"fire\",\"fireAtTarget\",\"firstBackpack\",\"flag\",\"flagOwner\",\"fleeing\",\"floor\",\"flyInHeight\",\"fog\",\"fogForecast\",\"fogParams\",\"for\",\"forceAddUniform\",\"forceEnd\",\"forceMap\",\"forceRespawn\",\"forceSpeed\",\"forceWalk\",\"forceWeaponFire\",\"forceWeatherChange\",\"forEach\",\"forEachMember\",\"forEachMemberAgent\",\"forEachMemberTeam\",\"format\",\"formation\",\"formationDirection\",\"formationLeader\",\"formationMembers\",\"formationPosition\",\"formationTask\",\"formatText\",\"formLeader\",\"freeLook\",\"from\",\"fromEditor\",\"fuel\",\"fullCrew\",\"gearSlotAmmoCount\",\"gearSlotData\",\"getAllHitPointsDamage\",\"getAmmoCargo\",\"getArray\",\"getArtilleryAmmo\",\"getArtilleryComputerSettings\",\"getArtilleryETA\",\"getAssignedCuratorLogic\",\"getAssignedCuratorUnit\",\"getBackpackCargo\",\"getBleedingRemaining\",\"getBurningValue\",\"getCargoIndex\",\"getCenterOfMass\",\"getClientState\",\"getConnectedUAV\",\"getDammage\",\"getDescription\",\"getDir\",\"getDirVisual\",\"getDLCs\",\"getEditorCamera\",\"getEditorMode\",\"getEditorObjectScope\",\"getElevationOffset\",\"getFatigue\",\"getFriend\",\"getFSMVariable\",\"getFuelCargo\",\"getGroupIcon\",\"getGroupIconParams\",\"getGroupIcons\",\"getHideFrom\",\"getHit\",\"getHitIndex\",\"getHitPointDamage\",\"getItemCargo\",\"getMagazineCargo\",\"getMarkerColor\",\"getMarkerPos\",\"getMarkerSize\",\"getMarkerType\",\"getMass\",\"getModelInfo\",\"getNumber\",\"getObjectArgument\",\"getObjectChildren\",\"getObjectDLC\",\"getObjectMaterials\",\"getObjectProxy\",\"getObjectTextures\",\"getObjectType\",\"getObjectViewDistance\",\"getOxygenRemaining\",\"getPersonUsedDLCs\",\"getPlayerChannel\",\"getPlayerUID\",\"getPos\",\"getPosASL\",\"getPosASLVisual\",\"getPosASLW\",\"getPosATL\",\"getPosATLVisual\",\"getPosVisual\",\"getPosWorld\",\"getRepairCargo\",\"getResolution\",\"getShadowDistance\",\"getSlingLoad\",\"getSpeed\",\"getSuppression\",\"getTerrainHeightASL\",\"getText\",\"getVariable\",\"getWeaponCargo\",\"getWPPos\",\"glanceAt\",\"globalChat\",\"globalRadio\",\"goggles\",\"goto\",\"group\",\"groupChat\",\"groupFromNetId\",\"groupIconSelectable\",\"groupIconsVisible\",\"groupId\",\"groupOwner\",\"groupRadio\",\"groupSelectedUnits\",\"groupSelectUnit\",\"grpNull\",\"gunner\",\"gusts\",\"halt\",\"handgunItems\",\"handgunMagazine\",\"handgunWeapon\",\"handsHit\",\"hasInterface\",\"hasWeapon\",\"hcAllGroups\",\"hcGroupParams\",\"hcLeader\",\"hcRemoveAllGroups\",\"hcRemoveGroup\",\"hcSelected\",\"hcSelectGroup\",\"hcSetGroup\",\"hcShowBar\",\"hcShownBar\",\"headgear\",\"hideBody\",\"hideObject\",\"hideObjectGlobal\",\"hint\",\"hintC\",\"hintCadet\",\"hintSilent\",\"hmd\",\"hostMission\",\"htmlLoad\",\"HUDMovementLevels\",\"humidity\",\"if\",\"image\",\"importAllGroups\",\"importance\",\"in\",\"incapacitatedState\",\"independent\",\"inflame\",\"inflamed\",\"inGameUISetEventHandler\",\"inheritsFrom\",\"initAmbientLife\",\"inputAction\",\"inRangeOfArtillery\",\"insertEditorObject\",\"intersect\",\"isAbleToBreathe\",\"isAgent\",\"isArray\",\"isAutoHoverOn\",\"isAutonomous\",\"isAutotest\",\"isBleeding\",\"isBurning\",\"isClass\",\"isCollisionLightOn\",\"isCopilotEnabled\",\"isDedicated\",\"isDLCAvailable\",\"isEngineOn\",\"isEqualTo\",\"isFlashlightOn\",\"isFlatEmpty\",\"isForcedWalk\",\"isFormationLeader\",\"isHidden\",\"isInRemainsCollector\",\"isInstructorFigureEnabled\",\"isIRLaserOn\",\"isKeyActive\",\"isKindOf\",\"isLightOn\",\"isLocalized\",\"isManualFire\",\"isMarkedForCollection\",\"isMultiplayer\",\"isNil\",\"isNull\",\"isNumber\",\"isObjectHidden\",\"isObjectRTD\",\"isOnRoad\",\"isPipEnabled\",\"isPlayer\",\"isRealTime\",\"isServer\",\"isShowing3DIcons\",\"isSteamMission\",\"isStreamFriendlyUIEnabled\",\"isText\",\"isTouchingGround\",\"isTurnedOut\",\"isTutHintsEnabled\",\"isUAVConnectable\",\"isUAVConnected\",\"isUniformAllowed\",\"isWalking\",\"isWeaponDeployed\",\"isWeaponRested\",\"itemCargo\",\"items\",\"itemsWithMagazines\",\"join\",\"joinAs\",\"joinAsSilent\",\"joinSilent\",\"joinString\",\"kbAddDatabase\",\"kbAddDatabaseTargets\",\"kbAddTopic\",\"kbHasTopic\",\"kbReact\",\"kbRemoveTopic\",\"kbTell\",\"kbWasSaid\",\"keyImage\",\"keyName\",\"knowsAbout\",\"land\",\"landAt\",\"landResult\",\"language\",\"laserTarget\",\"lbAdd\",\"lbClear\",\"lbColor\",\"lbCurSel\",\"lbData\",\"lbDelete\",\"lbIsSelected\",\"lbPicture\",\"lbSelection\",\"lbSetColor\",\"lbSetCurSel\",\"lbSetData\",\"lbSetPicture\",\"lbSetPictureColor\",\"lbSetPictureColorDisabled\",\"lbSetPictureColorSelected\",\"lbSetSelectColor\",\"lbSetSelectColorRight\",\"lbSetSelected\",\"lbSetTooltip\",\"lbSetValue\",\"lbSize\",\"lbSort\",\"lbSortByValue\",\"lbText\",\"lbValue\",\"leader\",\"leaderboardDeInit\",\"leaderboardGetRows\",\"leaderboardInit\",\"leaveVehicle\",\"libraryCredits\",\"libraryDisclaimers\",\"lifeState\",\"lightAttachObject\",\"lightDetachObject\",\"lightIsOn\",\"lightnings\",\"limitSpeed\",\"linearConversion\",\"lineBreak\",\"lineIntersects\",\"lineIntersectsObjs\",\"lineIntersectsSurfaces\",\"lineIntersectsWith\",\"linkItem\",\"list\",\"listObjects\",\"ln\",\"lnbAddArray\",\"lnbAddColumn\",\"lnbAddRow\",\"lnbClear\",\"lnbColor\",\"lnbCurSelRow\",\"lnbData\",\"lnbDeleteColumn\",\"lnbDeleteRow\",\"lnbGetColumnsPosition\",\"lnbPicture\",\"lnbSetColor\",\"lnbSetColumnsPos\",\"lnbSetCurSelRow\",\"lnbSetData\",\"lnbSetPicture\",\"lnbSetText\",\"lnbSetValue\",\"lnbSize\",\"lnbText\",\"lnbValue\",\"load\",\"loadAbs\",\"loadBackpack\",\"loadFile\",\"loadGame\",\"loadIdentity\",\"loadMagazine\",\"loadOverlay\",\"loadStatus\",\"loadUniform\",\"loadVest\",\"local\",\"localize\",\"locationNull\",\"locationPosition\",\"lock\",\"lockCameraTo\",\"lockCargo\",\"lockDriver\",\"locked\",\"lockedCargo\",\"lockedDriver\",\"lockedTurret\",\"lockTurret\",\"lockWP\",\"log\",\"logEntities\",\"lookAt\",\"lookAtPos\",\"magazineCargo\",\"magazines\",\"magazinesAllTurrets\",\"magazinesAmmo\",\"magazinesAmmoCargo\",\"magazinesAmmoFull\",\"magazinesDetail\",\"magazinesDetailBackpack\",\"magazinesDetailUniform\",\"magazinesDetailVest\",\"magazinesTurret\",\"magazineTurretAmmo\",\"mapAnimAdd\",\"mapAnimClear\",\"mapAnimCommit\",\"mapAnimDone\",\"mapCenterOnCamera\",\"mapGridPosition\",\"markAsFinishedOnSteam\",\"markerAlpha\",\"markerBrush\",\"markerColor\",\"markerDir\",\"markerPos\",\"markerShape\",\"markerSize\",\"markerText\",\"markerType\",\"max\",\"members\",\"min\",\"mineActive\",\"mineDetectedBy\",\"missionConfigFile\",\"missionName\",\"missionNamespace\",\"missionStart\",\"mod\",\"modelToWorld\",\"modelToWorldVisual\",\"moonIntensity\",\"morale\",\"move\",\"moveInAny\",\"moveInCargo\",\"moveInCommander\",\"moveInDriver\",\"moveInGunner\",\"moveInTurret\",\"moveObjectToEnd\",\"moveOut\",\"moveTime\",\"moveTo\",\"moveToCompleted\",\"moveToFailed\",\"musicVolume\",\"name\",\"name location\",\"nameSound\",\"nearEntities\",\"nearestBuilding\",\"nearestLocation\",\"nearestLocations\",\"nearestLocationWithDubbing\",\"nearestObject\",\"nearestObjects\",\"nearObjects\",\"nearObjectsReady\",\"nearRoads\",\"nearSupplies\",\"nearTargets\",\"needReload\",\"netId\",\"netObjNull\",\"newOverlay\",\"nextMenuItemIndex\",\"nextWeatherChange\",\"nil\",\"nMenuItems\",\"not\",\"numberToDate\",\"objectCurators\",\"objectFromNetId\",\"objectParent\",\"objNull\",\"objStatus\",\"onBriefingGroup\",\"onBriefingNotes\",\"onBriefingPlan\",\"onBriefingTeamSwitch\",\"onCommandModeChanged\",\"onDoubleClick\",\"onEachFrame\",\"onGroupIconClick\",\"onGroupIconOverEnter\",\"onGroupIconOverLeave\",\"onHCGroupSelectionChanged\",\"onMapSingleClick\",\"onPlayerConnected\",\"onPlayerDisconnected\",\"onPreloadFinished\",\"onPreloadStarted\",\"onShowNewObject\",\"onTeamSwitch\",\"openCuratorInterface\",\"openMap\",\"openYoutubeVideo\",\"opfor\",\"or\",\"orderGetIn\",\"overcast\",\"overcastForecast\",\"owner\",\"param\",\"params\",\"parseNumber\",\"parseText\",\"parsingNamespace\",\"particlesQuality\",\"pi\",\"pickWeaponPool\",\"pitch\",\"playableSlotsNumber\",\"playableUnits\",\"playAction\",\"playActionNow\",\"player\",\"playerRespawnTime\",\"playerSide\",\"playersNumber\",\"playGesture\",\"playMission\",\"playMove\",\"playMoveNow\",\"playMusic\",\"playScriptedMission\",\"playSound\",\"playSound3D\",\"position\",\"positionCameraToWorld\",\"posScreenToWorld\",\"posWorldToScreen\",\"ppEffectAdjust\",\"ppEffectCommit\",\"ppEffectCommitted\",\"ppEffectCreate\",\"ppEffectDestroy\",\"ppEffectEnable\",\"ppEffectForceInNVG\",\"precision\",\"preloadCamera\",\"preloadObject\",\"preloadSound\",\"preloadTitleObj\",\"preloadTitleRsc\",\"preprocessFile\",\"preprocessFileLineNumbers\",\"primaryWeapon\",\"primaryWeaponItems\",\"primaryWeaponMagazine\",\"priority\",\"private\",\"processDiaryLink\",\"productVersion\",\"profileName\",\"profileNamespace\",\"profileNameSteam\",\"progressLoadingScreen\",\"progressPosition\",\"progressSetPosition\",\"publicVariable\",\"publicVariableClient\",\"publicVariableServer\",\"pushBack\",\"putWeaponPool\",\"queryItemsPool\",\"queryMagazinePool\",\"queryWeaponPool\",\"rad\",\"radioChannelAdd\",\"radioChannelCreate\",\"radioChannelRemove\",\"radioChannelSetCallSign\",\"radioChannelSetLabel\",\"radioVolume\",\"rain\",\"rainbow\",\"random\",\"rank\",\"rankId\",\"rating\",\"rectangular\",\"registeredTasks\",\"registerTask\",\"reload\",\"reloadEnabled\",\"remoteControl\",\"remoteExec\",\"remoteExecCall\",\"removeAction\",\"removeAllActions\",\"removeAllAssignedItems\",\"removeAllContainers\",\"removeAllCuratorAddons\",\"removeAllCuratorCameraAreas\",\"removeAllCuratorEditingAreas\",\"removeAllEventHandlers\",\"removeAllHandgunItems\",\"removeAllItems\",\"removeAllItemsWithMagazines\",\"removeAllMissionEventHandlers\",\"removeAllMPEventHandlers\",\"removeAllMusicEventHandlers\",\"removeAllPrimaryWeaponItems\",\"removeAllWeapons\",\"removeBackpack\",\"removeBackpackGlobal\",\"removeCuratorAddons\",\"removeCuratorCameraArea\",\"removeCuratorEditableObjects\",\"removeCuratorEditingArea\",\"removeDrawIcon\",\"removeDrawLinks\",\"removeEventHandler\",\"removeFromRemainsCollector\",\"removeGoggles\",\"removeGroupIcon\",\"removeHandgunItem\",\"removeHeadgear\",\"removeItem\",\"removeItemFromBackpack\",\"removeItemFromUniform\",\"removeItemFromVest\",\"removeItems\",\"removeMagazine\",\"removeMagazineGlobal\",\"removeMagazines\",\"removeMagazinesTurret\",\"removeMagazineTurret\",\"removeMenuItem\",\"removeMissionEventHandler\",\"removeMPEventHandler\",\"removeMusicEventHandler\",\"removePrimaryWeaponItem\",\"removeSecondaryWeaponItem\",\"removeSimpleTask\",\"removeSwitchableUnit\",\"removeTeamMember\",\"removeUniform\",\"removeVest\",\"removeWeapon\",\"removeWeaponGlobal\",\"removeWeaponTurret\",\"requiredVersion\",\"resetCamShake\",\"resetSubgroupDirection\",\"resistance\",\"resize\",\"resources\",\"respawnVehicle\",\"restartEditorCamera\",\"reveal\",\"revealMine\",\"reverse\",\"reversedMouseY\",\"roadsConnectedTo\",\"roleDescription\",\"ropeAttachedObjects\",\"ropeAttachedTo\",\"ropeAttachEnabled\",\"ropeAttachTo\",\"ropeCreate\",\"ropeCut\",\"ropeEndPosition\",\"ropeLength\",\"ropes\",\"ropeUnwind\",\"ropeUnwound\",\"rotorsForcesRTD\",\"rotorsRpmRTD\",\"round\",\"runInitScript\",\"safeZoneH\",\"safeZoneW\",\"safeZoneWAbs\",\"safeZoneX\",\"safeZoneXAbs\",\"safeZoneY\",\"saveGame\",\"saveIdentity\",\"saveJoysticks\",\"saveOverlay\",\"saveProfileNamespace\",\"saveStatus\",\"saveVar\",\"savingEnabled\",\"say\",\"say2D\",\"say3D\",\"scopeName\",\"score\",\"scoreSide\",\"screenToWorld\",\"scriptDone\",\"scriptName\",\"scriptNull\",\"scudState\",\"secondaryWeapon\",\"secondaryWeaponItems\",\"secondaryWeaponMagazine\",\"select\",\"selectBestPlaces\",\"selectDiarySubject\",\"selectedEditorObjects\",\"selectEditorObject\",\"selectionPosition\",\"selectLeader\",\"selectNoPlayer\",\"selectPlayer\",\"selectWeapon\",\"selectWeaponTurret\",\"sendAUMessage\",\"sendSimpleCommand\",\"sendTask\",\"sendTaskResult\",\"sendUDPMessage\",\"serverCommand\",\"serverCommandAvailable\",\"serverCommandExecutable\",\"serverName\",\"serverTime\",\"set\",\"setAccTime\",\"setAirportSide\",\"setAmmo\",\"setAmmoCargo\",\"setAperture\",\"setApertureNew\",\"setArmoryPoints\",\"setAttributes\",\"setAutonomous\",\"setBehaviour\",\"setBleedingRemaining\",\"setCameraInterest\",\"setCamShakeDefParams\",\"setCamShakeParams\",\"setCamUseTi\",\"setCaptive\",\"setCenterOfMass\",\"setCollisionLight\",\"setCombatMode\",\"setCompassOscillation\",\"setCuratorCameraAreaCeiling\",\"setCuratorCoef\",\"setCuratorEditingAreaType\",\"setCuratorWaypointCost\",\"setCurrentChannel\",\"setCurrentTask\",\"setCurrentWaypoint\",\"setDamage\",\"setDammage\",\"setDate\",\"setDebriefingText\",\"setDefaultCamera\",\"setDestination\",\"setDetailMapBlendPars\",\"setDir\",\"setDirection\",\"setDrawIcon\",\"setDropInterval\",\"setEditorMode\",\"setEditorObjectScope\",\"setEffectCondition\",\"setFace\",\"setFaceAnimation\",\"setFatigue\",\"setFlagOwner\",\"setFlagSide\",\"setFlagTexture\",\"setFog\",\"setFog array\",\"setFormation\",\"setFormationTask\",\"setFormDir\",\"setFriend\",\"setFromEditor\",\"setFSMVariable\",\"setFuel\",\"setFuelCargo\",\"setGroupIcon\",\"setGroupIconParams\",\"setGroupIconsSelectable\",\"setGroupIconsVisible\",\"setGroupId\",\"setGroupIdGlobal\",\"setGroupOwner\",\"setGusts\",\"setHideBehind\",\"setHit\",\"setHitIndex\",\"setHitPointDamage\",\"setHorizonParallaxCoef\",\"setHUDMovementLevels\",\"setIdentity\",\"setImportance\",\"setLeader\",\"setLightAmbient\",\"setLightAttenuation\",\"setLightBrightness\",\"setLightColor\",\"setLightDayLight\",\"setLightFlareMaxDistance\",\"setLightFlareSize\",\"setLightIntensity\",\"setLightnings\",\"setLightUseFlare\",\"setLocalWindParams\",\"setMagazineTurretAmmo\",\"setMarkerAlpha\",\"setMarkerAlphaLocal\",\"setMarkerBrush\",\"setMarkerBrushLocal\",\"setMarkerColor\",\"setMarkerColorLocal\",\"setMarkerDir\",\"setMarkerDirLocal\",\"setMarkerPos\",\"setMarkerPosLocal\",\"setMarkerShape\",\"setMarkerShapeLocal\",\"setMarkerSize\",\"setMarkerSizeLocal\",\"setMarkerText\",\"setMarkerTextLocal\",\"setMarkerType\",\"setMarkerTypeLocal\",\"setMass\",\"setMimic\",\"setMousePosition\",\"setMusicEffect\",\"setMusicEventHandler\",\"setName\",\"setNameSound\",\"setObjectArguments\",\"setObjectMaterial\",\"setObjectProxy\",\"setObjectTexture\",\"setObjectTextureGlobal\",\"setObjectViewDistance\",\"setOvercast\",\"setOwner\",\"setOxygenRemaining\",\"setParticleCircle\",\"setParticleClass\",\"setParticleFire\",\"setParticleParams\",\"setParticleRandom\",\"setPilotLight\",\"setPiPEffect\",\"setPitch\",\"setPlayable\",\"setPlayerRespawnTime\",\"setPos\",\"setPosASL\",\"setPosASL2\",\"setPosASLW\",\"setPosATL\",\"setPosition\",\"setPosWorld\",\"setRadioMsg\",\"setRain\",\"setRainbow\",\"setRandomLip\",\"setRank\",\"setRectangular\",\"setRepairCargo\",\"setShadowDistance\",\"setSide\",\"setSimpleTaskDescription\",\"setSimpleTaskDestination\",\"setSimpleTaskTarget\",\"setSimulWeatherLayers\",\"setSize\",\"setSkill\",\"setSkill array\",\"setSlingLoad\",\"setSoundEffect\",\"setSpeaker\",\"setSpeech\",\"setSpeedMode\",\"setStatValue\",\"setSuppression\",\"setSystemOfUnits\",\"setTargetAge\",\"setTaskResult\",\"setTaskState\",\"setTerrainGrid\",\"setText\",\"setTimeMultiplier\",\"setTitleEffect\",\"setTriggerActivation\",\"setTriggerArea\",\"setTriggerStatements\",\"setTriggerText\",\"setTriggerTimeout\",\"setTriggerType\",\"setType\",\"setUnconscious\",\"setUnitAbility\",\"setUnitPos\",\"setUnitPosWeak\",\"setUnitRank\",\"setUnitRecoilCoefficient\",\"setUnloadInCombat\",\"setUserActionText\",\"setVariable\",\"setVectorDir\",\"setVectorDirAndUp\",\"setVectorUp\",\"setVehicleAmmo\",\"setVehicleAmmoDef\",\"setVehicleArmor\",\"setVehicleId\",\"setVehicleLock\",\"setVehiclePosition\",\"setVehicleTiPars\",\"setVehicleVarName\",\"setVelocity\",\"setVelocityTransformation\",\"setViewDistance\",\"setVisibleIfTreeCollapsed\",\"setWaves\",\"setWaypointBehaviour\",\"setWaypointCombatMode\",\"setWaypointCompletionRadius\",\"setWaypointDescription\",\"setWaypointFormation\",\"setWaypointHousePosition\",\"setWaypointLoiterRadius\",\"setWaypointLoiterType\",\"setWaypointName\",\"setWaypointPosition\",\"setWaypointScript\",\"setWaypointSpeed\",\"setWaypointStatements\",\"setWaypointTimeout\",\"setWaypointType\",\"setWaypointVisible\",\"setWeaponReloadingTime\",\"setWind\",\"setWindDir\",\"setWindForce\",\"setWindStr\",\"setWPPos\",\"show3DIcons\",\"showChat\",\"showCinemaBorder\",\"showCommandingMenu\",\"showCompass\",\"showCuratorCompass\",\"showGPS\",\"showHUD\",\"showLegend\",\"showMap\",\"shownArtilleryComputer\",\"shownChat\",\"shownCompass\",\"shownCuratorCompass\",\"showNewEditorObject\",\"shownGPS\",\"shownHUD\",\"shownMap\",\"shownPad\",\"shownRadio\",\"shownUAVFeed\",\"shownWarrant\",\"shownWatch\",\"showPad\",\"showRadio\",\"showSubtitles\",\"showUAVFeed\",\"showWarrant\",\"showWatch\",\"showWaypoint\",\"side\",\"sideChat\",\"sideEnemy\",\"sideFriendly\",\"sideLogic\",\"sideRadio\",\"sideUnknown\",\"simpleTasks\",\"simulationEnabled\",\"simulCloudDensity\",\"simulCloudOcclusion\",\"simulInClouds\",\"simulWeatherSync\",\"sin\",\"size\",\"sizeOf\",\"skill\",\"skillFinal\",\"skipTime\",\"sleep\",\"sliderPosition\",\"sliderRange\",\"sliderSetPosition\",\"sliderSetRange\",\"sliderSetSpeed\",\"sliderSpeed\",\"slingLoadAssistantShown\",\"soldierMagazines\",\"someAmmo\",\"sort\",\"soundVolume\",\"spawn\",\"speaker\",\"speed\",\"speedMode\",\"splitString\",\"sqrt\",\"squadParams\",\"stance\",\"startLoadingScreen\",\"step\",\"stop\",\"stopped\",\"str\",\"sunOrMoon\",\"supportInfo\",\"suppressFor\",\"surfaceIsWater\",\"surfaceNormal\",\"surfaceType\",\"swimInDepth\",\"switch\",\"switchableUnits\",\"switchAction\",\"switchCamera\",\"switchGesture\",\"switchLight\",\"switchMove\",\"synchronizedObjects\",\"synchronizedTriggers\",\"synchronizedWaypoints\",\"synchronizeObjectsAdd\",\"synchronizeObjectsRemove\",\"synchronizeTrigger\",\"synchronizeWaypoint\",\"synchronizeWaypoint trigger\",\"systemChat\",\"systemOfUnits\",\"tan\",\"targetKnowledge\",\"targetsAggregate\",\"targetsQuery\",\"taskChildren\",\"taskCompleted\",\"taskDescription\",\"taskDestination\",\"taskHint\",\"taskNull\",\"taskParent\",\"taskResult\",\"taskState\",\"teamMember\",\"teamMemberNull\",\"teamName\",\"teams\",\"teamSwitch\",\"teamSwitchEnabled\",\"teamType\",\"terminate\",\"terrainIntersect\",\"terrainIntersectASL\",\"text\",\"text location\",\"textLog\",\"textLogFormat\",\"tg\",\"then\",\"throw\",\"time\",\"timeMultiplier\",\"titleCut\",\"titleFadeOut\",\"titleObj\",\"titleRsc\",\"titleText\",\"to\",\"toArray\",\"toLower\",\"toString\",\"toUpper\",\"triggerActivated\",\"triggerActivation\",\"triggerArea\",\"triggerAttachedVehicle\",\"triggerAttachObject\",\"triggerAttachVehicle\",\"triggerStatements\",\"triggerText\",\"triggerTimeout\",\"triggerTimeoutCurrent\",\"triggerType\",\"true\",\"try\",\"turretLocal\",\"turretOwner\",\"turretUnit\",\"tvAdd\",\"tvClear\",\"tvCollapse\",\"tvCount\",\"tvCurSel\",\"tvData\",\"tvDelete\",\"tvExpand\",\"tvPicture\",\"tvSetCurSel\",\"tvSetData\",\"tvSetPicture\",\"tvSetPictureColor\",\"tvSetTooltip\",\"tvSetValue\",\"tvSort\",\"tvSortByValue\",\"tvText\",\"tvValue\",\"type\",\"typeName\",\"typeOf\",\"UAVControl\",\"uiNamespace\",\"uiSleep\",\"unassignCurator\",\"unassignItem\",\"unassignTeam\",\"unassignVehicle\",\"underwater\",\"uniform\",\"uniformContainer\",\"uniformItems\",\"uniformMagazines\",\"unitAddons\",\"unitBackpack\",\"unitPos\",\"unitReady\",\"unitRecoilCoefficient\",\"units\",\"unitsBelowHeight\",\"unlinkItem\",\"unlockAchievement\",\"unregisterTask\",\"updateDrawIcon\",\"updateMenuItem\",\"updateObjectTree\",\"useAudioTimeForMoves\",\"vectorAdd\",\"vectorCos\",\"vectorCrossProduct\",\"vectorDiff\",\"vectorDir\",\"vectorDirVisual\",\"vectorDistance\",\"vectorDistanceSqr\",\"vectorDotProduct\",\"vectorFromTo\",\"vectorMagnitude\",\"vectorMagnitudeSqr\",\"vectorMultiply\",\"vectorNormalized\",\"vectorUp\",\"vectorUpVisual\",\"vehicle\",\"vehicleChat\",\"vehicleRadio\",\"vehicles\",\"vehicleVarName\",\"velocity\",\"velocityModelSpace\",\"verifySignature\",\"vest\",\"vestContainer\",\"vestItems\",\"vestMagazines\",\"viewDistance\",\"visibleCompass\",\"visibleGPS\",\"visibleMap\",\"visiblePosition\",\"visiblePositionASL\",\"visibleWatch\",\"waitUntil\",\"waves\",\"waypointAttachedObject\",\"waypointAttachedVehicle\",\"waypointAttachObject\",\"waypointAttachVehicle\",\"waypointBehaviour\",\"waypointCombatMode\",\"waypointCompletionRadius\",\"waypointDescription\",\"waypointFormation\",\"waypointHousePosition\",\"waypointLoiterRadius\",\"waypointLoiterType\",\"waypointName\",\"waypointPosition\",\"waypoints\",\"waypointScript\",\"waypointsEnabledUAV\",\"waypointShow\",\"waypointSpeed\",\"waypointStatements\",\"waypointTimeout\",\"waypointTimeoutCurrent\",\"waypointType\",\"waypointVisible\",\"weaponAccessories\",\"weaponCargo\",\"weaponDirection\",\"weaponLowered\",\"weapons\",\"weaponsItems\",\"weaponsItemsCargo\",\"weaponState\",\"weaponsTurret\",\"weightRTD\",\"west\",\"WFSideText\",\"while\",\"wind\",\"windDir\",\"windStr\",\"wingsForcesRTD\",\"with\",\"worldName\",\"worldSize\",\"worldToModel\",\"worldToModelVisual\",\"worldToScreen\"],a=[\"case\",\"catch\",\"default\",\"do\",\"else\",\"exit\",\"exitWith|5\",\"for\",\"forEach\",\"from\",\"if\",\"switch\",\"then\",\"throw\",\"to\",\"try\",\"while\",\"with\"],r=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"^\",\":\",\">>\"],o=[\"_forEachIndex|10\",\"_this|10\",\"_x|10\"],i=[\"true\",\"false\",\"nil\"],n=t.filter(function(e){return-1==a.indexOf(e)&&-1==i.indexOf(e)&&-1==r.indexOf(e)});n=n.concat(o);var s={cN:\"string\",r:0,v:[{b:'\"',e:'\"',c:[{b:'\"\"'}]},{b:\"'\",e:\"'\",c:[{b:\"''\"}]}]},l={cN:\"number\",b:e.NR,r:0},c={cN:\"string\",v:[e.QSM,{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},d={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[c,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},c,l,e.CLCM,e.CBCM]};return{aliases:[\"sqf\"],cI:!0,k:{keyword:a.join(\" \"),built_in:n.join(\" \"),literal:i.join(\" \")},c:[e.CLCM,e.CBCM,l,s,d]}});hljs.registerLanguage(\"vbscript-html\",function(r){return{sL:\"xml\",c:[{b:\"<%\",e:\"%>\",sL:\"vbscript\"}]}});hljs.registerLanguage(\"cal\",function(e){var r=\"div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var\",t=\"false true\",a=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],c={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},o={cN:\"string\",b:/(#\\d+)+/},n={cN:\"date\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(DT|D|T)\",r:0},i={cN:\"variable\",b:'\"',e:'\"'},d={cN:\"function\",bK:\"procedure\",e:/[:;]/,k:\"procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[c,o]}].concat(a)},b={cN:\"class\",b:\"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\\\d+) ([^\\\\r\\\\n]+)\",rB:!0,c:[e.TM,d]};return{cI:!0,k:{keyword:r,literal:t},i:/\\/\\*/,c:[c,o,n,i,e.NM,b,d]}});hljs.registerLanguage(\"mojolicious\",function(e){return{sL:\"xml\",c:[{cN:\"preprocessor\",b:\"^__(END|DATA)__$\"},{b:\"^\\\\s*%{1,2}={0,2}\",e:\"$\",sL:\"perl\"},{b:\"<%{1,2}={0,2}\",e:\"={0,1}%>\",sL:\"perl\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"clojure\",function(e){var t={built_in:\"def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},r=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+r+\"][\"+r+\"0-9/;:]*\",a=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",o={b:n,r:0},s={cN:\"number\",b:a,r:0},c=e.inherit(e.QSM,{i:null}),i=e.C(\";\",\"$\",{r:0}),d={cN:\"literal\",b:/\\b(true|false|nil)\\b/},l={cN:\"collection\",b:\"[\\\\[\\\\{]\",e:\"[\\\\]\\\\}]\"},m={cN:\"comment\",b:\"\\\\^\"+n},p=e.C(\"\\\\^\\\\{\",\"\\\\}\"),u={cN:\"attribute\",b:\"[:]\"+n},f={cN:\"list\",b:\"\\\\(\",e:\"\\\\)\"},h={eW:!0,r:0},y={k:t,l:n,cN:\"keyword\",b:n,starts:h},b=[f,c,m,p,i,u,l,s,d,o];return f.c=[e.C(\"comment\",\"\"),y,h],h.c=b,l.c=b,{aliases:[\"clj\"],i:/\\S/,c:[f,c,m,p,i,u,l,s,d]}});hljs.registerLanguage(\"dart\",function(e){var t={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"}\",k:\"true false null this is new super\"},r={cN:\"string\",v:[{b:\"r'''\",e:\"'''\"},{b:'r\"\"\"',e:'\"\"\"'},{b:\"r'\",e:\"'\",i:\"\\\\n\"},{b:'r\"',e:'\"',i:\"\\\\n\"},{b:\"'''\",e:\"'''\",c:[e.BE,t]},{b:'\"\"\"',e:'\"\"\"',c:[e.BE,t]},{b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE,t]},{b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:\"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with\",literal:\"abstract as dynamic export external factory get implements import library operator part set static typedef\",built_in:\"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList\"};return{k:n,c:[r,e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{sL:\"markdown\"}),e.C(\"///\",\"$\",{sL:\"markdown\"}),e.CLCM,e.CBCM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{b:\"=>\"}]}});hljs.registerLanguage(\"ruleslanguage\",function(T){return{k:{keyword:\"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING\",built_in:\"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME\"},c:[T.CLCM,T.CBCM,T.ASM,T.QSM,T.CNM,{cN:\"array\",v:[{b:\"#\\\\s+[a-zA-Z\\\\ \\\\.]*\",r:0},{b:\"#[a-zA-Z\\\\ \\\\.]+\"}]}]}});hljs.registerLanguage(\"applescript\",function(e){var t=e.inherit(e.QSM,{i:\"\"}),r={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CNM,t]},o=e.C(\"--\",\"$\"),n=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\",o]}),a=[o,n,e.HCM];return{aliases:[\"osascript\"],k:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",constant:\"AppleScript false linefeed return pi quote result space tab true\",type:\"alias application boolean class constant date file integer list number real record string text\",command:\"activate beep count delay launch log offset read round run say summarize write\",property:\"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},c:[t,e.CNM,{cN:\"type\",b:\"\\\\bPOSIX file\\\\b\"},{cN:\"command\",b:\"\\\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\\\b|^\\\\s*return\\\\b\"},{cN:\"constant\",b:\"\\\\b(text item delimiters|current application|missing value)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\\\b\"},{cN:\"property\",b:\"\\\\b(POSIX path|(date|time) string|quoted form)\\\\b\"},{cN:\"function_start\",bK:\"on\",i:\"[${=;\\\\n]\",c:[e.UTM,r]}].concat(a),i:\"//|->|=>|\\\\[\\\\[\"}});hljs.registerLanguage(\"xml\",function(t){var s=\"[A-Za-z0-9\\\\._:-]+\",c={b:/<\\?(php)?(?!\\w)/,e:/\\?>/,sL:\"php\"},e={eW:!0,i:/</,r:0,c:[c,{cN:\"attribute\",b:s,r:0},{b:\"=\",r:0,c:[{cN:\"value\",c:[c],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\\/>]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},t.C(\"<!--\",\"-->\",{r:10}),{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[e],starts:{e:\"</style>\",rE:!0,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[e],starts:{e:\"</script>\",rE:!0,sL:[\"actionscript\",\"javascript\",\"handlebars\"]}},c,{cN:\"pi\",b:/<\\?\\w+/,e:/\\?>/,r:10},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:/[^ \\/><\\n\\t]+/,r:0},e]}]}});hljs.registerLanguage(\"elixir\",function(e){var n=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\",r=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",b=\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote\",c={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:n,k:b},a={cN:\"string\",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},i={cN:\"function\",bK:\"def defp defmacro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:\"class\",bK:\"defmodule defrecord\",e:/\\bdo\\b|$|;/}),l=[a,e.HCM,s,i,{cN:\"constant\",b:\"(\\\\b[A-Z_]\\\\w*(.)?)+\",r:0},{cN:\"symbol\",b:\":\",c:[a,{b:r}],r:0},{cN:\"symbol\",b:n+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"->\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[e.HCM,{cN:\"regexp\",i:\"\\\\n\",c:[e.BE,c],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage(\"autoit\",function(e){var t=\"ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With\",r=\"True False And Null Not Or\",i=\"Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Opt Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown TCPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend UDPShutdown UDPStartup VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait WinWaitActive WinWaitClose WinWaitNotActive Array1DToHistogram ArrayAdd ArrayBinarySearch ArrayColDelete ArrayColInsert ArrayCombinations ArrayConcatenate ArrayDelete ArrayDisplay ArrayExtract ArrayFindAll ArrayInsert ArrayMax ArrayMaxIndex ArrayMin ArrayMinIndex ArrayPermute ArrayPop ArrayPush ArrayReverse ArraySearch ArrayShuffle ArraySort ArraySwap ArrayToClip ArrayToString ArrayTranspose ArrayTrim ArrayUnique Assert ChooseColor ChooseFont ClipBoard_ChangeChain ClipBoard_Close ClipBoard_CountFormats ClipBoard_Empty ClipBoard_EnumFormats ClipBoard_FormatStr ClipBoard_GetData ClipBoard_GetDataEx ClipBoard_GetFormatName ClipBoard_GetOpenWindow ClipBoard_GetOwner ClipBoard_GetPriorityFormat ClipBoard_GetSequenceNumber ClipBoard_GetViewer ClipBoard_IsFormatAvailable ClipBoard_Open ClipBoard_RegisterFormat ClipBoard_SetData ClipBoard_SetDataEx ClipBoard_SetViewer ClipPutFile ColorConvertHSLtoRGB ColorConvertRGBtoHSL ColorGetBlue ColorGetCOLORREF ColorGetGreen ColorGetRed ColorGetRGB ColorSetCOLORREF ColorSetRGB Crypt_DecryptData Crypt_DecryptFile Crypt_DeriveKey Crypt_DestroyKey Crypt_EncryptData Crypt_EncryptFile Crypt_GenRandom Crypt_HashData Crypt_HashFile Crypt_Shutdown Crypt_Startup DateAdd DateDayOfWeek DateDaysInMonth DateDiff DateIsLeapYear DateIsValid DateTimeFormat DateTimeSplit DateToDayOfWeek DateToDayOfWeekISO DateToDayValue DateToMonth Date_Time_CompareFileTime Date_Time_DOSDateTimeToArray Date_Time_DOSDateTimeToFileTime Date_Time_DOSDateTimeToStr Date_Time_DOSDateToArray Date_Time_DOSDateToStr Date_Time_DOSTimeToArray Date_Time_DOSTimeToStr Date_Time_EncodeFileTime Date_Time_EncodeSystemTime Date_Time_FileTimeToArray Date_Time_FileTimeToDOSDateTime Date_Time_FileTimeToLocalFileTime Date_Time_FileTimeToStr Date_Time_FileTimeToSystemTime Date_Time_GetFileTime Date_Time_GetLocalTime Date_Time_GetSystemTime Date_Time_GetSystemTimeAdjustment Date_Time_GetSystemTimeAsFileTime Date_Time_GetSystemTimes Date_Time_GetTickCount Date_Time_GetTimeZoneInformation Date_Time_LocalFileTimeToFileTime Date_Time_SetFileTime Date_Time_SetLocalTime Date_Time_SetSystemTime Date_Time_SetSystemTimeAdjustment Date_Time_SetTimeZoneInformation Date_Time_SystemTimeToArray Date_Time_SystemTimeToDateStr Date_Time_SystemTimeToDateTimeStr Date_Time_SystemTimeToFileTime Date_Time_SystemTimeToTimeStr Date_Time_SystemTimeToTzSpecificLocalTime Date_Time_TzSpecificLocalTimeToSystemTime DayValueToDate DebugBugReportEnv DebugCOMError DebugOut DebugReport DebugReportEx DebugReportVar DebugSetup Degree EventLog__Backup EventLog__Clear EventLog__Close EventLog__Count EventLog__DeregisterSource EventLog__Full EventLog__Notify EventLog__Oldest EventLog__Open EventLog__OpenBackup EventLog__Read EventLog__RegisterSource EventLog__Report Excel_BookAttach Excel_BookClose Excel_BookList Excel_BookNew Excel_BookOpen Excel_BookOpenText Excel_BookSave Excel_BookSaveAs Excel_Close Excel_ColumnToLetter Excel_ColumnToNumber Excel_ConvertFormula Excel_Export Excel_FilterGet Excel_FilterSet Excel_Open Excel_PictureAdd Excel_Print Excel_RangeCopyPaste Excel_RangeDelete Excel_RangeFind Excel_RangeInsert Excel_RangeLinkAddRemove Excel_RangeRead Excel_RangeReplace Excel_RangeSort Excel_RangeValidate Excel_RangeWrite Excel_SheetAdd Excel_SheetCopyMove Excel_SheetDelete Excel_SheetList FileCountLines FileCreate FileListToArray FileListToArrayRec FilePrint FileReadToArray FileWriteFromArray FileWriteLog FileWriteToLine FTP_Close FTP_Command FTP_Connect FTP_DecodeInternetStatus FTP_DirCreate FTP_DirDelete FTP_DirGetCurrent FTP_DirPutContents FTP_DirSetCurrent FTP_FileClose FTP_FileDelete FTP_FileGet FTP_FileGetSize FTP_FileOpen FTP_FilePut FTP_FileRead FTP_FileRename FTP_FileTimeLoHiToStr FTP_FindFileClose FTP_FindFileFirst FTP_FindFileNext FTP_GetLastResponseInfo FTP_ListToArray FTP_ListToArray2D FTP_ListToArrayEx FTP_Open FTP_ProgressDownload FTP_ProgressUpload FTP_SetStatusCallback GDIPlus_ArrowCapCreate GDIPlus_ArrowCapDispose GDIPlus_ArrowCapGetFillState GDIPlus_ArrowCapGetHeight GDIPlus_ArrowCapGetMiddleInset GDIPlus_ArrowCapGetWidth GDIPlus_ArrowCapSetFillState GDIPlus_ArrowCapSetHeight GDIPlus_ArrowCapSetMiddleInset GDIPlus_ArrowCapSetWidth GDIPlus_BitmapApplyEffect GDIPlus_BitmapApplyEffectEx GDIPlus_BitmapCloneArea GDIPlus_BitmapConvertFormat GDIPlus_BitmapCreateApplyEffect GDIPlus_BitmapCreateApplyEffectEx GDIPlus_BitmapCreateDIBFromBitmap GDIPlus_BitmapCreateFromFile GDIPlus_BitmapCreateFromGraphics GDIPlus_BitmapCreateFromHBITMAP GDIPlus_BitmapCreateFromHICON GDIPlus_BitmapCreateFromHICON32 GDIPlus_BitmapCreateFromMemory GDIPlus_BitmapCreateFromResource GDIPlus_BitmapCreateFromScan0 GDIPlus_BitmapCreateFromStream GDIPlus_BitmapCreateHBITMAPFromBitmap GDIPlus_BitmapDispose GDIPlus_BitmapGetHistogram GDIPlus_BitmapGetHistogramEx GDIPlus_BitmapGetHistogramSize GDIPlus_BitmapGetPixel GDIPlus_BitmapLockBits GDIPlus_BitmapSetPixel GDIPlus_BitmapUnlockBits GDIPlus_BrushClone GDIPlus_BrushCreateSolid GDIPlus_BrushDispose GDIPlus_BrushGetSolidColor GDIPlus_BrushGetType GDIPlus_BrushSetSolidColor GDIPlus_ColorMatrixCreate GDIPlus_ColorMatrixCreateGrayScale GDIPlus_ColorMatrixCreateNegative GDIPlus_ColorMatrixCreateSaturation GDIPlus_ColorMatrixCreateScale GDIPlus_ColorMatrixCreateTranslate GDIPlus_CustomLineCapClone GDIPlus_CustomLineCapCreate GDIPlus_CustomLineCapDispose GDIPlus_CustomLineCapGetStrokeCaps GDIPlus_CustomLineCapSetStrokeCaps GDIPlus_Decoders GDIPlus_DecodersGetCount GDIPlus_DecodersGetSize GDIPlus_DrawImageFX GDIPlus_DrawImageFXEx GDIPlus_DrawImagePoints GDIPlus_EffectCreate GDIPlus_EffectCreateBlur GDIPlus_EffectCreateBrightnessContrast GDIPlus_EffectCreateColorBalance GDIPlus_EffectCreateColorCurve GDIPlus_EffectCreateColorLUT GDIPlus_EffectCreateColorMatrix GDIPlus_EffectCreateHueSaturationLightness GDIPlus_EffectCreateLevels GDIPlus_EffectCreateRedEyeCorrection GDIPlus_EffectCreateSharpen GDIPlus_EffectCreateTint GDIPlus_EffectDispose GDIPlus_EffectGetParameters GDIPlus_EffectSetParameters GDIPlus_Encoders GDIPlus_EncodersGetCLSID GDIPlus_EncodersGetCount GDIPlus_EncodersGetParamList GDIPlus_EncodersGetParamListSize GDIPlus_EncodersGetSize GDIPlus_FontCreate GDIPlus_FontDispose GDIPlus_FontFamilyCreate GDIPlus_FontFamilyCreateFromCollection GDIPlus_FontFamilyDispose GDIPlus_FontFamilyGetCellAscent GDIPlus_FontFamilyGetCellDescent GDIPlus_FontFamilyGetEmHeight GDIPlus_FontFamilyGetLineSpacing GDIPlus_FontGetHeight GDIPlus_FontPrivateAddFont GDIPlus_FontPrivateAddMemoryFont GDIPlus_FontPrivateCollectionDispose GDIPlus_FontPrivateCreateCollection GDIPlus_GraphicsClear GDIPlus_GraphicsCreateFromHDC GDIPlus_GraphicsCreateFromHWND GDIPlus_GraphicsDispose GDIPlus_GraphicsDrawArc GDIPlus_GraphicsDrawBezier GDIPlus_GraphicsDrawClosedCurve GDIPlus_GraphicsDrawClosedCurve2 GDIPlus_GraphicsDrawCurve GDIPlus_GraphicsDrawCurve2 GDIPlus_GraphicsDrawEllipse GDIPlus_GraphicsDrawImage GDIPlus_GraphicsDrawImagePointsRect GDIPlus_GraphicsDrawImageRect GDIPlus_GraphicsDrawImageRectRect GDIPlus_GraphicsDrawLine GDIPlus_GraphicsDrawPath GDIPlus_GraphicsDrawPie GDIPlus_GraphicsDrawPolygon GDIPlus_GraphicsDrawRect GDIPlus_GraphicsDrawString GDIPlus_GraphicsDrawStringEx GDIPlus_GraphicsFillClosedCurve GDIPlus_GraphicsFillClosedCurve2 GDIPlus_GraphicsFillEllipse GDIPlus_GraphicsFillPath GDIPlus_GraphicsFillPie GDIPlus_GraphicsFillPolygon GDIPlus_GraphicsFillRect GDIPlus_GraphicsFillRegion GDIPlus_GraphicsGetCompositingMode GDIPlus_GraphicsGetCompositingQuality GDIPlus_GraphicsGetDC GDIPlus_GraphicsGetInterpolationMode GDIPlus_GraphicsGetSmoothingMode GDIPlus_GraphicsGetTransform GDIPlus_GraphicsMeasureCharacterRanges GDIPlus_GraphicsMeasureString GDIPlus_GraphicsReleaseDC GDIPlus_GraphicsResetClip GDIPlus_GraphicsResetTransform GDIPlus_GraphicsRestore GDIPlus_GraphicsRotateTransform GDIPlus_GraphicsSave GDIPlus_GraphicsScaleTransform GDIPlus_GraphicsSetClipPath GDIPlus_GraphicsSetClipRect GDIPlus_GraphicsSetClipRegion GDIPlus_GraphicsSetCompositingMode GDIPlus_GraphicsSetCompositingQuality GDIPlus_GraphicsSetInterpolationMode GDIPlus_GraphicsSetPixelOffsetMode GDIPlus_GraphicsSetSmoothingMode GDIPlus_GraphicsSetTextRenderingHint GDIPlus_GraphicsSetTransform GDIPlus_GraphicsTransformPoints GDIPlus_GraphicsTranslateTransform GDIPlus_HatchBrushCreate GDIPlus_HICONCreateFromBitmap GDIPlus_ImageAttributesCreate GDIPlus_ImageAttributesDispose GDIPlus_ImageAttributesSetColorKeys GDIPlus_ImageAttributesSetColorMatrix GDIPlus_ImageDispose GDIPlus_ImageGetDimension GDIPlus_ImageGetFlags GDIPlus_ImageGetGraphicsContext GDIPlus_ImageGetHeight GDIPlus_ImageGetHorizontalResolution GDIPlus_ImageGetPixelFormat GDIPlus_ImageGetRawFormat GDIPlus_ImageGetThumbnail GDIPlus_ImageGetType GDIPlus_ImageGetVerticalResolution GDIPlus_ImageGetWidth GDIPlus_ImageLoadFromFile GDIPlus_ImageLoadFromStream GDIPlus_ImageResize GDIPlus_ImageRotateFlip GDIPlus_ImageSaveToFile GDIPlus_ImageSaveToFileEx GDIPlus_ImageSaveToStream GDIPlus_ImageScale GDIPlus_LineBrushCreate GDIPlus_LineBrushCreateFromRect GDIPlus_LineBrushCreateFromRectWithAngle GDIPlus_LineBrushGetColors GDIPlus_LineBrushGetRect GDIPlus_LineBrushMultiplyTransform GDIPlus_LineBrushResetTransform GDIPlus_LineBrushSetBlend GDIPlus_LineBrushSetColors GDIPlus_LineBrushSetGammaCorrection GDIPlus_LineBrushSetLinearBlend GDIPlus_LineBrushSetPresetBlend GDIPlus_LineBrushSetSigmaBlend GDIPlus_LineBrushSetTransform GDIPlus_MatrixClone GDIPlus_MatrixCreate GDIPlus_MatrixDispose GDIPlus_MatrixGetElements GDIPlus_MatrixInvert GDIPlus_MatrixMultiply GDIPlus_MatrixRotate GDIPlus_MatrixScale GDIPlus_MatrixSetElements GDIPlus_MatrixShear GDIPlus_MatrixTransformPoints GDIPlus_MatrixTranslate GDIPlus_PaletteInitialize GDIPlus_ParamAdd GDIPlus_ParamInit GDIPlus_ParamSize GDIPlus_PathAddArc GDIPlus_PathAddBezier GDIPlus_PathAddClosedCurve GDIPlus_PathAddClosedCurve2 GDIPlus_PathAddCurve GDIPlus_PathAddCurve2 GDIPlus_PathAddCurve3 GDIPlus_PathAddEllipse GDIPlus_PathAddLine GDIPlus_PathAddLine2 GDIPlus_PathAddPath GDIPlus_PathAddPie GDIPlus_PathAddPolygon GDIPlus_PathAddRectangle GDIPlus_PathAddString GDIPlus_PathBrushCreate GDIPlus_PathBrushCreateFromPath GDIPlus_PathBrushGetCenterPoint GDIPlus_PathBrushGetFocusScales GDIPlus_PathBrushGetPointCount GDIPlus_PathBrushGetRect GDIPlus_PathBrushGetWrapMode GDIPlus_PathBrushMultiplyTransform GDIPlus_PathBrushResetTransform GDIPlus_PathBrushSetBlend GDIPlus_PathBrushSetCenterColor GDIPlus_PathBrushSetCenterPoint GDIPlus_PathBrushSetFocusScales GDIPlus_PathBrushSetGammaCorrection GDIPlus_PathBrushSetLinearBlend GDIPlus_PathBrushSetPresetBlend GDIPlus_PathBrushSetSigmaBlend GDIPlus_PathBrushSetSurroundColor GDIPlus_PathBrushSetSurroundColorsWithCount GDIPlus_PathBrushSetTransform GDIPlus_PathBrushSetWrapMode GDIPlus_PathClone GDIPlus_PathCloseFigure GDIPlus_PathCreate GDIPlus_PathCreate2 GDIPlus_PathDispose GDIPlus_PathFlatten GDIPlus_PathGetData GDIPlus_PathGetFillMode GDIPlus_PathGetLastPoint GDIPlus_PathGetPointCount GDIPlus_PathGetPoints GDIPlus_PathGetWorldBounds GDIPlus_PathIsOutlineVisiblePoint GDIPlus_PathIsVisiblePoint GDIPlus_PathIterCreate GDIPlus_PathIterDispose GDIPlus_PathIterGetSubpathCount GDIPlus_PathIterNextMarkerPath GDIPlus_PathIterNextSubpathPath GDIPlus_PathIterRewind GDIPlus_PathReset GDIPlus_PathReverse GDIPlus_PathSetFillMode GDIPlus_PathSetMarker GDIPlus_PathStartFigure GDIPlus_PathTransform GDIPlus_PathWarp GDIPlus_PathWiden GDIPlus_PathWindingModeOutline GDIPlus_PenCreate GDIPlus_PenCreate2 GDIPlus_PenDispose GDIPlus_PenGetAlignment GDIPlus_PenGetColor GDIPlus_PenGetCustomEndCap GDIPlus_PenGetDashCap GDIPlus_PenGetDashStyle GDIPlus_PenGetEndCap GDIPlus_PenGetMiterLimit GDIPlus_PenGetWidth GDIPlus_PenSetAlignment GDIPlus_PenSetColor GDIPlus_PenSetCustomEndCap GDIPlus_PenSetDashCap GDIPlus_PenSetDashStyle GDIPlus_PenSetEndCap GDIPlus_PenSetLineCap GDIPlus_PenSetLineJoin GDIPlus_PenSetMiterLimit GDIPlus_PenSetStartCap GDIPlus_PenSetWidth GDIPlus_RectFCreate GDIPlus_RegionClone GDIPlus_RegionCombinePath GDIPlus_RegionCombineRect GDIPlus_RegionCombineRegion GDIPlus_RegionCreate GDIPlus_RegionCreateFromPath GDIPlus_RegionCreateFromRect GDIPlus_RegionDispose GDIPlus_RegionGetBounds GDIPlus_RegionGetHRgn GDIPlus_RegionTransform GDIPlus_RegionTranslate GDIPlus_Shutdown GDIPlus_Startup GDIPlus_StringFormatCreate GDIPlus_StringFormatDispose GDIPlus_StringFormatGetMeasurableCharacterRangeCount GDIPlus_StringFormatSetAlign GDIPlus_StringFormatSetLineAlign GDIPlus_StringFormatSetMeasurableCharacterRanges GDIPlus_TextureCreate GDIPlus_TextureCreate2 GDIPlus_TextureCreateIA GetIP GUICtrlAVI_Close GUICtrlAVI_Create GUICtrlAVI_Destroy GUICtrlAVI_IsPlaying GUICtrlAVI_Open GUICtrlAVI_OpenEx GUICtrlAVI_Play GUICtrlAVI_Seek GUICtrlAVI_Show GUICtrlAVI_Stop GUICtrlButton_Click GUICtrlButton_Create GUICtrlButton_Destroy GUICtrlButton_Enable GUICtrlButton_GetCheck GUICtrlButton_GetFocus GUICtrlButton_GetIdealSize GUICtrlButton_GetImage GUICtrlButton_GetImageList GUICtrlButton_GetNote GUICtrlButton_GetNoteLength GUICtrlButton_GetSplitInfo GUICtrlButton_GetState GUICtrlButton_GetText GUICtrlButton_GetTextMargin GUICtrlButton_SetCheck GUICtrlButton_SetDontClick GUICtrlButton_SetFocus GUICtrlButton_SetImage GUICtrlButton_SetImageList GUICtrlButton_SetNote GUICtrlButton_SetShield GUICtrlButton_SetSize GUICtrlButton_SetSplitInfo GUICtrlButton_SetState GUICtrlButton_SetStyle GUICtrlButton_SetText GUICtrlButton_SetTextMargin GUICtrlButton_Show GUICtrlComboBoxEx_AddDir GUICtrlComboBoxEx_AddString GUICtrlComboBoxEx_BeginUpdate GUICtrlComboBoxEx_Create GUICtrlComboBoxEx_CreateSolidBitMap GUICtrlComboBoxEx_DeleteString GUICtrlComboBoxEx_Destroy GUICtrlComboBoxEx_EndUpdate GUICtrlComboBoxEx_FindStringExact GUICtrlComboBoxEx_GetComboBoxInfo GUICtrlComboBoxEx_GetComboControl GUICtrlComboBoxEx_GetCount GUICtrlComboBoxEx_GetCurSel GUICtrlComboBoxEx_GetDroppedControlRect GUICtrlComboBoxEx_GetDroppedControlRectEx GUICtrlComboBoxEx_GetDroppedState GUICtrlComboBoxEx_GetDroppedWidth GUICtrlComboBoxEx_GetEditControl GUICtrlComboBoxEx_GetEditSel GUICtrlComboBoxEx_GetEditText GUICtrlComboBoxEx_GetExtendedStyle GUICtrlComboBoxEx_GetExtendedUI GUICtrlComboBoxEx_GetImageList GUICtrlComboBoxEx_GetItem GUICtrlComboBoxEx_GetItemEx GUICtrlComboBoxEx_GetItemHeight GUICtrlComboBoxEx_GetItemImage GUICtrlComboBoxEx_GetItemIndent GUICtrlComboBoxEx_GetItemOverlayImage GUICtrlComboBoxEx_GetItemParam GUICtrlComboBoxEx_GetItemSelectedImage GUICtrlComboBoxEx_GetItemText GUICtrlComboBoxEx_GetItemTextLen GUICtrlComboBoxEx_GetList GUICtrlComboBoxEx_GetListArray GUICtrlComboBoxEx_GetLocale GUICtrlComboBoxEx_GetLocaleCountry GUICtrlComboBoxEx_GetLocaleLang GUICtrlComboBoxEx_GetLocalePrimLang GUICtrlComboBoxEx_GetLocaleSubLang GUICtrlComboBoxEx_GetMinVisible GUICtrlComboBoxEx_GetTopIndex GUICtrlComboBoxEx_GetUnicode GUICtrlComboBoxEx_InitStorage GUICtrlComboBoxEx_InsertString GUICtrlComboBoxEx_LimitText GUICtrlComboBoxEx_ReplaceEditSel GUICtrlComboBoxEx_ResetContent GUICtrlComboBoxEx_SetCurSel GUICtrlComboBoxEx_SetDroppedWidth GUICtrlComboBoxEx_SetEditSel GUICtrlComboBoxEx_SetEditText GUICtrlComboBoxEx_SetExtendedStyle GUICtrlComboBoxEx_SetExtendedUI GUICtrlComboBoxEx_SetImageList GUICtrlComboBoxEx_SetItem GUICtrlComboBoxEx_SetItemEx GUICtrlComboBoxEx_SetItemHeight GUICtrlComboBoxEx_SetItemImage GUICtrlComboBoxEx_SetItemIndent GUICtrlComboBoxEx_SetItemOverlayImage GUICtrlComboBoxEx_SetItemParam GUICtrlComboBoxEx_SetItemSelectedImage GUICtrlComboBoxEx_SetMinVisible GUICtrlComboBoxEx_SetTopIndex GUICtrlComboBoxEx_SetUnicode GUICtrlComboBoxEx_ShowDropDown GUICtrlComboBox_AddDir GUICtrlComboBox_AddString GUICtrlComboBox_AutoComplete GUICtrlComboBox_BeginUpdate GUICtrlComboBox_Create GUICtrlComboBox_DeleteString GUICtrlComboBox_Destroy GUICtrlComboBox_EndUpdate GUICtrlComboBox_FindString GUICtrlComboBox_FindStringExact GUICtrlComboBox_GetComboBoxInfo GUICtrlComboBox_GetCount GUICtrlComboBox_GetCueBanner GUICtrlComboBox_GetCurSel GUICtrlComboBox_GetDroppedControlRect GUICtrlComboBox_GetDroppedControlRectEx GUICtrlComboBox_GetDroppedState GUICtrlComboBox_GetDroppedWidth GUICtrlComboBox_GetEditSel GUICtrlComboBox_GetEditText GUICtrlComboBox_GetExtendedUI GUICtrlComboBox_GetHorizontalExtent GUICtrlComboBox_GetItemHeight GUICtrlComboBox_GetLBText GUICtrlComboBox_GetLBTextLen GUICtrlComboBox_GetList GUICtrlComboBox_GetListArray GUICtrlComboBox_GetLocale GUICtrlComboBox_GetLocaleCountry GUICtrlComboBox_GetLocaleLang GUICtrlComboBox_GetLocalePrimLang GUICtrlComboBox_GetLocaleSubLang GUICtrlComboBox_GetMinVisible GUICtrlComboBox_GetTopIndex GUICtrlComboBox_InitStorage GUICtrlComboBox_InsertString GUICtrlComboBox_LimitText GUICtrlComboBox_ReplaceEditSel GUICtrlComboBox_ResetContent GUICtrlComboBox_SelectString GUICtrlComboBox_SetCueBanner GUICtrlComboBox_SetCurSel GUICtrlComboBox_SetDroppedWidth GUICtrlComboBox_SetEditSel GUICtrlComboBox_SetEditText GUICtrlComboBox_SetExtendedUI GUICtrlComboBox_SetHorizontalExtent GUICtrlComboBox_SetItemHeight GUICtrlComboBox_SetMinVisible GUICtrlComboBox_SetTopIndex GUICtrlComboBox_ShowDropDown GUICtrlDTP_Create GUICtrlDTP_Destroy GUICtrlDTP_GetMCColor GUICtrlDTP_GetMCFont GUICtrlDTP_GetMonthCal GUICtrlDTP_GetRange GUICtrlDTP_GetRangeEx GUICtrlDTP_GetSystemTime GUICtrlDTP_GetSystemTimeEx GUICtrlDTP_SetFormat GUICtrlDTP_SetMCColor GUICtrlDTP_SetMCFont GUICtrlDTP_SetRange GUICtrlDTP_SetRangeEx GUICtrlDTP_SetSystemTime GUICtrlDTP_SetSystemTimeEx GUICtrlEdit_AppendText GUICtrlEdit_BeginUpdate GUICtrlEdit_CanUndo GUICtrlEdit_CharFromPos GUICtrlEdit_Create GUICtrlEdit_Destroy GUICtrlEdit_EmptyUndoBuffer GUICtrlEdit_EndUpdate GUICtrlEdit_Find GUICtrlEdit_FmtLines GUICtrlEdit_GetCueBanner GUICtrlEdit_GetFirstVisibleLine GUICtrlEdit_GetLimitText GUICtrlEdit_GetLine GUICtrlEdit_GetLineCount GUICtrlEdit_GetMargins GUICtrlEdit_GetModify GUICtrlEdit_GetPasswordChar GUICtrlEdit_GetRECT GUICtrlEdit_GetRECTEx GUICtrlEdit_GetSel GUICtrlEdit_GetText GUICtrlEdit_GetTextLen GUICtrlEdit_HideBalloonTip GUICtrlEdit_InsertText GUICtrlEdit_LineFromChar GUICtrlEdit_LineIndex GUICtrlEdit_LineLength GUICtrlEdit_LineScroll GUICtrlEdit_PosFromChar GUICtrlEdit_ReplaceSel GUICtrlEdit_Scroll GUICtrlEdit_SetCueBanner GUICtrlEdit_SetLimitText GUICtrlEdit_SetMargins GUICtrlEdit_SetModify GUICtrlEdit_SetPasswordChar GUICtrlEdit_SetReadOnly GUICtrlEdit_SetRECT GUICtrlEdit_SetRECTEx GUICtrlEdit_SetRECTNP GUICtrlEdit_SetRectNPEx GUICtrlEdit_SetSel GUICtrlEdit_SetTabStops GUICtrlEdit_SetText GUICtrlEdit_ShowBalloonTip GUICtrlEdit_Undo GUICtrlHeader_AddItem GUICtrlHeader_ClearFilter GUICtrlHeader_ClearFilterAll GUICtrlHeader_Create GUICtrlHeader_CreateDragImage GUICtrlHeader_DeleteItem GUICtrlHeader_Destroy GUICtrlHeader_EditFilter GUICtrlHeader_GetBitmapMargin GUICtrlHeader_GetImageList GUICtrlHeader_GetItem GUICtrlHeader_GetItemAlign GUICtrlHeader_GetItemBitmap GUICtrlHeader_GetItemCount GUICtrlHeader_GetItemDisplay GUICtrlHeader_GetItemFlags GUICtrlHeader_GetItemFormat GUICtrlHeader_GetItemImage GUICtrlHeader_GetItemOrder GUICtrlHeader_GetItemParam GUICtrlHeader_GetItemRect GUICtrlHeader_GetItemRectEx GUICtrlHeader_GetItemText GUICtrlHeader_GetItemWidth GUICtrlHeader_GetOrderArray GUICtrlHeader_GetUnicodeFormat GUICtrlHeader_HitTest GUICtrlHeader_InsertItem GUICtrlHeader_Layout GUICtrlHeader_OrderToIndex GUICtrlHeader_SetBitmapMargin GUICtrlHeader_SetFilterChangeTimeout GUICtrlHeader_SetHotDivider GUICtrlHeader_SetImageList GUICtrlHeader_SetItem GUICtrlHeader_SetItemAlign GUICtrlHeader_SetItemBitmap GUICtrlHeader_SetItemDisplay GUICtrlHeader_SetItemFlags GUICtrlHeader_SetItemFormat GUICtrlHeader_SetItemImage GUICtrlHeader_SetItemOrder GUICtrlHeader_SetItemParam GUICtrlHeader_SetItemText GUICtrlHeader_SetItemWidth GUICtrlHeader_SetOrderArray GUICtrlHeader_SetUnicodeFormat GUICtrlIpAddress_ClearAddress GUICtrlIpAddress_Create GUICtrlIpAddress_Destroy GUICtrlIpAddress_Get GUICtrlIpAddress_GetArray GUICtrlIpAddress_GetEx GUICtrlIpAddress_IsBlank GUICtrlIpAddress_Set GUICtrlIpAddress_SetArray GUICtrlIpAddress_SetEx GUICtrlIpAddress_SetFocus GUICtrlIpAddress_SetFont GUICtrlIpAddress_SetRange GUICtrlIpAddress_ShowHide GUICtrlListBox_AddFile GUICtrlListBox_AddString GUICtrlListBox_BeginUpdate GUICtrlListBox_ClickItem GUICtrlListBox_Create GUICtrlListBox_DeleteString GUICtrlListBox_Destroy GUICtrlListBox_Dir GUICtrlListBox_EndUpdate GUICtrlListBox_FindInText GUICtrlListBox_FindString GUICtrlListBox_GetAnchorIndex GUICtrlListBox_GetCaretIndex GUICtrlListBox_GetCount GUICtrlListBox_GetCurSel GUICtrlListBox_GetHorizontalExtent GUICtrlListBox_GetItemData GUICtrlListBox_GetItemHeight GUICtrlListBox_GetItemRect GUICtrlListBox_GetItemRectEx GUICtrlListBox_GetListBoxInfo GUICtrlListBox_GetLocale GUICtrlListBox_GetLocaleCountry GUICtrlListBox_GetLocaleLang GUICtrlListBox_GetLocalePrimLang GUICtrlListBox_GetLocaleSubLang GUICtrlListBox_GetSel GUICtrlListBox_GetSelCount GUICtrlListBox_GetSelItems GUICtrlListBox_GetSelItemsText GUICtrlListBox_GetText GUICtrlListBox_GetTextLen GUICtrlListBox_GetTopIndex GUICtrlListBox_InitStorage GUICtrlListBox_InsertString GUICtrlListBox_ItemFromPoint GUICtrlListBox_ReplaceString GUICtrlListBox_ResetContent GUICtrlListBox_SelectString GUICtrlListBox_SelItemRange GUICtrlListBox_SelItemRangeEx GUICtrlListBox_SetAnchorIndex GUICtrlListBox_SetCaretIndex GUICtrlListBox_SetColumnWidth GUICtrlListBox_SetCurSel GUICtrlListBox_SetHorizontalExtent GUICtrlListBox_SetItemData GUICtrlListBox_SetItemHeight GUICtrlListBox_SetLocale GUICtrlListBox_SetSel GUICtrlListBox_SetTabStops GUICtrlListBox_SetTopIndex GUICtrlListBox_Sort GUICtrlListBox_SwapString GUICtrlListBox_UpdateHScroll GUICtrlListView_AddArray GUICtrlListView_AddColumn GUICtrlListView_AddItem GUICtrlListView_AddSubItem GUICtrlListView_ApproximateViewHeight GUICtrlListView_ApproximateViewRect GUICtrlListView_ApproximateViewWidth GUICtrlListView_Arrange GUICtrlListView_BeginUpdate GUICtrlListView_CancelEditLabel GUICtrlListView_ClickItem GUICtrlListView_CopyItems GUICtrlListView_Create GUICtrlListView_CreateDragImage GUICtrlListView_CreateSolidBitMap GUICtrlListView_DeleteAllItems GUICtrlListView_DeleteColumn GUICtrlListView_DeleteItem GUICtrlListView_DeleteItemsSelected GUICtrlListView_Destroy GUICtrlListView_DrawDragImage GUICtrlListView_EditLabel GUICtrlListView_EnableGroupView GUICtrlListView_EndUpdate GUICtrlListView_EnsureVisible GUICtrlListView_FindInText GUICtrlListView_FindItem GUICtrlListView_FindNearest GUICtrlListView_FindParam GUICtrlListView_FindText GUICtrlListView_GetBkColor GUICtrlListView_GetBkImage GUICtrlListView_GetCallbackMask GUICtrlListView_GetColumn GUICtrlListView_GetColumnCount GUICtrlListView_GetColumnOrder GUICtrlListView_GetColumnOrderArray GUICtrlListView_GetColumnWidth GUICtrlListView_GetCounterPage GUICtrlListView_GetEditControl GUICtrlListView_GetExtendedListViewStyle GUICtrlListView_GetFocusedGroup GUICtrlListView_GetGroupCount GUICtrlListView_GetGroupInfo GUICtrlListView_GetGroupInfoByIndex GUICtrlListView_GetGroupRect GUICtrlListView_GetGroupViewEnabled GUICtrlListView_GetHeader GUICtrlListView_GetHotCursor GUICtrlListView_GetHotItem GUICtrlListView_GetHoverTime GUICtrlListView_GetImageList GUICtrlListView_GetISearchString GUICtrlListView_GetItem GUICtrlListView_GetItemChecked GUICtrlListView_GetItemCount GUICtrlListView_GetItemCut GUICtrlListView_GetItemDropHilited GUICtrlListView_GetItemEx GUICtrlListView_GetItemFocused GUICtrlListView_GetItemGroupID GUICtrlListView_GetItemImage GUICtrlListView_GetItemIndent GUICtrlListView_GetItemParam GUICtrlListView_GetItemPosition GUICtrlListView_GetItemPositionX GUICtrlListView_GetItemPositionY GUICtrlListView_GetItemRect GUICtrlListView_GetItemRectEx GUICtrlListView_GetItemSelected GUICtrlListView_GetItemSpacing GUICtrlListView_GetItemSpacingX GUICtrlListView_GetItemSpacingY GUICtrlListView_GetItemState GUICtrlListView_GetItemStateImage GUICtrlListView_GetItemText GUICtrlListView_GetItemTextArray GUICtrlListView_GetItemTextString GUICtrlListView_GetNextItem GUICtrlListView_GetNumberOfWorkAreas GUICtrlListView_GetOrigin GUICtrlListView_GetOriginX GUICtrlListView_GetOriginY GUICtrlListView_GetOutlineColor GUICtrlListView_GetSelectedColumn GUICtrlListView_GetSelectedCount GUICtrlListView_GetSelectedIndices GUICtrlListView_GetSelectionMark GUICtrlListView_GetStringWidth GUICtrlListView_GetSubItemRect GUICtrlListView_GetTextBkColor GUICtrlListView_GetTextColor GUICtrlListView_GetToolTips GUICtrlListView_GetTopIndex GUICtrlListView_GetUnicodeFormat GUICtrlListView_GetView GUICtrlListView_GetViewDetails GUICtrlListView_GetViewLarge GUICtrlListView_GetViewList GUICtrlListView_GetViewRect GUICtrlListView_GetViewSmall GUICtrlListView_GetViewTile GUICtrlListView_HideColumn GUICtrlListView_HitTest GUICtrlListView_InsertColumn GUICtrlListView_InsertGroup GUICtrlListView_InsertItem GUICtrlListView_JustifyColumn GUICtrlListView_MapIDToIndex GUICtrlListView_MapIndexToID GUICtrlListView_RedrawItems GUICtrlListView_RegisterSortCallBack GUICtrlListView_RemoveAllGroups GUICtrlListView_RemoveGroup GUICtrlListView_Scroll GUICtrlListView_SetBkColor GUICtrlListView_SetBkImage GUICtrlListView_SetCallBackMask GUICtrlListView_SetColumn GUICtrlListView_SetColumnOrder GUICtrlListView_SetColumnOrderArray GUICtrlListView_SetColumnWidth GUICtrlListView_SetExtendedListViewStyle GUICtrlListView_SetGroupInfo GUICtrlListView_SetHotItem GUICtrlListView_SetHoverTime GUICtrlListView_SetIconSpacing GUICtrlListView_SetImageList GUICtrlListView_SetItem GUICtrlListView_SetItemChecked GUICtrlListView_SetItemCount GUICtrlListView_SetItemCut GUICtrlListView_SetItemDropHilited GUICtrlListView_SetItemEx GUICtrlListView_SetItemFocused GUICtrlListView_SetItemGroupID GUICtrlListView_SetItemImage GUICtrlListView_SetItemIndent GUICtrlListView_SetItemParam GUICtrlListView_SetItemPosition GUICtrlListView_SetItemPosition32 GUICtrlListView_SetItemSelected GUICtrlListView_SetItemState GUICtrlListView_SetItemStateImage GUICtrlListView_SetItemText GUICtrlListView_SetOutlineColor GUICtrlListView_SetSelectedColumn GUICtrlListView_SetSelectionMark GUICtrlListView_SetTextBkColor GUICtrlListView_SetTextColor GUICtrlListView_SetToolTips GUICtrlListView_SetUnicodeFormat GUICtrlListView_SetView GUICtrlListView_SetWorkAreas GUICtrlListView_SimpleSort GUICtrlListView_SortItems GUICtrlListView_SubItemHitTest GUICtrlListView_UnRegisterSortCallBack GUICtrlMenu_AddMenuItem GUICtrlMenu_AppendMenu GUICtrlMenu_CalculatePopupWindowPosition GUICtrlMenu_CheckMenuItem GUICtrlMenu_CheckRadioItem GUICtrlMenu_CreateMenu GUICtrlMenu_CreatePopup GUICtrlMenu_DeleteMenu GUICtrlMenu_DestroyMenu GUICtrlMenu_DrawMenuBar GUICtrlMenu_EnableMenuItem GUICtrlMenu_FindItem GUICtrlMenu_FindParent GUICtrlMenu_GetItemBmp GUICtrlMenu_GetItemBmpChecked GUICtrlMenu_GetItemBmpUnchecked GUICtrlMenu_GetItemChecked GUICtrlMenu_GetItemCount GUICtrlMenu_GetItemData GUICtrlMenu_GetItemDefault GUICtrlMenu_GetItemDisabled GUICtrlMenu_GetItemEnabled GUICtrlMenu_GetItemGrayed GUICtrlMenu_GetItemHighlighted GUICtrlMenu_GetItemID GUICtrlMenu_GetItemInfo GUICtrlMenu_GetItemRect GUICtrlMenu_GetItemRectEx GUICtrlMenu_GetItemState GUICtrlMenu_GetItemStateEx GUICtrlMenu_GetItemSubMenu GUICtrlMenu_GetItemText GUICtrlMenu_GetItemType GUICtrlMenu_GetMenu GUICtrlMenu_GetMenuBackground GUICtrlMenu_GetMenuBarInfo GUICtrlMenu_GetMenuContextHelpID GUICtrlMenu_GetMenuData GUICtrlMenu_GetMenuDefaultItem GUICtrlMenu_GetMenuHeight GUICtrlMenu_GetMenuInfo GUICtrlMenu_GetMenuStyle GUICtrlMenu_GetSystemMenu GUICtrlMenu_InsertMenuItem GUICtrlMenu_InsertMenuItemEx GUICtrlMenu_IsMenu GUICtrlMenu_LoadMenu GUICtrlMenu_MapAccelerator GUICtrlMenu_MenuItemFromPoint GUICtrlMenu_RemoveMenu GUICtrlMenu_SetItemBitmaps GUICtrlMenu_SetItemBmp GUICtrlMenu_SetItemBmpChecked GUICtrlMenu_SetItemBmpUnchecked GUICtrlMenu_SetItemChecked GUICtrlMenu_SetItemData GUICtrlMenu_SetItemDefault GUICtrlMenu_SetItemDisabled GUICtrlMenu_SetItemEnabled GUICtrlMenu_SetItemGrayed GUICtrlMenu_SetItemHighlighted GUICtrlMenu_SetItemID GUICtrlMenu_SetItemInfo GUICtrlMenu_SetItemState GUICtrlMenu_SetItemSubMenu GUICtrlMenu_SetItemText GUICtrlMenu_SetItemType GUICtrlMenu_SetMenu GUICtrlMenu_SetMenuBackground GUICtrlMenu_SetMenuContextHelpID GUICtrlMenu_SetMenuData GUICtrlMenu_SetMenuDefaultItem GUICtrlMenu_SetMenuHeight GUICtrlMenu_SetMenuInfo GUICtrlMenu_SetMenuStyle GUICtrlMenu_TrackPopupMenu GUICtrlMonthCal_Create GUICtrlMonthCal_Destroy GUICtrlMonthCal_GetCalendarBorder GUICtrlMonthCal_GetCalendarCount GUICtrlMonthCal_GetColor GUICtrlMonthCal_GetColorArray GUICtrlMonthCal_GetCurSel GUICtrlMonthCal_GetCurSelStr GUICtrlMonthCal_GetFirstDOW GUICtrlMonthCal_GetFirstDOWStr GUICtrlMonthCal_GetMaxSelCount GUICtrlMonthCal_GetMaxTodayWidth GUICtrlMonthCal_GetMinReqHeight GUICtrlMonthCal_GetMinReqRect GUICtrlMonthCal_GetMinReqRectArray GUICtrlMonthCal_GetMinReqWidth GUICtrlMonthCal_GetMonthDelta GUICtrlMonthCal_GetMonthRange GUICtrlMonthCal_GetMonthRangeMax GUICtrlMonthCal_GetMonthRangeMaxStr GUICtrlMonthCal_GetMonthRangeMin GUICtrlMonthCal_GetMonthRangeMinStr GUICtrlMonthCal_GetMonthRangeSpan GUICtrlMonthCal_GetRange GUICtrlMonthCal_GetRangeMax GUICtrlMonthCal_GetRangeMaxStr GUICtrlMonthCal_GetRangeMin GUICtrlMonthCal_GetRangeMinStr GUICtrlMonthCal_GetSelRange GUICtrlMonthCal_GetSelRangeMax GUICtrlMonthCal_GetSelRangeMaxStr GUICtrlMonthCal_GetSelRangeMin GUICtrlMonthCal_GetSelRangeMinStr GUICtrlMonthCal_GetToday GUICtrlMonthCal_GetTodayStr GUICtrlMonthCal_GetUnicodeFormat GUICtrlMonthCal_HitTest GUICtrlMonthCal_SetCalendarBorder GUICtrlMonthCal_SetColor GUICtrlMonthCal_SetCurSel GUICtrlMonthCal_SetDayState GUICtrlMonthCal_SetFirstDOW GUICtrlMonthCal_SetMaxSelCount GUICtrlMonthCal_SetMonthDelta GUICtrlMonthCal_SetRange GUICtrlMonthCal_SetSelRange GUICtrlMonthCal_SetToday GUICtrlMonthCal_SetUnicodeFormat GUICtrlRebar_AddBand GUICtrlRebar_AddToolBarBand GUICtrlRebar_BeginDrag GUICtrlRebar_Create GUICtrlRebar_DeleteBand GUICtrlRebar_Destroy GUICtrlRebar_DragMove GUICtrlRebar_EndDrag GUICtrlRebar_GetBandBackColor GUICtrlRebar_GetBandBorders GUICtrlRebar_GetBandBordersEx GUICtrlRebar_GetBandChildHandle GUICtrlRebar_GetBandChildSize GUICtrlRebar_GetBandCount GUICtrlRebar_GetBandForeColor GUICtrlRebar_GetBandHeaderSize GUICtrlRebar_GetBandID GUICtrlRebar_GetBandIdealSize GUICtrlRebar_GetBandLength GUICtrlRebar_GetBandLParam GUICtrlRebar_GetBandMargins GUICtrlRebar_GetBandMarginsEx GUICtrlRebar_GetBandRect GUICtrlRebar_GetBandRectEx GUICtrlRebar_GetBandStyle GUICtrlRebar_GetBandStyleBreak GUICtrlRebar_GetBandStyleChildEdge GUICtrlRebar_GetBandStyleFixedBMP GUICtrlRebar_GetBandStyleFixedSize GUICtrlRebar_GetBandStyleGripperAlways GUICtrlRebar_GetBandStyleHidden GUICtrlRebar_GetBandStyleHideTitle GUICtrlRebar_GetBandStyleNoGripper GUICtrlRebar_GetBandStyleTopAlign GUICtrlRebar_GetBandStyleUseChevron GUICtrlRebar_GetBandStyleVariableHeight GUICtrlRebar_GetBandText GUICtrlRebar_GetBarHeight GUICtrlRebar_GetBarInfo GUICtrlRebar_GetBKColor GUICtrlRebar_GetColorScheme GUICtrlRebar_GetRowCount GUICtrlRebar_GetRowHeight GUICtrlRebar_GetTextColor GUICtrlRebar_GetToolTips GUICtrlRebar_GetUnicodeFormat GUICtrlRebar_HitTest GUICtrlRebar_IDToIndex GUICtrlRebar_MaximizeBand GUICtrlRebar_MinimizeBand GUICtrlRebar_MoveBand GUICtrlRebar_SetBandBackColor GUICtrlRebar_SetBandForeColor GUICtrlRebar_SetBandHeaderSize GUICtrlRebar_SetBandID GUICtrlRebar_SetBandIdealSize GUICtrlRebar_SetBandLength GUICtrlRebar_SetBandLParam GUICtrlRebar_SetBandStyle GUICtrlRebar_SetBandStyleBreak GUICtrlRebar_SetBandStyleChildEdge GUICtrlRebar_SetBandStyleFixedBMP GUICtrlRebar_SetBandStyleFixedSize GUICtrlRebar_SetBandStyleGripperAlways GUICtrlRebar_SetBandStyleHidden GUICtrlRebar_SetBandStyleHideTitle GUICtrlRebar_SetBandStyleNoGripper GUICtrlRebar_SetBandStyleTopAlign GUICtrlRebar_SetBandStyleUseChevron GUICtrlRebar_SetBandStyleVariableHeight GUICtrlRebar_SetBandText GUICtrlRebar_SetBarInfo GUICtrlRebar_SetBKColor GUICtrlRebar_SetColorScheme GUICtrlRebar_SetTextColor GUICtrlRebar_SetToolTips GUICtrlRebar_SetUnicodeFormat GUICtrlRebar_ShowBand GUICtrlRichEdit_AppendText GUICtrlRichEdit_AutoDetectURL GUICtrlRichEdit_CanPaste GUICtrlRichEdit_CanPasteSpecial GUICtrlRichEdit_CanRedo GUICtrlRichEdit_CanUndo GUICtrlRichEdit_ChangeFontSize GUICtrlRichEdit_Copy GUICtrlRichEdit_Create GUICtrlRichEdit_Cut GUICtrlRichEdit_Deselect GUICtrlRichEdit_Destroy GUICtrlRichEdit_EmptyUndoBuffer GUICtrlRichEdit_FindText GUICtrlRichEdit_FindTextInRange GUICtrlRichEdit_GetBkColor GUICtrlRichEdit_GetCharAttributes GUICtrlRichEdit_GetCharBkColor GUICtrlRichEdit_GetCharColor GUICtrlRichEdit_GetCharPosFromXY GUICtrlRichEdit_GetCharPosOfNextWord GUICtrlRichEdit_GetCharPosOfPreviousWord GUICtrlRichEdit_GetCharWordBreakInfo GUICtrlRichEdit_GetFirstCharPosOnLine GUICtrlRichEdit_GetFont GUICtrlRichEdit_GetLineCount GUICtrlRichEdit_GetLineLength GUICtrlRichEdit_GetLineNumberFromCharPos GUICtrlRichEdit_GetNextRedo GUICtrlRichEdit_GetNextUndo GUICtrlRichEdit_GetNumberOfFirstVisibleLine GUICtrlRichEdit_GetParaAlignment GUICtrlRichEdit_GetParaAttributes GUICtrlRichEdit_GetParaBorder GUICtrlRichEdit_GetParaIndents GUICtrlRichEdit_GetParaNumbering GUICtrlRichEdit_GetParaShading GUICtrlRichEdit_GetParaSpacing GUICtrlRichEdit_GetParaTabStops GUICtrlRichEdit_GetPasswordChar GUICtrlRichEdit_GetRECT GUICtrlRichEdit_GetScrollPos GUICtrlRichEdit_GetSel GUICtrlRichEdit_GetSelAA GUICtrlRichEdit_GetSelText GUICtrlRichEdit_GetSpaceUnit GUICtrlRichEdit_GetText GUICtrlRichEdit_GetTextInLine GUICtrlRichEdit_GetTextInRange GUICtrlRichEdit_GetTextLength GUICtrlRichEdit_GetVersion GUICtrlRichEdit_GetXYFromCharPos GUICtrlRichEdit_GetZoom GUICtrlRichEdit_GotoCharPos GUICtrlRichEdit_HideSelection GUICtrlRichEdit_InsertText GUICtrlRichEdit_IsModified GUICtrlRichEdit_IsTextSelected GUICtrlRichEdit_Paste GUICtrlRichEdit_PasteSpecial GUICtrlRichEdit_PauseRedraw GUICtrlRichEdit_Redo GUICtrlRichEdit_ReplaceText GUICtrlRichEdit_ResumeRedraw GUICtrlRichEdit_ScrollLineOrPage GUICtrlRichEdit_ScrollLines GUICtrlRichEdit_ScrollToCaret GUICtrlRichEdit_SetBkColor GUICtrlRichEdit_SetCharAttributes GUICtrlRichEdit_SetCharBkColor GUICtrlRichEdit_SetCharColor GUICtrlRichEdit_SetEventMask GUICtrlRichEdit_SetFont GUICtrlRichEdit_SetLimitOnText GUICtrlRichEdit_SetModified GUICtrlRichEdit_SetParaAlignment GUICtrlRichEdit_SetParaAttributes GUICtrlRichEdit_SetParaBorder GUICtrlRichEdit_SetParaIndents GUICtrlRichEdit_SetParaNumbering GUICtrlRichEdit_SetParaShading GUICtrlRichEdit_SetParaSpacing GUICtrlRichEdit_SetParaTabStops GUICtrlRichEdit_SetPasswordChar GUICtrlRichEdit_SetReadOnly GUICtrlRichEdit_SetRECT GUICtrlRichEdit_SetScrollPos GUICtrlRichEdit_SetSel GUICtrlRichEdit_SetSpaceUnit GUICtrlRichEdit_SetTabStops GUICtrlRichEdit_SetText GUICtrlRichEdit_SetUndoLimit GUICtrlRichEdit_SetZoom GUICtrlRichEdit_StreamFromFile GUICtrlRichEdit_StreamFromVar GUICtrlRichEdit_StreamToFile GUICtrlRichEdit_StreamToVar GUICtrlRichEdit_Undo GUICtrlSlider_ClearSel GUICtrlSlider_ClearTics GUICtrlSlider_Create GUICtrlSlider_Destroy GUICtrlSlider_GetBuddy GUICtrlSlider_GetChannelRect GUICtrlSlider_GetChannelRectEx GUICtrlSlider_GetLineSize GUICtrlSlider_GetLogicalTics GUICtrlSlider_GetNumTics GUICtrlSlider_GetPageSize GUICtrlSlider_GetPos GUICtrlSlider_GetRange GUICtrlSlider_GetRangeMax GUICtrlSlider_GetRangeMin GUICtrlSlider_GetSel GUICtrlSlider_GetSelEnd GUICtrlSlider_GetSelStart GUICtrlSlider_GetThumbLength GUICtrlSlider_GetThumbRect GUICtrlSlider_GetThumbRectEx GUICtrlSlider_GetTic GUICtrlSlider_GetTicPos GUICtrlSlider_GetToolTips GUICtrlSlider_GetUnicodeFormat GUICtrlSlider_SetBuddy GUICtrlSlider_SetLineSize GUICtrlSlider_SetPageSize GUICtrlSlider_SetPos GUICtrlSlider_SetRange GUICtrlSlider_SetRangeMax GUICtrlSlider_SetRangeMin GUICtrlSlider_SetSel GUICtrlSlider_SetSelEnd GUICtrlSlider_SetSelStart GUICtrlSlider_SetThumbLength GUICtrlSlider_SetTic GUICtrlSlider_SetTicFreq GUICtrlSlider_SetTipSide GUICtrlSlider_SetToolTips GUICtrlSlider_SetUnicodeFormat GUICtrlStatusBar_Create GUICtrlStatusBar_Destroy GUICtrlStatusBar_EmbedControl GUICtrlStatusBar_GetBorders GUICtrlStatusBar_GetBordersHorz GUICtrlStatusBar_GetBordersRect GUICtrlStatusBar_GetBordersVert GUICtrlStatusBar_GetCount GUICtrlStatusBar_GetHeight GUICtrlStatusBar_GetIcon GUICtrlStatusBar_GetParts GUICtrlStatusBar_GetRect GUICtrlStatusBar_GetRectEx GUICtrlStatusBar_GetText GUICtrlStatusBar_GetTextFlags GUICtrlStatusBar_GetTextLength GUICtrlStatusBar_GetTextLengthEx GUICtrlStatusBar_GetTipText GUICtrlStatusBar_GetUnicodeFormat GUICtrlStatusBar_GetWidth GUICtrlStatusBar_IsSimple GUICtrlStatusBar_Resize GUICtrlStatusBar_SetBkColor GUICtrlStatusBar_SetIcon GUICtrlStatusBar_SetMinHeight GUICtrlStatusBar_SetParts GUICtrlStatusBar_SetSimple GUICtrlStatusBar_SetText GUICtrlStatusBar_SetTipText GUICtrlStatusBar_SetUnicodeFormat GUICtrlStatusBar_ShowHide GUICtrlTab_ActivateTab GUICtrlTab_ClickTab GUICtrlTab_Create GUICtrlTab_DeleteAllItems GUICtrlTab_DeleteItem GUICtrlTab_DeselectAll GUICtrlTab_Destroy GUICtrlTab_FindTab GUICtrlTab_GetCurFocus GUICtrlTab_GetCurSel GUICtrlTab_GetDisplayRect GUICtrlTab_GetDisplayRectEx GUICtrlTab_GetExtendedStyle GUICtrlTab_GetImageList GUICtrlTab_GetItem GUICtrlTab_GetItemCount GUICtrlTab_GetItemImage GUICtrlTab_GetItemParam GUICtrlTab_GetItemRect GUICtrlTab_GetItemRectEx GUICtrlTab_GetItemState GUICtrlTab_GetItemText GUICtrlTab_GetRowCount GUICtrlTab_GetToolTips GUICtrlTab_GetUnicodeFormat GUICtrlTab_HighlightItem GUICtrlTab_HitTest GUICtrlTab_InsertItem GUICtrlTab_RemoveImage GUICtrlTab_SetCurFocus GUICtrlTab_SetCurSel GUICtrlTab_SetExtendedStyle GUICtrlTab_SetImageList GUICtrlTab_SetItem GUICtrlTab_SetItemImage GUICtrlTab_SetItemParam GUICtrlTab_SetItemSize GUICtrlTab_SetItemState GUICtrlTab_SetItemText GUICtrlTab_SetMinTabWidth GUICtrlTab_SetPadding GUICtrlTab_SetToolTips GUICtrlTab_SetUnicodeFormat GUICtrlToolbar_AddBitmap GUICtrlToolbar_AddButton GUICtrlToolbar_AddButtonSep GUICtrlToolbar_AddString GUICtrlToolbar_ButtonCount GUICtrlToolbar_CheckButton GUICtrlToolbar_ClickAccel GUICtrlToolbar_ClickButton GUICtrlToolbar_ClickIndex GUICtrlToolbar_CommandToIndex GUICtrlToolbar_Create GUICtrlToolbar_Customize GUICtrlToolbar_DeleteButton GUICtrlToolbar_Destroy GUICtrlToolbar_EnableButton GUICtrlToolbar_FindToolbar GUICtrlToolbar_GetAnchorHighlight GUICtrlToolbar_GetBitmapFlags GUICtrlToolbar_GetButtonBitmap GUICtrlToolbar_GetButtonInfo GUICtrlToolbar_GetButtonInfoEx GUICtrlToolbar_GetButtonParam GUICtrlToolbar_GetButtonRect GUICtrlToolbar_GetButtonRectEx GUICtrlToolbar_GetButtonSize GUICtrlToolbar_GetButtonState GUICtrlToolbar_GetButtonStyle GUICtrlToolbar_GetButtonText GUICtrlToolbar_GetColorScheme GUICtrlToolbar_GetDisabledImageList GUICtrlToolbar_GetExtendedStyle GUICtrlToolbar_GetHotImageList GUICtrlToolbar_GetHotItem GUICtrlToolbar_GetImageList GUICtrlToolbar_GetInsertMark GUICtrlToolbar_GetInsertMarkColor GUICtrlToolbar_GetMaxSize GUICtrlToolbar_GetMetrics GUICtrlToolbar_GetPadding GUICtrlToolbar_GetRows GUICtrlToolbar_GetString GUICtrlToolbar_GetStyle GUICtrlToolbar_GetStyleAltDrag GUICtrlToolbar_GetStyleCustomErase GUICtrlToolbar_GetStyleFlat GUICtrlToolbar_GetStyleList GUICtrlToolbar_GetStyleRegisterDrop GUICtrlToolbar_GetStyleToolTips GUICtrlToolbar_GetStyleTransparent GUICtrlToolbar_GetStyleWrapable GUICtrlToolbar_GetTextRows GUICtrlToolbar_GetToolTips GUICtrlToolbar_GetUnicodeFormat GUICtrlToolbar_HideButton GUICtrlToolbar_HighlightButton GUICtrlToolbar_HitTest GUICtrlToolbar_IndexToCommand GUICtrlToolbar_InsertButton GUICtrlToolbar_InsertMarkHitTest GUICtrlToolbar_IsButtonChecked GUICtrlToolbar_IsButtonEnabled GUICtrlToolbar_IsButtonHidden GUICtrlToolbar_IsButtonHighlighted GUICtrlToolbar_IsButtonIndeterminate GUICtrlToolbar_IsButtonPressed GUICtrlToolbar_LoadBitmap GUICtrlToolbar_LoadImages GUICtrlToolbar_MapAccelerator GUICtrlToolbar_MoveButton GUICtrlToolbar_PressButton GUICtrlToolbar_SetAnchorHighlight GUICtrlToolbar_SetBitmapSize GUICtrlToolbar_SetButtonBitMap GUICtrlToolbar_SetButtonInfo GUICtrlToolbar_SetButtonInfoEx GUICtrlToolbar_SetButtonParam GUICtrlToolbar_SetButtonSize GUICtrlToolbar_SetButtonState GUICtrlToolbar_SetButtonStyle GUICtrlToolbar_SetButtonText GUICtrlToolbar_SetButtonWidth GUICtrlToolbar_SetCmdID GUICtrlToolbar_SetColorScheme GUICtrlToolbar_SetDisabledImageList GUICtrlToolbar_SetDrawTextFlags GUICtrlToolbar_SetExtendedStyle GUICtrlToolbar_SetHotImageList GUICtrlToolbar_SetHotItem GUICtrlToolbar_SetImageList GUICtrlToolbar_SetIndent GUICtrlToolbar_SetIndeterminate GUICtrlToolbar_SetInsertMark GUICtrlToolbar_SetInsertMarkColor GUICtrlToolbar_SetMaxTextRows GUICtrlToolbar_SetMetrics GUICtrlToolbar_SetPadding GUICtrlToolbar_SetParent GUICtrlToolbar_SetRows GUICtrlToolbar_SetStyle GUICtrlToolbar_SetStyleAltDrag GUICtrlToolbar_SetStyleCustomErase GUICtrlToolbar_SetStyleFlat GUICtrlToolbar_SetStyleList GUICtrlToolbar_SetStyleRegisterDrop GUICtrlToolbar_SetStyleToolTips GUICtrlToolbar_SetStyleTransparent GUICtrlToolbar_SetStyleWrapable GUICtrlToolbar_SetToolTips GUICtrlToolbar_SetUnicodeFormat GUICtrlToolbar_SetWindowTheme GUICtrlTreeView_Add GUICtrlTreeView_AddChild GUICtrlTreeView_AddChildFirst GUICtrlTreeView_AddFirst GUICtrlTreeView_BeginUpdate GUICtrlTreeView_ClickItem GUICtrlTreeView_Create GUICtrlTreeView_CreateDragImage GUICtrlTreeView_CreateSolidBitMap GUICtrlTreeView_Delete GUICtrlTreeView_DeleteAll GUICtrlTreeView_DeleteChildren GUICtrlTreeView_Destroy GUICtrlTreeView_DisplayRect GUICtrlTreeView_DisplayRectEx GUICtrlTreeView_EditText GUICtrlTreeView_EndEdit GUICtrlTreeView_EndUpdate GUICtrlTreeView_EnsureVisible GUICtrlTreeView_Expand GUICtrlTreeView_ExpandedOnce GUICtrlTreeView_FindItem GUICtrlTreeView_FindItemEx GUICtrlTreeView_GetBkColor GUICtrlTreeView_GetBold GUICtrlTreeView_GetChecked GUICtrlTreeView_GetChildCount GUICtrlTreeView_GetChildren GUICtrlTreeView_GetCount GUICtrlTreeView_GetCut GUICtrlTreeView_GetDropTarget GUICtrlTreeView_GetEditControl GUICtrlTreeView_GetExpanded GUICtrlTreeView_GetFirstChild GUICtrlTreeView_GetFirstItem GUICtrlTreeView_GetFirstVisible GUICtrlTreeView_GetFocused GUICtrlTreeView_GetHeight GUICtrlTreeView_GetImageIndex GUICtrlTreeView_GetImageListIconHandle GUICtrlTreeView_GetIndent GUICtrlTreeView_GetInsertMarkColor GUICtrlTreeView_GetISearchString GUICtrlTreeView_GetItemByIndex GUICtrlTreeView_GetItemHandle GUICtrlTreeView_GetItemParam GUICtrlTreeView_GetLastChild GUICtrlTreeView_GetLineColor GUICtrlTreeView_GetNext GUICtrlTreeView_GetNextChild GUICtrlTreeView_GetNextSibling GUICtrlTreeView_GetNextVisible GUICtrlTreeView_GetNormalImageList GUICtrlTreeView_GetParentHandle GUICtrlTreeView_GetParentParam GUICtrlTreeView_GetPrev GUICtrlTreeView_GetPrevChild GUICtrlTreeView_GetPrevSibling GUICtrlTreeView_GetPrevVisible GUICtrlTreeView_GetScrollTime GUICtrlTreeView_GetSelected GUICtrlTreeView_GetSelectedImageIndex GUICtrlTreeView_GetSelection GUICtrlTreeView_GetSiblingCount GUICtrlTreeView_GetState GUICtrlTreeView_GetStateImageIndex GUICtrlTreeView_GetStateImageList GUICtrlTreeView_GetText GUICtrlTreeView_GetTextColor GUICtrlTreeView_GetToolTips GUICtrlTreeView_GetTree GUICtrlTreeView_GetUnicodeFormat GUICtrlTreeView_GetVisible GUICtrlTreeView_GetVisibleCount GUICtrlTreeView_HitTest GUICtrlTreeView_HitTestEx GUICtrlTreeView_HitTestItem GUICtrlTreeView_Index GUICtrlTreeView_InsertItem GUICtrlTreeView_IsFirstItem GUICtrlTreeView_IsParent GUICtrlTreeView_Level GUICtrlTreeView_SelectItem GUICtrlTreeView_SelectItemByIndex GUICtrlTreeView_SetBkColor GUICtrlTreeView_SetBold GUICtrlTreeView_SetChecked GUICtrlTreeView_SetCheckedByIndex GUICtrlTreeView_SetChildren GUICtrlTreeView_SetCut GUICtrlTreeView_SetDropTarget GUICtrlTreeView_SetFocused GUICtrlTreeView_SetHeight GUICtrlTreeView_SetIcon GUICtrlTreeView_SetImageIndex GUICtrlTreeView_SetIndent GUICtrlTreeView_SetInsertMark GUICtrlTreeView_SetInsertMarkColor GUICtrlTreeView_SetItemHeight GUICtrlTreeView_SetItemParam GUICtrlTreeView_SetLineColor GUICtrlTreeView_SetNormalImageList GUICtrlTreeView_SetScrollTime GUICtrlTreeView_SetSelected GUICtrlTreeView_SetSelectedImageIndex GUICtrlTreeView_SetState GUICtrlTreeView_SetStateImageIndex GUICtrlTreeView_SetStateImageList GUICtrlTreeView_SetText GUICtrlTreeView_SetTextColor GUICtrlTreeView_SetToolTips GUICtrlTreeView_SetUnicodeFormat GUICtrlTreeView_Sort GUIImageList_Add GUIImageList_AddBitmap GUIImageList_AddIcon GUIImageList_AddMasked GUIImageList_BeginDrag GUIImageList_Copy GUIImageList_Create GUIImageList_Destroy GUIImageList_DestroyIcon GUIImageList_DragEnter GUIImageList_DragLeave GUIImageList_DragMove GUIImageList_Draw GUIImageList_DrawEx GUIImageList_Duplicate GUIImageList_EndDrag GUIImageList_GetBkColor GUIImageList_GetIcon GUIImageList_GetIconHeight GUIImageList_GetIconSize GUIImageList_GetIconSizeEx GUIImageList_GetIconWidth GUIImageList_GetImageCount GUIImageList_GetImageInfoEx GUIImageList_Remove GUIImageList_ReplaceIcon GUIImageList_SetBkColor GUIImageList_SetIconSize GUIImageList_SetImageCount GUIImageList_Swap GUIScrollBars_EnableScrollBar GUIScrollBars_GetScrollBarInfoEx GUIScrollBars_GetScrollBarRect GUIScrollBars_GetScrollBarRGState GUIScrollBars_GetScrollBarXYLineButton GUIScrollBars_GetScrollBarXYThumbBottom GUIScrollBars_GetScrollBarXYThumbTop GUIScrollBars_GetScrollInfo GUIScrollBars_GetScrollInfoEx GUIScrollBars_GetScrollInfoMax GUIScrollBars_GetScrollInfoMin GUIScrollBars_GetScrollInfoPage GUIScrollBars_GetScrollInfoPos GUIScrollBars_GetScrollInfoTrackPos GUIScrollBars_GetScrollPos GUIScrollBars_GetScrollRange GUIScrollBars_Init GUIScrollBars_ScrollWindow GUIScrollBars_SetScrollInfo GUIScrollBars_SetScrollInfoMax GUIScrollBars_SetScrollInfoMin GUIScrollBars_SetScrollInfoPage GUIScrollBars_SetScrollInfoPos GUIScrollBars_SetScrollRange GUIScrollBars_ShowScrollBar GUIToolTip_Activate GUIToolTip_AddTool GUIToolTip_AdjustRect GUIToolTip_BitsToTTF GUIToolTip_Create GUIToolTip_Deactivate GUIToolTip_DelTool GUIToolTip_Destroy GUIToolTip_EnumTools GUIToolTip_GetBubbleHeight GUIToolTip_GetBubbleSize GUIToolTip_GetBubbleWidth GUIToolTip_GetCurrentTool GUIToolTip_GetDelayTime GUIToolTip_GetMargin GUIToolTip_GetMarginEx GUIToolTip_GetMaxTipWidth GUIToolTip_GetText GUIToolTip_GetTipBkColor GUIToolTip_GetTipTextColor GUIToolTip_GetTitleBitMap GUIToolTip_GetTitleText GUIToolTip_GetToolCount GUIToolTip_GetToolInfo GUIToolTip_HitTest GUIToolTip_NewToolRect GUIToolTip_Pop GUIToolTip_PopUp GUIToolTip_SetDelayTime GUIToolTip_SetMargin GUIToolTip_SetMaxTipWidth GUIToolTip_SetTipBkColor GUIToolTip_SetTipTextColor GUIToolTip_SetTitle GUIToolTip_SetToolInfo GUIToolTip_SetWindowTheme GUIToolTip_ToolExists GUIToolTip_ToolToArray GUIToolTip_TrackActivate GUIToolTip_TrackPosition GUIToolTip_Update GUIToolTip_UpdateTipText HexToString IEAction IEAttach IEBodyReadHTML IEBodyReadText IEBodyWriteHTML IECreate IECreateEmbedded IEDocGetObj IEDocInsertHTML IEDocInsertText IEDocReadHTML IEDocWriteHTML IEErrorNotify IEFormElementCheckBoxSelect IEFormElementGetCollection IEFormElementGetObjByName IEFormElementGetValue IEFormElementOptionSelect IEFormElementRadioSelect IEFormElementSetValue IEFormGetCollection IEFormGetObjByName IEFormImageClick IEFormReset IEFormSubmit IEFrameGetCollection IEFrameGetObjByName IEGetObjById IEGetObjByName IEHeadInsertEventScript IEImgClick IEImgGetCollection IEIsFrameSet IELinkClickByIndex IELinkClickByText IELinkGetCollection IELoadWait IELoadWaitTimeout IENavigate IEPropertyGet IEPropertySet IEQuit IETableGetCollection IETableWriteToArray IETagNameAllGetCollection IETagNameGetCollection IE_Example IE_Introduction IE_VersionInfo INetExplorerCapable INetGetSource INetMail INetSmtpMail IsPressed MathCheckDiv Max MemGlobalAlloc MemGlobalFree MemGlobalLock MemGlobalSize MemGlobalUnlock MemMoveMemory MemVirtualAlloc MemVirtualAllocEx MemVirtualFree MemVirtualFreeEx Min MouseTrap NamedPipes_CallNamedPipe NamedPipes_ConnectNamedPipe NamedPipes_CreateNamedPipe NamedPipes_CreatePipe NamedPipes_DisconnectNamedPipe NamedPipes_GetNamedPipeHandleState NamedPipes_GetNamedPipeInfo NamedPipes_PeekNamedPipe NamedPipes_SetNamedPipeHandleState NamedPipes_TransactNamedPipe NamedPipes_WaitNamedPipe Net_Share_ConnectionEnum Net_Share_FileClose Net_Share_FileEnum Net_Share_FileGetInfo Net_Share_PermStr Net_Share_ResourceStr Net_Share_SessionDel Net_Share_SessionEnum Net_Share_SessionGetInfo Net_Share_ShareAdd Net_Share_ShareCheck Net_Share_ShareDel Net_Share_ShareEnum Net_Share_ShareGetInfo Net_Share_ShareSetInfo Net_Share_StatisticsGetSvr Net_Share_StatisticsGetWrk Now NowCalc NowCalcDate NowDate NowTime PathFull PathGetRelative PathMake PathSplit ProcessGetName ProcessGetPriority Radian ReplaceStringInFile RunDos ScreenCapture_Capture ScreenCapture_CaptureWnd ScreenCapture_SaveImage ScreenCapture_SetBMPFormat ScreenCapture_SetJPGQuality ScreenCapture_SetTIFColorDepth ScreenCapture_SetTIFCompression Security__AdjustTokenPrivileges Security__CreateProcessWithToken Security__DuplicateTokenEx Security__GetAccountSid Security__GetLengthSid Security__GetTokenInformation Security__ImpersonateSelf Security__IsValidSid Security__LookupAccountName Security__LookupAccountSid Security__LookupPrivilegeValue Security__OpenProcessToken Security__OpenThreadToken Security__OpenThreadTokenEx Security__SetPrivilege Security__SetTokenInformation Security__SidToStringSid Security__SidTypeStr Security__StringSidToSid SendMessage SendMessageA SetDate SetTime Singleton SoundClose SoundLength SoundOpen SoundPause SoundPlay SoundPos SoundResume SoundSeek SoundStatus SoundStop SQLite_Changes SQLite_Close SQLite_Display2DResult SQLite_Encode SQLite_ErrCode SQLite_ErrMsg SQLite_Escape SQLite_Exec SQLite_FastEncode SQLite_FastEscape SQLite_FetchData SQLite_FetchNames SQLite_GetTable SQLite_GetTable2d SQLite_LastInsertRowID SQLite_LibVersion SQLite_Open SQLite_Query SQLite_QueryFinalize SQLite_QueryReset SQLite_QuerySingleRow SQLite_SafeMode SQLite_SetTimeout SQLite_Shutdown SQLite_SQLiteExe SQLite_Startup SQLite_TotalChanges StringBetween StringExplode StringInsert StringProper StringRepeat StringTitleCase StringToHex TCPIpToName TempFile TicksToTime Timer_Diff Timer_GetIdleTime Timer_GetTimerID Timer_Init Timer_KillAllTimers Timer_KillTimer Timer_SetTimer TimeToTicks VersionCompare viClose viExecCommand viFindGpib viGpibBusReset viGTL viInteractiveControl viOpen viSetAttribute viSetTimeout WeekNumberISO WinAPI_AbortPath WinAPI_ActivateKeyboardLayout WinAPI_AddClipboardFormatListener WinAPI_AddFontMemResourceEx WinAPI_AddFontResourceEx WinAPI_AddIconOverlay WinAPI_AddIconTransparency WinAPI_AddMRUString WinAPI_AdjustBitmap WinAPI_AdjustTokenPrivileges WinAPI_AdjustWindowRectEx WinAPI_AlphaBlend WinAPI_AngleArc WinAPI_AnimateWindow WinAPI_Arc WinAPI_ArcTo WinAPI_ArrayToStruct WinAPI_AssignProcessToJobObject WinAPI_AssocGetPerceivedType WinAPI_AssocQueryString WinAPI_AttachConsole WinAPI_AttachThreadInput WinAPI_BackupRead WinAPI_BackupReadAbort WinAPI_BackupSeek WinAPI_BackupWrite WinAPI_BackupWriteAbort WinAPI_Beep WinAPI_BeginBufferedPaint WinAPI_BeginDeferWindowPos WinAPI_BeginPaint WinAPI_BeginPath WinAPI_BeginUpdateResource WinAPI_BitBlt WinAPI_BringWindowToTop WinAPI_BroadcastSystemMessage WinAPI_BrowseForFolderDlg WinAPI_BufferedPaintClear WinAPI_BufferedPaintInit WinAPI_BufferedPaintSetAlpha WinAPI_BufferedPaintUnInit WinAPI_CallNextHookEx WinAPI_CallWindowProc WinAPI_CallWindowProcW WinAPI_CascadeWindows WinAPI_ChangeWindowMessageFilterEx WinAPI_CharToOem WinAPI_ChildWindowFromPointEx WinAPI_ClientToScreen WinAPI_ClipCursor WinAPI_CloseDesktop WinAPI_CloseEnhMetaFile WinAPI_CloseFigure WinAPI_CloseHandle WinAPI_CloseThemeData WinAPI_CloseWindow WinAPI_CloseWindowStation WinAPI_CLSIDFromProgID WinAPI_CoInitialize WinAPI_ColorAdjustLuma WinAPI_ColorHLSToRGB WinAPI_ColorRGBToHLS WinAPI_CombineRgn WinAPI_CombineTransform WinAPI_CommandLineToArgv WinAPI_CommDlgExtendedError WinAPI_CommDlgExtendedErrorEx WinAPI_CompareString WinAPI_CompressBitmapBits WinAPI_CompressBuffer WinAPI_ComputeCrc32 WinAPI_ConfirmCredentials WinAPI_CopyBitmap WinAPI_CopyCursor WinAPI_CopyEnhMetaFile WinAPI_CopyFileEx WinAPI_CopyIcon WinAPI_CopyImage WinAPI_CopyRect WinAPI_CopyStruct WinAPI_CoTaskMemAlloc WinAPI_CoTaskMemFree WinAPI_CoTaskMemRealloc WinAPI_CoUninitialize WinAPI_Create32BitHBITMAP WinAPI_Create32BitHICON WinAPI_CreateANDBitmap WinAPI_CreateBitmap WinAPI_CreateBitmapIndirect WinAPI_CreateBrushIndirect WinAPI_CreateBuffer WinAPI_CreateBufferFromStruct WinAPI_CreateCaret WinAPI_CreateColorAdjustment WinAPI_CreateCompatibleBitmap WinAPI_CreateCompatibleBitmapEx WinAPI_CreateCompatibleDC WinAPI_CreateDesktop WinAPI_CreateDIB WinAPI_CreateDIBColorTable WinAPI_CreateDIBitmap WinAPI_CreateDIBSection WinAPI_CreateDirectory WinAPI_CreateDirectoryEx WinAPI_CreateEllipticRgn WinAPI_CreateEmptyIcon WinAPI_CreateEnhMetaFile WinAPI_CreateEvent WinAPI_CreateFile WinAPI_CreateFileEx WinAPI_CreateFileMapping WinAPI_CreateFont WinAPI_CreateFontEx WinAPI_CreateFontIndirect WinAPI_CreateGUID WinAPI_CreateHardLink WinAPI_CreateIcon WinAPI_CreateIconFromResourceEx WinAPI_CreateIconIndirect WinAPI_CreateJobObject WinAPI_CreateMargins WinAPI_CreateMRUList WinAPI_CreateMutex WinAPI_CreateNullRgn WinAPI_CreateNumberFormatInfo WinAPI_CreateObjectID WinAPI_CreatePen WinAPI_CreatePoint WinAPI_CreatePolygonRgn WinAPI_CreateProcess WinAPI_CreateProcessWithToken WinAPI_CreateRect WinAPI_CreateRectEx WinAPI_CreateRectRgn WinAPI_CreateRectRgnIndirect WinAPI_CreateRoundRectRgn WinAPI_CreateSemaphore WinAPI_CreateSize WinAPI_CreateSolidBitmap WinAPI_CreateSolidBrush WinAPI_CreateStreamOnHGlobal WinAPI_CreateString WinAPI_CreateSymbolicLink WinAPI_CreateTransform WinAPI_CreateWindowEx WinAPI_CreateWindowStation WinAPI_DecompressBuffer WinAPI_DecryptFile WinAPI_DeferWindowPos WinAPI_DefineDosDevice WinAPI_DefRawInputProc WinAPI_DefSubclassProc WinAPI_DefWindowProc WinAPI_DefWindowProcW WinAPI_DeleteDC WinAPI_DeleteEnhMetaFile WinAPI_DeleteFile WinAPI_DeleteObject WinAPI_DeleteObjectID WinAPI_DeleteVolumeMountPoint WinAPI_DeregisterShellHookWindow WinAPI_DestroyCaret WinAPI_DestroyCursor WinAPI_DestroyIcon WinAPI_DestroyWindow WinAPI_DeviceIoControl WinAPI_DisplayStruct WinAPI_DllGetVersion WinAPI_DllInstall WinAPI_DllUninstall WinAPI_DPtoLP WinAPI_DragAcceptFiles WinAPI_DragFinish WinAPI_DragQueryFileEx WinAPI_DragQueryPoint WinAPI_DrawAnimatedRects WinAPI_DrawBitmap WinAPI_DrawEdge WinAPI_DrawFocusRect WinAPI_DrawFrameControl WinAPI_DrawIcon WinAPI_DrawIconEx WinAPI_DrawLine WinAPI_DrawShadowText WinAPI_DrawText WinAPI_DrawThemeBackground WinAPI_DrawThemeEdge WinAPI_DrawThemeIcon WinAPI_DrawThemeParentBackground WinAPI_DrawThemeText WinAPI_DrawThemeTextEx WinAPI_DuplicateEncryptionInfoFile WinAPI_DuplicateHandle WinAPI_DuplicateTokenEx WinAPI_DwmDefWindowProc WinAPI_DwmEnableBlurBehindWindow WinAPI_DwmEnableComposition WinAPI_DwmExtendFrameIntoClientArea WinAPI_DwmGetColorizationColor WinAPI_DwmGetColorizationParameters WinAPI_DwmGetWindowAttribute WinAPI_DwmInvalidateIconicBitmaps WinAPI_DwmIsCompositionEnabled WinAPI_DwmQueryThumbnailSourceSize WinAPI_DwmRegisterThumbnail WinAPI_DwmSetColorizationParameters WinAPI_DwmSetIconicLivePreviewBitmap WinAPI_DwmSetIconicThumbnail WinAPI_DwmSetWindowAttribute WinAPI_DwmUnregisterThumbnail WinAPI_DwmUpdateThumbnailProperties WinAPI_DWordToFloat WinAPI_DWordToInt WinAPI_EjectMedia WinAPI_Ellipse WinAPI_EmptyWorkingSet WinAPI_EnableWindow WinAPI_EncryptFile WinAPI_EncryptionDisable WinAPI_EndBufferedPaint WinAPI_EndDeferWindowPos WinAPI_EndPaint WinAPI_EndPath WinAPI_EndUpdateResource WinAPI_EnumChildProcess WinAPI_EnumChildWindows WinAPI_EnumDesktops WinAPI_EnumDesktopWindows WinAPI_EnumDeviceDrivers WinAPI_EnumDisplayDevices WinAPI_EnumDisplayMonitors WinAPI_EnumDisplaySettings WinAPI_EnumDllProc WinAPI_EnumFiles WinAPI_EnumFileStreams WinAPI_EnumFontFamilies WinAPI_EnumHardLinks WinAPI_EnumMRUList WinAPI_EnumPageFiles WinAPI_EnumProcessHandles WinAPI_EnumProcessModules WinAPI_EnumProcessThreads WinAPI_EnumProcessWindows WinAPI_EnumRawInputDevices WinAPI_EnumResourceLanguages WinAPI_EnumResourceNames WinAPI_EnumResourceTypes WinAPI_EnumSystemGeoID WinAPI_EnumSystemLocales WinAPI_EnumUILanguages WinAPI_EnumWindows WinAPI_EnumWindowsPopup WinAPI_EnumWindowStations WinAPI_EnumWindowsTop WinAPI_EqualMemory WinAPI_EqualRect WinAPI_EqualRgn WinAPI_ExcludeClipRect WinAPI_ExpandEnvironmentStrings WinAPI_ExtCreatePen WinAPI_ExtCreateRegion WinAPI_ExtFloodFill WinAPI_ExtractIcon WinAPI_ExtractIconEx WinAPI_ExtSelectClipRgn WinAPI_FatalAppExit WinAPI_FatalExit WinAPI_FileEncryptionStatus WinAPI_FileExists WinAPI_FileIconInit WinAPI_FileInUse WinAPI_FillMemory WinAPI_FillPath WinAPI_FillRect WinAPI_FillRgn WinAPI_FindClose WinAPI_FindCloseChangeNotification WinAPI_FindExecutable WinAPI_FindFirstChangeNotification WinAPI_FindFirstFile WinAPI_FindFirstFileName WinAPI_FindFirstStream WinAPI_FindNextChangeNotification WinAPI_FindNextFile WinAPI_FindNextFileName WinAPI_FindNextStream WinAPI_FindResource WinAPI_FindResourceEx WinAPI_FindTextDlg WinAPI_FindWindow WinAPI_FlashWindow WinAPI_FlashWindowEx WinAPI_FlattenPath WinAPI_FloatToDWord WinAPI_FloatToInt WinAPI_FlushFileBuffers WinAPI_FlushFRBuffer WinAPI_FlushViewOfFile WinAPI_FormatDriveDlg WinAPI_FormatMessage WinAPI_FrameRect WinAPI_FrameRgn WinAPI_FreeLibrary WinAPI_FreeMemory WinAPI_FreeMRUList WinAPI_FreeResource WinAPI_GdiComment WinAPI_GetActiveWindow WinAPI_GetAllUsersProfileDirectory WinAPI_GetAncestor WinAPI_GetApplicationRestartSettings WinAPI_GetArcDirection WinAPI_GetAsyncKeyState WinAPI_GetBinaryType WinAPI_GetBitmapBits WinAPI_GetBitmapDimension WinAPI_GetBitmapDimensionEx WinAPI_GetBkColor WinAPI_GetBkMode WinAPI_GetBoundsRect WinAPI_GetBrushOrg WinAPI_GetBufferedPaintBits WinAPI_GetBufferedPaintDC WinAPI_GetBufferedPaintTargetDC WinAPI_GetBufferedPaintTargetRect WinAPI_GetBValue WinAPI_GetCaretBlinkTime WinAPI_GetCaretPos WinAPI_GetCDType WinAPI_GetClassInfoEx WinAPI_GetClassLongEx WinAPI_GetClassName WinAPI_GetClientHeight WinAPI_GetClientRect WinAPI_GetClientWidth WinAPI_GetClipboardSequenceNumber WinAPI_GetClipBox WinAPI_GetClipCursor WinAPI_GetClipRgn WinAPI_GetColorAdjustment WinAPI_GetCompressedFileSize WinAPI_GetCompression WinAPI_GetConnectedDlg WinAPI_GetCurrentDirectory WinAPI_GetCurrentHwProfile WinAPI_GetCurrentObject WinAPI_GetCurrentPosition WinAPI_GetCurrentProcess WinAPI_GetCurrentProcessExplicitAppUserModelID WinAPI_GetCurrentProcessID WinAPI_GetCurrentThemeName WinAPI_GetCurrentThread WinAPI_GetCurrentThreadId WinAPI_GetCursor WinAPI_GetCursorInfo WinAPI_GetDateFormat WinAPI_GetDC WinAPI_GetDCEx WinAPI_GetDefaultPrinter WinAPI_GetDefaultUserProfileDirectory WinAPI_GetDesktopWindow WinAPI_GetDeviceCaps WinAPI_GetDeviceDriverBaseName WinAPI_GetDeviceDriverFileName WinAPI_GetDeviceGammaRamp WinAPI_GetDIBColorTable WinAPI_GetDIBits WinAPI_GetDiskFreeSpaceEx WinAPI_GetDlgCtrlID WinAPI_GetDlgItem WinAPI_GetDllDirectory WinAPI_GetDriveBusType WinAPI_GetDriveGeometryEx WinAPI_GetDriveNumber WinAPI_GetDriveType WinAPI_GetDurationFormat WinAPI_GetEffectiveClientRect WinAPI_GetEnhMetaFile WinAPI_GetEnhMetaFileBits WinAPI_GetEnhMetaFileDescription WinAPI_GetEnhMetaFileDimension WinAPI_GetEnhMetaFileHeader WinAPI_GetErrorMessage WinAPI_GetErrorMode WinAPI_GetExitCodeProcess WinAPI_GetExtended WinAPI_GetFileAttributes WinAPI_GetFileID WinAPI_GetFileInformationByHandle WinAPI_GetFileInformationByHandleEx WinAPI_GetFilePointerEx WinAPI_GetFileSizeEx WinAPI_GetFileSizeOnDisk WinAPI_GetFileTitle WinAPI_GetFileType WinAPI_GetFileVersionInfo WinAPI_GetFinalPathNameByHandle WinAPI_GetFinalPathNameByHandleEx WinAPI_GetFocus WinAPI_GetFontMemoryResourceInfo WinAPI_GetFontName WinAPI_GetFontResourceInfo WinAPI_GetForegroundWindow WinAPI_GetFRBuffer WinAPI_GetFullPathName WinAPI_GetGeoInfo WinAPI_GetGlyphOutline WinAPI_GetGraphicsMode WinAPI_GetGuiResources WinAPI_GetGUIThreadInfo WinAPI_GetGValue WinAPI_GetHandleInformation WinAPI_GetHGlobalFromStream WinAPI_GetIconDimension WinAPI_GetIconInfo WinAPI_GetIconInfoEx WinAPI_GetIdleTime WinAPI_GetKeyboardLayout WinAPI_GetKeyboardLayoutList WinAPI_GetKeyboardState WinAPI_GetKeyboardType WinAPI_GetKeyNameText WinAPI_GetKeyState WinAPI_GetLastActivePopup WinAPI_GetLastError WinAPI_GetLastErrorMessage WinAPI_GetLayeredWindowAttributes WinAPI_GetLocaleInfo WinAPI_GetLogicalDrives WinAPI_GetMapMode WinAPI_GetMemorySize WinAPI_GetMessageExtraInfo WinAPI_GetModuleFileNameEx WinAPI_GetModuleHandle WinAPI_GetModuleHandleEx WinAPI_GetModuleInformation WinAPI_GetMonitorInfo WinAPI_GetMousePos WinAPI_GetMousePosX WinAPI_GetMousePosY WinAPI_GetMUILanguage WinAPI_GetNumberFormat WinAPI_GetObject WinAPI_GetObjectID WinAPI_GetObjectInfoByHandle WinAPI_GetObjectNameByHandle WinAPI_GetObjectType WinAPI_GetOpenFileName WinAPI_GetOutlineTextMetrics WinAPI_GetOverlappedResult WinAPI_GetParent WinAPI_GetParentProcess WinAPI_GetPerformanceInfo WinAPI_GetPEType WinAPI_GetPhysicallyInstalledSystemMemory WinAPI_GetPixel WinAPI_GetPolyFillMode WinAPI_GetPosFromRect WinAPI_GetPriorityClass WinAPI_GetProcAddress WinAPI_GetProcessAffinityMask WinAPI_GetProcessCommandLine WinAPI_GetProcessFileName WinAPI_GetProcessHandleCount WinAPI_GetProcessID WinAPI_GetProcessIoCounters WinAPI_GetProcessMemoryInfo WinAPI_GetProcessName WinAPI_GetProcessShutdownParameters WinAPI_GetProcessTimes WinAPI_GetProcessUser WinAPI_GetProcessWindowStation WinAPI_GetProcessWorkingDirectory WinAPI_GetProfilesDirectory WinAPI_GetPwrCapabilities WinAPI_GetRawInputBuffer WinAPI_GetRawInputBufferLength WinAPI_GetRawInputData WinAPI_GetRawInputDeviceInfo WinAPI_GetRegionData WinAPI_GetRegisteredRawInputDevices WinAPI_GetRegKeyNameByHandle WinAPI_GetRgnBox WinAPI_GetROP2 WinAPI_GetRValue WinAPI_GetSaveFileName WinAPI_GetShellWindow WinAPI_GetStartupInfo WinAPI_GetStdHandle WinAPI_GetStockObject WinAPI_GetStretchBltMode WinAPI_GetString WinAPI_GetSysColor WinAPI_GetSysColorBrush WinAPI_GetSystemDefaultLangID WinAPI_GetSystemDefaultLCID WinAPI_GetSystemDefaultUILanguage WinAPI_GetSystemDEPPolicy WinAPI_GetSystemInfo WinAPI_GetSystemMetrics WinAPI_GetSystemPowerStatus WinAPI_GetSystemTimes WinAPI_GetSystemWow64Directory WinAPI_GetTabbedTextExtent WinAPI_GetTempFileName WinAPI_GetTextAlign WinAPI_GetTextCharacterExtra WinAPI_GetTextColor WinAPI_GetTextExtentPoint32 WinAPI_GetTextFace WinAPI_GetTextMetrics WinAPI_GetThemeAppProperties WinAPI_GetThemeBackgroundContentRect WinAPI_GetThemeBackgroundExtent WinAPI_GetThemeBackgroundRegion WinAPI_GetThemeBitmap WinAPI_GetThemeBool WinAPI_GetThemeColor WinAPI_GetThemeDocumentationProperty WinAPI_GetThemeEnumValue WinAPI_GetThemeFilename WinAPI_GetThemeFont WinAPI_GetThemeInt WinAPI_GetThemeMargins WinAPI_GetThemeMetric WinAPI_GetThemePartSize WinAPI_GetThemePosition WinAPI_GetThemePropertyOrigin WinAPI_GetThemeRect WinAPI_GetThemeString WinAPI_GetThemeSysBool WinAPI_GetThemeSysColor WinAPI_GetThemeSysColorBrush WinAPI_GetThemeSysFont WinAPI_GetThemeSysInt WinAPI_GetThemeSysSize WinAPI_GetThemeSysString WinAPI_GetThemeTextExtent WinAPI_GetThemeTextMetrics WinAPI_GetThemeTransitionDuration WinAPI_GetThreadDesktop WinAPI_GetThreadErrorMode WinAPI_GetThreadLocale WinAPI_GetThreadUILanguage WinAPI_GetTickCount WinAPI_GetTickCount64 WinAPI_GetTimeFormat WinAPI_GetTopWindow WinAPI_GetUDFColorMode WinAPI_GetUpdateRect WinAPI_GetUpdateRgn WinAPI_GetUserDefaultLangID WinAPI_GetUserDefaultLCID WinAPI_GetUserDefaultUILanguage WinAPI_GetUserGeoID WinAPI_GetUserObjectInformation WinAPI_GetVersion WinAPI_GetVersionEx WinAPI_GetVolumeInformation WinAPI_GetVolumeInformationByHandle WinAPI_GetVolumeNameForVolumeMountPoint WinAPI_GetWindow WinAPI_GetWindowDC WinAPI_GetWindowDisplayAffinity WinAPI_GetWindowExt WinAPI_GetWindowFileName WinAPI_GetWindowHeight WinAPI_GetWindowInfo WinAPI_GetWindowLong WinAPI_GetWindowOrg WinAPI_GetWindowPlacement WinAPI_GetWindowRect WinAPI_GetWindowRgn WinAPI_GetWindowRgnBox WinAPI_GetWindowSubclass WinAPI_GetWindowText WinAPI_GetWindowTheme WinAPI_GetWindowThreadProcessId WinAPI_GetWindowWidth WinAPI_GetWorkArea WinAPI_GetWorldTransform WinAPI_GetXYFromPoint WinAPI_GlobalMemoryStatus WinAPI_GradientFill WinAPI_GUIDFromString WinAPI_GUIDFromStringEx WinAPI_HashData WinAPI_HashString WinAPI_HiByte WinAPI_HideCaret WinAPI_HiDWord WinAPI_HiWord WinAPI_InflateRect WinAPI_InitMUILanguage WinAPI_InProcess WinAPI_IntersectClipRect WinAPI_IntersectRect WinAPI_IntToDWord WinAPI_IntToFloat WinAPI_InvalidateRect WinAPI_InvalidateRgn WinAPI_InvertANDBitmap WinAPI_InvertColor WinAPI_InvertRect WinAPI_InvertRgn WinAPI_IOCTL WinAPI_IsAlphaBitmap WinAPI_IsBadCodePtr WinAPI_IsBadReadPtr WinAPI_IsBadStringPtr WinAPI_IsBadWritePtr WinAPI_IsChild WinAPI_IsClassName WinAPI_IsDoorOpen WinAPI_IsElevated WinAPI_IsHungAppWindow WinAPI_IsIconic WinAPI_IsInternetConnected WinAPI_IsLoadKBLayout WinAPI_IsMemory WinAPI_IsNameInExpression WinAPI_IsNetworkAlive WinAPI_IsPathShared WinAPI_IsProcessInJob WinAPI_IsProcessorFeaturePresent WinAPI_IsRectEmpty WinAPI_IsThemeActive WinAPI_IsThemeBackgroundPartiallyTransparent WinAPI_IsThemePartDefined WinAPI_IsValidLocale WinAPI_IsWindow WinAPI_IsWindowEnabled WinAPI_IsWindowUnicode WinAPI_IsWindowVisible WinAPI_IsWow64Process WinAPI_IsWritable WinAPI_IsZoomed WinAPI_Keybd_Event WinAPI_KillTimer WinAPI_LineDDA WinAPI_LineTo WinAPI_LoadBitmap WinAPI_LoadCursor WinAPI_LoadCursorFromFile WinAPI_LoadIcon WinAPI_LoadIconMetric WinAPI_LoadIconWithScaleDown WinAPI_LoadImage WinAPI_LoadIndirectString WinAPI_LoadKeyboardLayout WinAPI_LoadLibrary WinAPI_LoadLibraryEx WinAPI_LoadMedia WinAPI_LoadResource WinAPI_LoadShell32Icon WinAPI_LoadString WinAPI_LoadStringEx WinAPI_LoByte WinAPI_LocalFree WinAPI_LockDevice WinAPI_LockFile WinAPI_LockResource WinAPI_LockWindowUpdate WinAPI_LockWorkStation WinAPI_LoDWord WinAPI_LongMid WinAPI_LookupIconIdFromDirectoryEx WinAPI_LoWord WinAPI_LPtoDP WinAPI_MAKELANGID WinAPI_MAKELCID WinAPI_MakeLong WinAPI_MakeQWord WinAPI_MakeWord WinAPI_MapViewOfFile WinAPI_MapVirtualKey WinAPI_MaskBlt WinAPI_MessageBeep WinAPI_MessageBoxCheck WinAPI_MessageBoxIndirect WinAPI_MirrorIcon WinAPI_ModifyWorldTransform WinAPI_MonitorFromPoint WinAPI_MonitorFromRect WinAPI_MonitorFromWindow WinAPI_Mouse_Event WinAPI_MoveFileEx WinAPI_MoveMemory WinAPI_MoveTo WinAPI_MoveToEx WinAPI_MoveWindow WinAPI_MsgBox WinAPI_MulDiv WinAPI_MultiByteToWideChar WinAPI_MultiByteToWideCharEx WinAPI_NtStatusToDosError WinAPI_OemToChar WinAPI_OffsetClipRgn WinAPI_OffsetPoints WinAPI_OffsetRect WinAPI_OffsetRgn WinAPI_OffsetWindowOrg WinAPI_OpenDesktop WinAPI_OpenFileById WinAPI_OpenFileDlg WinAPI_OpenFileMapping WinAPI_OpenIcon WinAPI_OpenInputDesktop WinAPI_OpenJobObject WinAPI_OpenMutex WinAPI_OpenProcess WinAPI_OpenProcessToken WinAPI_OpenSemaphore WinAPI_OpenThemeData WinAPI_OpenWindowStation WinAPI_PageSetupDlg WinAPI_PaintDesktop WinAPI_PaintRgn WinAPI_ParseURL WinAPI_ParseUserName WinAPI_PatBlt WinAPI_PathAddBackslash WinAPI_PathAddExtension WinAPI_PathAppend WinAPI_PathBuildRoot WinAPI_PathCanonicalize WinAPI_PathCommonPrefix WinAPI_PathCompactPath WinAPI_PathCompactPathEx WinAPI_PathCreateFromUrl WinAPI_PathFindExtension WinAPI_PathFindFileName WinAPI_PathFindNextComponent WinAPI_PathFindOnPath WinAPI_PathGetArgs WinAPI_PathGetCharType WinAPI_PathGetDriveNumber WinAPI_PathIsContentType WinAPI_PathIsDirectory WinAPI_PathIsDirectoryEmpty WinAPI_PathIsExe WinAPI_PathIsFileSpec WinAPI_PathIsLFNFileSpec WinAPI_PathIsRelative WinAPI_PathIsRoot WinAPI_PathIsSameRoot WinAPI_PathIsSystemFolder WinAPI_PathIsUNC WinAPI_PathIsUNCServer WinAPI_PathIsUNCServerShare WinAPI_PathMakeSystemFolder WinAPI_PathMatchSpec WinAPI_PathParseIconLocation WinAPI_PathRelativePathTo WinAPI_PathRemoveArgs WinAPI_PathRemoveBackslash WinAPI_PathRemoveExtension WinAPI_PathRemoveFileSpec WinAPI_PathRenameExtension WinAPI_PathSearchAndQualify WinAPI_PathSkipRoot WinAPI_PathStripPath WinAPI_PathStripToRoot WinAPI_PathToRegion WinAPI_PathUndecorate WinAPI_PathUnExpandEnvStrings WinAPI_PathUnmakeSystemFolder WinAPI_PathUnquoteSpaces WinAPI_PathYetAnotherMakeUniqueName WinAPI_PickIconDlg WinAPI_PlayEnhMetaFile WinAPI_PlaySound WinAPI_PlgBlt WinAPI_PointFromRect WinAPI_PolyBezier WinAPI_PolyBezierTo WinAPI_PolyDraw WinAPI_Polygon WinAPI_PostMessage WinAPI_PrimaryLangId WinAPI_PrintDlg WinAPI_PrintDlgEx WinAPI_PrintWindow WinAPI_ProgIDFromCLSID WinAPI_PtInRect WinAPI_PtInRectEx WinAPI_PtInRegion WinAPI_PtVisible WinAPI_QueryDosDevice WinAPI_QueryInformationJobObject WinAPI_QueryPerformanceCounter WinAPI_QueryPerformanceFrequency WinAPI_RadialGradientFill WinAPI_ReadDirectoryChanges WinAPI_ReadFile WinAPI_ReadProcessMemory WinAPI_Rectangle WinAPI_RectInRegion WinAPI_RectIsEmpty WinAPI_RectVisible WinAPI_RedrawWindow WinAPI_RegCloseKey WinAPI_RegConnectRegistry WinAPI_RegCopyTree WinAPI_RegCopyTreeEx WinAPI_RegCreateKey WinAPI_RegDeleteEmptyKey WinAPI_RegDeleteKey WinAPI_RegDeleteKeyValue WinAPI_RegDeleteTree WinAPI_RegDeleteTreeEx WinAPI_RegDeleteValue WinAPI_RegDisableReflectionKey WinAPI_RegDuplicateHKey WinAPI_RegEnableReflectionKey WinAPI_RegEnumKey WinAPI_RegEnumValue WinAPI_RegFlushKey WinAPI_RegisterApplicationRestart WinAPI_RegisterClass WinAPI_RegisterClassEx WinAPI_RegisterHotKey WinAPI_RegisterPowerSettingNotification WinAPI_RegisterRawInputDevices WinAPI_RegisterShellHookWindow WinAPI_RegisterWindowMessage WinAPI_RegLoadMUIString WinAPI_RegNotifyChangeKeyValue WinAPI_RegOpenKey WinAPI_RegQueryInfoKey WinAPI_RegQueryLastWriteTime WinAPI_RegQueryMultipleValues WinAPI_RegQueryReflectionKey WinAPI_RegQueryValue WinAPI_RegRestoreKey WinAPI_RegSaveKey WinAPI_RegSetValue WinAPI_ReleaseCapture WinAPI_ReleaseDC WinAPI_ReleaseMutex WinAPI_ReleaseSemaphore WinAPI_ReleaseStream WinAPI_RemoveClipboardFormatListener WinAPI_RemoveDirectory WinAPI_RemoveFontMemResourceEx WinAPI_RemoveFontResourceEx WinAPI_RemoveWindowSubclass WinAPI_ReOpenFile WinAPI_ReplaceFile WinAPI_ReplaceTextDlg WinAPI_ResetEvent WinAPI_RestartDlg WinAPI_RestoreDC WinAPI_RGB WinAPI_RotatePoints WinAPI_RoundRect WinAPI_SaveDC WinAPI_SaveFileDlg WinAPI_SaveHBITMAPToFile WinAPI_SaveHICONToFile WinAPI_ScaleWindowExt WinAPI_ScreenToClient WinAPI_SearchPath WinAPI_SelectClipPath WinAPI_SelectClipRgn WinAPI_SelectObject WinAPI_SendMessageTimeout WinAPI_SetActiveWindow WinAPI_SetArcDirection WinAPI_SetBitmapBits WinAPI_SetBitmapDimensionEx WinAPI_SetBkColor WinAPI_SetBkMode WinAPI_SetBoundsRect WinAPI_SetBrushOrg WinAPI_SetCapture WinAPI_SetCaretBlinkTime WinAPI_SetCaretPos WinAPI_SetClassLongEx WinAPI_SetColorAdjustment WinAPI_SetCompression WinAPI_SetCurrentDirectory WinAPI_SetCurrentProcessExplicitAppUserModelID WinAPI_SetCursor WinAPI_SetDCBrushColor WinAPI_SetDCPenColor WinAPI_SetDefaultPrinter WinAPI_SetDeviceGammaRamp WinAPI_SetDIBColorTable WinAPI_SetDIBits WinAPI_SetDIBitsToDevice WinAPI_SetDllDirectory WinAPI_SetEndOfFile WinAPI_SetEnhMetaFileBits WinAPI_SetErrorMode WinAPI_SetEvent WinAPI_SetFileAttributes WinAPI_SetFileInformationByHandleEx WinAPI_SetFilePointer WinAPI_SetFilePointerEx WinAPI_SetFileShortName WinAPI_SetFileValidData WinAPI_SetFocus WinAPI_SetFont WinAPI_SetForegroundWindow WinAPI_SetFRBuffer WinAPI_SetGraphicsMode WinAPI_SetHandleInformation WinAPI_SetInformationJobObject WinAPI_SetKeyboardLayout WinAPI_SetKeyboardState WinAPI_SetLastError WinAPI_SetLayeredWindowAttributes WinAPI_SetLocaleInfo WinAPI_SetMapMode WinAPI_SetMessageExtraInfo WinAPI_SetParent WinAPI_SetPixel WinAPI_SetPolyFillMode WinAPI_SetPriorityClass WinAPI_SetProcessAffinityMask WinAPI_SetProcessShutdownParameters WinAPI_SetProcessWindowStation WinAPI_SetRectRgn WinAPI_SetROP2 WinAPI_SetSearchPathMode WinAPI_SetStretchBltMode WinAPI_SetSysColors WinAPI_SetSystemCursor WinAPI_SetTextAlign WinAPI_SetTextCharacterExtra WinAPI_SetTextColor WinAPI_SetTextJustification WinAPI_SetThemeAppProperties WinAPI_SetThreadDesktop WinAPI_SetThreadErrorMode WinAPI_SetThreadExecutionState WinAPI_SetThreadLocale WinAPI_SetThreadUILanguage WinAPI_SetTimer WinAPI_SetUDFColorMode WinAPI_SetUserGeoID WinAPI_SetUserObjectInformation WinAPI_SetVolumeMountPoint WinAPI_SetWindowDisplayAffinity WinAPI_SetWindowExt WinAPI_SetWindowLong WinAPI_SetWindowOrg WinAPI_SetWindowPlacement WinAPI_SetWindowPos WinAPI_SetWindowRgn WinAPI_SetWindowsHookEx WinAPI_SetWindowSubclass WinAPI_SetWindowText WinAPI_SetWindowTheme WinAPI_SetWinEventHook WinAPI_SetWorldTransform WinAPI_SfcIsFileProtected WinAPI_SfcIsKeyProtected WinAPI_ShellAboutDlg WinAPI_ShellAddToRecentDocs WinAPI_ShellChangeNotify WinAPI_ShellChangeNotifyDeregister WinAPI_ShellChangeNotifyRegister WinAPI_ShellCreateDirectory WinAPI_ShellEmptyRecycleBin WinAPI_ShellExecute WinAPI_ShellExecuteEx WinAPI_ShellExtractAssociatedIcon WinAPI_ShellExtractIcon WinAPI_ShellFileOperation WinAPI_ShellFlushSFCache WinAPI_ShellGetFileInfo WinAPI_ShellGetIconOverlayIndex WinAPI_ShellGetImageList WinAPI_ShellGetKnownFolderIDList WinAPI_ShellGetKnownFolderPath WinAPI_ShellGetLocalizedName WinAPI_ShellGetPathFromIDList WinAPI_ShellGetSetFolderCustomSettings WinAPI_ShellGetSettings WinAPI_ShellGetSpecialFolderLocation WinAPI_ShellGetSpecialFolderPath WinAPI_ShellGetStockIconInfo WinAPI_ShellILCreateFromPath WinAPI_ShellNotifyIcon WinAPI_ShellNotifyIconGetRect WinAPI_ShellObjectProperties WinAPI_ShellOpenFolderAndSelectItems WinAPI_ShellOpenWithDlg WinAPI_ShellQueryRecycleBin WinAPI_ShellQueryUserNotificationState WinAPI_ShellRemoveLocalizedName WinAPI_ShellRestricted WinAPI_ShellSetKnownFolderPath WinAPI_ShellSetLocalizedName WinAPI_ShellSetSettings WinAPI_ShellStartNetConnectionDlg WinAPI_ShellUpdateImage WinAPI_ShellUserAuthenticationDlg WinAPI_ShellUserAuthenticationDlgEx WinAPI_ShortToWord WinAPI_ShowCaret WinAPI_ShowCursor WinAPI_ShowError WinAPI_ShowLastError WinAPI_ShowMsg WinAPI_ShowOwnedPopups WinAPI_ShowWindow WinAPI_ShutdownBlockReasonCreate WinAPI_ShutdownBlockReasonDestroy WinAPI_ShutdownBlockReasonQuery WinAPI_SizeOfResource WinAPI_StretchBlt WinAPI_StretchDIBits WinAPI_StrFormatByteSize WinAPI_StrFormatByteSizeEx WinAPI_StrFormatKBSize WinAPI_StrFromTimeInterval WinAPI_StringFromGUID WinAPI_StringLenA WinAPI_StringLenW WinAPI_StrLen WinAPI_StrokeAndFillPath WinAPI_StrokePath WinAPI_StructToArray WinAPI_SubLangId WinAPI_SubtractRect WinAPI_SwapDWord WinAPI_SwapQWord WinAPI_SwapWord WinAPI_SwitchColor WinAPI_SwitchDesktop WinAPI_SwitchToThisWindow WinAPI_SystemParametersInfo WinAPI_TabbedTextOut WinAPI_TerminateJobObject WinAPI_TerminateProcess WinAPI_TextOut WinAPI_TileWindows WinAPI_TrackMouseEvent WinAPI_TransparentBlt WinAPI_TwipsPerPixelX WinAPI_TwipsPerPixelY WinAPI_UnhookWindowsHookEx WinAPI_UnhookWinEvent WinAPI_UnionRect WinAPI_UnionStruct WinAPI_UniqueHardwareID WinAPI_UnloadKeyboardLayout WinAPI_UnlockFile WinAPI_UnmapViewOfFile WinAPI_UnregisterApplicationRestart WinAPI_UnregisterClass WinAPI_UnregisterHotKey WinAPI_UnregisterPowerSettingNotification WinAPI_UpdateLayeredWindow WinAPI_UpdateLayeredWindowEx WinAPI_UpdateLayeredWindowIndirect WinAPI_UpdateResource WinAPI_UpdateWindow WinAPI_UrlApplyScheme WinAPI_UrlCanonicalize WinAPI_UrlCombine WinAPI_UrlCompare WinAPI_UrlCreateFromPath WinAPI_UrlFixup WinAPI_UrlGetPart WinAPI_UrlHash WinAPI_UrlIs WinAPI_UserHandleGrantAccess WinAPI_ValidateRect WinAPI_ValidateRgn WinAPI_VerQueryRoot WinAPI_VerQueryValue WinAPI_VerQueryValueEx WinAPI_WaitForInputIdle WinAPI_WaitForMultipleObjects WinAPI_WaitForSingleObject WinAPI_WideCharToMultiByte WinAPI_WidenPath WinAPI_WindowFromDC WinAPI_WindowFromPoint WinAPI_WordToShort WinAPI_Wow64EnableWow64FsRedirection WinAPI_WriteConsole WinAPI_WriteFile WinAPI_WriteProcessMemory WinAPI_ZeroMemory WinNet_AddConnection WinNet_AddConnection2 WinNet_AddConnection3 WinNet_CancelConnection WinNet_CancelConnection2 WinNet_CloseEnum WinNet_ConnectionDialog WinNet_ConnectionDialog1 WinNet_DisconnectDialog WinNet_DisconnectDialog1 WinNet_EnumResource WinNet_GetConnection WinNet_GetConnectionPerformance WinNet_GetLastError WinNet_GetNetworkInformation WinNet_GetProviderName WinNet_GetResourceInformation WinNet_GetResourceParent WinNet_GetUniversalName WinNet_GetUser WinNet_OpenEnum WinNet_RestoreConnection WinNet_UseConnection Word_Create Word_DocAdd Word_DocAttach Word_DocClose Word_DocExport Word_DocFind Word_DocFindReplace Word_DocGet Word_DocLinkAdd Word_DocLinkGet Word_DocOpen Word_DocPictureAdd Word_DocPrint Word_DocRangeSet Word_DocSave Word_DocSaveAs Word_DocTableRead Word_DocTableWrite Word_Quit\",I={\nv:[e.C(\";\",\"$\",{r:0}),e.C(\"#cs\",\"#ce\"),e.C(\"#comments-start\",\"#comments-end\")]},n={cN:\"variable\",b:\"\\\\$[A-z0-9_]+\"},l={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},o={v:[e.BNM,e.CNM]},a={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"include include-once NoTrayIcon OnAutoItStartRegister RequireAdmin pragma Au3Stripper_Ignore_Funcs Au3Stripper_Ignore_Variables Au3Stripper_Off Au3Stripper_On Au3Stripper_Parameters AutoIt3Wrapper_Add_Constants AutoIt3Wrapper_Au3Check_Parameters AutoIt3Wrapper_Au3Check_Stop_OnWarning AutoIt3Wrapper_Aut2Exe AutoIt3Wrapper_AutoIt3 AutoIt3Wrapper_AutoIt3Dir AutoIt3Wrapper_Change2CUI AutoIt3Wrapper_Compile_Both AutoIt3Wrapper_Compression AutoIt3Wrapper_EndIf AutoIt3Wrapper_Icon AutoIt3Wrapper_If_Compile AutoIt3Wrapper_If_Run AutoIt3Wrapper_Jump_To_First_Error AutoIt3Wrapper_OutFile AutoIt3Wrapper_OutFile_Type AutoIt3Wrapper_OutFile_X64 AutoIt3Wrapper_PlugIn_Funcs AutoIt3Wrapper_Res_Comment Autoit3Wrapper_Res_Compatibility AutoIt3Wrapper_Res_Description AutoIt3Wrapper_Res_Field AutoIt3Wrapper_Res_File_Add AutoIt3Wrapper_Res_FileVersion AutoIt3Wrapper_Res_FileVersion_AutoIncrement AutoIt3Wrapper_Res_Icon_Add AutoIt3Wrapper_Res_Language AutoIt3Wrapper_Res_LegalCopyright AutoIt3Wrapper_Res_ProductVersion AutoIt3Wrapper_Res_requestedExecutionLevel AutoIt3Wrapper_Res_SaveSource AutoIt3Wrapper_Run_After AutoIt3Wrapper_Run_Au3Check AutoIt3Wrapper_Run_Au3Stripper AutoIt3Wrapper_Run_Before AutoIt3Wrapper_Run_Debug_Mode AutoIt3Wrapper_Run_SciTE_Minimized AutoIt3Wrapper_Run_SciTE_OutputPane_Minimized AutoIt3Wrapper_Run_Tidy AutoIt3Wrapper_ShowProgress AutoIt3Wrapper_Testing AutoIt3Wrapper_Tidy_Stop_OnError AutoIt3Wrapper_UPX_Parameters AutoIt3Wrapper_UseUPX AutoIt3Wrapper_UseX64 AutoIt3Wrapper_Version AutoIt3Wrapper_Versioning AutoIt3Wrapper_Versioning_Parameters Tidy_Off Tidy_On Tidy_Parameters EndRegion Region\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[l,{cN:\"string\",v:[{b:\"<\",e:\">\"},{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]}]},l,I]},_={cN:\"constant\",b:\"@[A-z0-9_]+\"},G={cN:\"function\",bK:\"Func\",e:\"$\",eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[n,l,o]}]};return{cI:!0,i:/\\/\\*/,k:{keyword:t,built_in:i,literal:r},c:[I,n,l,o,a,_,G]}});hljs.registerLanguage(\"gams\",function(e){var s=\"abort acronym acronyms alias all and assign binary card diag display else1 eps eq equation equations file files for1 free ge gt if inf integer le loop lt maximizing minimizing model models na ne negative no not option options or ord parameter parameters positive prod putpage puttl repeat sameas scalar scalars semicont semiint set1 sets smax smin solve sos1 sos2 sum system table then until using variable variables while1 xor yes\";return{aliases:[\"gms\"],cI:!0,k:s,c:[{cN:\"section\",bK:\"sets parameters variables equations\",e:\";\",c:[{b:\"/\",e:\"/\",c:[e.NM]}]},{cN:\"string\",b:\"\\\\*{3}\",e:\"\\\\*{3}\"},e.NM,{cN:\"number\",b:\"\\\\$[a-zA-Z0-9]+\"}]}});hljs.registerLanguage(\"matlab\",function(e){var a=[e.CNM,{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]}],s={r:0,c:[{cN:\"operator\",b:/'['\\.]*/}]};return{k:{keyword:\"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson\"},i:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function\",e:\"$\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},{cN:\"params\",b:\"\\\\[\",e:\"\\\\]\"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]\",c:a,r:0,starts:s},{cN:\"cell\",b:\"\\\\{\",e:/}/,c:a,r:0,starts:s},{b:/\\)/,r:0,starts:s},e.C(\"^\\\\s*\\\\%\\\\{\\\\s*$\",\"^\\\\s*\\\\%\\\\}\\\\s*$\"),e.C(\"\\\\%\",\"$\")].concat(a)}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"prompt\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},a={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},l={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,a,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,a,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,l]},{cN:\"decorator\",b:/^[\\t ]*@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"lisp\",function(b){var e=\"[a-zA-Z_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#][a-zA-Z0-9_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#!]*\",c=\"\\\\|[^]*?\\\\|\",r=\"(\\\\-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|\\\\-)?\\\\d+)?\",a={cN:\"shebang\",b:\"^#!\",e:\"$\"},i={cN:\"literal\",b:\"\\\\b(t{1}|nil)\\\\b\"},l={cN:\"number\",v:[{b:r,r:0},{b:\"#(b|B)[0-1]+(/[0-1]+)?\"},{b:\"#(o|O)[0-7]+(/[0-7]+)?\"},{b:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{b:\"#(c|C)\\\\(\"+r+\" +\"+r,e:\"\\\\)\"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(\";\",\"$\",{r:0}),n={cN:\"variable\",b:\"\\\\*\",e:\"\\\\*\"},u={cN:\"keyword\",b:\"[:&]\"+e},N={b:e,r:0},o={b:c},s={b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,t,l,N]},v={cN:\"quoted\",c:[l,t,n,u,s,N],v:[{b:\"['`]\\\\(\",e:\"\\\\)\"},{b:\"\\\\(quote \",e:\"\\\\)\",k:\"quote\"},{b:\"'\"+c}]},f={cN:\"quoted\",v:[{b:\"'\"+e},{b:\"#'\"+e+\"(::\"+e+\")*\"}]},g={cN:\"list\",b:\"\\\\(\\\\s*\",e:\"\\\\)\"},q={eW:!0,r:0};return g.c=[{cN:\"keyword\",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage(\"golo\",function(e){return{k:{keyword:\"println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull\",typename:\"DynamicObject|10 DynamicVariable struct Observable map set vector list array\",literal:\"true false null\"},c:[e.HCM,e.QSM,e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"lua\",function(e){var t=\"\\\\[=*\\\\[\",a=\"\\\\]=*\\\\]\",r={b:t,e:a,c:[\"self\"]},n=[e.C(\"--(?!\"+t+\")\",\"$\"),e.C(\"--\"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:\"and break do else elseif end false for if in local nil not or repeat return then true until while\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},c:n.concat([{cN:\"function\",bK:\"function\",e:\"\\\\)\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{cN:\"params\",b:\"\\\\(\",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:\"string\",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage(\"dos\",function(e){var r=e.C(/@?rem\\b/,/$/,{r:10}),t={cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0};return{aliases:[\"bat\",\"cmd\"],cI:!0,i:/\\/\\*/,k:{flow:\"if else goto for in do call exit not exist errorlevel defined\",operator:\"equ neq lss leq gtr geq\",keyword:\"shift cd dir echo setlocal endlocal set pause copy\",stream:\"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux\",winutils:\"ping net ipconfig taskkill xcopy ren del\",built_in:\"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol\"},c:[{cN:\"envvar\",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:\"function\",b:t.b,e:\"goto:eof\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),r]},{cN:\"number\",b:\"\\\\b\\\\d+\",r:0},r]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={cN:\"variable\",v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},o=[e.BE,r,n],i=[n,e.HCM,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:o,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"sub\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",r:5},{cN:\"operator\",b:\"-\\\\w\\\\b\",r:0},{b:\"^__DATA__$\",e:\"^__END__$\",sL:\"mojolicious\",c:[{b:\"^@@.*\",e:\"$\",cN:\"comment\"}]}];return r.c=i,s.c=i,{aliases:[\"pl\"],k:t,c:i}});hljs.registerLanguage(\"protobuf\",function(e){return{k:{keyword:\"package import option optional required repeated group\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,{cN:\"class\",bK:\"message enum service\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"function\",bK:\"rpc\",e:/;/,eE:!0,k:\"rpc returns\"},{cN:\"constant\",b:/^\\s*[A-Z_]+/,e:/\\s*=/,eE:!0}]}});hljs.registerLanguage(\"accesslog\",function(T){return{c:[{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+\\\\b\",r:0},{cN:\"string\",b:'\"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',e:'\"',k:\"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE\",i:\"\\\\n\",r:10},{cN:\"string\",b:/\\[/,e:/\\]/,i:\"\\\\n\"},{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"}]}});hljs.registerLanguage(\"java\",function(e){var a=e.UIR+\"(<\"+e.UIR+\">)?\",t=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",c=\"\\\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+)(\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))?|\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))([eE][-+]?\\\\d+)?)[lLfF]?\",r={cN:\"number\",b:c,r:0};return{aliases:[\"jsp\"],k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+a+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"vala\",function(e){return{k:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object\",literal:\"false true null\"},c:[{cN:\"class\",bK:\"class interface delegate namespace\",e:\"{\",eE:!0,i:\"[^,:\\\\n\\\\s\\\\.]\",c:[e.UTM]},e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:5},e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"^#\",e:\"$\",r:2},{cN:\"constant\",b:\" [A-Z_]+ \",r:0}]}});hljs.registerLanguage(\"tcl\",function(e){return{aliases:[\"tk\"],k:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",c:[e.C(\";[ \\\\t]*#\",\"$\"),e.C(\"^[ \\\\t]*#\",\"$\"),{bK:\"proc\",e:\"[\\\\{]\",eE:!0,c:[{cN:\"symbol\",b:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"[ \\\\t\\\\n\\\\r]\",eW:!0,eE:!0}]},{cN:\"variable\",eE:!0,v:[{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\\\(([a-zA-Z0-9_])*\\\\)\",e:\"[^a-zA-Z0-9_\\\\}\\\\$]\"},{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"(\\\\))?[^a-zA-Z0-9_\\\\}\\\\$]\"}]},{cN:\"string\",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:\"number\",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage(\"haml\",function(s){return{cI:!0,c:[{cN:\"doctype\",b:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",r:10},s.C(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{r:0}),{b:\"^\\\\s*(-|=|!=)(?!#)\",starts:{e:\"\\\\n\",sL:\"ruby\"}},{cN:\"tag\",b:\"^\\\\s*%\",c:[{cN:\"title\",b:\"\\\\w+\"},{cN:\"value\",b:\"[#\\\\.][\\\\w-]+\"},{b:\"{\\\\s*\",e:\"\\\\s*}\",eE:!0,c:[{b:\":\\\\w+\\\\s*=>\",e:\",\\\\s+\",rB:!0,eW:!0,c:[{cN:\"symbol\",b:\":\\\\w+\"},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]},{b:\"\\\\(\\\\s*\",e:\"\\\\s*\\\\)\",eE:!0,c:[{b:\"\\\\w+\\\\s*=\",e:\"\\\\s+\",rB:!0,eW:!0,c:[{cN:\"attribute\",b:\"\\\\w+\",r:0},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]}]},{cN:\"bullet\",b:\"^\\\\s*[=~]\\\\s*\",r:0},{b:\"#{\",starts:{e:\"}\",sL:\"ruby\"}}]}});hljs.registerLanguage(\"autohotkey\",function(e){var r={cN:\"escape\",b:\"`[\\\\s\\\\S]\"},c=e.C(\";\",\"$\",{r:0}),n=[{cN:\"built_in\",b:\"A_[a-zA-Z0-9]+\"},{cN:\"built_in\",bK:\"ComSpec Clipboard ClipboardAll ErrorLevel\"}];return{cI:!0,k:{keyword:\"Break Continue Else Gosub If Loop Return While\",literal:\"A true false NOT AND OR\"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:\"number\",b:e.NR,r:0},{cN:\"var_expand\",b:\"%\",e:\"%\",i:\"\\\\n\",c:[r]},{cN:\"label\",c:[r],v:[{b:'^[^\\\\n\";]+::(?!=)'},{b:'^[^\\\\n\";]+:(?!=)',r:0}]},{b:\",\\\\s*,\",r:10}])}});hljs.registerLanguage(\"nimrod\",function(t){return{aliases:[\"nim\"],k:{keyword:\"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield\",literal:\"shared guarded stdin stdout stderr result|10 true false\"},c:[{cN:\"decorator\",b:/{\\./,e:/\\.}/,r:10},{cN:\"string\",b:/[a-zA-Z]\\w*\"/,e:/\"/,c:[{b:/\"\"/}]},{cN:\"string\",b:/([a-zA-Z]\\w*)?\"\"\"/,e:/\"\"\"/},t.QSM,{cN:\"type\",b:/\\b[A-Z]\\w+\\b/,r:0},{cN:\"type\",b:/\\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\\b/},{cN:\"number\",b:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage(\"mizar\",function(e){return{k:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",c:[e.C(\"::\",\"$\")]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"header\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"blockquote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{cN:\"horizontal_rule\",b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link_url\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"link_reference\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:\"^\\\\[.+\\\\]:\",rB:!0,c:[{cN:\"link_reference\",b:\"\\\\[\",e:\"\\\\]:\",eB:!0,eE:!0,starts:{cN:\"link_url\",e:\"$\"}}]}]}});hljs.registerLanguage(\"aspectj\",function(e){var t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",i=\"get set args call\";return{k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"aspect\",bK:\"aspect\",e:/[{;=]/,eE:!0,i:/[:;\"\\[\\]]/,c:[{bK:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UTM,{b:/\\([^\\)]*/,e:/[)]+/,k:t+\" \"+i,eE:!1}]},{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,r:0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"pointcut after before around throwing returning\",e:/[)]/,eE:!1,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",k:t+\" \"+i},e.QSM]},{bK:\"new throw\",r:0},{cN:\"function\",b:/\\w+ +\\w+(\\.)?\\w+\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"dns\",function(d){return{aliases:[\"bind\",\"zone\"],k:{keyword:\"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT\"},c:[d.C(\";\",\"$\"),{cN:\"operator\",bK:\"$TTL $GENERATE $INCLUDE $ORIGIN\"},{cN:\"number\",b:\"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:)))\"},{cN:\"number\",b:\"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\"}]}});hljs.registerLanguage(\"django\",function(e){var t={cN:\"filter\",b:/\\|[A-Za-z]+:?/,k:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\",c:[{cN:\"argument\",b:/\"/,e:/\"/},{cN:\"argument\",b:/'/,e:/'/}]};return{aliases:[\"jinja\"],cI:!0,sL:\"xml\",c:[e.C(/\\{%\\s*comment\\s*%}/,/\\{%\\s*endcomment\\s*%}/),e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\",c:[t]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage(\"step21\",function(e){var r=\"[A-Z_][A-Z0-9_.]*\",i=\"END-ISO-10303-21;\",l={literal:\"\",built_in:\"\",keyword:\"HEADER ENDSEC DATA\"},s={cN:\"preprocessor\",b:\"ISO-10303-21;\",r:10},t=[e.CLCM,e.CBCM,e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"label\",v:[{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"p21\",\"step\",\"stp\"],cI:!0,l:r,k:l,c:[{cN:\"preprocessor\",b:i,r:10},s].concat(t)}});hljs.registerLanguage(\"roboconf\",function(e){var n=\"[a-zA-Z-_][^\\n{\\r\\n]+\\\\{\";return{aliases:[\"graph\",\"instances\"],cI:!0,k:\"import\",c:[{cN:\"facet\",b:\"^facet \"+n,e:\"}\",k:\"facet installer exports children extends\",c:[e.HCM]},{cN:\"instance-of\",b:\"^instance of \"+n,e:\"}\",k:\"name count channels instance-data instance-state instance of\",c:[{cN:\"keyword\",b:\"[a-zA-Z-_]+( |\t)*:\"},e.HCM]},{cN:\"component\",b:\"^\"+n,e:\"}\",l:\"\\\\(?[a-zA-Z]+\\\\)?\",k:\"installer exports children extends imports facets alias (optional)\",c:[{cN:\"string\",b:\"\\\\.[a-zA-Z-_]+\",e:\"\\\\s|,|;\",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage(\"capnproto\",function(t){return{aliases:[\"capnp\"],k:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},c:[t.QSM,t.NM,t.HCM,{cN:\"shebang\",b:/@0x[\\w\\d]{16};/,i:/\\n/},{cN:\"number\",b:/@\\d+\\b/},{cN:\"class\",bK:\"struct enum\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"class\",bK:\"interface\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage(\"livescript\",function(e){var t={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf\",literal:\"true false null undefined yes no on off it that void\",built_in:\"npm require console print module global window document\"},s=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",i=e.inherit(e.TM,{b:s}),n={cN:\"subst\",b:/#\\{/,e:/}/,k:t},r={cN:\"subst\",b:/#[A-Za-z$_]/,e:/(?:\\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:\"number\",b:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",r:0,starts:{e:\"(\\\\s*/)?\",r:0}},{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,n,r]},{b:/\"/,e:/\"/,c:[e.BE,n,r]},{b:/\\\\/,e:/(\\s|$)/,eE:!0}]},{cN:\"pi\",v:[{b:\"//\",e:\"//[gim]*\",c:[n,e.HCM]},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+s},{b:\"``\",e:\"``\",eB:!0,eE:!0,sL:\"javascript\"}];n.c=c;var a={cN:\"params\",b:\"\\\\(\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:t,c:[\"self\"].concat(c)}]};return{aliases:[\"ls\"],k:t,i:/\\/\\*/,c:c.concat([e.C(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HCM,{cN:\"function\",c:[i,a],rB:!0,v:[{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B\\\\->\\\\*?\",e:\"\\\\->\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\))?\\\\s*\\\\B[-~]{1,2}>\\\\*?\",e:\"[-~]{1,2}>\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B!?[-~]{1,2}>\\\\*?\",e:\"!?[-~]{1,2}>\\\\*?\"}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:s+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"crystal\",function(e){function b(e,b){var r=[{b:e,e:b}];return r[0].c=r,r}var r=\"(_[uif](8|16|32|64))?\",c=\"[a-zA-Z_]\\\\w*[!?=]?\",n=\"!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",i=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\][=?]?\",s={keyword:\"abstract alias as asm begin break case class def do else elsif end ensure enum extend for fun if ifdef include instance_sizeof is_a? lib macro module next of out pointerof private protected rescue responds_to? return require self sizeof struct super then type typeof union unless until when while with yield __DIR__ __FILE__ __LINE__\",literal:\"false nil true\"},t={cN:\"subst\",b:\"#{\",e:\"}\",k:s},a={cN:\"expansion\",v:[{b:\"\\\\{\\\\{\",e:\"\\\\}\\\\}\"},{b:\"\\\\{%\",e:\"%\\\\}\"}],k:s,r:10},o={cN:\"string\",c:[e.BE,t],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%w?\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%w?\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%w?{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%w?<\",e:\">\",c:b(\"<\",\">\")},{b:\"%w?/\",e:\"/\"},{b:\"%w?%\",e:\"%\"},{b:\"%w?-\",e:\"-\"},{b:\"%w?\\\\|\",e:\"\\\\|\"}],r:0},u={b:\"(\"+n+\")\\\\s*\",c:[{cN:\"regexp\",c:[e.BE,t],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}]}],r:0},l={cN:\"regexp\",c:[e.BE,t],v:[{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}],r:0},_={cN:\"annotation\",b:\"@\\\\[\",e:\"\\\\]\",r:5},f=[a,o,u,l,_,e.HCM,{cN:\"class\",bK:\"class module struct\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}]},{cN:\"class\",bK:\"lib enum union\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"})],r:10},{cN:\"function\",bK:\"def\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})]},{cN:\"function\",bK:\"fun macro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})],r:5},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[o,{b:i}],r:0},{cN:\"number\",v:[{b:\"\\\\b0b([01_]*[01])\"+r},{b:\"\\\\b0o([0-7_]*[0-7])\"+r},{b:\"\\\\b0x([A-Fa-f0-9_]*[A-Fa-f0-9])\"+r},{b:\"\\\\b(([0-9][0-9_]*[0-9]|[0-9])(\\\\.[0-9_]*[0-9])?([eE][+-]?[0-9_]*[0-9])?)\"+r}],r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?|%)(\\\\w+))\"}];return t.c=f,_.c=f,a.c=f.slice(1),{aliases:[\"cr\"],l:c,k:s,c:f}});hljs.registerLanguage(\"powershell\",function(e){var t={b:\"`[\\\\s\\\\S]\",r:0},r={cN:\"variable\",v:[{b:/\\$[\\w\\d][\\w\\d_:]*/}]},o={cN:\"string\",b:/\"/,e:/\"/,c:[t,r,{cN:\"variable\",b:/\\$[A-z]/,e:/[^A-z]/}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"ps\"],l:/-?[A-z\\.\\-]+/,cI:!0,k:{keyword:\"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch\",literal:\"$null $true $false\",built_in:\"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning\",operator:\"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace\"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage(\"ruby\",function(e){var c=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r=\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",b={cN:\"doctag\",b:\"@[A-Za-z]+\"},a={cN:\"value\",b:\"#<\",e:\">\"},n=[e.C(\"#\",\"$\",{c:[b]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[b],r:10}),e.C(\"^__END__\",\"\\\\n$\")],s={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(n)},{cN:\"function\",bK:\"def\",e:\"$|;\",c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[t,{b:c}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,s],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o=\"[>?]>\",l=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",N=[{b:/^\\s*=>/,cN:\"status\",starts:{e:\"$\",c:d}},{cN:\"prompt\",b:\"^(\"+o+\"|\"+l+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,i:/\\/\\*/,c:n.concat(N).concat(d)}});hljs.registerLanguage(\"brainfuck\",function(r){var n={cN:\"literal\",b:\"[\\\\+\\\\-]\",r:0};return{aliases:[\"bf\"],c:[r.C(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{rE:!0,r:0}),{cN:\"title\",b:\"[\\\\[\\\\]]\",r:0},{cN:\"string\",b:\"[\\\\.,]\",r:0},{b:/\\+\\+|\\-\\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage(\"thrift\",function(e){var t=\"bool byte i16 i32 i64 double string binary\";return{k:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:\"class\",bK:\"struct enum service exception\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:\"\\\\b(set|list|map)\\\\s*<\",e:\">\",k:t,c:[\"self\"]}]}});hljs.registerLanguage(\"less\",function(e){var r=\"[\\\\w-]+\",t=\"(\"+r+\"|@{\"+r+\"})\",a=[],c=[],n=function(e){return{cN:\"string\",b:\"~?\"+e+\".*?\"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+\"\\\\(\",e:\"\\\\(\",rB:!0,eE:!0,r:0},a)},b={b:\"\\\\(\",e:\"\\\\)\",c:c,r:0};c.push(e.CLCM,e.CBCM,n(\"'\"),n('\"'),e.CSSNM,i(\"hexcolor\",\"#[0-9A-Fa-f]+\\\\b\"),s(\"function\",\"(url|data-uri)\",{starts:{cN:\"string\",e:\"[\\\\)\\\\n]\",eE:!0}}),s(\"function\",r),b,i(\"variable\",\"@@?\"+r,10),i(\"variable\",\"@{\"+r+\"}\"),i(\"built_in\",\"~?`[^`]*?`\"),{cN:\"attribute\",b:r+\"\\\\s*:\",e:\":\",rB:!0,eE:!0});var o=c.concat({b:\"{\",e:\"}\",c:a}),u={bK:\"when\",eW:!0,c:[{bK:\"and not\"}].concat(c)},C={cN:\"attribute\",b:t,e:\":\",eE:!0,c:[e.CLCM,e.CBCM],i:/\\S/,starts:{e:\"[;}]\",rE:!0,c:c,i:\"[<=$]\"}},l={cN:\"at_rule\",b:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{e:\"[;{}]\",rE:!0,c:c,r:0}},d={cN:\"variable\",v:[{b:\"@\"+r+\"\\\\s*:\",r:15},{b:\"@\"+r}],starts:{e:\"[;}]\",rE:!0,c:o}},p={v:[{b:\"[\\\\.#:&\\\\[]\",e:\"[;{}]\"},{b:t+\"[^;]*{\",e:\"{\"}],rB:!0,rE:!0,i:\"[<='$\\\"]\",c:[e.CLCM,e.CBCM,u,i(\"keyword\",\"all\\\\b\"),i(\"variable\",\"@{\"+r+\"}\"),i(\"tag\",t+\"%?\",0),i(\"id\",\"#\"+t),i(\"class\",\"\\\\.\"+t,0),i(\"keyword\",\"&\",0),s(\"pseudo\",\":not\"),s(\"keyword\",\":extend\"),i(\"pseudo\",\"::?\"+t),{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\"},{b:\"\\\\(\",e:\"\\\\)\",c:o},{b:\"!important\"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:\"[=>'/<($\\\"]\",c:a}});hljs.registerLanguage(\"scilab\",function(e){var n=[e.CNM,{cN:\"string\",b:\"'|\\\"\",e:\"'|\\\"\",c:[e.BE,{b:\"''\"}]}];return{aliases:[\"sci\"],k:{keyword:\"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix\"},i:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function endfunction\",e:\"$\",k:\"function endfunction|10\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]},{cN:\"transposed_variable\",b:\"[a-zA-Z_][a-zA-Z_0-9]*('+[\\\\.']*|[\\\\.']+)\",e:\"\",r:0},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]'*[\\\\.']*\",r:0,c:n},e.C(\"//\",\"$\")].concat(n)}});hljs.registerLanguage(\"oxygene\",function(e){var r=\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\",t=e.C(\"{\",\"}\",{r:0}),a=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{r:10}),n={cN:\"string\",b:\"'\",e:\"'\",c:[{b:\"''\"}]},o={cN:\"string\",b:\"(#\\\\d+)+\"},i={cN:\"function\",bK:\"function constructor destructor procedure method\",e:\"[:;]\",k:\"function constructor|10 destructor|10 procedure|10 method|10\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*|</|=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:\"class\",b:\"=\\\\bclass\\\\b\",e:\"end;\",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage(\"lasso\",function(e){var r=\"[a-zA-Z_][a-zA-Z0-9_.]*\",a=\"<\\\\?(lasso(script)?|=)\",t=\"\\\\]|\\\\?>\",s={literal:\"true false none minimal full all void bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock\",keyword:\"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},n=e.C(\"<!--\",\"-->\",{r:0}),i={cN:\"preprocessor\",b:\"\\\\[noprocess\\\\]\",starts:{cN:\"markup\",e:\"\\\\[/noprocess\\\\]\",rE:!0,c:[n]}},o={cN:\"preprocessor\",b:\"\\\\[/noprocess|\"+a},l={cN:\"variable\",b:\"'\"+r+\"'\"},c=[e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CLCM,e.CBCM,e.inherit(e.CNM,{b:e.CNR+\"|(infinity|nan)\\\\b\"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"variable\",v:[{b:\"[#$]\"+r},{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]},{cN:\"tag\",b:\"::\\\\s*\",e:r,i:\"\\\\W\"},{cN:\"attribute\",v:[{b:\"-(?!infinity)\"+e.UIR,r:0},{b:\"(\\\\.\\\\.\\\\.)\"}]},{cN:\"subst\",v:[{b:\"->\\\\s*\",c:[l]},{b:\"->|\\\\\\\\|&&?|\\\\|\\\\||!(?!=|>)|(and|or|not)\\\\b\",r:0}]},{cN:\"built_in\",b:\"\\\\.\\\\.?\\\\s*\",r:0,c:[l]},{cN:\"class\",bK:\"define\",rE:!0,e:\"\\\\(|=>\",c:[e.inherit(e.TM,{b:e.UIR+\"(=(?!>))?\"})]}];return{aliases:[\"ls\",\"lassoscript\"],cI:!0,l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[|\"+a,rE:!0,r:0,c:[n]}},i,o,{cN:\"preprocessor\",b:\"\\\\[no_square_brackets\",starts:{e:\"\\\\[/no_square_brackets\\\\]\",l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[noprocess\\\\]|\"+a,rE:!0,c:[n]}},i,o].concat(c)}},{cN:\"preprocessor\",b:\"\\\\[\",r:0},{cN:\"shebang\",b:\"^#!.+lasso9\\\\b\",r:10}].concat(c)}});hljs.registerLanguage(\"gcode\",function(e){var N=\"[A-Z_][A-Z0-9_.]*\",i=\"\\\\%\",c={literal:\"\",built_in:\"\",keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},r={cN:\"preprocessor\",b:\"([O])([0-9]+)\"},l=[e.CLCM,e.CBCM,e.C(/\\(/,/\\)/),e.inherit(e.CNM,{b:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))|\"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"keyword\",b:\"([G])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"([M])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"(VC|VS|#)\",e:\"(\\\\d+)\"},{cN:\"title\",b:\"(VZOFX|VZOFY|VZOFZ)\"},{cN:\"built_in\",b:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",e:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))(\\\\])\"},{cN:\"label\",v:[{b:\"N\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"nc\"],cI:!0,l:N,k:c,c:[{cN:\"preprocessor\",b:i},r].concat(l)}});hljs.registerLanguage(\"scala\",function(e){var t={cN:\"annotation\",b:\"@[A-Za-z]+\"},r={cN:\"string\",b:'u?r?\"\"\"',e:'\"\"\"',r:10},a={cN:\"symbol\",b:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},c={cN:\"type\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},i={cN:\"title\",b:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,r:0},n={cN:\"class\",bK:\"class object trait type\",e:/[:={\\[(\\n;]/,c:[{cN:\"keyword\",bK:\"extends with\",r:10},i]},l={cN:\"function\",bK:\"def\",e:/[:={\\[(\\n;]/,c:[i]};return{k:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},c:[e.CLCM,e.CBCM,r,e.QSM,a,c,l,n,e.CNM,t]}});hljs.registerLanguage(\"armasm\",function(s){return{cI:!0,aliases:[\"arm\"],l:\"\\\\.?\"+s.IR,k:{literal:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 \",preprocessor:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND \",built_in:\"{PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @ \"},c:[{cN:\"keyword\",b:\"\\\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?\",e:\"\\\\s\"},s.C(\"[;@]\",\"$\",{r:0}),s.CBCM,s.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",r:0},{cN:\"title\",b:\"\\\\|\",e:\"\\\\|\",i:\"\\\\n\",r:0},{cN:\"number\",v:[{b:\"[#$=]?0x[0-9a-f]+\"},{b:\"[#$=]?0b[01]+\"},{b:\"[#$=]\\\\d+\"},{b:\"\\\\b\\\\d+\"}],r:0},{cN:\"label\",v:[{b:\"^[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+\"},{b:\"^\\\\s*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{b:\"[=#]\\\\w+\"}],r:0}]}});hljs.registerLanguage(\"avrasm\",function(r){return{cI:!0,l:\"\\\\.?\"+r.IR,k:{keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",preprocessor:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},c:[r.CBCM,r.C(\";\",\"$\",{r:0}),r.CNM,r.BNM,{cN:\"number\",b:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},r.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"},{cN:\"label\",b:\"^[A-Za-z0-9_.$]+:\"},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"localvars\",b:\"@[0-9]+\"}]}});hljs.registerLanguage(\"profile\",function(e){return{c:[e.CNM,{cN:\"built_in\",b:\"{\",e:\"}$\",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:\"filename\",b:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",e:\":\",eE:!0},{cN:\"header\",b:\"(ncalls|tottime|cumtime)\",e:\"$\",k:\"ncalls tottime|10 cumtime|10 filename\",r:10},{cN:\"summary\",b:\"function calls\",e:\"$\",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:\"function\",b:\"\\\\(\",e:\"\\\\)$\",c:[e.UTM],r:0}]}});hljs.registerLanguage(\"mercury\",function(e){var i={keyword:\"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure\",pragma:\"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses\",preprocessor:\"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing\",built_in:\"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure\"},r={cN:\"label\",b:\"XXX\",e:\"$\",eW:!0,r:0},t=e.inherit(e.CLCM,{b:\"%\"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:\"number\",b:\"0'.\\\\|0[box][0-9a-fA-F]*\"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:\"constant\",b:\"\\\\\\\\[abfnrtv]\\\\|\\\\\\\\x[0-9a-fA-F]*\\\\\\\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]\",r:0};o.c.push(l);var s={cN:\"built_in\",v:[{b:\"<=>\"},{b:\"<=\",r:0},{b:\"=>\",r:0},{b:\"/\\\\\\\\\"},{b:\"\\\\\\\\/\"}]},c={cN:\"built_in\",v:[{b:\":-\\\\|-->\"},{b:\"=\",r:0}]};return{aliases:[\"m\",\"moo\"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage(\"crmsh\",function(e){var t=\"primitive rsc_template\",r=\"group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml\",a=\"property rsc_defaults op_defaults\",s=\"params meta operations op rule attributes utilization\",i=\"read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\\\\",o=\"number string\",n=\"Master Started Slave Stopped start promote demote stop monitor true false\";return{aliases:[\"crm\",\"pcmk\"],cI:!0,k:{keyword:s,operator:i,type:o,literal:n},c:[e.HCM,{bK:\"node\",starts:{cN:\"identifier\",e:\"\\\\s*([\\\\w_-]+:)?\",starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\"}}},{bK:t,starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\",starts:{cN:\"pragma\",e:\"\\\\s*@?[\\\\w_][\\\\w_\\\\.:-]*\"}}},{b:\"\\\\b(\"+r.split(\" \").join(\"|\")+\")\\\\s+\",k:r,starts:{cN:\"title\",e:\"[\\\\$\\\\w_][\\\\w_-]*\"}},{bK:a,starts:{cN:\"title\",e:\"\\\\s*([\\\\w_-]+:)?\"}},e.QSM,{cN:\"pragma\",b:\"(ocf|systemd|service|lsb):[\\\\w_:-]+\",r:0},{cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(ms|s|h|m)?\",r:0},{cN:\"number\",b:\"[-]?(infinity|inf)\",r:0},{cN:\"variable\",b:/([A-Za-z\\$_\\#][\\w_-]+)=/,r:0},{cN:\"tag\",b:\"</?\",e:\"/?>\",r:0}]}});hljs.registerLanguage(\"erlang\",function(e){var r=\"[a-z'][a-zA-Z0-9_']*\",c=\"(\"+r+\":\"+r+\"|\"+r+\")\",a={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},n=e.C(\"%\",\"$\"),i={cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},b={b:\"fun\\\\s+\"+r+\"/\\\\d+\"},d={b:c+\"\\\\(\",e:\"\\\\)\",rB:!0,r:0,c:[{cN:\"function_name\",b:c,r:0},{b:\"\\\\(\",e:\"\\\\)\",eW:!0,rE:!0,r:0}]},o={cN:\"tuple\",b:\"{\",e:\"}\",r:0},t={cN:\"variable\",b:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",r:0},l={cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_]*\",r:0},f={b:\"#\"+e.UIR,r:0,rB:!0,c:[{cN:\"record_name\",b:\"#\"+e.UIR,r:0},{b:\"{\",e:\"}\",r:0}]},s={bK:\"fun receive if try case\",e:\"end\",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:\"\"}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:u};return{aliases:[\"erl\"],k:a,i:\"(</|\\\\*=|\\\\+=|-=|/\\\\*|\\\\*/|\\\\(\\\\*|\\\\*\\\\))\",c:[{cN:\"function\",b:\"^\"+r+\"\\\\s*\\\\(\",e:\"->\",rB:!0,i:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",c:[v,e.inherit(e.TM,{b:r})],starts:{e:\";|\\\\.\",k:a,c:u}},n,{cN:\"pp\",b:\"^-\",e:\"\\\\.\",r:0,eE:!0,rB:!0,l:\"-\"+e.IR,k:\"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec\",c:[v]},i,e.QSM,f,t,l,o,{b:/\\.$/}]}});hljs.registerLanguage(\"cpp\",function(t){var e={cN:\"keyword\",b:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},r={cN:\"string\",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?\"'}),{b:'(u8?|U)?R\"',e:'\"',c:[t.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},s={cN:\"number\",v:[{b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},{b:t.CNR}]},i={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[r,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},r,s,t.CLCM,t.CBCM]},a=t.IR+\"\\\\s*\\\\(\",c={keyword:\"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong\",built_in:\"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf\",literal:\"true false nullptr NULL\"};return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:c,i:\"</\",c:[e,t.CLCM,t.CBCM,s,r,i,{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:c,c:[\"self\",e]},{b:t.IR+\"::\",k:c},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t.IR+\"[\\\\*&\\\\s]+)+\"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\\w\\s\\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s]},t.CLCM,t.CBCM,i]}]}});hljs.registerLanguage(\"xquery\",function(e){var t=\"for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update\",a=\"false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute\",r={cN:\"variable\",b:/\\$[a-zA-Z0-9\\-]+/,r:5},s={cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},n={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},i={cN:\"decorator\",b:\"%\\\\w+\"},c={cN:\"comment\",b:\"\\\\(:\",e:\":\\\\)\",r:10,c:[{cN:\"doc\",b:\"@\\\\w+\"}]},o={b:\"{\",e:\"}\"},l=[r,n,s,c,i,o];return o.c=l,{aliases:[\"xpath\",\"xq\"],cI:!1,l:/[a-zA-Z\\$][a-zA-Z0-9_:\\-]*/,i:/(proc)|(abstract)|(extends)|(until)|(#)/,k:{keyword:t,literal:a},c:l}});hljs.registerLanguage(\"dockerfile\",function(e){return{aliases:[\"docker\"],cI:!0,k:{built_ins:\"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env label\"},c:[e.HCM,{k:{built_in:\"run cmd entrypoint volume add copy workdir onbuild label\"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir|label) +/,starts:{e:/[^\\\\]\\n/,sL:\"bash\"}},{k:{built_in:\"from maintainer expose env user onbuild\"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\\\]\\n/,c:[e.ASM,e.QSM,e.NM,e.HCM]}]}});hljs.registerLanguage(\"scss\",function(e){var t=\"[a-zA-Z-][a-zA-Z0-9_-]*\",i={cN:\"variable\",b:\"(\\\\$\"+t+\")\\\\b\"},r={cN:\"function\",b:t+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},o={cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"};({cN:\"attribute\",b:\"[A-Z\\\\_\\\\.\\\\-]+\",e:\":\",eE:!0,i:\"[^\\\\s]\",starts:{cN:\"value\",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"important\",b:\"!important\"}]}});return{cI:!0,i:\"[=/|']\",c:[e.CLCM,e.CBCM,r,{cN:\"id\",b:\"\\\\#[A-Za-z0-9_-]+\",r:0},{cN:\"class\",b:\"\\\\.[A-Za-z0-9_-]+\",r:0},{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\",i:\"$\"},{cN:\"tag\",b:\"\\\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\\\b\",r:0},{cN:\"pseudo\",b:\":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)\"},{cN:\"pseudo\",b:\"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)\"},i,{cN:\"attribute\",b:\"\\\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\\\b\",i:\"[^\\\\s]\"},{cN:\"value\",b:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{cN:\"value\",b:\":\",e:\";\",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:\"important\",b:\"!important\"}]},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",k:\"mixin include extend for if else each while charset import debug media page content font-face namespace warn\",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:\"preprocessor\",b:\"\\\\s[A-Za-z0-9_.-]+\",r:0}]}]}});hljs.registerLanguage(\"cmake\",function(e){return{aliases:[\"cmake.in\"],cI:!0,k:{keyword:\"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or\",operator:\"equal less greater strless strgreater strequal matches\"},c:[{cN:\"envvar\",b:\"\\\\${\",e:\"}\"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage(\"nix\",function(e){var t={keyword:\"rec with let in inherit assert if else then\",constant:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},i={cN:\"subst\",b:/\\$\\{/,e:/}/,k:t},r={cN:\"variable\",b:/[a-zA-Z0-9-_]+(\\s*=)/,r:0},n={cN:\"string\",b:\"''\",e:\"''\",c:[i]},s={cN:\"string\",b:'\"',e:'\"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:[\"nixos\"],k:t,c:a}});hljs.registerLanguage(\"mathematica\",function(e){return{aliases:[\"mma\"],l:\"(\\\\$|\\\\b)\"+e.IR+\"\\\\b\",k:\"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber\",\nc:[{cN:\"comment\",b:/\\(\\*/,e:/\\*\\)/},e.ASM,e.QSM,e.CNM,{cN:\"list\",b:/\\{/,e:/\\}/,i:/:/}]}});hljs.registerLanguage(\"julia\",function(r){var e={keyword:\"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while\",literal:\"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e|0 eu|0 eulergamma golden im nothing pi γ π φ\",built_in:\"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip\"},t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",o={l:t,k:e},n={cN:\"type-annotation\",b:/::/},a={cN:\"subtype\",b:/<:/},i={cN:\"number\",b:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,r:0},l={cN:\"char\",b:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},c={cN:\"subst\",b:/\\$\\(/,e:/\\)/,k:e},u={cN:\"variable\",b:\"\\\\$\"+t},d={cN:\"string\",c:[r.BE,c,u],v:[{b:/\\w*\"/,e:/\"\\w*/},{b:/\\w*\"\"\"/,e:/\"\"\"\\w*/}]},g={cN:\"string\",c:[r.BE,c,u],b:\"`\",e:\"`\"},s={cN:\"macrocall\",b:\"@\"+t},S={cN:\"comment\",v:[{b:\"#=\",e:\"=#\",r:10},{b:\"#\",e:\"$\"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage(\"rib\",function(e){return{k:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",i:\"</\",c:[e.HCM,e.CNM,e.ASM,e.QSM]}});hljs.registerLanguage(\"vim\",function(e){return{l:/[!#@\\w]+/,k:{keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor\"},i:/[{:]/,c:[e.NM,e.ASM,{cN:\"string\",b:/\"((\\\\\")|[^\"\\n])*(\"|\\n)/},{cN:\"variable\",b:/[bwtglsav]:[\\w\\d_]*/},{cN:\"function\",bK:\"function function!\",e:\"$\",r:0,c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]}]}});hljs.registerLanguage(\"prolog\",function(c){var r={cN:\"atom\",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:\"name\",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\\(/,e:/\\)/,r:0},e={b:/\\[/,e:/\\]/},n={cN:\"comment\",b:/%/,e:/$/,c:[c.PWM]},t={cN:\"string\",b:/`/,e:/`/,c:[c.BE]},g={cN:\"string\",b:/0\\'(\\\\\\'|.)/},N={cN:\"string\",b:/0\\'\\\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\\.$/}])}});hljs.registerLanguage(\"parser3\",function(r){var e=r.C(\"{\",\"}\",{c:[\"self\"]});return{sL:\"xml\",r:0,c:[r.C(\"^#\",\"$\"),r.C(\"\\\\^rem{\",\"}\",{r:10,c:[e]}),{cN:\"preprocessor\",b:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",r:10},{cN:\"title\",b:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{cN:\"variable\",b:\"\\\\$\\\\{?[\\\\w\\\\-\\\\.\\\\:]+\\\\}?\"},{cN:\"keyword\",b:\"\\\\^[\\\\w\\\\-\\\\.\\\\:]+\"},{cN:\"number\",b:\"\\\\^#[0-9a-fA-F]+\"},r.CNM]}});hljs.registerLanguage(\"openscad\",function(e){var r={cN:\"keyword\",b:\"\\\\$(f[asn]|t|vp[rtd]|children)\"},n={cN:\"literal\",b:\"false|true|PI|undef\"},i={cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(e-?\\\\d+)?\",r:0},o=e.inherit(e.QSM,{i:null}),s={cN:\"preprocessor\",k:\"include use\",b:\"include|use <\",e:\">\"},t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,o,r,n]},c={cN:\"built_in\",b:\"[*!#%]\",r:0},l={cN:\"function\",bK:\"module function\",e:\"\\\\=|\\\\{\",c:[t,e.UTM]};return{aliases:[\"scad\"],k:{keyword:\"function module include use for intersection_for if else \\\\%\",literal:\"false true PI undef\",built_in:\"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign\"},c:[e.CLCM,e.CBCM,i,s,o,r,c,l]}});hljs.registerLanguage(\"ceylon\",function(e){var a=\"assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty\",t=\"shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small\",s=\"doc by license see throws tagged\",n=t+\" \"+s,i={cN:\"subst\",eB:!0,eE:!0,b:/``/,e:/``/,k:a,r:10},r=[{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:10},{cN:\"string\",b:'\"',e:'\"',c:[i]},{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"number\",b:\"#[0-9a-fA-F_]+|\\\\$[01_]+|[0-9_]+(?:\\\\.[0-9_](?:[eE][+-]?\\\\d+)?)?[kMGTPmunpf]?\",r:0}];return i.c=r,{k:{keyword:a,annotation:n},i:\"\\\\$[^01]|#[^0-9a-fA-F]\",c:[e.CLCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),{cN:\"annotation\",b:'@[a-z]\\\\w*(?:\\\\:\"[^\"]*\")?'}].concat(r)}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{built_in:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{cN:\"url\",b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"title\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"sml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"gherkin\",function(e){return{aliases:[\"feature\"],k:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",c:[{cN:\"keyword\",b:\"\\\\*\"},e.C(\"@[^@\\r\\n\t ]+\",\"$\"),{b:\"\\\\|\",e:\"\\\\|\\\\w*$\",c:[{cN:\"string\",b:\"[^|]+\"}]},{cN:\"variable\",b:\"<\",e:\">\"},e.HCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.QSM]}});hljs.registerLanguage(\"vbnet\",function(e){return{aliases:[\"vb\"],cI:!0,k:{keyword:\"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor\",built_in:\"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort\",literal:\"true false nothing\"},i:\"//|{|}|endif|gosub|variant|wend\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(\"'\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",b:\"'''|<!--|-->\",c:[e.PWM]},{cN:\"xmlDocTag\",b:\"</?\",e:\">\",c:[e.PWM]}]}),e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end region externalsource\"}]}});hljs.registerLanguage(\"pf\",function(t){var o={cN:\"variable\",b:/\\$[\\w\\d#@][\\w\\d_]*/},e={cN:\"variable\",b:/</,e:/>/};return{aliases:[\"pf.conf\"],l:/[a-z0-9_<>-]+/,k:{built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage(\"r\",function(e){var r=\"([a-zA-Z]|\\\\.[a-zA-Z.])[a-zA-Z0-9._]*\";return{c:[e.HCM,{b:r,l:r,k:{keyword:\"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...\",literal:\"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{b:\"`\",e:\"`\",r:0},{cN:\"string\",c:[e.BE],v:[{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]}]}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>{}*]/,c:[{cN:\"operator\",bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke\",e:/;/,eW:!0,k:{keyword:\"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes c cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle d data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration e each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract f failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function g general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http i id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists k keep keep_duplicates key keys kill l language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim m main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex n name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding p package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime t table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"kotlin\",function(e){var r=\"val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native\";return{k:{typename:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\",keyword:r},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"type\",b:/</,e:/>/,rB:!0,eE:!1,r:0},{cN:\"function\",bK:\"fun\",e:\"[(]|$\",rB:!0,eE:!0,k:r,i:/fun\\s+(<.*>)?[^\\s\\(]+(\\s+[^\\s\\(]+)\\s*=/,r:5,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"type\",b:/</,e:/>/,k:\"reified\",r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:r,r:0,i:/\\([^\\(,\\s:]+,/,c:[{cN:\"typename\",b:/:\\s*/,e:/\\s*[=\\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:\"class\",bK:\"class trait\",e:/[:\\{(]|$/,eE:!0,i:\"extends implements\",c:[e.UTM,{cN:\"type\",b:/</,e:/>/,eB:!0,eE:!0,r:0},{cN:\"typename\",b:/[,:]\\s*/,e:/[<\\(,]|$/,eB:!0,rE:!0}]},{cN:\"variable\",bK:\"var val\",e:/\\s*[=:$]/,eE:!0},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.CNM]}});hljs.registerLanguage(\"clojure-repl\",function(r){return{c:[{cN:\"prompt\",b:/^([\\w.-]+|\\s*#_)=>/,starts:{e:/$/,sL:\"clojure\"}}]}});hljs.registerLanguage(\"twig\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},a=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",r={cN:\"function\",bK:a,r:0,c:[t]},c={cN:\"filter\",b:/\\|[A-Za-z_]+:?/,k:\"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode\",c:[r]},n=\"autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim\";return n=n+\" \"+n.split(\" \").map(function(e){return\"end\"+e}).join(\" \"),{aliases:[\"craftcms\"],cI:!0,sL:\"xml\",c:[e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:n,c:[c,r]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage(\"vbscript\",function(e){return{aliases:[\"vbs\"],cI:!0,k:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err\",literal:\"true false null nothing empty\"},i:\"//\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",a={cN:\"function\",b:c+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},r={cN:\"rule\",b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{cN:\"value\",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"},{cN:\"important\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|'\\$]/,c:[e.CBCM,{cN:\"id\",b:/\\#[A-Za-z0-9_-]+/},{cN:\"class\",b:/\\.[A-Za-z0-9_-]+/},{cN:\"attr_selector\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"']+/},{cN:\"at_rule\",b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",c:[{cN:\"keyword\",b:/\\S+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:\"tag\",b:c,r:0},{cN:\"rules\",b:\"{\",e:\"}\",i:/\\S/,c:[e.CBCM,r]}]}});hljs.registerLanguage(\"mel\",function(e){return{k:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",i:\"</\",c:[e.CNM,e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},{cN:\"variable\",v:[{b:\"\\\\$\\\\d\"},{b:\"[\\\\$\\\\%\\\\@](\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\"},{b:\"\\\\*(\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\",r:0}]},e.CLCM,e.CBCM]}});hljs.registerLanguage(\"monkey\",function(e){var n={cN:\"number\",r:0,v:[{b:\"[$][a-fA-F0-9]+\"},e.NM]};return{cI:!0,k:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},i:/\\/\\*/,c:[e.C(\"#rem\",\"#end\"),e.C(\"'\",\"$\",{r:0}),{cN:\"function\",bK:\"function method\",e:\"[(=:]|$\",i:/\\n/,c:[e.UTM]},{cN:\"class\",bK:\"class interface\",e:\"$\",c:[{bK:\"extends implements\"},e.UTM]},{cN:\"variable\",b:\"\\\\b(self|super)\\\\b\"},{cN:\"preprocessor\",bK:\"import\",e:\"$\"},{cN:\"preprocessor\",b:\"\\\\s*#\",e:\"$\",k:\"if else elseif endif end then\"},{cN:\"pi\",b:\"^\\\\s*strict\\\\b\"},{bK:\"alias\",e:\"=\",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage(\"smali\",function(r){var t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"],n=[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"],s=[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"];return{aliases:[\"smali\"],c:[{cN:\"string\",b:'\"',e:'\"',r:0},r.C(\"#\",\"$\",{r:0}),{cN:\"keyword\",b:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\",r:1},{cN:\"keyword\",b:\"^[ ]*\\\\.[a-zA-Z]*\",r:0},{cN:\"keyword\",b:\"\\\\s:[a-zA-Z_0-9]*\",r:0},{cN:\"keyword\",b:\"\\\\s(\"+s.join(\"|\")+\")\",r:1},{cN:\"keyword\",b:\"\\\\[\",r:0},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\",r:1},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)+\\\\s\",r:10},{cN:\"instruction\",b:\"\\\\s(\"+n.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)*\\\\s\",r:10},{cN:\"class\",b:\"L[^(;:\\n]*;\",r:0},{cN:\"function\",b:'( |->)[^(\\n ;\"]*\\\\(',r:0},{cN:\"function\",b:\"\\\\)\",r:0},{cN:\"variable\",b:\"[vp][0-9]+\",r:0}]}});hljs.registerLanguage(\"livecodeserver\",function(e){var r={cN:\"variable\",b:\"\\\\b[gtps][A-Z]+[A-Za-z0-9_\\\\-]*\\\\b|\\\\$_[A-Z]+\",r:0},t=[e.CBCM,e.HCM,e.C(\"--\",\"$\"),e.C(\"[^:]//\",\"$\")],a=e.inherit(e.TM,{v:[{b:\"\\\\b_*rig[A-Z]+[A-Za-z0-9_\\\\-]*\"},{b:\"\\\\b_[a-z0-9\\\\-]+\"}]}),o=e.inherit(e.TM,{b:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{cI:!1,k:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if\",constant:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",operator:\"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write\"},c:[r,{cN:\"keyword\",b:\"\\\\bend\\\\sif\\\\b\"},{cN:\"function\",bK:\"function\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"function\",b:\"\\\\bend\\\\s+\",e:\"$\",k:\"end\",c:[o,a]},{cN:\"command\",bK:\"command on\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"preprocessor\",v:[{b:\"<\\\\?(rev|lc|livecode)\",r:10},{b:\"<\\\\?\"},{b:\"\\\\?>\"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:\";$|^\\\\[|^=\"}});hljs.registerLanguage(\"smalltalk\",function(a){var r=\"[a-z][a-zA-Z0-9_]*\",s={cN:\"char\",b:\"\\\\$.{1}\"},c={cN:\"symbol\",b:\"#\"+a.UIR};return{aliases:[\"st\"],k:\"self super nil true false thisContext\",c:[a.C('\"','\"'),a.ASM,{cN:\"class\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},{cN:\"method\",b:r+\":\",r:0},a.CNM,c,s,{cN:\"localvars\",b:\"\\\\|[ ]*\"+r+\"([ ]+\"+r+\")*[ ]*\\\\|\",rB:!0,e:/\\|/,i:/\\S/,c:[{b:\"(\\\\|[ ]*)?\"+r}]},{cN:\"array\",b:\"\\\\#\\\\(\",e:\"\\\\)\",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage(\"rust\",function(e){var t=\"([uif](8|16|32|64|size))?\",r=e.inherit(e.CBCM);return r.c.push(\"self\"),{aliases:[\"rs\"],k:{keyword:\"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool\",built_in:\"Copy Send Sized Sync Drop Fn FnMut FnOnce drop Box ToOwned Clone PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator Option Some None Result Ok Err SliceConcatExt String ToString Vec assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!\"},l:e.IR+\"!?\",i:\"</\",c:[e.CLCM,r,e.inherit(e.QSM,{i:null}),{cN:\"string\",v:[{b:/r(#*)\".*?\"\\1(?!#)/},{b:/'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/}]},{cN:\"number\",v:[{b:\"\\\\b0b([01_]+)\"+t},{b:\"\\\\b0o([0-7_]+)\"+t},{b:\"\\\\b0x([A-Fa-f0-9_]+)\"+t},{b:\"\\\\b(\\\\d[\\\\d_]*(\\\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)\"+t}],r:0},{cN:\"function\",bK:\"fn\",e:\"(\\\\(|<)\",eE:!0,c:[e.UTM]},{cN:\"preprocessor\",b:\"#\\\\!?\\\\[\",e:\"\\\\]\"},{bK:\"type\",e:\"(=|<)\",c:[e.UTM],i:\"\\\\S\"},{bK:\"trait enum\",e:\"{\",c:[e.inherit(e.UTM,{endsParent:!0})],i:\"[\\\\w\\\\d]\"},{b:e.IR+\"::\"},{b:\"->\"}]}});hljs.registerLanguage(\"fix\",function(u){return{c:[{b:/[^\\u2401\\u0001]+/,e:/[\\u2401\\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\\u2401\\u0001=]+)/,e:/=([^\\u2401\\u0001=]+)/,rE:!0,rB:!1,cN:\"attribute\"},{b:/=/,e:/([\\u2401\\u0001])/,eE:!0,eB:!0,cN:\"string\"}]}],cI:!0}});hljs.registerLanguage(\"gradle\",function(e){return{cI:!0,k:{keyword:\"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage(\"xl\",function(e){var t=\"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\",o={keyword:\"if then else do while until for loop import with is as where when by data constant\",literal:\"true false nil\",type:\"integer real text name boolean symbol infix prefix postfix block tree\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at\",module:t,id:\"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons\"},a={cN:\"constant\",b:\"[A-Z][A-Z_0-9]+\",r:0},r={cN:\"variable\",b:\"([A-Z][a-z_0-9]+)+\",r:0},i={cN:\"id\",b:\"[a-z][a-z_0-9]+\",r:0},l={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"},n={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\"},s={cN:\"string\",b:\"<<\",e:\">>\"},c={cN:\"number\",b:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\",r:10},_={cN:\"import\",bK:\"import\",e:\"$\",k:{keyword:\"import\",module:t},r:0,c:[l]},d={cN:\"function\",b:\"[a-z].*->\"};return{aliases:[\"tao\"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage(\"ocaml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\",r:0},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"scheme\",function(e){var t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",r=\"(\\\\-|\\\\+)?\\\\d+([./]\\\\d+)?\",i=r+\"[+\\\\-]\"+r+\"i\",a={built_in:\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},n={cN:\"shebang\",b:\"^#!\",e:\"$\"},c={cN:\"literal\",b:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},l={cN:\"number\",v:[{b:r,r:0},{b:i,r:0},{b:\"#b[0-1]+(/[0-1]+)?\"},{b:\"#o[0-7]+(/[0-7]+)?\"},{b:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QSM,o=[e.C(\";\",\"$\",{r:0}),e.C(\"#\\\\|\",\"\\\\|#\")],u={b:t,r:0},p={cN:\"variable\",b:\"'\"+t},d={eW:!0,r:0},g={cN:\"list\",v:[{b:\"\\\\(\",e:\"\\\\)\"},{b:\"\\\\[\",e:\"\\\\]\"}],c:[{cN:\"keyword\",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage(\"http\",function(t){return{aliases:[\"https\"],i:\"\\\\S\",c:[{cN:\"status\",b:\"^HTTP/[0-9\\\\.]+\",e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{cN:\"request\",b:\"^[A-Z]+ (.*?) HTTP/[0-9\\\\.]+$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{cN:\"string\",e:\"$\"}},{b:\"\\\\n\\\\n\",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage(\"verilog\",function(e){return{aliases:[\"v\"],cI:!0,k:{keyword:\"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor\",typename:\"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor\"},c:[e.CBCM,e.CLCM,e.QSM,{cN:\"number\",b:\"\\\\b(\\\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+\",c:[e.BE],r:0},{cN:\"typename\",b:\"\\\\.\\\\w+\",r:0},{cN:\"value\",b:\"#\\\\((?!parameter).+\\\\)\"},{cN:\"keyword\",b:\"\\\\+|-|\\\\*|/|%|<|>|=|#|`|\\\\!|&|\\\\||@|:|\\\\^|~|\\\\{|\\\\}\",r:0}]}});hljs.registerLanguage(\"actionscript\",function(e){var a=\"[a-zA-Z_$][a-zA-Z0-9_$]*\",c=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\",t={cN:\"rest_arg\",b:\"[.]{3}\",e:a,r:10};return{aliases:[\"as\"],k:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"package\",bK:\"package\",e:\"{\",c:[e.TM]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",bK:\"import include\",e:\";\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:\"type\",b:\":\",e:c,r:10}]}],i:/#/}});hljs.registerLanguage(\"zephir\",function(e){var i={cN:\"string\",c:[e.BE],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:[\"zep\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[e.BE]},{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CBCM,i,n]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,n]}});hljs.registerLanguage(\"json\",function(e){var t={literal:\"true false null\"},i=[e.QSM,e.CNM],l={cN:\"value\",e:\",\",eW:!0,eE:!0,c:i,k:t},c={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:!0,eE:!0,c:[e.BE],i:\"\\\\n\",starts:l}],i:\"\\\\S\"},n={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(l,{cN:null})],i:\"\\\\S\"};return i.splice(i.length,0,c,n),{c:i,k:t,i:\"\\\\S\"}});hljs.registerLanguage(\"q\",function(e){var s={keyword:\"do while select delete by update from\",constant:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",typename:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"};return{aliases:[\"k\",\"kdb\"],k:s,l:/\\b(`?)[A-Za-z0-9_]+\\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage(\"processing\",function(e){return{k:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",constant:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",variable:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width\",title:\"setup draw\",built_in:\"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage(\"d\",function(e){var r={keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},t=\"(0|[1-9][\\\\d_]*)\",a=\"(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)\",i=\"0[bB][01_]+\",n=\"([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\",c=\"0[xX]\"+n,_=\"([eE][+-]?\"+a+\")\",d=\"(\"+a+\"(\\\\.\\\\d*|\"+_+\")|\\\\d+\\\\.\"+a+a+\"|\\\\.\"+t+_+\"?)\",o=\"(0[xX](\"+n+\"\\\\.\"+n+\"|\\\\.?\"+n+\")[pP][+-]?\"+a+\")\",s=\"(\"+t+\"|\"+i+\"|\"+c+\")\",l=\"(\"+o+\"|\"+d+\")\",u=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",b={cN:\"number\",b:\"\\\\b\"+s+\"(L|u|U|Lu|LU|uL|UL)?\",r:0},f={cN:\"number\",b:\"\\\\b(\"+l+\"([fF]|L|i|[fF]i|Li)?|\"+s+\"(i|[fF]i|Li))\",r:0},g={cN:\"string\",b:\"'(\"+u+\"|.)\",e:\"'\",i:\".\"},h={b:u,r:0},p={cN:\"string\",b:'\"',c:[h],e:'\"[cwd]?'},w={cN:\"string\",b:'[rq]\"',e:'\"[cwd]?',r:5},N={cN:\"string\",b:\"`\",e:\"`[cwd]?\"},A={cN:\"string\",b:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',r:10},F={cN:\"string\",b:'q\"\\\\{',e:'\\\\}\"'},m={cN:\"shebang\",b:\"^#!\",e:\"$\",r:5},y={cN:\"preprocessor\",b:\"#(line)\",e:\"$\",r:5},L={cN:\"keyword\",b:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"},v=e.C(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{c:[\"self\"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage(\"asciidoc\",function(e){return{aliases:[\"adoc\"],c:[e.C(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{r:10}),e.C(\"^//\",\"$\",{r:0}),{cN:\"title\",b:\"^\\\\.\\\\w.*$\"},{b:\"^[=\\\\*]{4,}\\\\n\",e:\"\\\\n^[=\\\\*]{4,}$\",r:10},{cN:\"header\",b:\"^(={1,5}) .+?( \\\\1)?$\",r:10},{cN:\"header\",b:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\",r:10},{cN:\"attribute\",b:\"^:.+?:\",e:\"\\\\s\",eE:!0,r:10},{cN:\"attribute\",b:\"^\\\\[.+?\\\\]$\",r:0},{cN:\"blockquote\",b:\"^_{4,}\\\\n\",e:\"\\\\n_{4,}$\",r:10},{cN:\"code\",b:\"^[\\\\-\\\\.]{4,}\\\\n\",e:\"\\\\n[\\\\-\\\\.]{4,}$\",r:10},{b:\"^\\\\+{4,}\\\\n\",e:\"\\\\n\\\\+{4,}$\",c:[{b:\"<\",e:\">\",sL:\"xml\",r:0}],r:10},{cN:\"bullet\",b:\"^(\\\\*+|\\\\-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"},{cN:\"label\",b:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",r:10},{cN:\"strong\",b:\"\\\\B\\\\*(?![\\\\*\\\\s])\",e:\"(\\\\n{2}|\\\\*)\",c:[{b:\"\\\\\\\\*\\\\w\",r:0}]},{cN:\"emphasis\",b:\"\\\\B'(?!['\\\\s])\",e:\"(\\\\n{2}|')\",c:[{b:\"\\\\\\\\'\\\\w\",r:0}],r:0},{cN:\"emphasis\",b:\"_(?![_\\\\s])\",e:\"(\\\\n{2}|_)\",r:0},{cN:\"smartquote\",v:[{b:\"``.+?''\"},{b:\"`.+?'\"}]},{cN:\"code\",b:\"(`.+?`|\\\\+.+?\\\\+)\",r:0},{cN:\"code\",b:\"^[ \\\\t]\",e:\"$\",r:0},{cN:\"horizontal_rule\",b:\"^'{3,}[ \\\\t]*$\",r:10},{b:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+\\\\[.*?\\\\]\",rB:!0,c:[{b:\"(link|image:?):\",r:0},{cN:\"link_url\",b:\"\\\\w\",e:\"[^\\\\[]+\",r:0},{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage(\"rsl\",function(e){return{k:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"shader\",bK:\"surface displacement light volume imager\",e:\"\\\\(\"},{cN:\"shading\",bK:\"illuminate illuminance gather\",e:\"\\\\(\"}]}});hljs.registerLanguage(\"fsharp\",function(e){var t={b:\"<\",e:\">\",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:[\"fs\"],k:\"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",i:/\\/\\*/,c:[{cN:\"keyword\",b:/\\b(yield|return|let|do)!/},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),{cN:\"class\",bK:\"type\",e:\"\\\\(|=|$\",eE:!0,c:[e.UTM,t]},{cN:\"annotation\",b:\"\\\\[<\",e:\">\\\\]\",r:10},{cN:\"attribute\",b:\"\\\\B('[A-Za-z])\\\\b\",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/markdown/example.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Markdown Demo</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\n        <link rel=\"stylesheet\" href=\"../../lib/css/zenburn.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n                <!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->\n                <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section>\n\n                <!-- Slides are separated by three dashes (quick 'n dirty regular expression) -->\n                <section data-markdown data-separator=\"---\">\n                    <script type=\"text/template\">\n                        ## Demo 1\n                        Slide 1\n                        ---\n                        ## Demo 1\n                        Slide 2\n                        ---\n                        ## Demo 1\n                        Slide 3\n                    </script>\n                </section>\n\n                <!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n                <section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n                    <script type=\"text/template\">\n                        ## Demo 2\n                        Slide 1.1\n\n                        --\n\n                        ## Demo 2\n                        Slide 1.2\n\n                        ---\n\n                        ## Demo 2\n                        Slide 2\n                    </script>\n                </section>\n\n                <!-- No \"extra\" slides, since there are no separators defined (so they'll become horizontal rulers) -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        A\n\n                        ---\n\n                        B\n\n                        ---\n\n                        C\n                    </script>\n                </section>\n\n                <!-- Slide attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        <!-- .slide: data-background=\"#000000\" -->\n                        ## Slide attributes\n                    </script>\n                </section>\n\n                <!-- Element attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ## Element attributes\n                        - Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n                        - Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n                    </script>\n                </section>\n\n                <!-- Code -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ```php\n                        public function foo()\n                        {\n                            $foo = array(\n                                'bar' => 'bar'\n                            )\n                        }\n                        ```\n                    </script>\n                </section>\n\n            </div>\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcontrols: true,\n\t\t\t\tprogress: true,\n\t\t\t\thistory: true,\n\t\t\t\tcenter: true,\n\n\t\t\t\t// Optional libraries used to extend on reveal.js\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: '../highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: '../notes/notes.js' }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/markdown/example.md",
    "content": "# Markdown Demo\n\n\n\n## External 1.1\n\nContent 1.1\n\nNote: This will only appear in the speaker notes window.\n\n\n## External 1.2\n\nContent 1.2\n\n\n\n## External 2\n\nContent 2.1\n\n\n\n## External 3.1\n\nContent 3.1\n\n\n## External 3.2\n\nContent 3.2\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/markdown/markdown.js",
    "content": "/**\n * The reveal.js markdown plugin. Handles parsing of\n * markdown inside of presentations as well as loading\n * of external markdown documents.\n */\n(function( root, factory ) {\n\tif( typeof exports === 'object' ) {\n\t\tmodule.exports = factory( require( './marked' ) );\n\t}\n\telse {\n\t\t// Browser globals (root is window)\n\t\troot.RevealMarkdown = factory( root.marked );\n\t\troot.RevealMarkdown.initialize();\n\t}\n}( this, function( marked ) {\n\n\tif( typeof marked === 'undefined' ) {\n\t\tthrow 'The reveal.js Markdown plugin requires marked to be loaded';\n\t}\n\n\tif( typeof hljs !== 'undefined' ) {\n\t\tmarked.setOptions({\n\t\t\thighlight: function( lang, code ) {\n\t\t\t\treturn hljs.highlightAuto( lang, code ).value;\n\t\t\t}\n\t\t});\n\t}\n\n\tvar DEFAULT_SLIDE_SEPARATOR = '^\\r?\\n---\\r?\\n$',\n\t\tDEFAULT_NOTES_SEPARATOR = 'note:',\n\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR = '\\\\\\.element\\\\\\s*?(.+?)$',\n\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR = '\\\\\\.slide:\\\\\\s*?(\\\\\\S.+?)$';\n\n\tvar SCRIPT_END_PLACEHOLDER = '__SCRIPT_END__';\n\n\n\t/**\n\t * Retrieves the markdown contents of a slide section\n\t * element. Normalizes leading tabs/whitespace.\n\t */\n\tfunction getMarkdownFromSlide( section ) {\n\n\t\tvar template = section.querySelector( 'script' );\n\n\t\t// strip leading whitespace so it isn't evaluated as code\n\t\tvar text = ( template || section ).textContent;\n\n\t\t// restore script end tags\n\t\ttext = text.replace( new RegExp( SCRIPT_END_PLACEHOLDER, 'g' ), '</script>' );\n\n\t\tvar leadingWs = text.match( /^\\n?(\\s*)/ )[1].length,\n\t\t\tleadingTabs = text.match( /^\\n?(\\t*)/ )[1].length;\n\n\t\tif( leadingTabs > 0 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n?\\\\t{' + leadingTabs + '}','g'), '\\n' );\n\t\t}\n\t\telse if( leadingWs > 1 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n? {' + leadingWs + '}', 'g'), '\\n' );\n\t\t}\n\n\t\treturn text;\n\n\t}\n\n\t/**\n\t * Given a markdown slide section element, this will\n\t * return all arguments that aren't related to markdown\n\t * parsing. Used to forward any other user-defined arguments\n\t * to the output markdown slide.\n\t */\n\tfunction getForwardedAttributes( section ) {\n\n\t\tvar attributes = section.attributes;\n\t\tvar result = [];\n\n\t\tfor( var i = 0, len = attributes.length; i < len; i++ ) {\n\t\t\tvar name = attributes[i].name,\n\t\t\t\tvalue = attributes[i].value;\n\n\t\t\t// disregard attributes that are used for markdown loading/parsing\n\t\t\tif( /data\\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue;\n\n\t\t\tif( value ) {\n\t\t\t\tresult.push( name + '=\"' + value + '\"' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tresult.push( name );\n\t\t\t}\n\t\t}\n\n\t\treturn result.join( ' ' );\n\n\t}\n\n\t/**\n\t * Inspects the given options and fills out default\n\t * values for what's not defined.\n\t */\n\tfunction getSlidifyOptions( options ) {\n\n\t\toptions = options || {};\n\t\toptions.separator = options.separator || DEFAULT_SLIDE_SEPARATOR;\n\t\toptions.notesSeparator = options.notesSeparator || DEFAULT_NOTES_SEPARATOR;\n\t\toptions.attributes = options.attributes || '';\n\n\t\treturn options;\n\n\t}\n\n\t/**\n\t * Helper function for constructing a markdown slide.\n\t */\n\tfunction createMarkdownSlide( content, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar notesMatch = content.split( new RegExp( options.notesSeparator, 'mgi' ) );\n\n\t\tif( notesMatch.length === 2 ) {\n\t\t\tcontent = notesMatch[0] + '<aside class=\"notes\" data-markdown>' + notesMatch[1].trim() + '</aside>';\n\t\t}\n\n\t\t// prevent script end tags in the content from interfering\n\t\t// with parsing\n\t\tcontent = content.replace( /<\\/script>/g, SCRIPT_END_PLACEHOLDER );\n\n\t\treturn '<script type=\"text/template\">' + content + '</script>';\n\n\t}\n\n\t/**\n\t * Parses a data string into multiple slides based\n\t * on the passed in separator arguments.\n\t */\n\tfunction slidify( markdown, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ),\n\t\t\thorizontalSeparatorRegex = new RegExp( options.separator );\n\n\t\tvar matches,\n\t\t\tlastIndex = 0,\n\t\t\tisHorizontal,\n\t\t\twasHorizontal = true,\n\t\t\tcontent,\n\t\t\tsectionStack = [];\n\n\t\t// iterate until all blocks between separators are stacked up\n\t\twhile( matches = separatorRegex.exec( markdown ) ) {\n\t\t\tnotes = null;\n\n\t\t\t// determine direction (horizontal by default)\n\t\t\tisHorizontal = horizontalSeparatorRegex.test( matches[0] );\n\n\t\t\tif( !isHorizontal && wasHorizontal ) {\n\t\t\t\t// create vertical stack\n\t\t\t\tsectionStack.push( [] );\n\t\t\t}\n\n\t\t\t// pluck slide content from markdown input\n\t\t\tcontent = markdown.substring( lastIndex, matches.index );\n\n\t\t\tif( isHorizontal && wasHorizontal ) {\n\t\t\t\t// add to horizontal stack\n\t\t\t\tsectionStack.push( content );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// add to vertical stack\n\t\t\t\tsectionStack[sectionStack.length-1].push( content );\n\t\t\t}\n\n\t\t\tlastIndex = separatorRegex.lastIndex;\n\t\t\twasHorizontal = isHorizontal;\n\t\t}\n\n\t\t// add the remaining slide\n\t\t( wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1] ).push( markdown.substring( lastIndex ) );\n\n\t\tvar markdownSections = '';\n\n\t\t// flatten the hierarchical stack, and insert <section data-markdown> tags\n\t\tfor( var i = 0, len = sectionStack.length; i < len; i++ ) {\n\t\t\t// vertical\n\t\t\tif( sectionStack[i] instanceof Array ) {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +'>';\n\n\t\t\t\tsectionStack[i].forEach( function( child ) {\n\t\t\t\t\tmarkdownSections += '<section data-markdown>' +  createMarkdownSlide( child, options ) + '</section>';\n\t\t\t\t} );\n\n\t\t\t\tmarkdownSections += '</section>';\n\t\t\t}\n\t\t\telse {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +' data-markdown>' + createMarkdownSlide( sectionStack[i], options ) + '</section>';\n\t\t\t}\n\t\t}\n\n\t\treturn markdownSections;\n\n\t}\n\n\t/**\n\t * Parses any current data-markdown slides, splits\n\t * multi-slide markdown into separate sections and\n\t * handles loading of external markdown.\n\t */\n\tfunction processSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]'),\n\t\t\tsection;\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tsection = sections[i];\n\n\t\t\tif( section.getAttribute( 'data-markdown' ).length ) {\n\n\t\t\t\tvar xhr = new XMLHttpRequest(),\n\t\t\t\t\turl = section.getAttribute( 'data-markdown' );\n\n\t\t\t\tdatacharset = section.getAttribute( 'data-charset' );\n\n\t\t\t\t// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes\n\t\t\t\tif( datacharset != null && datacharset != '' ) {\n\t\t\t\t\txhr.overrideMimeType( 'text/html; charset=' + datacharset );\n\t\t\t\t}\n\n\t\t\t\txhr.onreadystatechange = function() {\n\t\t\t\t\tif( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// file protocol yields status code 0 (useful for local debug, mobile applications etc.)\n\t\t\t\t\t\tif ( ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status === 0 ) {\n\n\t\t\t\t\t\t\tsection.outerHTML = slidify( xhr.responseText, {\n\t\t\t\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\tsection.outerHTML = '<section data-state=\"alert\">' +\n\t\t\t\t\t\t\t\t'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' +\n\t\t\t\t\t\t\t\t'Check your browser\\'s JavaScript console for more details.' +\n\t\t\t\t\t\t\t\t'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' +\n\t\t\t\t\t\t\t\t'</section>';\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\txhr.open( 'GET', url, false );\n\n\t\t\t\ttry {\n\t\t\t\t\txhr.send();\n\t\t\t\t}\n\t\t\t\tcatch ( e ) {\n\t\t\t\t\talert( 'Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e );\n\t\t\t\t}\n\n\t\t\t}\n\t\t\telse if( section.getAttribute( 'data-separator' ) || section.getAttribute( 'data-separator-vertical' ) || section.getAttribute( 'data-separator-notes' ) ) {\n\n\t\t\t\tsection.outerHTML = slidify( getMarkdownFromSlide( section ), {\n\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t});\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\tsection.innerHTML = createMarkdownSlide( getMarkdownFromSlide( section ) );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Check if a node value has the attributes pattern.\n\t * If yes, extract it and add that value as one or several attributes\n\t * the the terget element.\n\t *\n\t * You need Cache Killer on Chrome to see the effect on any FOM transformation\n\t * directly on refresh (F5)\n\t * http://stackoverflow.com/questions/5690269/disabling-chrome-cache-for-website-development/7000899#answer-11786277\n\t */\n\tfunction addAttributeInElement( node, elementTarget, separator ) {\n\n\t\tvar mardownClassesInElementsRegex = new RegExp( separator, 'mg' );\n\t\tvar mardownClassRegex = new RegExp( \"([^\\\"= ]+?)=\\\"([^\\\"=]+?)\\\"\", 'mg' );\n\t\tvar nodeValue = node.nodeValue;\n\t\tif( matches = mardownClassesInElementsRegex.exec( nodeValue ) ) {\n\n\t\t\tvar classes = matches[1];\n\t\t\tnodeValue = nodeValue.substring( 0, matches.index ) + nodeValue.substring( mardownClassesInElementsRegex.lastIndex );\n\t\t\tnode.nodeValue = nodeValue;\n\t\t\twhile( matchesClass = mardownClassRegex.exec( classes ) ) {\n\t\t\t\telementTarget.setAttribute( matchesClass[1], matchesClass[2] );\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Add attributes to the parent element of a text node,\n\t * or the element of an attribute node.\n\t */\n\tfunction addAttributes( section, element, previousElement, separatorElementAttributes, separatorSectionAttributes ) {\n\n\t\tif ( element != null && element.childNodes != undefined && element.childNodes.length > 0 ) {\n\t\t\tpreviousParentElement = element;\n\t\t\tfor( var i = 0; i < element.childNodes.length; i++ ) {\n\t\t\t\tchildElement = element.childNodes[i];\n\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\tj = i - 1;\n\t\t\t\t\twhile ( j >= 0 ) {\n\t\t\t\t\t\taPreviousChildElement = element.childNodes[j];\n\t\t\t\t\t\tif ( typeof aPreviousChildElement.setAttribute == 'function' && aPreviousChildElement.tagName != \"BR\" ) {\n\t\t\t\t\t\t\tpreviousParentElement = aPreviousChildElement;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tj = j - 1;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tparentSection = section;\n\t\t\t\tif( childElement.nodeName ==  \"section\" ) {\n\t\t\t\t\tparentSection = childElement ;\n\t\t\t\t\tpreviousParentElement = childElement ;\n\t\t\t\t}\n\t\t\t\tif ( typeof childElement.setAttribute == 'function' || childElement.nodeType == Node.COMMENT_NODE ) {\n\t\t\t\t\taddAttributes( parentSection, childElement, previousParentElement, separatorElementAttributes, separatorSectionAttributes );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( element.nodeType == Node.COMMENT_NODE ) {\n\t\t\tif ( addAttributeInElement( element, previousElement, separatorElementAttributes ) == false ) {\n\t\t\t\taddAttributeInElement( element, section, separatorSectionAttributes );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Converts any current data-markdown slides in the\n\t * DOM to HTML.\n\t */\n\tfunction convertSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]');\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tvar section = sections[i];\n\n\t\t\t// Only parse the same slide once\n\t\t\tif( !section.getAttribute( 'data-markdown-parsed' ) ) {\n\n\t\t\t\tsection.setAttribute( 'data-markdown-parsed', true )\n\n\t\t\t\tvar notes = section.querySelector( 'aside.notes' );\n\t\t\t\tvar markdown = getMarkdownFromSlide( section );\n\n\t\t\t\tsection.innerHTML = marked( markdown );\n\t\t\t\taddAttributes( \tsection, section, null, section.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR,\n\t\t\t\t\t\t\t\tsection.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR);\n\n\t\t\t\t// If there were notes, we need to re-add them after\n\t\t\t\t// having overwritten the section's HTML\n\t\t\t\tif( notes ) {\n\t\t\t\t\tsection.appendChild( notes );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t// API\n\treturn {\n\n\t\tinitialize: function() {\n\t\t\tprocessSlides();\n\t\t\tconvertSlides();\n\t\t},\n\n\t\t// TODO: Do these belong in the API?\n\t\tprocessSlides: processSlides,\n\t\tconvertSlides: convertSlides,\n\t\tslidify: slidify\n\n\t};\n\n}));\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/markdown/marked.js",
    "content": "/**\n * marked - a markdown parser\n * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)\n * https://github.com/chjj/marked\n */\n(function(){function e(e){this.tokens=[],this.tokens.links={},this.options=e||a.defaults,this.rules=p.normal,this.options.gfm&&(this.rules=this.options.tables?p.tables:p.gfm)}function t(e,t){if(this.options=t||a.defaults,this.links=e,this.rules=u.normal,this.renderer=this.options.renderer||new n,this.renderer.options=this.options,!this.links)throw new Error(\"Tokens array requires a `links` property.\");this.options.gfm?this.rules=this.options.breaks?u.breaks:u.gfm:this.options.pedantic&&(this.rules=u.pedantic)}function n(e){this.options=e||{}}function r(e){this.tokens=[],this.token=null,this.options=e||a.defaults,this.options.renderer=this.options.renderer||new n,this.renderer=this.options.renderer,this.renderer.options=this.options}function s(e,t){return e.replace(t?/&/g:/&(?!#?\\w+;)/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\").replace(/'/g,\"&#39;\")}function i(e){return e.replace(/&([#\\w]+);/g,function(e,t){return t=t.toLowerCase(),\"colon\"===t?\":\":\"#\"===t.charAt(0)?String.fromCharCode(\"x\"===t.charAt(1)?parseInt(t.substring(2),16):+t.substring(1)):\"\"})}function l(e,t){return e=e.source,t=t||\"\",function n(r,s){return r?(s=s.source||s,s=s.replace(/(^|[^\\[])\\^/g,\"$1\"),e=e.replace(r,s),n):new RegExp(e,t)}}function o(){}function h(e){for(var t,n,r=1;r<arguments.length;r++){t=arguments[r];for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e}function a(t,n,i){if(i||\"function\"==typeof n){i||(i=n,n=null),n=h({},a.defaults,n||{});var l,o,p=n.highlight,u=0;try{l=e.lex(t,n)}catch(c){return i(c)}o=l.length;var g=function(e){if(e)return n.highlight=p,i(e);var t;try{t=r.parse(l,n)}catch(s){e=s}return n.highlight=p,e?i(e):i(null,t)};if(!p||p.length<3)return g();if(delete n.highlight,!o)return g();for(;u<l.length;u++)!function(e){return\"code\"!==e.type?--o||g():p(e.text,e.lang,function(t,n){return t?g(t):null==n||n===e.text?--o||g():(e.text=n,e.escaped=!0,void(--o||g()))})}(l[u])}else try{return n&&(n=h({},a.defaults,n)),r.parse(e.lex(t,n),n)}catch(c){if(c.message+=\"\\nPlease report this to https://github.com/chjj/marked.\",(n||a.defaults).silent)return\"<p>An error occured:</p><pre>\"+s(c.message+\"\",!0)+\"</pre>\";throw c}}var p={newline:/^\\n+/,code:/^( {4}[^\\n]+\\n*)+/,fences:o,hr:/^( *[-*_]){3,} *(?:\\n+|$)/,heading:/^ *(#{1,6}) *([^\\n]+?) *#* *(?:\\n+|$)/,nptable:o,lheading:/^([^\\n]+)\\n *(=|-){2,} *(?:\\n+|$)/,blockquote:/^( *>[^\\n]+(\\n(?!def)[^\\n]+)*\\n*)+/,list:/^( *)(bull) [\\s\\S]+?(?:hr|def|\\n{2,}(?! )(?!\\1bull )\\n*|\\s*$)/,html:/^ *(?:comment *(?:\\n|\\s*$)|closed *(?:\\n{2,}|\\s*$)|closing *(?:\\n{2,}|\\s*$))/,def:/^ *\\[([^\\]]+)\\]: *<?([^\\s>]+)>?(?: +[\"(]([^\\n]+)[\")])? *(?:\\n+|$)/,table:o,paragraph:/^((?:[^\\n]+\\n?(?!hr|heading|lheading|blockquote|tag|def))+)\\n*/,text:/^[^\\n]+/};p.bullet=/(?:[*+-]|\\d+\\.)/,p.item=/^( *)(bull) [^\\n]*(?:\\n(?!\\1bull )[^\\n]*)*/,p.item=l(p.item,\"gm\")(/bull/g,p.bullet)(),p.list=l(p.list)(/bull/g,p.bullet)(\"hr\",\"\\\\n+(?=\\\\1?(?:[-*_] *){3,}(?:\\\\n+|$))\")(\"def\",\"\\\\n+(?=\"+p.def.source+\")\")(),p.blockquote=l(p.blockquote)(\"def\",p.def)(),p._tag=\"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\\\b)\\\\w+(?!:/|[^\\\\w\\\\s@]*@)\\\\b\",p.html=l(p.html)(\"comment\",/<!--[\\s\\S]*?-->/)(\"closed\",/<(tag)[\\s\\S]+?<\\/\\1>/)(\"closing\",/<tag(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/)(/tag/g,p._tag)(),p.paragraph=l(p.paragraph)(\"hr\",p.hr)(\"heading\",p.heading)(\"lheading\",p.lheading)(\"blockquote\",p.blockquote)(\"tag\",\"<\"+p._tag)(\"def\",p.def)(),p.normal=h({},p),p.gfm=h({},p.normal,{fences:/^ *(`{3,}|~{3,}) *(\\S+)? *\\n([\\s\\S]+?)\\s*\\1 *(?:\\n+|$)/,paragraph:/^/}),p.gfm.paragraph=l(p.paragraph)(\"(?!\",\"(?!\"+p.gfm.fences.source.replace(\"\\\\1\",\"\\\\2\")+\"|\"+p.list.source.replace(\"\\\\1\",\"\\\\3\")+\"|\")(),p.tables=h({},p.gfm,{nptable:/^ *(\\S.*\\|.*)\\n *([-:]+ *\\|[-| :]*)\\n((?:.*\\|.*(?:\\n|$))*)\\n*/,table:/^ *\\|(.+)\\n *\\|( *[-:]+[-| :]*)\\n((?: *\\|.*(?:\\n|$))*)\\n*/}),e.rules=p,e.lex=function(t,n){var r=new e(n);return r.lex(t)},e.prototype.lex=function(e){return e=e.replace(/\\r\\n|\\r/g,\"\\n\").replace(/\\t/g,\"    \").replace(/\\u00a0/g,\" \").replace(/\\u2424/g,\"\\n\"),this.token(e,!0)},e.prototype.token=function(e,t,n){for(var r,s,i,l,o,h,a,u,c,e=e.replace(/^ +$/gm,\"\");e;)if((i=this.rules.newline.exec(e))&&(e=e.substring(i[0].length),i[0].length>1&&this.tokens.push({type:\"space\"})),i=this.rules.code.exec(e))e=e.substring(i[0].length),i=i[0].replace(/^ {4}/gm,\"\"),this.tokens.push({type:\"code\",text:this.options.pedantic?i:i.replace(/\\n+$/,\"\")});else if(i=this.rules.fences.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"code\",lang:i[2],text:i[3]});else if(i=this.rules.heading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:i[1].length,text:i[2]});else if(t&&(i=this.rules.nptable.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].split(/ *\\| */);this.tokens.push(h)}else if(i=this.rules.lheading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:\"=\"===i[2]?1:2,text:i[1]});else if(i=this.rules.hr.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"hr\"});else if(i=this.rules.blockquote.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"blockquote_start\"}),i=i[0].replace(/^ *> ?/gm,\"\"),this.token(i,t,!0),this.tokens.push({type:\"blockquote_end\"});else if(i=this.rules.list.exec(e)){for(e=e.substring(i[0].length),l=i[2],this.tokens.push({type:\"list_start\",ordered:l.length>1}),i=i[0].match(this.rules.item),r=!1,c=i.length,u=0;c>u;u++)h=i[u],a=h.length,h=h.replace(/^ *([*+-]|\\d+\\.) +/,\"\"),~h.indexOf(\"\\n \")&&(a-=h.length,h=this.options.pedantic?h.replace(/^ {1,4}/gm,\"\"):h.replace(new RegExp(\"^ {1,\"+a+\"}\",\"gm\"),\"\")),this.options.smartLists&&u!==c-1&&(o=p.bullet.exec(i[u+1])[0],l===o||l.length>1&&o.length>1||(e=i.slice(u+1).join(\"\\n\")+e,u=c-1)),s=r||/\\n\\n(?!\\s*$)/.test(h),u!==c-1&&(r=\"\\n\"===h.charAt(h.length-1),s||(s=r)),this.tokens.push({type:s?\"loose_item_start\":\"list_item_start\"}),this.token(h,!1,n),this.tokens.push({type:\"list_item_end\"});this.tokens.push({type:\"list_end\"})}else if(i=this.rules.html.exec(e))e=e.substring(i[0].length),this.tokens.push({type:this.options.sanitize?\"paragraph\":\"html\",pre:\"pre\"===i[1]||\"script\"===i[1]||\"style\"===i[1],text:i[0]});else if(!n&&t&&(i=this.rules.def.exec(e)))e=e.substring(i[0].length),this.tokens.links[i[1].toLowerCase()]={href:i[2],title:i[3]};else if(t&&(i=this.rules.table.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/(?: *\\| *)?\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].replace(/^ *\\| *| *\\| *$/g,\"\").split(/ *\\| */);this.tokens.push(h)}else if(t&&(i=this.rules.paragraph.exec(e)))e=e.substring(i[0].length),this.tokens.push({type:\"paragraph\",text:\"\\n\"===i[1].charAt(i[1].length-1)?i[1].slice(0,-1):i[1]});else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"text\",text:i[0]});else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0));return this.tokens};var u={escape:/^\\\\([\\\\`*{}\\[\\]()#+\\-.!_>])/,autolink:/^<([^ >]+(@|:\\/)[^ >]+)>/,url:o,tag:/^<!--[\\s\\S]*?-->|^<\\/?\\w+(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/,link:/^!?\\[(inside)\\]\\(href\\)/,reflink:/^!?\\[(inside)\\]\\s*\\[([^\\]]*)\\]/,nolink:/^!?\\[((?:\\[[^\\]]*\\]|[^\\[\\]])*)\\]/,strong:/^__([\\s\\S]+?)__(?!_)|^\\*\\*([\\s\\S]+?)\\*\\*(?!\\*)/,em:/^\\b_((?:__|[\\s\\S])+?)_\\b|^\\*((?:\\*\\*|[\\s\\S])+?)\\*(?!\\*)/,code:/^(`+)\\s*([\\s\\S]*?[^`])\\s*\\1(?!`)/,br:/^ {2,}\\n(?!\\s*$)/,del:o,text:/^[\\s\\S]+?(?=[\\\\<!\\[_*`]| {2,}\\n|$)/};u._inside=/(?:\\[[^\\]]*\\]|[^\\[\\]]|\\](?=[^\\[]*\\]))*/,u._href=/\\s*<?([\\s\\S]*?)>?(?:\\s+['\"]([\\s\\S]*?)['\"])?\\s*/,u.link=l(u.link)(\"inside\",u._inside)(\"href\",u._href)(),u.reflink=l(u.reflink)(\"inside\",u._inside)(),u.normal=h({},u),u.pedantic=h({},u.normal,{strong:/^__(?=\\S)([\\s\\S]*?\\S)__(?!_)|^\\*\\*(?=\\S)([\\s\\S]*?\\S)\\*\\*(?!\\*)/,em:/^_(?=\\S)([\\s\\S]*?\\S)_(?!_)|^\\*(?=\\S)([\\s\\S]*?\\S)\\*(?!\\*)/}),u.gfm=h({},u.normal,{escape:l(u.escape)(\"])\",\"~|])\")(),url:/^(https?:\\/\\/[^\\s<]+[^<.,:;\"')\\]\\s])/,del:/^~~(?=\\S)([\\s\\S]*?\\S)~~/,text:l(u.text)(\"]|\",\"~]|\")(\"|\",\"|https?://|\")()}),u.breaks=h({},u.gfm,{br:l(u.br)(\"{2,}\",\"*\")(),text:l(u.gfm.text)(\"{2,}\",\"*\")()}),t.rules=u,t.output=function(e,n,r){var s=new t(n,r);return s.output(e)},t.prototype.output=function(e){for(var t,n,r,i,l=\"\";e;)if(i=this.rules.escape.exec(e))e=e.substring(i[0].length),l+=i[1];else if(i=this.rules.autolink.exec(e))e=e.substring(i[0].length),\"@\"===i[2]?(n=this.mangle(\":\"===i[1].charAt(6)?i[1].substring(7):i[1]),r=this.mangle(\"mailto:\")+n):(n=s(i[1]),r=n),l+=this.renderer.link(r,null,n);else if(this.inLink||!(i=this.rules.url.exec(e))){if(i=this.rules.tag.exec(e))!this.inLink&&/^<a /i.test(i[0])?this.inLink=!0:this.inLink&&/^<\\/a>/i.test(i[0])&&(this.inLink=!1),e=e.substring(i[0].length),l+=this.options.sanitize?s(i[0]):i[0];else if(i=this.rules.link.exec(e))e=e.substring(i[0].length),this.inLink=!0,l+=this.outputLink(i,{href:i[2],title:i[3]}),this.inLink=!1;else if((i=this.rules.reflink.exec(e))||(i=this.rules.nolink.exec(e))){if(e=e.substring(i[0].length),t=(i[2]||i[1]).replace(/\\s+/g,\" \"),t=this.links[t.toLowerCase()],!t||!t.href){l+=i[0].charAt(0),e=i[0].substring(1)+e;continue}this.inLink=!0,l+=this.outputLink(i,t),this.inLink=!1}else if(i=this.rules.strong.exec(e))e=e.substring(i[0].length),l+=this.renderer.strong(this.output(i[2]||i[1]));else if(i=this.rules.em.exec(e))e=e.substring(i[0].length),l+=this.renderer.em(this.output(i[2]||i[1]));else if(i=this.rules.code.exec(e))e=e.substring(i[0].length),l+=this.renderer.codespan(s(i[2],!0));else if(i=this.rules.br.exec(e))e=e.substring(i[0].length),l+=this.renderer.br();else if(i=this.rules.del.exec(e))e=e.substring(i[0].length),l+=this.renderer.del(this.output(i[1]));else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),l+=s(this.smartypants(i[0]));else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0))}else e=e.substring(i[0].length),n=s(i[1]),r=n,l+=this.renderer.link(r,null,n);return l},t.prototype.outputLink=function(e,t){var n=s(t.href),r=t.title?s(t.title):null;return\"!\"!==e[0].charAt(0)?this.renderer.link(n,r,this.output(e[1])):this.renderer.image(n,r,s(e[1]))},t.prototype.smartypants=function(e){return this.options.smartypants?e.replace(/--/g,\"—\").replace(/(^|[-\\u2014/(\\[{\"\\s])'/g,\"$1‘\").replace(/'/g,\"’\").replace(/(^|[-\\u2014/(\\[{\\u2018\\s])\"/g,\"$1“\").replace(/\"/g,\"”\").replace(/\\.{3}/g,\"…\"):e},t.prototype.mangle=function(e){for(var t,n=\"\",r=e.length,s=0;r>s;s++)t=e.charCodeAt(s),Math.random()>.5&&(t=\"x\"+t.toString(16)),n+=\"&#\"+t+\";\";return n},n.prototype.code=function(e,t,n){if(this.options.highlight){var r=this.options.highlight(e,t);null!=r&&r!==e&&(n=!0,e=r)}return t?'<pre><code class=\"'+this.options.langPrefix+s(t,!0)+'\">'+(n?e:s(e,!0))+\"\\n</code></pre>\\n\":\"<pre><code>\"+(n?e:s(e,!0))+\"\\n</code></pre>\"},n.prototype.blockquote=function(e){return\"<blockquote>\\n\"+e+\"</blockquote>\\n\"},n.prototype.html=function(e){return e},n.prototype.heading=function(e,t,n){return\"<h\"+t+' id=\"'+this.options.headerPrefix+n.toLowerCase().replace(/[^\\w]+/g,\"-\")+'\">'+e+\"</h\"+t+\">\\n\"},n.prototype.hr=function(){return this.options.xhtml?\"<hr/>\\n\":\"<hr>\\n\"},n.prototype.list=function(e,t){var n=t?\"ol\":\"ul\";return\"<\"+n+\">\\n\"+e+\"</\"+n+\">\\n\"},n.prototype.listitem=function(e){return\"<li>\"+e+\"</li>\\n\"},n.prototype.paragraph=function(e){return\"<p>\"+e+\"</p>\\n\"},n.prototype.table=function(e,t){return\"<table>\\n<thead>\\n\"+e+\"</thead>\\n<tbody>\\n\"+t+\"</tbody>\\n</table>\\n\"},n.prototype.tablerow=function(e){return\"<tr>\\n\"+e+\"</tr>\\n\"},n.prototype.tablecell=function(e,t){var n=t.header?\"th\":\"td\",r=t.align?\"<\"+n+' style=\"text-align:'+t.align+'\">':\"<\"+n+\">\";return r+e+\"</\"+n+\">\\n\"},n.prototype.strong=function(e){return\"<strong>\"+e+\"</strong>\"},n.prototype.em=function(e){return\"<em>\"+e+\"</em>\"},n.prototype.codespan=function(e){return\"<code>\"+e+\"</code>\"},n.prototype.br=function(){return this.options.xhtml?\"<br/>\":\"<br>\"},n.prototype.del=function(e){return\"<del>\"+e+\"</del>\"},n.prototype.link=function(e,t,n){if(this.options.sanitize){try{var r=decodeURIComponent(i(e)).replace(/[^\\w:]/g,\"\").toLowerCase()}catch(s){return\"\"}if(0===r.indexOf(\"javascript:\")||0===r.indexOf(\"vbscript:\"))return\"\"}var l='<a href=\"'+e+'\"';return t&&(l+=' title=\"'+t+'\"'),l+=\">\"+n+\"</a>\"},n.prototype.image=function(e,t,n){var r='<img src=\"'+e+'\" alt=\"'+n+'\"';return t&&(r+=' title=\"'+t+'\"'),r+=this.options.xhtml?\"/>\":\">\"},r.parse=function(e,t,n){var s=new r(t,n);return s.parse(e)},r.prototype.parse=function(e){this.inline=new t(e.links,this.options,this.renderer),this.tokens=e.reverse();for(var n=\"\";this.next();)n+=this.tok();return n},r.prototype.next=function(){return this.token=this.tokens.pop()},r.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},r.prototype.parseText=function(){for(var e=this.token.text;\"text\"===this.peek().type;)e+=\"\\n\"+this.next().text;return this.inline.output(e)},r.prototype.tok=function(){switch(this.token.type){case\"space\":return\"\";case\"hr\":return this.renderer.hr();case\"heading\":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text);case\"code\":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case\"table\":var e,t,n,r,s,i=\"\",l=\"\";for(n=\"\",e=0;e<this.token.header.length;e++)r={header:!0,align:this.token.align[e]},n+=this.renderer.tablecell(this.inline.output(this.token.header[e]),{header:!0,align:this.token.align[e]});for(i+=this.renderer.tablerow(n),e=0;e<this.token.cells.length;e++){for(t=this.token.cells[e],n=\"\",s=0;s<t.length;s++)n+=this.renderer.tablecell(this.inline.output(t[s]),{header:!1,align:this.token.align[s]});l+=this.renderer.tablerow(n)}return this.renderer.table(i,l);case\"blockquote_start\":for(var l=\"\";\"blockquote_end\"!==this.next().type;)l+=this.tok();return this.renderer.blockquote(l);case\"list_start\":for(var l=\"\",o=this.token.ordered;\"list_end\"!==this.next().type;)l+=this.tok();return this.renderer.list(l,o);case\"list_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=\"text\"===this.token.type?this.parseText():this.tok();return this.renderer.listitem(l);case\"loose_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=this.tok();return this.renderer.listitem(l);case\"html\":var h=this.token.pre||this.options.pedantic?this.token.text:this.inline.output(this.token.text);return this.renderer.html(h);case\"paragraph\":return this.renderer.paragraph(this.inline.output(this.token.text));case\"text\":return this.renderer.paragraph(this.parseText())}},o.exec=o,a.options=a.setOptions=function(e){return h(a.defaults,e),a},a.defaults={gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,smartLists:!1,silent:!1,highlight:null,langPrefix:\"lang-\",smartypants:!1,headerPrefix:\"\",renderer:new n,xhtml:!1},a.Parser=r,a.parser=r.parse,a.Renderer=n,a.Lexer=e,a.lexer=e.lex,a.InlineLexer=t,a.inlineLexer=t.output,a.parse=a,\"undefined\"!=typeof module&&\"object\"==typeof exports?module.exports=a:\"function\"==typeof define&&define.amd?define(function(){return a}):this.marked=a}).call(function(){return this||(\"undefined\"!=typeof window?window:global)}());"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/math/math.js",
    "content": "/**\n * A plugin which enables rendering of math equations inside\n * of reveal.js slides. Essentially a thin wrapper for MathJax.\n *\n * @author Hakim El Hattab\n */\nvar RevealMath = window.RevealMath || (function(){\n\n\tvar options = Reveal.getConfig().math || {};\n\toptions.mathjax = options.mathjax || 'https://cdn.mathjax.org/mathjax/latest/MathJax.js';\n\toptions.config = options.config || 'TeX-AMS_HTML-full';\n\n\tloadScript( options.mathjax + '?config=' + options.config, function() {\n\n\t\tMathJax.Hub.Config({\n\t\t\tmessageStyle: 'none',\n\t\t\ttex2jax: {\n\t\t\t\tinlineMath: [['$','$'],['\\\\(','\\\\)']] ,\n\t\t\t\tskipTags: ['script','noscript','style','textarea','pre']\n\t\t\t},\n\t\t\tskipStartupTypeset: true\n\t\t});\n\n\t\t// Typeset followed by an immediate reveal.js layout since\n\t\t// the typesetting process could affect slide height\n\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] );\n\t\tMathJax.Hub.Queue( Reveal.layout );\n\n\t\t// Reprocess equations in slides when they turn visible\n\t\tReveal.addEventListener( 'slidechanged', function( event ) {\n\n\t\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] );\n\n\t\t} );\n\n\t} );\n\n\tfunction loadScript( url, callback ) {\n\n\t\tvar head = document.querySelector( 'head' );\n\t\tvar script = document.createElement( 'script' );\n\t\tscript.type = 'text/javascript';\n\t\tscript.src = url;\n\n\t\t// Wrapper for callback to make sure it only fires once\n\t\tvar finish = function() {\n\t\t\tif( typeof callback === 'function' ) {\n\t\t\t\tcallback.call();\n\t\t\t\tcallback = null;\n\t\t\t}\n\t\t}\n\n\t\tscript.onload = finish;\n\n\t\t// IE\n\t\tscript.onreadystatechange = function() {\n\t\t\tif ( this.readyState === 'loaded' ) {\n\t\t\t\tfinish();\n\t\t\t}\n\t\t}\n\n\t\t// Normal browsers\n\t\thead.appendChild( script );\n\n\t}\n\n})();\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/multiplex/client.js",
    "content": "(function() {\n\tvar multiplex = Reveal.getConfig().multiplex;\n\tvar socketId = multiplex.id;\n\tvar socket = io.connect(multiplex.url);\n\n\tsocket.on(multiplex.id, function(data) {\n\t\t// ignore data from sockets that aren't ours\n\t\tif (data.socketId !== socketId) { return; }\n\t\tif( window.location.host === 'localhost:1947' ) return;\n\n\t\tReveal.setState(data.state);\n\t});\n}());\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/multiplex/index.js",
    "content": "var http        = require('http');\nvar express\t\t= require('express');\nvar fs\t\t\t= require('fs');\nvar io\t\t\t= require('socket.io');\nvar crypto\t\t= require('crypto');\n\nvar app       \t= express();\nvar staticDir \t= express.static;\nvar server    \t= http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport: process.env.PORT || 1948,\n\tbaseDir : __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\tsocket.on('multiplex-statechanged', function(data) {\n\t\tif (typeof data.secret == 'undefined' || data.secret == null || data.secret === '') return;\n\t\tif (createHash(data.secret) === data.socketId) {\n\t\t\tdata.secret = null;\n\t\t\tsocket.broadcast.emit(data.socketId, data);\n\t\t};\n\t});\n});\n\n[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {\n\tapp.use('/' + dir, staticDir(opts.baseDir + dir));\n});\n\napp.get(\"/\", function(req, res) {\n\tres.writeHead(200, {'Content-Type': 'text/html'});\n\tfs.createReadStream(opts.baseDir + '/index.html').pipe(res);\n});\n\napp.get(\"/token\", function(req,res) {\n\tvar ts = new Date().getTime();\n\tvar rand = Math.floor(Math.random()*9999999);\n\tvar secret = ts.toString() + rand.toString();\n\tres.send({secret: secret, socketId: createHash(secret)});\n});\n\nvar createHash = function(secret) {\n\tvar cipher = crypto.createCipher('blowfish', secret);\n\treturn(cipher.final('hex'));\n};\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nconsole.log( brown + \"reveal.js:\" + reset + \" Multiplex running on port \" + green + opts.port + reset );"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/multiplex/master.js",
    "content": "(function() {\n\n\t// Don't emit events from inside of notes windows\n\tif ( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar multiplex = Reveal.getConfig().multiplex;\n\n\tvar socket = io.connect( multiplex.url );\n\n\tfunction post() {\n\n\t\tvar messageData = {\n\t\t\tstate: Reveal.getState(),\n\t\t\tsecret: multiplex.secret,\n\t\t\tsocketId: multiplex.id\n\t\t};\n\n\t\tsocket.emit( 'multiplex-statechanged', messageData );\n\n\t};\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n}());"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/notes/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\t\t\t\toverflow: auto;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"../../plugin/markdown/marked.js\"></script>\n\t\t<script>\n\n\t\t\t(function() {\n\n\t\t\t\tvar notes,\n\t\t\t\t\tnotesValue,\n\t\t\t\t\tcurrentState,\n\t\t\t\t\tcurrentSlide,\n\t\t\t\t\tupcomingSlide,\n\t\t\t\t\tconnected = false;\n\n\t\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\t\t// Messages sent by the notes plugin inside of the main window\n\t\t\t\t\tif( data && data.namespace === 'reveal-notes' ) {\n\t\t\t\t\t\tif( data.type === 'connect' ) {\n\t\t\t\t\t\t\thandleConnectMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( data.type === 'state' ) {\n\t\t\t\t\t\t\thandleStateMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Messages sent by the reveal.js inside of the current slide preview\n\t\t\t\t\telse if( data && data.namespace === 'reveal' ) {\n\t\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\t\t// Send a message back to notify that the handshake is complete\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ namespace: 'reveal-notes', type: 'connected'} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ]} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window is trying to establish a\n\t\t\t\t * connection.\n\t\t\t\t */\n\t\t\t\tfunction handleConnectMessage( data ) {\n\n\t\t\t\t\tif( connected === false ) {\n\t\t\t\t\t\tconnected = true;\n\n\t\t\t\t\t\tsetupIframes( data );\n\t\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\t\tsetupNotes();\n\t\t\t\t\t\tsetupTimer();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window sends an updated state.\n\t\t\t\t */\n\t\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t\t// applying the same state\n\t\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\t\tif ( data.notes ) {\n\t\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\t\tnotesValue.style.whiteSpace = data.whitespace;\n\t\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update the note slides\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t\t}\n\n\t\t\t\t// Limit to max one state update per X ms\n\t\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t\t/**\n\t\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t\t * This enables keyboard events to work even if focus\n\t\t\t\t * isn't set on the current slide iframe.\n\t\t\t\t */\n\t\t\t\tfunction setupKeyboard() {\n\n\t\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Creates the preview iframes.\n\t\t\t\t */\n\t\t\t\tfunction setupIframes( data ) {\n\n\t\t\t\t\tvar params = [\n\t\t\t\t\t\t'receiver',\n\t\t\t\t\t\t'progress=false',\n\t\t\t\t\t\t'history=false',\n\t\t\t\t\t\t'transition=none',\n\t\t\t\t\t\t'autoSlide=0',\n\t\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t\t].join( '&' );\n\n\t\t\t\t\tvar hash = '#/' + data.state.indexh + '/' + data.state.indexv;\n\t\t\t\t\tvar currentURL = data.url + '?' + params + '&postMessageEvents=true' + hash;\n\t\t\t\t\tvar upcomingURL = data.url + '?' + params + '&controls=false' + hash;\n\n\t\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Setup the notes UI.\n\t\t\t\t */\n\t\t\t\tfunction setupNotes() {\n\n\t\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Create the timer and clock and start updating them\n\t\t\t\t * at an interval.\n\t\t\t\t */\n\t\t\t\tfunction setupTimer() {\n\n\t\t\t\t\tvar start = new Date(),\n\t\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update once directly\n\t\t\t\t\t_updateTimer();\n\n\t\t\t\t\t// Then update every second\n\t\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\t\tstart = new Date();\n\t\t\t\t\t\t_updateTimer();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t\t */\n\t\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\t\tvar lastTime = 0,\n\t\t\t\t\t\ttimeout;\n\n\t\t\t\t\treturn function() {\n\n\t\t\t\t\t\tvar args = arguments;\n\t\t\t\t\t\tvar context = this;\n\n\t\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t})();\n\n\t\t</script>\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/notes/notes.js",
    "content": "/**\n * Handles opening of and synchronization with the reveal.js\n * notes window.\n *\n * Handshake process:\n * 1. This window posts 'connect' to notes window\n *    - Includes URL of presentation to show\n * 2. Notes window responds with 'connected' when it is available\n * 3. This window proceeds to send the current presentation state\n *    to the notes window\n */\nvar RevealNotes = (function() {\n\n\tfunction openNotes() {\n\t\tvar jsFileLocation = document.querySelector('script[src$=\"notes.js\"]').src;  // this js file path\n\t\tjsFileLocation = jsFileLocation.replace(/notes\\.js(\\?.*)?$/, '');   // the js folder path\n\t\tvar notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1100,height=700' );\n\n\t\t/**\n\t\t * Connect to the notes window through a postmessage handshake.\n\t\t * Using postmessage enables us to work in situations where the\n\t\t * origins differ, such as a presentation being opened from the\n\t\t * file system.\n\t\t */\n\t\tfunction connect() {\n\t\t\t// Keep trying to connect until we get a 'connected' message back\n\t\t\tvar connectInterval = setInterval( function() {\n\t\t\t\tnotesPopup.postMessage( JSON.stringify( {\n\t\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\t\ttype: 'connect',\n\t\t\t\t\turl: window.location.protocol + '//' + window.location.host + window.location.pathname + window.location.search,\n\t\t\t\t\tstate: Reveal.getState()\n\t\t\t\t} ), '*' );\n\t\t\t}, 500 );\n\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\t\t\t\tvar data = JSON.parse( event.data );\n\t\t\t\tif( data && data.namespace === 'reveal-notes' && data.type === 'connected' ) {\n\t\t\t\t\tclearInterval( connectInterval );\n\t\t\t\t\tonConnected();\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t/**\n\t\t * Posts the current slide data to the notes window\n\t\t */\n\t\tfunction post() {\n\n\t\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\t\tvar messageData = {\n\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\ttype: 'state',\n\t\t\t\tnotes: '',\n\t\t\t\tmarkdown: false,\n\t\t\t\twhitespace: 'normal',\n\t\t\t\tstate: Reveal.getState()\n\t\t\t};\n\n\t\t\t// Look for notes defined in a slide attribute\n\t\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t\t\tmessageData.whitespace = 'pre-wrap';\n\t\t\t}\n\n\t\t\t// Look for notes defined in an aside element\n\t\t\tif( notesElement ) {\n\t\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t\t}\n\n\t\t\tnotesPopup.postMessage( JSON.stringify( messageData ), '*' );\n\n\t\t}\n\n\t\t/**\n\t\t * Called once we have established a connection to the notes\n\t\t * window.\n\t\t */\n\t\tfunction onConnected() {\n\n\t\t\t// Monitor events that trigger a change in state\n\t\t\tReveal.addEventListener( 'slidechanged', post );\n\t\t\tReveal.addEventListener( 'fragmentshown', post );\n\t\t\tReveal.addEventListener( 'fragmenthidden', post );\n\t\t\tReveal.addEventListener( 'overviewhidden', post );\n\t\t\tReveal.addEventListener( 'overviewshown', post );\n\t\t\tReveal.addEventListener( 'paused', post );\n\t\t\tReveal.addEventListener( 'resumed', post );\n\n\t\t\t// Post the initial state\n\t\t\tpost();\n\n\t\t}\n\n\t\tconnect();\n\t}\n\n\tif( !/receiver/i.test( window.location.search ) ) {\n\n\t\t// If the there's a 'notes' query set, open directly\n\t\tif( window.location.search.match( /(\\?|\\&)notes/gi ) !== null ) {\n\t\t\topenNotes();\n\t\t}\n\n\t\t// Open the notes when the 's' key is hit\n\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t// Disregard the event if the target is editable or a\n\t\t\t// modifier is present\n\t\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t\t// Disregard the event if keyboard is disabled\n\t\t\tif ( Reveal.getConfig().keyboard === false ) return;\n\n\t\t\tif( event.keyCode === 83 ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\topenNotes();\n\t\t\t}\n\t\t}, false );\n\n\t}\n\n\treturn { open: openNotes };\n\n})();\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/notes-server/client.js",
    "content": "(function() {\n\n\t// don't emit events from inside the previews themselves\n\tif( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar socket = io.connect( window.location.origin ),\n\t\tsocketId = Math.random().toString().slice( 2 );\n\n\tconsole.log( 'View slide notes at ' + window.location.origin + '/notes/' + socketId );\n\n\twindow.open( window.location.origin + '/notes/' + socketId, 'notes-' + socketId );\n\n\t/**\n\t * Posts the current slide data to the notes window\n\t */\n\tfunction post() {\n\n\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\tvar messageData = {\n\t\t\tnotes: '',\n\t\t\tmarkdown: false,\n\t\t\tsocketId: socketId,\n\t\t\tstate: Reveal.getState()\n\t\t};\n\n\t\t// Look for notes defined in a slide attribute\n\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// Look for notes defined in an aside element\n\t\tif( notesElement ) {\n\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t}\n\n\t\tsocket.emit( 'statechanged', messageData );\n\n\t}\n\n\t// When a new notes window connects, post our current state\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tpost();\n\t} );\n\n\t// When the state changes from inside of the speaker view\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tReveal.setState( data.state );\n\t} );\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n\t// Post the initial state\n\tpost();\n\n}());\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/notes-server/index.js",
    "content": "var http      = require('http');\nvar express   = require('express');\nvar fs        = require('fs');\nvar io        = require('socket.io');\nvar _         = require('underscore');\nvar Mustache  = require('mustache');\n\nvar app       = express();\nvar staticDir = express.static;\nvar server    = http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport :      1947,\n\tbaseDir :   __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tsocket.broadcast.emit( 'new-subscriber', data );\n\t});\n\n\tsocket.on( 'statechanged', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged', data );\n\t});\n\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged-speaker', data );\n\t});\n\n});\n\n[ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) {\n\tapp.use( '/' + dir, staticDir( opts.baseDir + dir ) );\n});\n\napp.get('/', function( req, res ) {\n\n\tres.writeHead( 200, { 'Content-Type': 'text/html' } );\n\tfs.createReadStream( opts.baseDir + '/index.html' ).pipe( res );\n\n});\n\napp.get( '/notes/:socketId', function( req, res ) {\n\n\tfs.readFile( opts.baseDir + 'plugin/notes-server/notes.html', function( err, data ) {\n\t\tres.send( Mustache.to_html( data.toString(), {\n\t\t\tsocketId : req.params.socketId\n\t\t}));\n\t});\n\n});\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nvar slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : '' );\n\nconsole.log( brown + 'reveal.js - Speaker Notes' + reset );\nconsole.log( '1. Open the slides at ' + green + slidesLocation + reset );\nconsole.log( '2. Click on the link your JS console to go to the notes page' );\nconsole.log( '3. Advance through your slides and your notes will advance automatically' );\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/notes-server/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"/socket.io/socket.io.js\"></script>\n\t\t<script src=\"/plugin/markdown/marked.js\"></script>\n\n\t\t<script>\n\t\t(function() {\n\n\t\t\tvar notes,\n\t\t\t\tnotesValue,\n\t\t\t\tcurrentState,\n\t\t\t\tcurrentSlide,\n\t\t\t\tupcomingSlide,\n\t\t\t\tconnected = false;\n\n\t\t\tvar socket = io.connect( window.location.origin ),\n\t\t\t\tsocketId = '{{socketId}}';\n\n\t\t\tsocket.on( 'statechanged', function( data ) {\n\n\t\t\t\t// ignore data from sockets that aren't ours\n\t\t\t\tif( data.socketId !== socketId ) { return; }\n\n\t\t\t\tif( connected === false ) {\n\t\t\t\t\tconnected = true;\n\n\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\tsetupNotes();\n\t\t\t\t\tsetupTimer();\n\n\t\t\t\t}\n\n\t\t\t\thandleStateMessage( data );\n\n\t\t\t} );\n\n\t\t\t// Load our presentation iframes\n\t\t\tsetupIframes();\n\n\t\t\t// Once the iframes have loaded, emit a signal saying there's\n\t\t\t// a new subscriber which will trigger a 'statechanged'\n\t\t\t// message to be sent back\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\tsocket.emit( 'new-subscriber', { socketId: socketId } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Messages sent by reveal.js inside of the current slide preview\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\tsocket.emit( 'statechanged-speaker', { state: data.state } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t/**\n\t\t\t * Called when the main window sends an updated state.\n\t\t\t */\n\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t// applying the same state\n\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\tif ( data.notes ) {\n\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t}\n\n\t\t\t\t// Update the note slides\n\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t}\n\n\t\t\t// Limit to max one state update per X ms\n\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t/**\n\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t * This enables keyboard events to work even if focus\n\t\t\t * isn't set on the current slide iframe.\n\t\t\t */\n\t\t\tfunction setupKeyboard() {\n\n\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Creates the preview iframes.\n\t\t\t */\n\t\t\tfunction setupIframes() {\n\n\t\t\t\tvar params = [\n\t\t\t\t\t'receiver',\n\t\t\t\t\t'progress=false',\n\t\t\t\t\t'history=false',\n\t\t\t\t\t'transition=none',\n\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t].join( '&' );\n\n\t\t\t\tvar currentURL = '/?' + params + '&postMessageEvents=true';\n\t\t\t\tvar upcomingURL = '/?' + params + '&controls=false';\n\n\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Setup the notes UI.\n\t\t\t */\n\t\t\tfunction setupNotes() {\n\n\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Create the timer and clock and start updating them\n\t\t\t * at an interval.\n\t\t\t */\n\t\t\tfunction setupTimer() {\n\n\t\t\t\tvar start = new Date(),\n\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t}\n\n\t\t\t\t// Update once directly\n\t\t\t\t_updateTimer();\n\n\t\t\t\t// Then update every second\n\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\tstart = new Date();\n\t\t\t\t\t_updateTimer();\n\t\t\t\t\treturn false;\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t */\n\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\tvar lastTime = 0,\n\t\t\t\t\ttimeout;\n\n\t\t\t\treturn function() {\n\n\t\t\t\t\tvar args = arguments;\n\t\t\t\t\tvar context = this;\n\n\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t})();\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/print-pdf/print-pdf.js",
    "content": "/**\n * phantomjs script for printing presentations to PDF.\n *\n * Example:\n * phantomjs print-pdf.js \"http://lab.hakim.se/reveal-js?print-pdf\" reveal-demo.pdf\n *\n * By Manuel Bieh (https://github.com/manuelbieh)\n */\n\n// html2pdf.js\nvar page = new WebPage();\nvar system = require( 'system' );\n\nvar slideWidth = system.args[3] ? system.args[3].split( 'x' )[0] : 960;\nvar slideHeight = system.args[3] ? system.args[3].split( 'x' )[1] : 700;\n\npage.viewportSize = {\n\twidth: slideWidth,\n\theight: slideHeight\n};\n\n// TODO\n// Something is wrong with these config values. An input\n// paper width of 1920px actually results in a 756px wide\n// PDF.\npage.paperSize = {\n\twidth: Math.round( slideWidth * 2 ),\n\theight: Math.round( slideHeight * 2 ),\n\tborder: 0\n};\n\nvar inputFile = system.args[1] || 'index.html?print-pdf';\nvar outputFile = system.args[2] || 'slides.pdf';\n\nif( outputFile.match( /\\.pdf$/gi ) === null ) {\n\toutputFile += '.pdf';\n}\n\nconsole.log( 'Printing PDF (Paper size: '+ page.paperSize.width + 'x' + page.paperSize.height +')' );\n\npage.open( inputFile, function( status ) {\n\twindow.setTimeout( function() {\n\t\tconsole.log( 'Printed succesfully' );\n\t\tpage.render( outputFile );\n\t\tphantom.exit();\n\t}, 1000 );\n} );\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/search/search.js",
    "content": "/*\n * Handles finding a text string anywhere in the slides and showing the next occurrence to the user\n * by navigatating to that slide and highlighting it.\n *\n * By Jon Snyder <snyder.jon@gmail.com>, February 2013\n */\n\nvar RevealSearch = (function() {\n\n\tvar matchedSlides;\n\tvar currentMatchedIndex;\n\tvar searchboxDirty;\n\tvar myHilitor;\n\n// Original JavaScript code by Chirp Internet: www.chirp.com.au\n// Please acknowledge use of this code by including this header.\n// 2/2013 jon: modified regex to display any match, not restricted to word boundaries.\n\nfunction Hilitor(id, tag)\n{\n\n  var targetNode = document.getElementById(id) || document.body;\n  var hiliteTag = tag || \"EM\";\n  var skipTags = new RegExp(\"^(?:\" + hiliteTag + \"|SCRIPT|FORM|SPAN)$\");\n  var colors = [\"#ff6\", \"#a0ffff\", \"#9f9\", \"#f99\", \"#f6f\"];\n  var wordColor = [];\n  var colorIdx = 0;\n  var matchRegex = \"\";\n  var matchingSlides = [];\n\n  this.setRegex = function(input)\n  {\n    input = input.replace(/^[^\\w]+|[^\\w]+$/g, \"\").replace(/[^\\w'-]+/g, \"|\");\n    matchRegex = new RegExp(\"(\" + input + \")\",\"i\");\n  }\n\n  this.getRegex = function()\n  {\n    return matchRegex.toString().replace(/^\\/\\\\b\\(|\\)\\\\b\\/i$/g, \"\").replace(/\\|/g, \" \");\n  }\n\n  // recursively apply word highlighting\n  this.hiliteWords = function(node)\n  {\n    if(node == undefined || !node) return;\n    if(!matchRegex) return;\n    if(skipTags.test(node.nodeName)) return;\n\n    if(node.hasChildNodes()) {\n      for(var i=0; i < node.childNodes.length; i++)\n        this.hiliteWords(node.childNodes[i]);\n    }\n    if(node.nodeType == 3) { // NODE_TEXT\n      if((nv = node.nodeValue) && (regs = matchRegex.exec(nv))) {\n      \t//find the slide's section element and save it in our list of matching slides\n      \tvar secnode = node.parentNode;\n      \twhile (secnode.nodeName != 'SECTION') {\n      \t\tsecnode = secnode.parentNode;\n      \t}\n      \t\n      \tvar slideIndex = Reveal.getIndices(secnode);\n      \tvar slidelen = matchingSlides.length;\n      \tvar alreadyAdded = false;\n      \tfor (var i=0; i < slidelen; i++) {\n      \t\tif ( (matchingSlides[i].h === slideIndex.h) && (matchingSlides[i].v === slideIndex.v) ) {\n      \t\t\talreadyAdded = true;\n      \t\t}\n      \t}\n      \tif (! alreadyAdded) {\n      \t\tmatchingSlides.push(slideIndex);\n      \t}\n      \t\n        if(!wordColor[regs[0].toLowerCase()]) {\n          wordColor[regs[0].toLowerCase()] = colors[colorIdx++ % colors.length];\n        }\n\n        var match = document.createElement(hiliteTag);\n        match.appendChild(document.createTextNode(regs[0]));\n        match.style.backgroundColor = wordColor[regs[0].toLowerCase()];\n        match.style.fontStyle = \"inherit\";\n        match.style.color = \"#000\";\n\n        var after = node.splitText(regs.index);\n        after.nodeValue = after.nodeValue.substring(regs[0].length);\n        node.parentNode.insertBefore(match, after);\n      }\n    }\n  };\n\n  // remove highlighting\n  this.remove = function()\n  {\n    var arr = document.getElementsByTagName(hiliteTag);\n    while(arr.length && (el = arr[0])) {\n      el.parentNode.replaceChild(el.firstChild, el);\n    }\n  };\n\n  // start highlighting at target node\n  this.apply = function(input)\n  {\n    if(input == undefined || !input) return;\n    this.remove();\n    this.setRegex(input);\n    this.hiliteWords(targetNode);\n    return matchingSlides;\n  };\n\n}\n\n\tfunction openSearch() {\n\t\t//ensure the search term input dialog is visible and has focus:\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tinputbox.style.display = \"inline\";\n\t\tinputbox.focus();\n\t\tinputbox.select();\n\t}\n\n\tfunction toggleSearch() {\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tif (inputbox.style.display !== \"inline\") {\n\t\t\topenSearch();\n\t\t}\n\t\telse {\n\t\t\tinputbox.style.display = \"none\";\n\t\t\tmyHilitor.remove();\n\t\t}\n\t}\n\n\tfunction doSearch() {\n\t\t//if there's been a change in the search term, perform a new search:\n\t\tif (searchboxDirty) {\n\t\t\tvar searchstring = document.getElementById(\"searchinput\").value;\n\n\t\t\t//find the keyword amongst the slides\n\t\t\tmyHilitor = new Hilitor(\"slidecontent\");\n\t\t\tmatchedSlides = myHilitor.apply(searchstring);\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\n\t\t//navigate to the next slide that has the keyword, wrapping to the first if necessary\n\t\tif (matchedSlides.length && (matchedSlides.length <= currentMatchedIndex)) {\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\t\tif (matchedSlides.length > currentMatchedIndex) {\n\t\t\tReveal.slide(matchedSlides[currentMatchedIndex].h, matchedSlides[currentMatchedIndex].v);\n\t\t\tcurrentMatchedIndex++;\n\t\t}\n\t}\n\n\tvar dom = {};\n\tdom.wrapper = document.querySelector( '.reveal' );\n\n\tif( !dom.wrapper.querySelector( '.searchbox' ) ) {\n\t\t\tvar searchElement = document.createElement( 'div' );\n\t\t\tsearchElement.id = \"searchinputdiv\";\n\t\t\tsearchElement.classList.add( 'searchdiv' );\n      searchElement.style.position = 'absolute';\n      searchElement.style.top = '10px';\n      searchElement.style.left = '10px';\n      //embedded base64 search icon Designed by Sketchdock - http://www.sketchdock.com/:\n\t\t\tsearchElement.innerHTML = '<span><input type=\"search\" id=\"searchinput\" class=\"searchinput\" style=\"vertical-align: top;\"/><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJiSURBVHjatFZNaxNBGH5md+Mmu92NVdKDRipSAyqCghgQD4L4cRe86UUtAQ+eFCxoa4/25EXBFi8eBE+eRPoDhB6KgiiixdAPCEkx2pjvTXadd9yNsflwuyUDD/O+u8PzzDPvzOwyx3EwyCZhwG3gAkp7MnpjgbopjsltcD4gjuXZZKeAR348MYLYTm3LzOs/y3j3JTfZxgXWXmTuwPHIc4VmoOmv5IrI53+AO2DdHLjkDWQ3GoEEVFXtXQOvkSnPWcyUceviLhwbDYv8/XIVj97kse7TodLvZXxYxrPUHkQ1ufXs3FEdybEIxucySOesoNvUgWU1cP3MkCBfTFdw9fGaAMVmRELq7LBw2Q3/FaAxxWIRpw+ZIr/7IouPqzUBiqmdHAv7EuhRAwf1er2Vy4x1jW3b2d5Jfvu5IPp7l2LYbcgCFFNb+FoJ7oBqEAqFMPNqFcmEgVMJDfMT+1tvN0pNjERlMS6QA5pFOKxiKVPFhakPeL3It+WGJUDxt2wFR+JhzI7v5ctkd8DXOZAkCYYxhO+lKm4+Xfqz/rIixBuNBl7eOYzkQQNzqX249mRl6zUgEcYkaJrGhUwBinVdh6IouPzwE6/DL5w4oLkH8y981aDf+uq6hlKpJESiUdNfDZi7/ehG9K6KfiA3pml0PLcsq+cSMTj2NL9ukc4UOmz7AZ3+crkC4mHujFvXNaMFB3bEr8xPS6p5O+jXxq4VZtaen7/PwzrntjcLUE0iHPS1Ud1cdiEJl/8WivZk0wXd7zWOMkeF8s0CcAmkNrC2nvXZDbbbN73ccYnZoH9bfgswAFzAe9/h3dbKAAAAAElFTkSuQmCC\" id=\"searchbutton\" class=\"searchicon\" style=\"vertical-align: top; margin-top: -1px;\"/></span>';\n\t\t\tdom.wrapper.appendChild( searchElement );\n\t}\n\n\tdocument.getElementById(\"searchbutton\").addEventListener( 'click', function(event) {\n\t\tdoSearch();\n\t}, false );\n\n\tdocument.getElementById(\"searchinput\").addEventListener( 'keyup', function( event ) {\n\t\tswitch (event.keyCode) {\n\t\t\tcase 13:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tdoSearch();\n\t\t\t\tsearchboxDirty = false;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tsearchboxDirty = true;\n\t\t}\n\t}, false );\n\n\t// Open the search when the 's' key is hit (yes, this conflicts with the notes plugin, disabling for now)\n\t/*\n\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t// Disregard the event if the target is editable or a\n\t\t// modifier is present\n\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\tif( event.keyCode === 83 ) {\n\t\t\tevent.preventDefault();\n\t\t\topenSearch();\n\t\t}\n\t}, false );\n*/\n\treturn { open: openSearch };\n})();\n"
  },
  {
    "path": "doc/meetingcpp-2016/plugin/zoom-js/zoom.js",
    "content": "// Custom reveal.js integration\n(function(){\n\tvar isEnabled = true;\n\n\tdocument.querySelector( '.reveal .slides' ).addEventListener( 'mousedown', function( event ) {\n\t\tvar modifier = ( Reveal.getConfig().zoomKey ? Reveal.getConfig().zoomKey : 'alt' ) + 'Key';\n\n\t\tvar zoomPadding = 20;\n\t\tvar revealScale = Reveal.getScale();\n\n\t\tif( event[ modifier ] && isEnabled ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar bounds = event.target.getBoundingClientRect();\n\n\t\t\tzoom.to({\n\t\t\t\tx: ( bounds.left * revealScale ) - zoomPadding,\n\t\t\t\ty: ( bounds.top * revealScale ) - zoomPadding,\n\t\t\t\twidth: ( bounds.width * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\theight: ( bounds.height * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\tpan: false\n\t\t\t});\n\t\t}\n\t} );\n\n\tReveal.addEventListener( 'overviewshown', function() { isEnabled = false; } );\n\tReveal.addEventListener( 'overviewhidden', function() { isEnabled = true; } );\n})();\n\n/*!\n * zoom.js 0.3 (modified for use with reveal.js)\n * http://lab.hakim.se/zoom-js\n * MIT licensed\n *\n * Copyright (C) 2011-2014 Hakim El Hattab, http://hakim.se\n */\nvar zoom = (function(){\n\n\t// The current zoom level (scale)\n\tvar level = 1;\n\n\t// The current mouse position, used for panning\n\tvar mouseX = 0,\n\t\tmouseY = 0;\n\n\t// Timeout before pan is activated\n\tvar panEngageTimeout = -1,\n\t\tpanUpdateInterval = -1;\n\n\t// Check for transform support so that we can fallback otherwise\n\tvar supportsTransforms = \t'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\tif( supportsTransforms ) {\n\t\t// The easing that will be applied when we zoom in/out\n\t\tdocument.body.style.transition = 'transform 0.8s ease';\n\t\tdocument.body.style.OTransition = '-o-transform 0.8s ease';\n\t\tdocument.body.style.msTransition = '-ms-transform 0.8s ease';\n\t\tdocument.body.style.MozTransition = '-moz-transform 0.8s ease';\n\t\tdocument.body.style.WebkitTransition = '-webkit-transform 0.8s ease';\n\t}\n\n\t// Zoom out if the user hits escape\n\tdocument.addEventListener( 'keyup', function( event ) {\n\t\tif( level !== 1 && event.keyCode === 27 ) {\n\t\t\tzoom.out();\n\t\t}\n\t} );\n\n\t// Monitor mouse movement for panning\n\tdocument.addEventListener( 'mousemove', function( event ) {\n\t\tif( level !== 1 ) {\n\t\t\tmouseX = event.clientX;\n\t\t\tmouseY = event.clientY;\n\t\t}\n\t} );\n\n\t/**\n\t * Applies the CSS required to zoom in, prefers the use of CSS3\n\t * transforms but falls back on zoom for IE.\n\t *\n\t * @param {Object} rect\n\t * @param {Number} scale\n\t */\n\tfunction magnify( rect, scale ) {\n\n\t\tvar scrollOffset = getScrollOffset();\n\n\t\t// Ensure a width/height is set\n\t\trect.width = rect.width || 1;\n\t\trect.height = rect.height || 1;\n\n\t\t// Center the rect within the zoomed viewport\n\t\trect.x -= ( window.innerWidth - ( rect.width * scale ) ) / 2;\n\t\trect.y -= ( window.innerHeight - ( rect.height * scale ) ) / 2;\n\n\t\tif( supportsTransforms ) {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.transform = '';\n\t\t\t\tdocument.body.style.OTransform = '';\n\t\t\t\tdocument.body.style.msTransform = '';\n\t\t\t\tdocument.body.style.MozTransform = '';\n\t\t\t\tdocument.body.style.WebkitTransform = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tvar origin = scrollOffset.x +'px '+ scrollOffset.y +'px',\n\t\t\t\t\ttransform = 'translate('+ -rect.x +'px,'+ -rect.y +'px) scale('+ scale +')';\n\n\t\t\t\tdocument.body.style.transformOrigin = origin;\n\t\t\t\tdocument.body.style.OTransformOrigin = origin;\n\t\t\t\tdocument.body.style.msTransformOrigin = origin;\n\t\t\t\tdocument.body.style.MozTransformOrigin = origin;\n\t\t\t\tdocument.body.style.WebkitTransformOrigin = origin;\n\n\t\t\t\tdocument.body.style.transform = transform;\n\t\t\t\tdocument.body.style.OTransform = transform;\n\t\t\t\tdocument.body.style.msTransform = transform;\n\t\t\t\tdocument.body.style.MozTransform = transform;\n\t\t\t\tdocument.body.style.WebkitTransform = transform;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.position = '';\n\t\t\t\tdocument.body.style.left = '';\n\t\t\t\tdocument.body.style.top = '';\n\t\t\t\tdocument.body.style.width = '';\n\t\t\t\tdocument.body.style.height = '';\n\t\t\t\tdocument.body.style.zoom = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tdocument.body.style.position = 'relative';\n\t\t\t\tdocument.body.style.left = ( - ( scrollOffset.x + rect.x ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.top = ( - ( scrollOffset.y + rect.y ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.width = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.height = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.zoom = scale;\n\t\t\t}\n\t\t}\n\n\t\tlevel = scale;\n\n\t\tif( document.documentElement.classList ) {\n\t\t\tif( level !== 1 ) {\n\t\t\t\tdocument.documentElement.classList.add( 'zoomed' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdocument.documentElement.classList.remove( 'zoomed' );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Pan the document when the mosue cursor approaches the edges\n\t * of the window.\n\t */\n\tfunction pan() {\n\t\tvar range = 0.12,\n\t\t\trangeX = window.innerWidth * range,\n\t\t\trangeY = window.innerHeight * range,\n\t\t\tscrollOffset = getScrollOffset();\n\n\t\t// Up\n\t\tif( mouseY < rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y - ( 1 - ( mouseY / rangeY ) ) * ( 14 / level ) );\n\t\t}\n\t\t// Down\n\t\telse if( mouseY > window.innerHeight - rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y + ( 1 - ( window.innerHeight - mouseY ) / rangeY ) * ( 14 / level ) );\n\t\t}\n\n\t\t// Left\n\t\tif( mouseX < rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x - ( 1 - ( mouseX / rangeX ) ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t\t// Right\n\t\telse if( mouseX > window.innerWidth - rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x + ( 1 - ( window.innerWidth - mouseX ) / rangeX ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t}\n\n\tfunction getScrollOffset() {\n\t\treturn {\n\t\t\tx: window.scrollX !== undefined ? window.scrollX : window.pageXOffset,\n\t\t\ty: window.scrollY !== undefined ? window.scrollY : window.pageYOffset\n\t\t}\n\t}\n\n\treturn {\n\t\t/**\n\t\t * Zooms in on either a rectangle or HTML element.\n\t\t *\n\t\t * @param {Object} options\n\t\t *   - element: HTML element to zoom in on\n\t\t *   OR\n\t\t *   - x/y: coordinates in non-transformed space to zoom in on\n\t\t *   - width/height: the portion of the screen to zoom in on\n\t\t *   - scale: can be used instead of width/height to explicitly set scale\n\t\t */\n\t\tto: function( options ) {\n\n\t\t\t// Due to an implementation limitation we can't zoom in\n\t\t\t// to another element without zooming out first\n\t\t\tif( level !== 1 ) {\n\t\t\t\tzoom.out();\n\t\t\t}\n\t\t\telse {\n\t\t\t\toptions.x = options.x || 0;\n\t\t\t\toptions.y = options.y || 0;\n\n\t\t\t\t// If an element is set, that takes precedence\n\t\t\t\tif( !!options.element ) {\n\t\t\t\t\t// Space around the zoomed in element to leave on screen\n\t\t\t\t\tvar padding = 20;\n\t\t\t\t\tvar bounds = options.element.getBoundingClientRect();\n\n\t\t\t\t\toptions.x = bounds.left - padding;\n\t\t\t\t\toptions.y = bounds.top - padding;\n\t\t\t\t\toptions.width = bounds.width + ( padding * 2 );\n\t\t\t\t\toptions.height = bounds.height + ( padding * 2 );\n\t\t\t\t}\n\n\t\t\t\t// If width/height values are set, calculate scale from those values\n\t\t\t\tif( options.width !== undefined && options.height !== undefined ) {\n\t\t\t\t\toptions.scale = Math.max( Math.min( window.innerWidth / options.width, window.innerHeight / options.height ), 1 );\n\t\t\t\t}\n\n\t\t\t\tif( options.scale > 1 ) {\n\t\t\t\t\toptions.x *= options.scale;\n\t\t\t\t\toptions.y *= options.scale;\n\n\t\t\t\t\tmagnify( options, options.scale );\n\n\t\t\t\t\tif( options.pan !== false ) {\n\n\t\t\t\t\t\t// Wait with engaging panning as it may conflict with the\n\t\t\t\t\t\t// zoom transition\n\t\t\t\t\t\tpanEngageTimeout = setTimeout( function() {\n\t\t\t\t\t\t\tpanUpdateInterval = setInterval( pan, 1000 / 60 );\n\t\t\t\t\t\t}, 800 );\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * Resets the document zoom state to its default.\n\t\t */\n\t\tout: function() {\n\t\t\tclearTimeout( panEngageTimeout );\n\t\t\tclearInterval( panUpdateInterval );\n\n\t\t\tmagnify( { x: 0, y: 0 }, 1 );\n\n\t\t\tlevel = 1;\n\t\t},\n\n\t\t// Alias\n\t\tmagnify: function( options ) { this.to( options ) },\n\t\treset: function() { this.out() },\n\n\t\tzoomLevel: function() {\n\t\t\treturn level;\n\t\t}\n\t}\n\n})();\n\n\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/examples/barebones.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Barebones</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Barebones Presentation</h2>\n\t\t\t\t\t<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>No Theme</h2>\n\t\t\t\t\t<p>There's no theme included, so it will fall back on browser defaults.</p>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize();\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/examples/embedded-media.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Embedded Media</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/default.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Embedded Media Test</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<iframe data-autoplay width=\"420\" height=\"345\" src=\"http://www.youtube.com/embed/l3RQZ4mcr1c\"></iframe>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Empty Slide</h2>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\ttransition: 'linear'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/examples/math.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Math Plugin</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/night.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>reveal.js Math Plugin</h2>\n\t\t\t\t\t<p>A thin wrapper for MathJax</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t<script type=\"math/tex; mode=display\">\n\t\t\t\t\t\t\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right) \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\t\t\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\thistory: true,\n\t\t\t\ttransition: 'linear',\n\n\t\t\t\tmath: {\n\t\t\t\t\t// mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\t\t\t\tconfig: 'TeX-AMS_HTML-full'\n\t\t\t\t},\n\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js' },\n\t\t\t\t\t{ src: '../../plugin/math/math.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/examples/slide-backgrounds.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Backgrounds</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/serif.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h2 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h2 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background=\"#00ffff\">\n\t\t\t\t\t<h2>data-background: #00ffff</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#bb00bb\">\n\t\t\t\t\t<h2>data-background: #bb00bb</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-color=\"lightblue\">\n\t\t\t\t\t<h2>data-background: lightblue</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#ff0000\">\n\t\t\t\t\t\t<h2>data-background: #ff0000</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgba(0, 0, 0, 0.2)\">\n\t\t\t\t\t\t<h2>data-background: rgba(0, 0, 0, 0.2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"salmon\">\n\t\t\t\t\t\t<h2>data-background: salmon</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"rgba(0, 100, 100, 0.2)\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgb(66, 66, 66)\">\n\t\t\t\t\t\t<h2>Background applied to slide inside of stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"assets/image2.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t<pre>data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\"</pre>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (1/2)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (2/2)</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\">\n\t\t\t\t\t<h2>Video background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-iframe=\"https://slides.com\">\n\t\t\t\t\t<h2>Iframe background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (1/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (2/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t<h2>Same background from horizontal to vertical (1/3)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (2/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (3/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available here:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\t// rtl: true,\n\n\t\t\t\ttransition: 'linear',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/examples/slide-transitions.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Transitions</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h3 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h3 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t<h3>data-transition: zoom</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom-in fade-out\">\n\t\t\t\t\t<h3>data-transition: zoom-in fade-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex\">\n\t\t\t\t\t<h3>data-transition: convex</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex-in concave-out\">\n\t\t\t\t\t<h3>data-transition: convex-in concave-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"concave\">\n\t\t\t\t\t\t<h3>data-transition: concave</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"convex-in fade-out\">\n\t\t\t\t\t\t<h3>data-transition: convex-in fade-out</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"none\">\n\t\t\t\t\t<h3>data-transition: none</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\thistory: true,\n\n\t\t\t\t// transition: 'slide',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/qunit-1.12.0.css",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2012 jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n/** Font Family and Sizes */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {\n\tfont-family: \"Helvetica Neue Light\", \"HelveticaNeue-Light\", \"Helvetica Neue\", Calibri, Helvetica, Arial, sans-serif;\n}\n\n#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }\n#qunit-tests { font-size: smaller; }\n\n\n/** Resets */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n\n/** Header */\n\n#qunit-header {\n\tpadding: 0.5em 0 0.5em 1em;\n\n\tcolor: #8699a4;\n\tbackground-color: #0d3349;\n\n\tfont-size: 1.5em;\n\tline-height: 1em;\n\tfont-weight: normal;\n\n\tborder-radius: 5px 5px 0 0;\n\t-moz-border-radius: 5px 5px 0 0;\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-top-left-radius: 5px;\n}\n\n#qunit-header a {\n\ttext-decoration: none;\n\tcolor: #c2ccd1;\n}\n\n#qunit-header a:hover,\n#qunit-header a:focus {\n\tcolor: #fff;\n}\n\n#qunit-testrunner-toolbar label {\n\tdisplay: inline-block;\n\tpadding: 0 .5em 0 .1em;\n}\n\n#qunit-banner {\n\theight: 5px;\n}\n\n#qunit-testrunner-toolbar {\n\tpadding: 0.5em 0 0.5em 2em;\n\tcolor: #5E740B;\n\tbackground-color: #eee;\n\toverflow: hidden;\n}\n\n#qunit-userAgent {\n\tpadding: 0.5em 0 0.5em 2.5em;\n\tbackground-color: #2b81af;\n\tcolor: #fff;\n\ttext-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;\n}\n\n#qunit-modulefilter-container {\n\tfloat: right;\n}\n\n/** Tests: Pass/Fail */\n\n#qunit-tests {\n\tlist-style-position: inside;\n}\n\n#qunit-tests li {\n\tpadding: 0.4em 0.5em 0.4em 2.5em;\n\tborder-bottom: 1px solid #fff;\n\tlist-style-position: inside;\n}\n\n#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {\n\tdisplay: none;\n}\n\n#qunit-tests li strong {\n\tcursor: pointer;\n}\n\n#qunit-tests li a {\n\tpadding: 0.5em;\n\tcolor: #c2ccd1;\n\ttext-decoration: none;\n}\n#qunit-tests li a:hover,\n#qunit-tests li a:focus {\n\tcolor: #000;\n}\n\n#qunit-tests li .runtime {\n\tfloat: right;\n\tfont-size: smaller;\n}\n\n.qunit-assert-list {\n\tmargin-top: 0.5em;\n\tpadding: 0.5em;\n\n\tbackground-color: #fff;\n\n\tborder-radius: 5px;\n\t-moz-border-radius: 5px;\n\t-webkit-border-radius: 5px;\n}\n\n.qunit-collapsed {\n\tdisplay: none;\n}\n\n#qunit-tests table {\n\tborder-collapse: collapse;\n\tmargin-top: .2em;\n}\n\n#qunit-tests th {\n\ttext-align: right;\n\tvertical-align: top;\n\tpadding: 0 .5em 0 0;\n}\n\n#qunit-tests td {\n\tvertical-align: top;\n}\n\n#qunit-tests pre {\n\tmargin: 0;\n\twhite-space: pre-wrap;\n\tword-wrap: break-word;\n}\n\n#qunit-tests del {\n\tbackground-color: #e0f2be;\n\tcolor: #374e0c;\n\ttext-decoration: none;\n}\n\n#qunit-tests ins {\n\tbackground-color: #ffcaca;\n\tcolor: #500;\n\ttext-decoration: none;\n}\n\n/*** Test Counts */\n\n#qunit-tests b.counts                       { color: black; }\n#qunit-tests b.passed                       { color: #5E740B; }\n#qunit-tests b.failed                       { color: #710909; }\n\n#qunit-tests li li {\n\tpadding: 5px;\n\tbackground-color: #fff;\n\tborder-bottom: none;\n\tlist-style-position: inside;\n}\n\n/*** Passing Styles */\n\n#qunit-tests li li.pass {\n\tcolor: #3c510c;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #C6E746;\n}\n\n#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }\n#qunit-tests .pass .test-name               { color: #366097; }\n\n#qunit-tests .pass .test-actual,\n#qunit-tests .pass .test-expected           { color: #999999; }\n\n#qunit-banner.qunit-pass                    { background-color: #C6E746; }\n\n/*** Failing Styles */\n\n#qunit-tests li li.fail {\n\tcolor: #710909;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #EE5757;\n\twhite-space: pre;\n}\n\n#qunit-tests > li:last-child {\n\tborder-radius: 0 0 5px 5px;\n\t-moz-border-radius: 0 0 5px 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n}\n\n#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }\n#qunit-tests .fail .test-name,\n#qunit-tests .fail .module-name             { color: #000000; }\n\n#qunit-tests .fail .test-actual             { color: #EE5757; }\n#qunit-tests .fail .test-expected           { color: green;   }\n\n#qunit-banner.qunit-fail                    { background-color: #EE5757; }\n\n\n/** Result */\n\n#qunit-testresult {\n\tpadding: 0.5em 0.5em 0.5em 2.5em;\n\n\tcolor: #2b81af;\n\tbackground-color: #D2E0E6;\n\n\tborder-bottom: 1px solid white;\n}\n#qunit-testresult .module-name {\n\tfont-weight: bold;\n}\n\n/** Fixture */\n\n#qunit-fixture {\n\tposition: absolute;\n\ttop: -10000px;\n\tleft: -10000px;\n\twidth: 1000px;\n\theight: 1000px;\n}"
  },
  {
    "path": "doc/meetingcpp-2016/test/qunit-1.12.0.js",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2013 jQuery Foundation and other contributors\n * Released under the MIT license.\n * https://jquery.org/license/\n */\n\n(function( window ) {\n\nvar QUnit,\n\tassert,\n\tconfig,\n\tonErrorFnPrev,\n\ttestId = 0,\n\tfileName = (sourceFromStacktrace( 0 ) || \"\" ).replace(/(:\\d+)+\\)?/, \"\").replace(/.+\\//, \"\"),\n\ttoString = Object.prototype.toString,\n\thasOwn = Object.prototype.hasOwnProperty,\n\t// Keep a local reference to Date (GH-283)\n\tDate = window.Date,\n\tsetTimeout = window.setTimeout,\n\tdefined = {\n\t\tsetTimeout: typeof window.setTimeout !== \"undefined\",\n\t\tsessionStorage: (function() {\n\t\t\tvar x = \"qunit-test-string\";\n\t\t\ttry {\n\t\t\t\tsessionStorage.setItem( x, x );\n\t\t\t\tsessionStorage.removeItem( x );\n\t\t\t\treturn true;\n\t\t\t} catch( e ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}())\n\t},\n\t/**\n\t * Provides a normalized error string, correcting an issue\n\t * with IE 7 (and prior) where Error.prototype.toString is\n\t * not properly implemented\n\t *\n\t * Based on http://es5.github.com/#x15.11.4.4\n\t *\n\t * @param {String|Error} error\n\t * @return {String} error message\n\t */\n\terrorString = function( error ) {\n\t\tvar name, message,\n\t\t\terrorString = error.toString();\n\t\tif ( errorString.substring( 0, 7 ) === \"[object\" ) {\n\t\t\tname = error.name ? error.name.toString() : \"Error\";\n\t\t\tmessage = error.message ? error.message.toString() : \"\";\n\t\t\tif ( name && message ) {\n\t\t\t\treturn name + \": \" + message;\n\t\t\t} else if ( name ) {\n\t\t\t\treturn name;\n\t\t\t} else if ( message ) {\n\t\t\t\treturn message;\n\t\t\t} else {\n\t\t\t\treturn \"Error\";\n\t\t\t}\n\t\t} else {\n\t\t\treturn errorString;\n\t\t}\n\t},\n\t/**\n\t * Makes a clone of an object using only Array or Object as base,\n\t * and copies over the own enumerable properties.\n\t *\n\t * @param {Object} obj\n\t * @return {Object} New object with only the own properties (recursively).\n\t */\n\tobjectValues = function( obj ) {\n\t\t// Grunt 0.3.x uses an older version of jshint that still has jshint/jshint#392.\n\t\t/*jshint newcap: false */\n\t\tvar key, val,\n\t\t\tvals = QUnit.is( \"array\", obj ) ? [] : {};\n\t\tfor ( key in obj ) {\n\t\t\tif ( hasOwn.call( obj, key ) ) {\n\t\t\t\tval = obj[key];\n\t\t\t\tvals[key] = val === Object(val) ? objectValues(val) : val;\n\t\t\t}\n\t\t}\n\t\treturn vals;\n\t};\n\nfunction Test( settings ) {\n\textend( this, settings );\n\tthis.assertions = [];\n\tthis.testNumber = ++Test.count;\n}\n\nTest.count = 0;\n\nTest.prototype = {\n\tinit: function() {\n\t\tvar a, b, li,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tif ( tests ) {\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml;\n\n\t\t\t// `a` initialized at top of scope\n\t\t\ta = document.createElement( \"a\" );\n\t\t\ta.innerHTML = \"Rerun\";\n\t\t\ta.href = QUnit.url({ testNumber: this.testNumber });\n\n\t\t\tli = document.createElement( \"li\" );\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.className = \"running\";\n\t\t\tli.id = this.id = \"qunit-test-output\" + testId++;\n\n\t\t\ttests.appendChild( li );\n\t\t}\n\t},\n\tsetup: function() {\n\t\tif (\n\t\t\t// Emit moduleStart when we're switching from one module to another\n\t\t\tthis.module !== config.previousModule ||\n\t\t\t\t// They could be equal (both undefined) but if the previousModule property doesn't\n\t\t\t\t// yet exist it means this is the first test in a suite that isn't wrapped in a\n\t\t\t\t// module, in which case we'll just emit a moduleStart event for 'undefined'.\n\t\t\t\t// Without this, reporters can get testStart before moduleStart  which is a problem.\n\t\t\t\t!hasOwn.call( config, \"previousModule\" )\n\t\t) {\n\t\t\tif ( hasOwn.call( config, \"previousModule\" ) ) {\n\t\t\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\t\t\tname: config.previousModule,\n\t\t\t\t\tfailed: config.moduleStats.bad,\n\t\t\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\t\t\ttotal: config.moduleStats.all\n\t\t\t\t});\n\t\t\t}\n\t\t\tconfig.previousModule = this.module;\n\t\t\tconfig.moduleStats = { all: 0, bad: 0 };\n\t\t\trunLoggingCallbacks( \"moduleStart\", QUnit, {\n\t\t\t\tname: this.module\n\t\t\t});\n\t\t}\n\n\t\tconfig.current = this;\n\n\t\tthis.testEnvironment = extend({\n\t\t\tsetup: function() {},\n\t\t\tteardown: function() {}\n\t\t}, this.moduleTestEnvironment );\n\n\t\tthis.started = +new Date();\n\t\trunLoggingCallbacks( \"testStart\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module\n\t\t});\n\n\t\t/*jshint camelcase:false */\n\n\n\t\t/**\n\t\t * Expose the current test environment.\n\t\t *\n\t\t * @deprecated since 1.12.0: Use QUnit.config.current.testEnvironment instead.\n\t\t */\n\t\tQUnit.current_testEnvironment = this.testEnvironment;\n\n\t\t/*jshint camelcase:true */\n\n\t\tif ( !config.pollution ) {\n\t\t\tsaveGlobal();\n\t\t}\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t}\n\t\ttry {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t} catch( e ) {\n\t\t\tQUnit.pushFailure( \"Setup failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t}\n\t},\n\trun: function() {\n\t\tconfig.current = this;\n\n\t\tvar running = id( \"qunit-testresult\" );\n\n\t\tif ( running ) {\n\t\t\trunning.innerHTML = \"Running: <br/>\" + this.nameHtml;\n\t\t}\n\n\t\tif ( this.async ) {\n\t\t\tQUnit.stop();\n\t\t}\n\n\t\tthis.callbackStarted = +new Date();\n\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\treturn;\n\t\t}\n\n\t\ttry {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t} catch( e ) {\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\n\t\t\tQUnit.pushFailure( \"Died on test #\" + (this.assertions.length + 1) + \" \" + this.stack + \": \" + ( e.message || e ), extractStacktrace( e, 0 ) );\n\t\t\t// else next test will carry the responsibility\n\t\t\tsaveGlobal();\n\n\t\t\t// Restart the tests if they're blocking\n\t\t\tif ( config.blocking ) {\n\t\t\t\tQUnit.start();\n\t\t\t}\n\t\t}\n\t},\n\tteardown: function() {\n\t\tconfig.current = this;\n\t\tif ( config.notrycatch ) {\n\t\t\tif ( typeof this.callbackRuntime === \"undefined\" ) {\n\t\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\t}\n\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\t} catch( e ) {\n\t\t\t\tQUnit.pushFailure( \"Teardown failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t\t}\n\t\t}\n\t\tcheckPollution();\n\t},\n\tfinish: function() {\n\t\tconfig.current = this;\n\t\tif ( config.requireExpects && this.expected === null ) {\n\t\t\tQUnit.pushFailure( \"Expected number of assertions to be defined, but expect() was not called.\", this.stack );\n\t\t} else if ( this.expected !== null && this.expected !== this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected \" + this.expected + \" assertions, but \" + this.assertions.length + \" were run\", this.stack );\n\t\t} else if ( this.expected === null && !this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected at least one assertion, but none were run - call expect(0) to accept zero assertions.\", this.stack );\n\t\t}\n\n\t\tvar i, assertion, a, b, time, li, ol,\n\t\t\ttest = this,\n\t\t\tgood = 0,\n\t\t\tbad = 0,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tthis.runtime = +new Date() - this.started;\n\t\tconfig.stats.all += this.assertions.length;\n\t\tconfig.moduleStats.all += this.assertions.length;\n\n\t\tif ( tests ) {\n\t\t\tol = document.createElement( \"ol\" );\n\t\t\tol.className = \"qunit-assert-list\";\n\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tassertion = this.assertions[i];\n\n\t\t\t\tli = document.createElement( \"li\" );\n\t\t\t\tli.className = assertion.result ? \"pass\" : \"fail\";\n\t\t\t\tli.innerHTML = assertion.message || ( assertion.result ? \"okay\" : \"failed\" );\n\t\t\t\tol.appendChild( li );\n\n\t\t\t\tif ( assertion.result ) {\n\t\t\t\t\tgood++;\n\t\t\t\t} else {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// store result when possible\n\t\t\tif ( QUnit.config.reorder && defined.sessionStorage ) {\n\t\t\t\tif ( bad ) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-test-\" + this.module + \"-\" + this.testName, bad );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( bad === 0 ) {\n\t\t\t\taddClass( ol, \"qunit-collapsed\" );\n\t\t\t}\n\n\t\t\t// `b` initialized at top of scope\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml + \" <b class='counts'>(<b class='failed'>\" + bad + \"</b>, <b class='passed'>\" + good + \"</b>, \" + this.assertions.length + \")</b>\";\n\n\t\t\taddEvent(b, \"click\", function() {\n\t\t\t\tvar next = b.parentNode.lastChild,\n\t\t\t\t\tcollapsed = hasClass( next, \"qunit-collapsed\" );\n\t\t\t\t( collapsed ? removeClass : addClass )( next, \"qunit-collapsed\" );\n\t\t\t});\n\n\t\t\taddEvent(b, \"dblclick\", function( e ) {\n\t\t\t\tvar target = e && e.target ? e.target : window.event.srcElement;\n\t\t\t\tif ( target.nodeName.toLowerCase() === \"span\" || target.nodeName.toLowerCase() === \"b\" ) {\n\t\t\t\t\ttarget = target.parentNode;\n\t\t\t\t}\n\t\t\t\tif ( window.location && target.nodeName.toLowerCase() === \"strong\" ) {\n\t\t\t\t\twindow.location = QUnit.url({ testNumber: test.testNumber });\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// `time` initialized at top of scope\n\t\t\ttime = document.createElement( \"span\" );\n\t\t\ttime.className = \"runtime\";\n\t\t\ttime.innerHTML = this.runtime + \" ms\";\n\n\t\t\t// `li` initialized at top of scope\n\t\t\tli = id( this.id );\n\t\t\tli.className = bad ? \"fail\" : \"pass\";\n\t\t\tli.removeChild( li.firstChild );\n\t\t\ta = li.firstChild;\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.appendChild( time );\n\t\t\tli.appendChild( ol );\n\n\t\t} else {\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tif ( !this.assertions[i].result ) {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\trunLoggingCallbacks( \"testDone\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module,\n\t\t\tfailed: bad,\n\t\t\tpassed: this.assertions.length - bad,\n\t\t\ttotal: this.assertions.length,\n\t\t\tduration: this.runtime\n\t\t});\n\n\t\tQUnit.reset();\n\n\t\tconfig.current = undefined;\n\t},\n\n\tqueue: function() {\n\t\tvar bad,\n\t\t\ttest = this;\n\n\t\tsynchronize(function() {\n\t\t\ttest.init();\n\t\t});\n\t\tfunction run() {\n\t\t\t// each of these can by async\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.setup();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.run();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.teardown();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.finish();\n\t\t\t});\n\t\t}\n\n\t\t// `bad` initialized at top of scope\n\t\t// defer when previous test run passed, if storage is available\n\t\tbad = QUnit.config.reorder && defined.sessionStorage &&\n\t\t\t\t\t\t+sessionStorage.getItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\n\t\tif ( bad ) {\n\t\t\trun();\n\t\t} else {\n\t\t\tsynchronize( run, true );\n\t\t}\n\t}\n};\n\n// Root QUnit object.\n// `QUnit` initialized at top of scope\nQUnit = {\n\n\t// call on start of module test to prepend name to all tests\n\tmodule: function( name, testEnvironment ) {\n\t\tconfig.currentModule = name;\n\t\tconfig.currentModuleTestEnvironment = testEnvironment;\n\t\tconfig.modules[name] = true;\n\t},\n\n\tasyncTest: function( testName, expected, callback ) {\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tQUnit.test( testName, expected, callback, true );\n\t},\n\n\ttest: function( testName, expected, callback, async ) {\n\t\tvar test,\n\t\t\tnameHtml = \"<span class='test-name'>\" + escapeText( testName ) + \"</span>\";\n\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tif ( config.currentModule ) {\n\t\t\tnameHtml = \"<span class='module-name'>\" + escapeText( config.currentModule ) + \"</span>: \" + nameHtml;\n\t\t}\n\n\t\ttest = new Test({\n\t\t\tnameHtml: nameHtml,\n\t\t\ttestName: testName,\n\t\t\texpected: expected,\n\t\t\tasync: async,\n\t\t\tcallback: callback,\n\t\t\tmodule: config.currentModule,\n\t\t\tmoduleTestEnvironment: config.currentModuleTestEnvironment,\n\t\t\tstack: sourceFromStacktrace( 2 )\n\t\t});\n\n\t\tif ( !validTest( test ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\ttest.queue();\n\t},\n\n\t// Specify the number of expected assertions to guarantee that failed test (no assertions are run at all) don't slip through.\n\texpect: function( asserts ) {\n\t\tif (arguments.length === 1) {\n\t\t\tconfig.current.expected = asserts;\n\t\t} else {\n\t\t\treturn config.current.expected;\n\t\t}\n\t},\n\n\tstart: function( count ) {\n\t\t// QUnit hasn't been initialized yet.\n\t\t// Note: RequireJS (et al) may delay onLoad\n\t\tif ( config.semaphore === undefined ) {\n\t\t\tQUnit.begin(function() {\n\t\t\t\t// This is triggered at the top of QUnit.load, push start() to the event loop, to allow QUnit.load to finish first\n\t\t\t\tsetTimeout(function() {\n\t\t\t\t\tQUnit.start( count );\n\t\t\t\t});\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\n\t\tconfig.semaphore -= count || 1;\n\t\t// don't start until equal number of stop-calls\n\t\tif ( config.semaphore > 0 ) {\n\t\t\treturn;\n\t\t}\n\t\t// ignore if start is called more often then stop\n\t\tif ( config.semaphore < 0 ) {\n\t\t\tconfig.semaphore = 0;\n\t\t\tQUnit.pushFailure( \"Called start() while already started (QUnit.config.semaphore was 0 already)\", null, sourceFromStacktrace(2) );\n\t\t\treturn;\n\t\t}\n\t\t// A slight delay, to avoid any current callbacks\n\t\tif ( defined.setTimeout ) {\n\t\t\tsetTimeout(function() {\n\t\t\t\tif ( config.semaphore > 0 ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( config.timeout ) {\n\t\t\t\t\tclearTimeout( config.timeout );\n\t\t\t\t}\n\n\t\t\t\tconfig.blocking = false;\n\t\t\t\tprocess( true );\n\t\t\t}, 13);\n\t\t} else {\n\t\t\tconfig.blocking = false;\n\t\t\tprocess( true );\n\t\t}\n\t},\n\n\tstop: function( count ) {\n\t\tconfig.semaphore += count || 1;\n\t\tconfig.blocking = true;\n\n\t\tif ( config.testTimeout && defined.setTimeout ) {\n\t\t\tclearTimeout( config.timeout );\n\t\t\tconfig.timeout = setTimeout(function() {\n\t\t\t\tQUnit.ok( false, \"Test timed out\" );\n\t\t\t\tconfig.semaphore = 1;\n\t\t\t\tQUnit.start();\n\t\t\t}, config.testTimeout );\n\t\t}\n\t}\n};\n\n// `assert` initialized at top of scope\n// Assert helpers\n// All of these must either call QUnit.push() or manually do:\n// - runLoggingCallbacks( \"log\", .. );\n// - config.current.assertions.push({ .. });\n// We attach it to the QUnit object *after* we expose the public API,\n// otherwise `assert` will become a global variable in browsers (#341).\nassert = {\n\t/**\n\t * Asserts rough true-ish result.\n\t * @name ok\n\t * @function\n\t * @example ok( \"asdfasdf\".length > 5, \"There must be at least 5 chars\" );\n\t */\n\tok: function( result, msg ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"ok() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\t\tresult = !!result;\n\t\tmsg = msg || (result ? \"okay\" : \"failed\" );\n\n\t\tvar source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: msg\n\t\t\t};\n\n\t\tmsg = \"<span class='test-message'>\" + escapeText( msg ) + \"</span>\";\n\n\t\tif ( !result ) {\n\t\t\tsource = sourceFromStacktrace( 2 );\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\tmsg += \"<table><tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr></table>\";\n\t\t\t}\n\t\t}\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\t\tconfig.current.assertions.push({\n\t\t\tresult: result,\n\t\t\tmessage: msg\n\t\t});\n\t},\n\n\t/**\n\t * Assert that the first two arguments are equal, with an optional message.\n\t * Prints out both actual and expected values.\n\t * @name equal\n\t * @function\n\t * @example equal( format( \"Received {0} bytes.\", 2), \"Received 2 bytes.\", \"format() replaces {0} with next argument\" );\n\t */\n\tequal: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected == actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notEqual\n\t * @function\n\t */\n\tnotEqual: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected != actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name propEqual\n\t * @function\n\t */\n\tpropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notPropEqual\n\t * @function\n\t */\n\tnotPropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name deepEqual\n\t * @function\n\t */\n\tdeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notDeepEqual\n\t * @function\n\t */\n\tnotDeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name strictEqual\n\t * @function\n\t */\n\tstrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected === actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notStrictEqual\n\t * @function\n\t */\n\tnotStrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected !== actual, actual, expected, message );\n\t},\n\n\t\"throws\": function( block, expected, message ) {\n\t\tvar actual,\n\t\t\texpectedOutput = expected,\n\t\t\tok = false;\n\n\t\t// 'expected' is optional\n\t\tif ( typeof expected === \"string\" ) {\n\t\t\tmessage = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tconfig.current.ignoreGlobalErrors = true;\n\t\ttry {\n\t\t\tblock.call( config.current.testEnvironment );\n\t\t} catch (e) {\n\t\t\tactual = e;\n\t\t}\n\t\tconfig.current.ignoreGlobalErrors = false;\n\n\t\tif ( actual ) {\n\t\t\t// we don't want to validate thrown error\n\t\t\tif ( !expected ) {\n\t\t\t\tok = true;\n\t\t\t\texpectedOutput = null;\n\t\t\t// expected is a regexp\n\t\t\t} else if ( QUnit.objectType( expected ) === \"regexp\" ) {\n\t\t\t\tok = expected.test( errorString( actual ) );\n\t\t\t// expected is a constructor\n\t\t\t} else if ( actual instanceof expected ) {\n\t\t\t\tok = true;\n\t\t\t// expected is a validation function which returns true is validation passed\n\t\t\t} else if ( expected.call( {}, actual ) === true ) {\n\t\t\t\texpectedOutput = null;\n\t\t\t\tok = true;\n\t\t\t}\n\n\t\t\tQUnit.push( ok, actual, expectedOutput, message );\n\t\t} else {\n\t\t\tQUnit.pushFailure( message, null, \"No exception was thrown.\" );\n\t\t}\n\t}\n};\n\n/**\n * @deprecated since 1.8.0\n * Kept assertion helpers in root for backwards compatibility.\n */\nextend( QUnit, assert );\n\n/**\n * @deprecated since 1.9.0\n * Kept root \"raises()\" for backwards compatibility.\n * (Note that we don't introduce assert.raises).\n */\nQUnit.raises = assert[ \"throws\" ];\n\n/**\n * @deprecated since 1.0.0, replaced with error pushes since 1.3.0\n * Kept to avoid TypeErrors for undefined methods.\n */\nQUnit.equals = function() {\n\tQUnit.push( false, false, false, \"QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead\" );\n};\nQUnit.same = function() {\n\tQUnit.push( false, false, false, \"QUnit.same has been deprecated since 2009 (e88049a0), use QUnit.deepEqual instead\" );\n};\n\n// We want access to the constructor's prototype\n(function() {\n\tfunction F() {}\n\tF.prototype = QUnit;\n\tQUnit = new F();\n\t// Make F QUnit's constructor so that we can add to the prototype later\n\tQUnit.constructor = F;\n}());\n\n/**\n * Config object: Maintain internal state\n * Later exposed as QUnit.config\n * `config` initialized at top of scope\n */\nconfig = {\n\t// The queue of tests to run\n\tqueue: [],\n\n\t// block until document ready\n\tblocking: true,\n\n\t// when enabled, show only failing tests\n\t// gets persisted through sessionStorage and can be changed in UI via checkbox\n\thidepassed: false,\n\n\t// by default, run previously failed tests first\n\t// very useful in combination with \"Hide passed tests\" checked\n\treorder: true,\n\n\t// by default, modify document.title when suite is done\n\taltertitle: true,\n\n\t// when enabled, all tests must call expect()\n\trequireExpects: false,\n\n\t// add checkboxes that are persisted in the query-string\n\t// when enabled, the id is set to `true` as a `QUnit.config` property\n\turlConfig: [\n\t\t{\n\t\t\tid: \"noglobals\",\n\t\t\tlabel: \"Check for Globals\",\n\t\t\ttooltip: \"Enabling this will test if any test introduces new properties on the `window` object. Stored as query-strings.\"\n\t\t},\n\t\t{\n\t\t\tid: \"notrycatch\",\n\t\t\tlabel: \"No try-catch\",\n\t\t\ttooltip: \"Enabling this will run tests outside of a try-catch block. Makes debugging exceptions in IE reasonable. Stored as query-strings.\"\n\t\t}\n\t],\n\n\t// Set of all modules.\n\tmodules: {},\n\n\t// logging callback queues\n\tbegin: [],\n\tdone: [],\n\tlog: [],\n\ttestStart: [],\n\ttestDone: [],\n\tmoduleStart: [],\n\tmoduleDone: []\n};\n\n// Export global variables, unless an 'exports' object exists,\n// in that case we assume we're in CommonJS (dealt with on the bottom of the script)\nif ( typeof exports === \"undefined\" ) {\n\textend( window, QUnit.constructor.prototype );\n\n\t// Expose QUnit object\n\twindow.QUnit = QUnit;\n}\n\n// Initialize more QUnit.config and QUnit.urlParams\n(function() {\n\tvar i,\n\t\tlocation = window.location || { search: \"\", protocol: \"file:\" },\n\t\tparams = location.search.slice( 1 ).split( \"&\" ),\n\t\tlength = params.length,\n\t\turlParams = {},\n\t\tcurrent;\n\n\tif ( params[ 0 ] ) {\n\t\tfor ( i = 0; i < length; i++ ) {\n\t\t\tcurrent = params[ i ].split( \"=\" );\n\t\t\tcurrent[ 0 ] = decodeURIComponent( current[ 0 ] );\n\t\t\t// allow just a key to turn on a flag, e.g., test.html?noglobals\n\t\t\tcurrent[ 1 ] = current[ 1 ] ? decodeURIComponent( current[ 1 ] ) : true;\n\t\t\turlParams[ current[ 0 ] ] = current[ 1 ];\n\t\t}\n\t}\n\n\tQUnit.urlParams = urlParams;\n\n\t// String search anywhere in moduleName+testName\n\tconfig.filter = urlParams.filter;\n\n\t// Exact match of the module name\n\tconfig.module = urlParams.module;\n\n\tconfig.testNumber = parseInt( urlParams.testNumber, 10 ) || null;\n\n\t// Figure out if we're running the tests from a server or not\n\tQUnit.isLocal = location.protocol === \"file:\";\n}());\n\n// Extend QUnit object,\n// these after set here because they should not be exposed as global functions\nextend( QUnit, {\n\tassert: assert,\n\n\tconfig: config,\n\n\t// Initialize the configuration options\n\tinit: function() {\n\t\textend( config, {\n\t\t\tstats: { all: 0, bad: 0 },\n\t\t\tmoduleStats: { all: 0, bad: 0 },\n\t\t\tstarted: +new Date(),\n\t\t\tupdateRate: 1000,\n\t\t\tblocking: false,\n\t\t\tautostart: true,\n\t\t\tautorun: false,\n\t\t\tfilter: \"\",\n\t\t\tqueue: [],\n\t\t\tsemaphore: 1\n\t\t});\n\n\t\tvar tests, banner, result,\n\t\t\tqunit = id( \"qunit\" );\n\n\t\tif ( qunit ) {\n\t\t\tqunit.innerHTML =\n\t\t\t\t\"<h1 id='qunit-header'>\" + escapeText( document.title ) + \"</h1>\" +\n\t\t\t\t\"<h2 id='qunit-banner'></h2>\" +\n\t\t\t\t\"<div id='qunit-testrunner-toolbar'></div>\" +\n\t\t\t\t\"<h2 id='qunit-userAgent'></h2>\" +\n\t\t\t\t\"<ol id='qunit-tests'></ol>\";\n\t\t}\n\n\t\ttests = id( \"qunit-tests\" );\n\t\tbanner = id( \"qunit-banner\" );\n\t\tresult = id( \"qunit-testresult\" );\n\n\t\tif ( tests ) {\n\t\t\ttests.innerHTML = \"\";\n\t\t}\n\n\t\tif ( banner ) {\n\t\t\tbanner.className = \"\";\n\t\t}\n\n\t\tif ( result ) {\n\t\t\tresult.parentNode.removeChild( result );\n\t\t}\n\n\t\tif ( tests ) {\n\t\t\tresult = document.createElement( \"p\" );\n\t\t\tresult.id = \"qunit-testresult\";\n\t\t\tresult.className = \"result\";\n\t\t\ttests.parentNode.insertBefore( result, tests );\n\t\t\tresult.innerHTML = \"Running...<br/>&nbsp;\";\n\t\t}\n\t},\n\n\t// Resets the test setup. Useful for tests that modify the DOM.\n\t/*\n\tDEPRECATED: Use multiple tests instead of resetting inside a test.\n\tUse testStart or testDone for custom cleanup.\n\tThis method will throw an error in 2.0, and will be removed in 2.1\n\t*/\n\treset: function() {\n\t\tvar fixture = id( \"qunit-fixture\" );\n\t\tif ( fixture ) {\n\t\t\tfixture.innerHTML = config.fixture;\n\t\t}\n\t},\n\n\t// Trigger an event on an element.\n\t// @example triggerEvent( document.body, \"click\" );\n\ttriggerEvent: function( elem, type, event ) {\n\t\tif ( document.createEvent ) {\n\t\t\tevent = document.createEvent( \"MouseEvents\" );\n\t\t\tevent.initMouseEvent(type, true, true, elem.ownerDocument.defaultView,\n\t\t\t\t0, 0, 0, 0, 0, false, false, false, false, 0, null);\n\n\t\t\telem.dispatchEvent( event );\n\t\t} else if ( elem.fireEvent ) {\n\t\t\telem.fireEvent( \"on\" + type );\n\t\t}\n\t},\n\n\t// Safe object type checking\n\tis: function( type, obj ) {\n\t\treturn QUnit.objectType( obj ) === type;\n\t},\n\n\tobjectType: function( obj ) {\n\t\tif ( typeof obj === \"undefined\" ) {\n\t\t\t\treturn \"undefined\";\n\t\t// consider: typeof null === object\n\t\t}\n\t\tif ( obj === null ) {\n\t\t\t\treturn \"null\";\n\t\t}\n\n\t\tvar match = toString.call( obj ).match(/^\\[object\\s(.*)\\]$/),\n\t\t\ttype = match && match[1] || \"\";\n\n\t\tswitch ( type ) {\n\t\t\tcase \"Number\":\n\t\t\t\tif ( isNaN(obj) ) {\n\t\t\t\t\treturn \"nan\";\n\t\t\t\t}\n\t\t\t\treturn \"number\";\n\t\t\tcase \"String\":\n\t\t\tcase \"Boolean\":\n\t\t\tcase \"Array\":\n\t\t\tcase \"Date\":\n\t\t\tcase \"RegExp\":\n\t\t\tcase \"Function\":\n\t\t\t\treturn type.toLowerCase();\n\t\t}\n\t\tif ( typeof obj === \"object\" ) {\n\t\t\treturn \"object\";\n\t\t}\n\t\treturn undefined;\n\t},\n\n\tpush: function( result, actual, expected, message ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"assertion outside test context, was \" + sourceFromStacktrace() );\n\t\t}\n\n\t\tvar output, source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: message,\n\t\t\t\tactual: actual,\n\t\t\t\texpected: expected\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || ( result ? \"okay\" : \"failed\" );\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\tif ( !result ) {\n\t\t\texpected = escapeText( QUnit.jsDump.parse(expected) );\n\t\t\tactual = escapeText( QUnit.jsDump.parse(actual) );\n\t\t\toutput += \"<table><tr class='test-expected'><th>Expected: </th><td><pre>\" + expected + \"</pre></td></tr>\";\n\n\t\t\tif ( actual !== expected ) {\n\t\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + actual + \"</pre></td></tr>\";\n\t\t\t\toutput += \"<tr class='test-diff'><th>Diff: </th><td><pre>\" + QUnit.diff( expected, actual ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\tsource = sourceFromStacktrace();\n\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\toutput += \"</table>\";\n\t\t}\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: !!result,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\tpushFailure: function( message, source, actual ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"pushFailure() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\n\t\tvar output,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: false,\n\t\t\t\tmessage: message\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || \"error\";\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\toutput += \"<table>\";\n\n\t\tif ( actual ) {\n\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + escapeText( actual ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\tif ( source ) {\n\t\t\tdetails.source = source;\n\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\toutput += \"</table>\";\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: false,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\turl: function( params ) {\n\t\tparams = extend( extend( {}, QUnit.urlParams ), params );\n\t\tvar key,\n\t\t\tquerystring = \"?\";\n\n\t\tfor ( key in params ) {\n\t\t\tif ( hasOwn.call( params, key ) ) {\n\t\t\t\tquerystring += encodeURIComponent( key ) + \"=\" +\n\t\t\t\t\tencodeURIComponent( params[ key ] ) + \"&\";\n\t\t\t}\n\t\t}\n\t\treturn window.location.protocol + \"//\" + window.location.host +\n\t\t\twindow.location.pathname + querystring.slice( 0, -1 );\n\t},\n\n\textend: extend,\n\tid: id,\n\taddEvent: addEvent,\n\taddClass: addClass,\n\thasClass: hasClass,\n\tremoveClass: removeClass\n\t// load, equiv, jsDump, diff: Attached later\n});\n\n/**\n * @deprecated: Created for backwards compatibility with test runner that set the hook function\n * into QUnit.{hook}, instead of invoking it and passing the hook function.\n * QUnit.constructor is set to the empty F() above so that we can add to it's prototype here.\n * Doing this allows us to tell if the following methods have been overwritten on the actual\n * QUnit object.\n */\nextend( QUnit.constructor.prototype, {\n\n\t// Logging callbacks; all receive a single argument with the listed properties\n\t// run test/logs.html for any related changes\n\tbegin: registerLoggingCallback( \"begin\" ),\n\n\t// done: { failed, passed, total, runtime }\n\tdone: registerLoggingCallback( \"done\" ),\n\n\t// log: { result, actual, expected, message }\n\tlog: registerLoggingCallback( \"log\" ),\n\n\t// testStart: { name }\n\ttestStart: registerLoggingCallback( \"testStart\" ),\n\n\t// testDone: { name, failed, passed, total, duration }\n\ttestDone: registerLoggingCallback( \"testDone\" ),\n\n\t// moduleStart: { name }\n\tmoduleStart: registerLoggingCallback( \"moduleStart\" ),\n\n\t// moduleDone: { name, failed, passed, total }\n\tmoduleDone: registerLoggingCallback( \"moduleDone\" )\n});\n\nif ( typeof document === \"undefined\" || document.readyState === \"complete\" ) {\n\tconfig.autorun = true;\n}\n\nQUnit.load = function() {\n\trunLoggingCallbacks( \"begin\", QUnit, {} );\n\n\t// Initialize the config, saving the execution queue\n\tvar banner, filter, i, label, len, main, ol, toolbar, userAgent, val,\n\t\turlConfigCheckboxesContainer, urlConfigCheckboxes, moduleFilter,\n\t\tnumModules = 0,\n\t\tmoduleNames = [],\n\t\tmoduleFilterHtml = \"\",\n\t\turlConfigHtml = \"\",\n\t\toldconfig = extend( {}, config );\n\n\tQUnit.init();\n\textend(config, oldconfig);\n\n\tconfig.blocking = false;\n\n\tlen = config.urlConfig.length;\n\n\tfor ( i = 0; i < len; i++ ) {\n\t\tval = config.urlConfig[i];\n\t\tif ( typeof val === \"string\" ) {\n\t\t\tval = {\n\t\t\t\tid: val,\n\t\t\t\tlabel: val,\n\t\t\t\ttooltip: \"[no tooltip available]\"\n\t\t\t};\n\t\t}\n\t\tconfig[ val.id ] = QUnit.urlParams[ val.id ];\n\t\turlConfigHtml += \"<input id='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' name='\" + escapeText( val.id ) +\n\t\t\t\"' type='checkbox'\" + ( config[ val.id ] ? \" checked='checked'\" : \"\" ) +\n\t\t\t\" title='\" + escapeText( val.tooltip ) +\n\t\t\t\"'><label for='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' title='\" + escapeText( val.tooltip ) + \"'>\" + val.label + \"</label>\";\n\t}\n\tfor ( i in config.modules ) {\n\t\tif ( config.modules.hasOwnProperty( i ) ) {\n\t\t\tmoduleNames.push(i);\n\t\t}\n\t}\n\tnumModules = moduleNames.length;\n\tmoduleNames.sort( function( a, b ) {\n\t\treturn a.localeCompare( b );\n\t});\n\tmoduleFilterHtml += \"<label for='qunit-modulefilter'>Module: </label><select id='qunit-modulefilter' name='modulefilter'><option value='' \" +\n\t\t( config.module === undefined  ? \"selected='selected'\" : \"\" ) +\n\t\t\">< All Modules ></option>\";\n\n\n\tfor ( i = 0; i < numModules; i++) {\n\t\t\tmoduleFilterHtml += \"<option value='\" + escapeText( encodeURIComponent(moduleNames[i]) ) + \"' \" +\n\t\t\t\t( config.module === moduleNames[i] ? \"selected='selected'\" : \"\" ) +\n\t\t\t\t\">\" + escapeText(moduleNames[i]) + \"</option>\";\n\t}\n\tmoduleFilterHtml += \"</select>\";\n\n\t// `userAgent` initialized at top of scope\n\tuserAgent = id( \"qunit-userAgent\" );\n\tif ( userAgent ) {\n\t\tuserAgent.innerHTML = navigator.userAgent;\n\t}\n\n\t// `banner` initialized at top of scope\n\tbanner = id( \"qunit-header\" );\n\tif ( banner ) {\n\t\tbanner.innerHTML = \"<a href='\" + QUnit.url({ filter: undefined, module: undefined, testNumber: undefined }) + \"'>\" + banner.innerHTML + \"</a> \";\n\t}\n\n\t// `toolbar` initialized at top of scope\n\ttoolbar = id( \"qunit-testrunner-toolbar\" );\n\tif ( toolbar ) {\n\t\t// `filter` initialized at top of scope\n\t\tfilter = document.createElement( \"input\" );\n\t\tfilter.type = \"checkbox\";\n\t\tfilter.id = \"qunit-filter-pass\";\n\n\t\taddEvent( filter, \"click\", function() {\n\t\t\tvar tmp,\n\t\t\t\tol = document.getElementById( \"qunit-tests\" );\n\n\t\t\tif ( filter.checked ) {\n\t\t\t\tol.className = ol.className + \" hidepass\";\n\t\t\t} else {\n\t\t\t\ttmp = \" \" + ol.className.replace( /[\\n\\t\\r]/g, \" \" ) + \" \";\n\t\t\t\tol.className = tmp.replace( / hidepass /, \" \" );\n\t\t\t}\n\t\t\tif ( defined.sessionStorage ) {\n\t\t\t\tif (filter.checked) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-filter-passed-tests\", \"true\" );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-filter-passed-tests\" );\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif ( config.hidepassed || defined.sessionStorage && sessionStorage.getItem( \"qunit-filter-passed-tests\" ) ) {\n\t\t\tfilter.checked = true;\n\t\t\t// `ol` initialized at top of scope\n\t\t\tol = document.getElementById( \"qunit-tests\" );\n\t\t\tol.className = ol.className + \" hidepass\";\n\t\t}\n\t\ttoolbar.appendChild( filter );\n\n\t\t// `label` initialized at top of scope\n\t\tlabel = document.createElement( \"label\" );\n\t\tlabel.setAttribute( \"for\", \"qunit-filter-pass\" );\n\t\tlabel.setAttribute( \"title\", \"Only show tests and assertions that fail. Stored in sessionStorage.\" );\n\t\tlabel.innerHTML = \"Hide passed tests\";\n\t\ttoolbar.appendChild( label );\n\n\t\turlConfigCheckboxesContainer = document.createElement(\"span\");\n\t\turlConfigCheckboxesContainer.innerHTML = urlConfigHtml;\n\t\turlConfigCheckboxes = urlConfigCheckboxesContainer.getElementsByTagName(\"input\");\n\t\t// For oldIE support:\n\t\t// * Add handlers to the individual elements instead of the container\n\t\t// * Use \"click\" instead of \"change\"\n\t\t// * Fallback from event.target to event.srcElement\n\t\taddEvents( urlConfigCheckboxes, \"click\", function( event ) {\n\t\t\tvar params = {},\n\t\t\t\ttarget = event.target || event.srcElement;\n\t\t\tparams[ target.name ] = target.checked ? true : undefined;\n\t\t\twindow.location = QUnit.url( params );\n\t\t});\n\t\ttoolbar.appendChild( urlConfigCheckboxesContainer );\n\n\t\tif (numModules > 1) {\n\t\t\tmoduleFilter = document.createElement( \"span\" );\n\t\t\tmoduleFilter.setAttribute( \"id\", \"qunit-modulefilter-container\" );\n\t\t\tmoduleFilter.innerHTML = moduleFilterHtml;\n\t\t\taddEvent( moduleFilter.lastChild, \"change\", function() {\n\t\t\t\tvar selectBox = moduleFilter.getElementsByTagName(\"select\")[0],\n\t\t\t\t\tselectedModule = decodeURIComponent(selectBox.options[selectBox.selectedIndex].value);\n\n\t\t\t\twindow.location = QUnit.url({\n\t\t\t\t\tmodule: ( selectedModule === \"\" ) ? undefined : selectedModule,\n\t\t\t\t\t// Remove any existing filters\n\t\t\t\t\tfilter: undefined,\n\t\t\t\t\ttestNumber: undefined\n\t\t\t\t});\n\t\t\t});\n\t\t\ttoolbar.appendChild(moduleFilter);\n\t\t}\n\t}\n\n\t// `main` initialized at top of scope\n\tmain = id( \"qunit-fixture\" );\n\tif ( main ) {\n\t\tconfig.fixture = main.innerHTML;\n\t}\n\n\tif ( config.autostart ) {\n\t\tQUnit.start();\n\t}\n};\n\naddEvent( window, \"load\", QUnit.load );\n\n// `onErrorFnPrev` initialized at top of scope\n// Preserve other handlers\nonErrorFnPrev = window.onerror;\n\n// Cover uncaught exceptions\n// Returning true will suppress the default browser handler,\n// returning false will let it run.\nwindow.onerror = function ( error, filePath, linerNr ) {\n\tvar ret = false;\n\tif ( onErrorFnPrev ) {\n\t\tret = onErrorFnPrev( error, filePath, linerNr );\n\t}\n\n\t// Treat return value as window.onerror itself does,\n\t// Only do our handling if not suppressed.\n\tif ( ret !== true ) {\n\t\tif ( QUnit.config.current ) {\n\t\t\tif ( QUnit.config.current.ignoreGlobalErrors ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t} else {\n\t\t\tQUnit.test( \"global failure\", extend( function() {\n\t\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t\t}, { validTest: validTest } ) );\n\t\t}\n\t\treturn false;\n\t}\n\n\treturn ret;\n};\n\nfunction done() {\n\tconfig.autorun = true;\n\n\t// Log the last module results\n\tif ( config.currentModule ) {\n\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\tname: config.currentModule,\n\t\t\tfailed: config.moduleStats.bad,\n\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\ttotal: config.moduleStats.all\n\t\t});\n\t}\n\tdelete config.previousModule;\n\n\tvar i, key,\n\t\tbanner = id( \"qunit-banner\" ),\n\t\ttests = id( \"qunit-tests\" ),\n\t\truntime = +new Date() - config.started,\n\t\tpassed = config.stats.all - config.stats.bad,\n\t\thtml = [\n\t\t\t\"Tests completed in \",\n\t\t\truntime,\n\t\t\t\" milliseconds.<br/>\",\n\t\t\t\"<span class='passed'>\",\n\t\t\tpassed,\n\t\t\t\"</span> assertions of <span class='total'>\",\n\t\t\tconfig.stats.all,\n\t\t\t\"</span> passed, <span class='failed'>\",\n\t\t\tconfig.stats.bad,\n\t\t\t\"</span> failed.\"\n\t\t].join( \"\" );\n\n\tif ( banner ) {\n\t\tbanner.className = ( config.stats.bad ? \"qunit-fail\" : \"qunit-pass\" );\n\t}\n\n\tif ( tests ) {\n\t\tid( \"qunit-testresult\" ).innerHTML = html;\n\t}\n\n\tif ( config.altertitle && typeof document !== \"undefined\" && document.title ) {\n\t\t// show ✖ for good, ✔ for bad suite result in title\n\t\t// use escape sequences in case file gets loaded with non-utf-8-charset\n\t\tdocument.title = [\n\t\t\t( config.stats.bad ? \"\\u2716\" : \"\\u2714\" ),\n\t\t\tdocument.title.replace( /^[\\u2714\\u2716] /i, \"\" )\n\t\t].join( \" \" );\n\t}\n\n\t// clear own sessionStorage items if all tests passed\n\tif ( config.reorder && defined.sessionStorage && config.stats.bad === 0 ) {\n\t\t// `key` & `i` initialized at top of scope\n\t\tfor ( i = 0; i < sessionStorage.length; i++ ) {\n\t\t\tkey = sessionStorage.key( i++ );\n\t\t\tif ( key.indexOf( \"qunit-test-\" ) === 0 ) {\n\t\t\t\tsessionStorage.removeItem( key );\n\t\t\t}\n\t\t}\n\t}\n\n\t// scroll back to top to show results\n\tif ( window.scrollTo ) {\n\t\twindow.scrollTo(0, 0);\n\t}\n\n\trunLoggingCallbacks( \"done\", QUnit, {\n\t\tfailed: config.stats.bad,\n\t\tpassed: passed,\n\t\ttotal: config.stats.all,\n\t\truntime: runtime\n\t});\n}\n\n/** @return Boolean: true if this test should be ran */\nfunction validTest( test ) {\n\tvar include,\n\t\tfilter = config.filter && config.filter.toLowerCase(),\n\t\tmodule = config.module && config.module.toLowerCase(),\n\t\tfullName = (test.module + \": \" + test.testName).toLowerCase();\n\n\t// Internally-generated tests are always valid\n\tif ( test.callback && test.callback.validTest === validTest ) {\n\t\tdelete test.callback.validTest;\n\t\treturn true;\n\t}\n\n\tif ( config.testNumber ) {\n\t\treturn test.testNumber === config.testNumber;\n\t}\n\n\tif ( module && ( !test.module || test.module.toLowerCase() !== module ) ) {\n\t\treturn false;\n\t}\n\n\tif ( !filter ) {\n\t\treturn true;\n\t}\n\n\tinclude = filter.charAt( 0 ) !== \"!\";\n\tif ( !include ) {\n\t\tfilter = filter.slice( 1 );\n\t}\n\n\t// If the filter matches, we need to honour include\n\tif ( fullName.indexOf( filter ) !== -1 ) {\n\t\treturn include;\n\t}\n\n\t// Otherwise, do the opposite\n\treturn !include;\n}\n\n// so far supports only Firefox, Chrome and Opera (buggy), Safari (for real exceptions)\n// Later Safari and IE10 are supposed to support error.stack as well\n// See also https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error/Stack\nfunction extractStacktrace( e, offset ) {\n\toffset = offset === undefined ? 3 : offset;\n\n\tvar stack, include, i;\n\n\tif ( e.stacktrace ) {\n\t\t// Opera\n\t\treturn e.stacktrace.split( \"\\n\" )[ offset + 3 ];\n\t} else if ( e.stack ) {\n\t\t// Firefox, Chrome\n\t\tstack = e.stack.split( \"\\n\" );\n\t\tif (/^error$/i.test( stack[0] ) ) {\n\t\t\tstack.shift();\n\t\t}\n\t\tif ( fileName ) {\n\t\t\tinclude = [];\n\t\t\tfor ( i = offset; i < stack.length; i++ ) {\n\t\t\t\tif ( stack[ i ].indexOf( fileName ) !== -1 ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tinclude.push( stack[ i ] );\n\t\t\t}\n\t\t\tif ( include.length ) {\n\t\t\t\treturn include.join( \"\\n\" );\n\t\t\t}\n\t\t}\n\t\treturn stack[ offset ];\n\t} else if ( e.sourceURL ) {\n\t\t// Safari, PhantomJS\n\t\t// hopefully one day Safari provides actual stacktraces\n\t\t// exclude useless self-reference for generated Error objects\n\t\tif ( /qunit.js$/.test( e.sourceURL ) ) {\n\t\t\treturn;\n\t\t}\n\t\t// for actual exceptions, this is useful\n\t\treturn e.sourceURL + \":\" + e.line;\n\t}\n}\nfunction sourceFromStacktrace( offset ) {\n\ttry {\n\t\tthrow new Error();\n\t} catch ( e ) {\n\t\treturn extractStacktrace( e, offset );\n\t}\n}\n\n/**\n * Escape text for attribute or text content.\n */\nfunction escapeText( s ) {\n\tif ( !s ) {\n\t\treturn \"\";\n\t}\n\ts = s + \"\";\n\t// Both single quotes and double quotes (for attributes)\n\treturn s.replace( /['\"<>&]/g, function( s ) {\n\t\tswitch( s ) {\n\t\t\tcase \"'\":\n\t\t\t\treturn \"&#039;\";\n\t\t\tcase \"\\\"\":\n\t\t\t\treturn \"&quot;\";\n\t\t\tcase \"<\":\n\t\t\t\treturn \"&lt;\";\n\t\t\tcase \">\":\n\t\t\t\treturn \"&gt;\";\n\t\t\tcase \"&\":\n\t\t\t\treturn \"&amp;\";\n\t\t}\n\t});\n}\n\nfunction synchronize( callback, last ) {\n\tconfig.queue.push( callback );\n\n\tif ( config.autorun && !config.blocking ) {\n\t\tprocess( last );\n\t}\n}\n\nfunction process( last ) {\n\tfunction next() {\n\t\tprocess( last );\n\t}\n\tvar start = new Date().getTime();\n\tconfig.depth = config.depth ? config.depth + 1 : 1;\n\n\twhile ( config.queue.length && !config.blocking ) {\n\t\tif ( !defined.setTimeout || config.updateRate <= 0 || ( ( new Date().getTime() - start ) < config.updateRate ) ) {\n\t\t\tconfig.queue.shift()();\n\t\t} else {\n\t\t\tsetTimeout( next, 13 );\n\t\t\tbreak;\n\t\t}\n\t}\n\tconfig.depth--;\n\tif ( last && !config.blocking && !config.queue.length && config.depth === 0 ) {\n\t\tdone();\n\t}\n}\n\nfunction saveGlobal() {\n\tconfig.pollution = [];\n\n\tif ( config.noglobals ) {\n\t\tfor ( var key in window ) {\n\t\t\tif ( hasOwn.call( window, key ) ) {\n\t\t\t\t// in Opera sometimes DOM element ids show up here, ignore them\n\t\t\t\tif ( /^qunit-test-output/.test( key ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tconfig.pollution.push( key );\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction checkPollution() {\n\tvar newGlobals,\n\t\tdeletedGlobals,\n\t\told = config.pollution;\n\n\tsaveGlobal();\n\n\tnewGlobals = diff( config.pollution, old );\n\tif ( newGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Introduced global variable(s): \" + newGlobals.join(\", \") );\n\t}\n\n\tdeletedGlobals = diff( old, config.pollution );\n\tif ( deletedGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Deleted global variable(s): \" + deletedGlobals.join(\", \") );\n\t}\n}\n\n// returns a new Array with the elements that are in a but not in b\nfunction diff( a, b ) {\n\tvar i, j,\n\t\tresult = a.slice();\n\n\tfor ( i = 0; i < result.length; i++ ) {\n\t\tfor ( j = 0; j < b.length; j++ ) {\n\t\t\tif ( result[i] === b[j] ) {\n\t\t\t\tresult.splice( i, 1 );\n\t\t\t\ti--;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\treturn result;\n}\n\nfunction extend( a, b ) {\n\tfor ( var prop in b ) {\n\t\tif ( hasOwn.call( b, prop ) ) {\n\t\t\t// Avoid \"Member not found\" error in IE8 caused by messing with window.constructor\n\t\t\tif ( !( prop === \"constructor\" && a === window ) ) {\n\t\t\t\tif ( b[ prop ] === undefined ) {\n\t\t\t\t\tdelete a[ prop ];\n\t\t\t\t} else {\n\t\t\t\t\ta[ prop ] = b[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a;\n}\n\n/**\n * @param {HTMLElement} elem\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvent( elem, type, fn ) {\n\t// Standards-based browsers\n\tif ( elem.addEventListener ) {\n\t\telem.addEventListener( type, fn, false );\n\t// IE\n\t} else {\n\t\telem.attachEvent( \"on\" + type, fn );\n\t}\n}\n\n/**\n * @param {Array|NodeList} elems\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvents( elems, type, fn ) {\n\tvar i = elems.length;\n\twhile ( i-- ) {\n\t\taddEvent( elems[i], type, fn );\n\t}\n}\n\nfunction hasClass( elem, name ) {\n\treturn (\" \" + elem.className + \" \").indexOf(\" \" + name + \" \") > -1;\n}\n\nfunction addClass( elem, name ) {\n\tif ( !hasClass( elem, name ) ) {\n\t\telem.className += (elem.className ? \" \" : \"\") + name;\n\t}\n}\n\nfunction removeClass( elem, name ) {\n\tvar set = \" \" + elem.className + \" \";\n\t// Class name may appear multiple times\n\twhile ( set.indexOf(\" \" + name + \" \") > -1 ) {\n\t\tset = set.replace(\" \" + name + \" \" , \" \");\n\t}\n\t// If possible, trim it for prettiness, but not necessarily\n\telem.className = typeof set.trim === \"function\" ? set.trim() : set.replace(/^\\s+|\\s+$/g, \"\");\n}\n\nfunction id( name ) {\n\treturn !!( typeof document !== \"undefined\" && document && document.getElementById ) &&\n\t\tdocument.getElementById( name );\n}\n\nfunction registerLoggingCallback( key ) {\n\treturn function( callback ) {\n\t\tconfig[key].push( callback );\n\t};\n}\n\n// Supports deprecated method of completely overwriting logging callbacks\nfunction runLoggingCallbacks( key, scope, args ) {\n\tvar i, callbacks;\n\tif ( QUnit.hasOwnProperty( key ) ) {\n\t\tQUnit[ key ].call(scope, args );\n\t} else {\n\t\tcallbacks = config[ key ];\n\t\tfor ( i = 0; i < callbacks.length; i++ ) {\n\t\t\tcallbacks[ i ].call( scope, args );\n\t\t}\n\t}\n}\n\n// Test for equality any JavaScript type.\n// Author: Philippe Rathé <prathe@gmail.com>\nQUnit.equiv = (function() {\n\n\t// Call the o related callback with the given arguments.\n\tfunction bindCallbacks( o, callbacks, args ) {\n\t\tvar prop = QUnit.objectType( o );\n\t\tif ( prop ) {\n\t\t\tif ( QUnit.objectType( callbacks[ prop ] ) === \"function\" ) {\n\t\t\t\treturn callbacks[ prop ].apply( callbacks, args );\n\t\t\t} else {\n\t\t\t\treturn callbacks[ prop ]; // or undefined\n\t\t\t}\n\t\t}\n\t}\n\n\t// the real equiv function\n\tvar innerEquiv,\n\t\t// stack to decide between skip/abort functions\n\t\tcallers = [],\n\t\t// stack to avoiding loops from circular referencing\n\t\tparents = [],\n\t\tparentsB = [],\n\n\t\tgetProto = Object.getPrototypeOf || function ( obj ) {\n\t\t\t/*jshint camelcase:false */\n\t\t\treturn obj.__proto__;\n\t\t},\n\t\tcallbacks = (function () {\n\n\t\t\t// for string, boolean, number and null\n\t\t\tfunction useStrictEquality( b, a ) {\n\t\t\t\t/*jshint eqeqeq:false */\n\t\t\t\tif ( b instanceof a.constructor || a instanceof b.constructor ) {\n\t\t\t\t\t// to catch short annotation VS 'new' annotation of a\n\t\t\t\t\t// declaration\n\t\t\t\t\t// e.g. var i = 1;\n\t\t\t\t\t// var j = new Number(1);\n\t\t\t\t\treturn a == b;\n\t\t\t\t} else {\n\t\t\t\t\treturn a === b;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\t\"string\": useStrictEquality,\n\t\t\t\t\"boolean\": useStrictEquality,\n\t\t\t\t\"number\": useStrictEquality,\n\t\t\t\t\"null\": useStrictEquality,\n\t\t\t\t\"undefined\": useStrictEquality,\n\n\t\t\t\t\"nan\": function( b ) {\n\t\t\t\t\treturn isNaN( b );\n\t\t\t\t},\n\n\t\t\t\t\"date\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"date\" && a.valueOf() === b.valueOf();\n\t\t\t\t},\n\n\t\t\t\t\"regexp\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"regexp\" &&\n\t\t\t\t\t\t// the regex itself\n\t\t\t\t\t\ta.source === b.source &&\n\t\t\t\t\t\t// and its modifiers\n\t\t\t\t\t\ta.global === b.global &&\n\t\t\t\t\t\t// (gmi) ...\n\t\t\t\t\t\ta.ignoreCase === b.ignoreCase &&\n\t\t\t\t\t\ta.multiline === b.multiline &&\n\t\t\t\t\t\ta.sticky === b.sticky;\n\t\t\t\t},\n\n\t\t\t\t// - skip when the property is a method of an instance (OOP)\n\t\t\t\t// - abort otherwise,\n\t\t\t\t// initial === would have catch identical references anyway\n\t\t\t\t\"function\": function() {\n\t\t\t\t\tvar caller = callers[callers.length - 1];\n\t\t\t\t\treturn caller !== Object && typeof caller !== \"undefined\";\n\t\t\t\t},\n\n\t\t\t\t\"array\": function( b, a ) {\n\t\t\t\t\tvar i, j, len, loop, aCircular, bCircular;\n\n\t\t\t\t\t// b could be an object literal here\n\t\t\t\t\tif ( QUnit.objectType( b ) !== \"array\" ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\tlen = a.length;\n\t\t\t\t\tif ( len !== b.length ) {\n\t\t\t\t\t\t// safe and faster\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\t\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\n\t\t\t\t\"object\": function( b, a ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar i, j, loop, aCircular, bCircular,\n\t\t\t\t\t\t// Default to true\n\t\t\t\t\t\teq = true,\n\t\t\t\t\t\taProperties = [],\n\t\t\t\t\t\tbProperties = [];\n\n\t\t\t\t\t// comparing constructors is more strict than using\n\t\t\t\t\t// instanceof\n\t\t\t\t\tif ( a.constructor !== b.constructor ) {\n\t\t\t\t\t\t// Allow objects with no prototype to be equivalent to\n\t\t\t\t\t\t// objects with Object as their constructor.\n\t\t\t\t\t\tif ( !(( getProto(a) === null && getProto(b) === Object.prototype ) ||\n\t\t\t\t\t\t\t( getProto(b) === null && getProto(a) === Object.prototype ) ) ) {\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// stack constructor before traversing properties\n\t\t\t\t\tcallers.push( a.constructor );\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\n\t\t\t\t\t// be strict: don't ensure hasOwnProperty and go deep\n\t\t\t\t\tfor ( i in a ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\taProperties.push(i);\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\tcallers.pop(); // unstack, we are done\n\n\t\t\t\t\tfor ( i in b ) {\n\t\t\t\t\t\tbProperties.push( i ); // collect b's properties\n\t\t\t\t\t}\n\n\t\t\t\t\t// Ensures identical properties name\n\t\t\t\t\treturn eq && innerEquiv( aProperties.sort(), bProperties.sort() );\n\t\t\t\t}\n\t\t\t};\n\t\t}());\n\n\tinnerEquiv = function() { // can take multiple arguments\n\t\tvar args = [].slice.apply( arguments );\n\t\tif ( args.length < 2 ) {\n\t\t\treturn true; // end transition\n\t\t}\n\n\t\treturn (function( a, b ) {\n\t\t\tif ( a === b ) {\n\t\t\t\treturn true; // catch the most you can\n\t\t\t} else if ( a === null || b === null || typeof a === \"undefined\" ||\n\t\t\t\t\ttypeof b === \"undefined\" ||\n\t\t\t\t\tQUnit.objectType(a) !== QUnit.objectType(b) ) {\n\t\t\t\treturn false; // don't lose time with error prone cases\n\t\t\t} else {\n\t\t\t\treturn bindCallbacks(a, callbacks, [ b, a ]);\n\t\t\t}\n\n\t\t\t// apply transition with (1..n) arguments\n\t\t}( args[0], args[1] ) && innerEquiv.apply( this, args.splice(1, args.length - 1 )) );\n\t};\n\n\treturn innerEquiv;\n}());\n\n/**\n * jsDump Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com |\n * http://flesler.blogspot.com Licensed under BSD\n * (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008\n *\n * @projectDescription Advanced and extensible data dumping for Javascript.\n * @version 1.0.0\n * @author Ariel Flesler\n * @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}\n */\nQUnit.jsDump = (function() {\n\tfunction quote( str ) {\n\t\treturn \"\\\"\" + str.toString().replace( /\"/g, \"\\\\\\\"\" ) + \"\\\"\";\n\t}\n\tfunction literal( o ) {\n\t\treturn o + \"\";\n\t}\n\tfunction join( pre, arr, post ) {\n\t\tvar s = jsDump.separator(),\n\t\t\tbase = jsDump.indent(),\n\t\t\tinner = jsDump.indent(1);\n\t\tif ( arr.join ) {\n\t\t\tarr = arr.join( \",\" + s + inner );\n\t\t}\n\t\tif ( !arr ) {\n\t\t\treturn pre + post;\n\t\t}\n\t\treturn [ pre, inner + arr, base + post ].join(s);\n\t}\n\tfunction array( arr, stack ) {\n\t\tvar i = arr.length, ret = new Array(i);\n\t\tthis.up();\n\t\twhile ( i-- ) {\n\t\t\tret[i] = this.parse( arr[i] , undefined , stack);\n\t\t}\n\t\tthis.down();\n\t\treturn join( \"[\", ret, \"]\" );\n\t}\n\n\tvar reName = /^function (\\w+)/,\n\t\tjsDump = {\n\t\t\t// type is used mostly internally, you can fix a (custom)type in advance\n\t\t\tparse: function( obj, type, stack ) {\n\t\t\t\tstack = stack || [ ];\n\t\t\t\tvar inStack, res,\n\t\t\t\t\tparser = this.parsers[ type || this.typeOf(obj) ];\n\n\t\t\t\ttype = typeof parser;\n\t\t\t\tinStack = inArray( obj, stack );\n\n\t\t\t\tif ( inStack !== -1 ) {\n\t\t\t\t\treturn \"recursion(\" + (inStack - stack.length) + \")\";\n\t\t\t\t}\n\t\t\t\tif ( type === \"function\" )  {\n\t\t\t\t\tstack.push( obj );\n\t\t\t\t\tres = parser.call( this, obj, stack );\n\t\t\t\t\tstack.pop();\n\t\t\t\t\treturn res;\n\t\t\t\t}\n\t\t\t\treturn ( type === \"string\" ) ? parser : this.parsers.error;\n\t\t\t},\n\t\t\ttypeOf: function( obj ) {\n\t\t\t\tvar type;\n\t\t\t\tif ( obj === null ) {\n\t\t\t\t\ttype = \"null\";\n\t\t\t\t} else if ( typeof obj === \"undefined\" ) {\n\t\t\t\t\ttype = \"undefined\";\n\t\t\t\t} else if ( QUnit.is( \"regexp\", obj) ) {\n\t\t\t\t\ttype = \"regexp\";\n\t\t\t\t} else if ( QUnit.is( \"date\", obj) ) {\n\t\t\t\t\ttype = \"date\";\n\t\t\t\t} else if ( QUnit.is( \"function\", obj) ) {\n\t\t\t\t\ttype = \"function\";\n\t\t\t\t} else if ( typeof obj.setInterval !== undefined && typeof obj.document !== \"undefined\" && typeof obj.nodeType === \"undefined\" ) {\n\t\t\t\t\ttype = \"window\";\n\t\t\t\t} else if ( obj.nodeType === 9 ) {\n\t\t\t\t\ttype = \"document\";\n\t\t\t\t} else if ( obj.nodeType ) {\n\t\t\t\t\ttype = \"node\";\n\t\t\t\t} else if (\n\t\t\t\t\t// native arrays\n\t\t\t\t\ttoString.call( obj ) === \"[object Array]\" ||\n\t\t\t\t\t// NodeList objects\n\t\t\t\t\t( typeof obj.length === \"number\" && typeof obj.item !== \"undefined\" && ( obj.length ? obj.item(0) === obj[0] : ( obj.item( 0 ) === null && typeof obj[0] === \"undefined\" ) ) )\n\t\t\t\t) {\n\t\t\t\t\ttype = \"array\";\n\t\t\t\t} else if ( obj.constructor === Error.prototype.constructor ) {\n\t\t\t\t\ttype = \"error\";\n\t\t\t\t} else {\n\t\t\t\t\ttype = typeof obj;\n\t\t\t\t}\n\t\t\t\treturn type;\n\t\t\t},\n\t\t\tseparator: function() {\n\t\t\t\treturn this.multiline ?\tthis.HTML ? \"<br />\" : \"\\n\" : this.HTML ? \"&nbsp;\" : \" \";\n\t\t\t},\n\t\t\t// extra can be a number, shortcut for increasing-calling-decreasing\n\t\t\tindent: function( extra ) {\n\t\t\t\tif ( !this.multiline ) {\n\t\t\t\t\treturn \"\";\n\t\t\t\t}\n\t\t\t\tvar chr = this.indentChar;\n\t\t\t\tif ( this.HTML ) {\n\t\t\t\t\tchr = chr.replace( /\\t/g, \"   \" ).replace( / /g, \"&nbsp;\" );\n\t\t\t\t}\n\t\t\t\treturn new Array( this.depth + ( extra || 0 ) ).join(chr);\n\t\t\t},\n\t\t\tup: function( a ) {\n\t\t\t\tthis.depth += a || 1;\n\t\t\t},\n\t\t\tdown: function( a ) {\n\t\t\t\tthis.depth -= a || 1;\n\t\t\t},\n\t\t\tsetParser: function( name, parser ) {\n\t\t\t\tthis.parsers[name] = parser;\n\t\t\t},\n\t\t\t// The next 3 are exposed so you can use them\n\t\t\tquote: quote,\n\t\t\tliteral: literal,\n\t\t\tjoin: join,\n\t\t\t//\n\t\t\tdepth: 1,\n\t\t\t// This is the list of parsers, to modify them, use jsDump.setParser\n\t\t\tparsers: {\n\t\t\t\twindow: \"[Window]\",\n\t\t\t\tdocument: \"[Document]\",\n\t\t\t\terror: function(error) {\n\t\t\t\t\treturn \"Error(\\\"\" + error.message + \"\\\")\";\n\t\t\t\t},\n\t\t\t\tunknown: \"[Unknown]\",\n\t\t\t\t\"null\": \"null\",\n\t\t\t\t\"undefined\": \"undefined\",\n\t\t\t\t\"function\": function( fn ) {\n\t\t\t\t\tvar ret = \"function\",\n\t\t\t\t\t\t// functions never have name in IE\n\t\t\t\t\t\tname = \"name\" in fn ? fn.name : (reName.exec(fn) || [])[1];\n\n\t\t\t\t\tif ( name ) {\n\t\t\t\t\t\tret += \" \" + name;\n\t\t\t\t\t}\n\t\t\t\t\tret += \"( \";\n\n\t\t\t\t\tret = [ ret, QUnit.jsDump.parse( fn, \"functionArgs\" ), \"){\" ].join( \"\" );\n\t\t\t\t\treturn join( ret, QUnit.jsDump.parse(fn,\"functionCode\" ), \"}\" );\n\t\t\t\t},\n\t\t\t\tarray: array,\n\t\t\t\tnodelist: array,\n\t\t\t\t\"arguments\": array,\n\t\t\t\tobject: function( map, stack ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar ret = [ ], keys, key, val, i;\n\t\t\t\t\tQUnit.jsDump.up();\n\t\t\t\t\tkeys = [];\n\t\t\t\t\tfor ( key in map ) {\n\t\t\t\t\t\tkeys.push( key );\n\t\t\t\t\t}\n\t\t\t\t\tkeys.sort();\n\t\t\t\t\tfor ( i = 0; i < keys.length; i++ ) {\n\t\t\t\t\t\tkey = keys[ i ];\n\t\t\t\t\t\tval = map[ key ];\n\t\t\t\t\t\tret.push( QUnit.jsDump.parse( key, \"key\" ) + \": \" + QUnit.jsDump.parse( val, undefined, stack ) );\n\t\t\t\t\t}\n\t\t\t\t\tQUnit.jsDump.down();\n\t\t\t\t\treturn join( \"{\", ret, \"}\" );\n\t\t\t\t},\n\t\t\t\tnode: function( node ) {\n\t\t\t\t\tvar len, i, val,\n\t\t\t\t\t\topen = QUnit.jsDump.HTML ? \"&lt;\" : \"<\",\n\t\t\t\t\t\tclose = QUnit.jsDump.HTML ? \"&gt;\" : \">\",\n\t\t\t\t\t\ttag = node.nodeName.toLowerCase(),\n\t\t\t\t\t\tret = open + tag,\n\t\t\t\t\t\tattrs = node.attributes;\n\n\t\t\t\t\tif ( attrs ) {\n\t\t\t\t\t\tfor ( i = 0, len = attrs.length; i < len; i++ ) {\n\t\t\t\t\t\t\tval = attrs[i].nodeValue;\n\t\t\t\t\t\t\t// IE6 includes all attributes in .attributes, even ones not explicitly set.\n\t\t\t\t\t\t\t// Those have values like undefined, null, 0, false, \"\" or \"inherit\".\n\t\t\t\t\t\t\tif ( val && val !== \"inherit\" ) {\n\t\t\t\t\t\t\t\tret += \" \" + attrs[i].nodeName + \"=\" + QUnit.jsDump.parse( val, \"attribute\" );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tret += close;\n\n\t\t\t\t\t// Show content of TextNode or CDATASection\n\t\t\t\t\tif ( node.nodeType === 3 || node.nodeType === 4 ) {\n\t\t\t\t\t\tret += node.nodeValue;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn ret + open + \"/\" + tag + close;\n\t\t\t\t},\n\t\t\t\t// function calls it internally, it's the arguments part of the function\n\t\t\t\tfunctionArgs: function( fn ) {\n\t\t\t\t\tvar args,\n\t\t\t\t\t\tl = fn.length;\n\n\t\t\t\t\tif ( !l ) {\n\t\t\t\t\t\treturn \"\";\n\t\t\t\t\t}\n\n\t\t\t\t\targs = new Array(l);\n\t\t\t\t\twhile ( l-- ) {\n\t\t\t\t\t\t// 97 is 'a'\n\t\t\t\t\t\targs[l] = String.fromCharCode(97+l);\n\t\t\t\t\t}\n\t\t\t\t\treturn \" \" + args.join( \", \" ) + \" \";\n\t\t\t\t},\n\t\t\t\t// object calls it internally, the key part of an item in a map\n\t\t\t\tkey: quote,\n\t\t\t\t// function calls it internally, it's the content of the function\n\t\t\t\tfunctionCode: \"[code]\",\n\t\t\t\t// node calls it internally, it's an html attribute value\n\t\t\t\tattribute: quote,\n\t\t\t\tstring: quote,\n\t\t\t\tdate: quote,\n\t\t\t\tregexp: literal,\n\t\t\t\tnumber: literal,\n\t\t\t\t\"boolean\": literal\n\t\t\t},\n\t\t\t// if true, entities are escaped ( <, >, \\t, space and \\n )\n\t\t\tHTML: false,\n\t\t\t// indentation unit\n\t\t\tindentChar: \"  \",\n\t\t\t// if true, items in a collection, are separated by a \\n, else just a space.\n\t\t\tmultiline: true\n\t\t};\n\n\treturn jsDump;\n}());\n\n// from jquery.js\nfunction inArray( elem, array ) {\n\tif ( array.indexOf ) {\n\t\treturn array.indexOf( elem );\n\t}\n\n\tfor ( var i = 0, length = array.length; i < length; i++ ) {\n\t\tif ( array[ i ] === elem ) {\n\t\t\treturn i;\n\t\t}\n\t}\n\n\treturn -1;\n}\n\n/*\n * Javascript Diff Algorithm\n *  By John Resig (http://ejohn.org/)\n *  Modified by Chu Alan \"sprite\"\n *\n * Released under the MIT license.\n *\n * More Info:\n *  http://ejohn.org/projects/javascript-diff-algorithm/\n *\n * Usage: QUnit.diff(expected, actual)\n *\n * QUnit.diff( \"the quick brown fox jumped over\", \"the quick fox jumps over\" ) == \"the  quick <del>brown </del> fox <del>jumped </del><ins>jumps </ins> over\"\n */\nQUnit.diff = (function() {\n\t/*jshint eqeqeq:false, eqnull:true */\n\tfunction diff( o, n ) {\n\t\tvar i,\n\t\t\tns = {},\n\t\t\tos = {};\n\n\t\tfor ( i = 0; i < n.length; i++ ) {\n\t\t\tif ( !hasOwn.call( ns, n[i] ) ) {\n\t\t\t\tns[ n[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\to: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tns[ n[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i = 0; i < o.length; i++ ) {\n\t\t\tif ( !hasOwn.call( os, o[i] ) ) {\n\t\t\t\tos[ o[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\tn: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tos[ o[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i in ns ) {\n\t\t\tif ( hasOwn.call( ns, i ) ) {\n\t\t\t\tif ( ns[i].rows.length === 1 && hasOwn.call( os, i ) && os[i].rows.length === 1 ) {\n\t\t\t\t\tn[ ns[i].rows[0] ] = {\n\t\t\t\t\t\ttext: n[ ns[i].rows[0] ],\n\t\t\t\t\t\trow: os[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t\to[ os[i].rows[0] ] = {\n\t\t\t\t\t\ttext: o[ os[i].rows[0] ],\n\t\t\t\t\t\trow: ns[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = 0; i < n.length - 1; i++ ) {\n\t\t\tif ( n[i].text != null && n[ i + 1 ].text == null && n[i].row + 1 < o.length && o[ n[i].row + 1 ].text == null &&\n\t\t\t\t\t\tn[ i + 1 ] == o[ n[i].row + 1 ] ) {\n\n\t\t\t\tn[ i + 1 ] = {\n\t\t\t\t\ttext: n[ i + 1 ],\n\t\t\t\t\trow: n[i].row + 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row + 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row + 1 ],\n\t\t\t\t\trow: i + 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = n.length - 1; i > 0; i-- ) {\n\t\t\tif ( n[i].text != null && n[ i - 1 ].text == null && n[i].row > 0 && o[ n[i].row - 1 ].text == null &&\n\t\t\t\t\t\tn[ i - 1 ] == o[ n[i].row - 1 ]) {\n\n\t\t\t\tn[ i - 1 ] = {\n\t\t\t\t\ttext: n[ i - 1 ],\n\t\t\t\t\trow: n[i].row - 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row - 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row - 1 ],\n\t\t\t\t\trow: i - 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\treturn {\n\t\t\to: o,\n\t\t\tn: n\n\t\t};\n\t}\n\n\treturn function( o, n ) {\n\t\to = o.replace( /\\s+$/, \"\" );\n\t\tn = n.replace( /\\s+$/, \"\" );\n\n\t\tvar i, pre,\n\t\t\tstr = \"\",\n\t\t\tout = diff( o === \"\" ? [] : o.split(/\\s+/), n === \"\" ? [] : n.split(/\\s+/) ),\n\t\t\toSpace = o.match(/\\s+/g),\n\t\t\tnSpace = n.match(/\\s+/g);\n\n\t\tif ( oSpace == null ) {\n\t\t\toSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\toSpace.push( \" \" );\n\t\t}\n\n\t\tif ( nSpace == null ) {\n\t\t\tnSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\tnSpace.push( \" \" );\n\t\t}\n\n\t\tif ( out.n.length === 0 ) {\n\t\t\tfor ( i = 0; i < out.o.length; i++ ) {\n\t\t\t\tstr += \"<del>\" + out.o[i] + oSpace[i] + \"</del>\";\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tif ( out.n[0].text == null ) {\n\t\t\t\tfor ( n = 0; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\tstr += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( i = 0; i < out.n.length; i++ ) {\n\t\t\t\tif (out.n[i].text == null) {\n\t\t\t\t\tstr += \"<ins>\" + out.n[i] + nSpace[i] + \"</ins>\";\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// `pre` initialized at top of scope\n\t\t\t\t\tpre = \"\";\n\n\t\t\t\t\tfor ( n = out.n[i].row + 1; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\t\tpre += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t\t}\n\t\t\t\t\tstr += \" \" + out.n[i].text + nSpace[i] + pre;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn str;\n\t};\n}());\n\n// for CommonJS environments, export everything\nif ( typeof exports !== \"undefined\" ) {\n\textend( exports, QUnit.constructor.prototype );\n}\n\n// get at whatever the global object is, like window in browsers\n}( (function() {return this;}.call()) ));"
  },
  {
    "path": "doc/meetingcpp-2016/test/test-markdown-element-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Element Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\" data-element-attributes=\"{_\\s*?([^}]+?)}\">>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\t\t\t\t\t\t<!-- {_class=\"fragment fade-out\" data-fragment-index=\"1\"} -->\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\t\t\t\t\t\t<!-- {_class=\"fragment shrink\"} -->\n\n\t\t\t\t\t\tParagraph 1\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\tParagraph 2\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 2 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 3 <!-- {_class=\"fragment grow\"} -->\n\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\n\n\t\t\t\t\t\tParagraph 1.2  \n\t\t\t\t\t\tmulti-line <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.2 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.3 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.4 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 2<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 3<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 4\n\t\t\t\t\t\t<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 5<!-- {_class=\"fragment highlight-green\"} -->\n\n\t\t\t\t\t\tTest\n\n\t\t\t\t\t\t![Example Picture](examples/assets/image2.png)\n\t\t\t\t\t\t<!-- {_class=\"reveal stretch\"} -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def <!-- .element: class=\"fragment highlight-red\" data-fragment-index=\"1\" -->\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .element: class=\"fragment highlight-red\" -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\t\t\t\t\tA paragraph\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tMultiple  \n\t\t\t\t\tLine\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tTest<!-- .element: class=\"fragment highlight-blue\" -->\n\n\t\t\t\t\tMore Test\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-element-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/test-markdown-element-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 4, 'found four slides' );\n\t});\n\n\n\ttest( 'Attributes on element header in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.fade-out' ).length, 1, 'found one vertical slide with class fragment.fade-out on header' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.shrink' ).length, 1, 'found one vertical slide with class fragment.shrink on header' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section p.fragment.grow' ).length, 2, 'found a vertical slide with two paragraphs with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element list items in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-red' ).length, 4, 'found a horizontal slide with four paragraphs with class fragment.grow' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section li.fragment.highlight-green' ).length, 5, 'found a horizontal slide with five list items with class fragment.roll-in' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section img.reveal.stretch' ).length, 1, 'found a horizontal slide with stretched image, class img.reveal.stretch' );\n\t});\n\n\ttest( 'Attributes on elements in vertical slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section h2.fragment.highlight-red' ).length, 2, 'found two h2 titles with fragment highlight-red in vertical slides with default element attribute separator' );\n\t});\n\n\ttest( 'Attributes on elements in single slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-blue' ).length, 3, 'found three elements with fragment highlight-blue in single slide with default element attribute separator' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/test-markdown-slide-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by three lines, vertical slides by two lines, attributes are one any line starting with (spaces and) two dashes -->\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-attributes=\"--\\s(.*?)$\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown\n\t\t\t\t\t\t## Slide 1\n\n\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t\t<!-- -- id=\"slide2\" data-transition=\"zoom\" data-background=\"#A0C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1\n\t\t\t\t\t\t<!-- -- data-background=\"#ff0000\" data-transition=\"fade\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2\n\t\t\t\t\t\t[Link to Slide2](#/slide2)\n\n\n\n\t\t\t\t\t\t## Slide 3\n\t\t\t\t\t\t<!-- -- data-transition=\"zoom\" data-background=\"#C6916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def\n\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .slide: id=\"slide2def\" data-transition=\"concave\" data-background=\"#A7C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1 Def\n\t\t\t\t\t\t<!-- .slide: data-background=\"#f70000\" data-transition=\"page\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2 Def\n\t\t\t\t\t\t[Link to Slide2](#/slide2def)\n\n\n\n\t\t\t\t\t\t## Slide 3 Def\n\t\t\t\t\t\t<!-- .slide: data-transition=\"concave\" data-background=\"#C7916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\n\t\t\t\t\t\tTest\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\n\t\t\t\t\t\tMore Test\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-slide-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/test-markdown-slide-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 6, 'found six vertical slides' );\n\t});\n\n\ttest( 'Id on slide', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section#slide2' ).length, 1, 'found one slide with id slide2' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section a[href=\"#/slide2\"]' ).length, 1, 'found one slide with a link to slide2' );\n\t});\n\n\ttest( 'data-background attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A0C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#ff0000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C6916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"zoom\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"fade\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"zoom\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-background attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A7C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#f70000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C7916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"concave\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"page\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"concave\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-transition attributes with inline content', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#ff0000\"]' ).length, 3, 'found three horizontal slides with data-background=\"#ff0000\"' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/test-markdown.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/test-markdown.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/test-pdf.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test PDF exports</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../css/print/pdf.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-pdf.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/test-pdf.js",
    "content": "\nReveal.addEventListener( 'ready', function() {\n\n\t// Only one test for now, we're mainly ensuring that there\n\t// are no execution errors when running PDF mode\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\n} );\n\nReveal.initialize({ pdf: true });\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/test.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Tests</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background-image=\"examples/assets/image1.png\">\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t\t<video data-src=\"fake-url.mp4\"></video>\n\t\t\t\t\t<audio data-src=\"fake-url.mp3\"></audio>\n\t\t\t\t\t<aside class=\"notes\">speaker notes 1</aside>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"examples/assets/image2.png\" data-notes=\"speaker notes 2\">\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t<iframe data-src=\"http://example.com\"></iframe>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "doc/meetingcpp-2016/test/test.js",
    "content": "\n// These tests expect the DOM to contain a presentation\n// with the following slide structure:\n//\n// 1\n// 2 - Three sub-slides\n// 3 - Three fragment elements\n// 3 - Two fragments with same data-fragment-index\n// 4\n\n\nReveal.addEventListener( 'ready', function() {\n\n\t// ---------------------------------------------------------------\n\t// DOM TESTS\n\n\tQUnit.module( 'DOM' );\n\n\ttest( 'Initial slides classes', function() {\n\t\tvar horizontalSlides = document.querySelectorAll( '.reveal .slides>section' )\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.past' ).length, 0, 'no .past slides' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.present' ).length, 1, 'one .present slide' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section.future' ).length, horizontalSlides.length - 1, 'remaining horizontal slides are .future' );\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.stack' ).length, 2, 'two .stacks' );\n\n\t\tok( document.querySelectorAll( '.reveal .slides section.stack' )[0].querySelectorAll( '.future' ).length > 0, 'vertical slides are given .future' );\n\t});\n\n\t// ---------------------------------------------------------------\n\t// API TESTS\n\n\tQUnit.module( 'API' );\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\ttest( 'Reveal.isOverview', function() {\n\t\tstrictEqual( Reveal.isOverview(), false, 'false by default' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), true, 'true after toggling on' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), false, 'false after toggling off' );\n\t});\n\n\ttest( 'Reveal.isPaused', function() {\n\t\tstrictEqual( Reveal.isPaused(), false, 'false by default' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), true, 'true after pausing' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), false, 'false after resuming' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), false, 'false after Reveal.slide( 1, 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide after vertical slide', function() {\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide after vertical slide', function() {\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( lastSlideIndex );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\t});\n\n\ttest( 'Reveal.getTotalSlides', function() {\n\t\tstrictEqual( Reveal.getTotalSlides(), 8, 'eight slides in total' );\n\t});\n\n\ttest( 'Reveal.getIndices', function() {\n\t\tvar indices = Reveal.getIndices();\n\n\t\tok( indices.hasOwnProperty( 'h' ), 'h exists' );\n\t\tok( indices.hasOwnProperty( 'v' ), 'v exists' );\n\t\tok( indices.hasOwnProperty( 'f' ), 'f exists' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\n\t\tReveal.slide( 1, 2 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 2, 'v 2' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 0, 'h 0' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\t});\n\n\ttest( 'Reveal.getSlide', function() {\n\t\tequal( Reveal.getSlide( 0 ), document.querySelector( '.reveal .slides>section:first-child' ), 'gets correct first slide' );\n\t\tequal( Reveal.getSlide( 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlide( 1, 0 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlide( 1, 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlide( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlide( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideBackground', function() {\n\t\tequal( Reveal.getSlideBackground( 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:first-child' ), 'gets correct first background' );\n\t\tequal( Reveal.getSlideBackground( 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlideBackground( 1, 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlideBackground( 1, 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlideBackground( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlideBackground( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideNotes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 1', 'works with <aside class=\"notes\">' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 2', 'works with <section data-notes=\"\">' );\n\t});\n\n\ttest( 'Reveal.getPreviousSlide/getCurrentSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tReveal.slide( 1, 0 );\n\n\t\tvar firstSlide = document.querySelector( '.reveal .slides>section:first-child' );\n\t\tvar secondSlide = document.querySelector( '.reveal .slides>section:nth-child(2)>section' );\n\n\t\tequal( Reveal.getPreviousSlide(), firstSlide, 'previous is slide #0' );\n\t\tequal( Reveal.getCurrentSlide(), secondSlide, 'current is slide #1' );\n\t});\n\n\ttest( 'Reveal.getProgress', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 0, 'progress is 0 on first slide' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 1, 'progress is 1 on last slide' );\n\t});\n\n\ttest( 'Reveal.getScale', function() {\n\t\tok( typeof Reveal.getScale() === 'number', 'has scale' );\n\t});\n\n\ttest( 'Reveal.getConfig', function() {\n\t\tok( typeof Reveal.getConfig() === 'object', 'has config' );\n\t});\n\n\ttest( 'Reveal.configure', function() {\n\t\tstrictEqual( Reveal.getConfig().loop, false, '\"loop\" is false to start with' );\n\n\t\tReveal.configure({ loop: true });\n\t\tstrictEqual( Reveal.getConfig().loop, true, '\"loop\" has changed to true' );\n\n\t\tReveal.configure({ loop: false, customTestValue: 1 });\n\t\tstrictEqual( Reveal.getConfig().customTestValue, 1, 'supports custom values' );\n\t});\n\n\ttest( 'Reveal.availableRoutes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: false, up: false, down: false, right: true }, 'correct for first slide' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: true, up: false, down: true, right: true }, 'correct for vertical slide' );\n\t});\n\n\ttest( 'Reveal.next', function() {\n\t\tReveal.slide( 0, 0 );\n\n\t\t// Step through vertical child slides\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 1, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 2, f: undefined } );\n\n\t\t// Step through fragments\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 } );\n\t});\n\n\ttest( 'Reveal.next at end', function() {\n\t\tReveal.slide( 3 );\n\n\t\t// We're at the end, this should have no effect\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// FRAGMENT TESTS\n\n\tQUnit.module( 'Fragments' );\n\n\ttest( 'Sliding to fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 }, 'Reveal.slide( 2, 0, -1 )' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'Reveal.slide( 2, 0, 0 )' );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'Reveal.slide( 2, 0, 2 )' );\n\n\t\tReveal.slide( 2, 0, 1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'Reveal.slide( 2, 0, 1 )' );\n\t});\n\n\ttest( 'Hiding all fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 1, 'one fragment visible when index is 0' );\n\n\t\tReveal.slide( 2, 0, -1 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when index is -1' );\n\t});\n\n\ttest( 'Current fragment', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment at index -1' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 1, 'one current fragment at index 0' );\n\n\t\tReveal.slide( 1, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to next slide' );\n\t});\n\n\ttest( 'Stepping through fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\n\t\t// forwards:\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'next() goes to next fragment' );\n\n\t\tReveal.right();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'right() goes to next fragment' );\n\n\t\tReveal.down();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'down() goes to next fragment' );\n\n\t\tReveal.down(); // moves to f #3\n\n\t\t// backwards:\n\n\t\tReveal.prev();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'prev() goes to prev fragment' );\n\n\t\tReveal.left();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'left() goes to prev fragment' );\n\n\t\tReveal.up();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'up() goes to prev fragment' );\n\t});\n\n\ttest( 'Stepping past fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 0, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when on previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 3, 'all fragments visible when on future slide' );\n\t});\n\n\ttest( 'Fragment indices', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(2)' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 2, 'both fragments of same index are shown' );\n\n\t\t// This slide has three fragments, first one is index 0, second and third have index 1\n\t\tReveal.slide( 2, 2, 0 );\n\t\tequal( Reveal.getIndices().f, 0, 'returns correct index for first fragment' );\n\n\t\tReveal.slide( 2, 2, 1 );\n\t\tequal( Reveal.getIndices().f, 1, 'returns correct index for two fragments with same index' );\n\t});\n\n\ttest( 'Index generation', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\t// These have no indices defined to start with\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '2' );\n\t});\n\n\ttest( 'Index normalization', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(3)' );\n\n\t\t// These start out as 1-4-4 and should normalize to 0-1-1\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '1' );\n\t});\n\n\tasyncTest( 'fragmentshown event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmentshown', _onEvent );\n\n\t\tReveal.slide( 2, 0 );\n\t\tReveal.slide( 2, 0 ); // should do nothing\n\t\tReveal.slide( 2, 0, 0 ); // should do nothing\n\t\tReveal.next();\n\t\tReveal.next();\n\t\tReveal.prev(); // shouldn't fire fragmentshown\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmentshown', _onEvent );\n\t});\n\n\tasyncTest( 'fragmenthidden event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmenthidden', _onEvent );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tReveal.slide( 2, 0, 2 ); // should do nothing\n\t\tReveal.prev();\n\t\tReveal.prev();\n\t\tReveal.next(); // shouldn't fire fragmenthidden\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmenthidden', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// AUTO-SLIDE TESTS\n\n\tQUnit.module( 'Auto Sliding' );\n\n\ttest( 'Reveal.isAutoSliding', function() {\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false by default' );\n\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after starting' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after setting to 0' );\n\t});\n\n\ttest( 'Reveal.toggleAutoSlide', function() {\n\t\tReveal.configure({ autoSlide: 10000 });\n\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after first toggle' );\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after second toggle' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t});\n\n\tasyncTest( 'autoslidepaused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslidepaused', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslidepaused', _onEvent );\n\t});\n\n\tasyncTest( 'autoslideresumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslideresumed', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslideresumed', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// CONFIGURATION VALUES\n\n\tQUnit.module( 'Configuration' );\n\n\ttest( 'Controls', function() {\n\t\tvar controlsElement = document.querySelector( '.reveal>.controls' );\n\n\t\tReveal.configure({ controls: false });\n\t\tequal( controlsElement.style.display, 'none', 'controls are hidden' );\n\n\t\tReveal.configure({ controls: true });\n\t\tequal( controlsElement.style.display, 'block', 'controls are visible' );\n\t});\n\n\ttest( 'Progress', function() {\n\t\tvar progressElement = document.querySelector( '.reveal>.progress' );\n\n\t\tReveal.configure({ progress: false });\n\t\tequal( progressElement.style.display, 'none', 'progress are hidden' );\n\n\t\tReveal.configure({ progress: true });\n\t\tequal( progressElement.style.display, 'block', 'progress are visible' );\n\t});\n\n\ttest( 'Loop', function() {\n\t\tReveal.configure({ loop: true });\n\n\t\tReveal.slide( 0, 0 );\n\n\t\tReveal.left();\n\t\tnotEqual( Reveal.getIndices().h, 0, 'looped from start to end' );\n\n\t\tReveal.right();\n\t\tequal( Reveal.getIndices().h, 0, 'looped from end to start' );\n\n\t\tReveal.configure({ loop: false });\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// LAZY-LOADING TESTS\n\n\tQUnit.module( 'Lazy-Loading' );\n\n\ttest( 'img with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section img[src]' ).length, 1, 'Image source has been set' );\n\t});\n\n\ttest( 'video with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section video[src]' ).length, 1, 'Video source has been set' );\n\t});\n\n\ttest( 'audio with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section audio[src]' ).length, 1, 'Audio source has been set' );\n\t});\n\n\ttest( 'iframe with data-src', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t\tReveal.slide( 2, 1 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 1, 'Iframe source is set' );\n\t\tReveal.slide( 2, 2 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t});\n\n\ttest( 'background images', function() {\n\t\tvar imageSource1 = Reveal.getSlide( 0 ).getAttribute( 'data-background-image' );\n\t\tvar imageSource2 = Reveal.getSlide( 1, 0 ).getAttribute( 'data-background' );\n\n\t\t// check that the images are applied to the background elements\n\t\tok( Reveal.getSlideBackground( 0 ).style.backgroundImage.indexOf( imageSource1 ) !== -1, 'data-background-image worked' );\n\t\tok( Reveal.getSlideBackground( 1, 0 ).style.backgroundImage.indexOf( imageSource2 ) !== -1, 'data-background worked' );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// EVENT TESTS\n\n\tQUnit.module( 'Events' );\n\n\tasyncTest( 'slidechanged', function() {\n\t\texpect( 3 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'slidechanged', _onEvent );\n\n\t\tReveal.slide( 1, 0 ); // should trigger\n\t\tReveal.slide( 1, 0 ); // should do nothing\n\t\tReveal.next(); // should trigger\n\t\tReveal.slide( 3, 0 ); // should trigger\n\t\tReveal.next(); // should do nothing\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'slidechanged', _onEvent );\n\n\t});\n\n\tasyncTest( 'paused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'paused', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'paused', _onEvent );\n\t});\n\n\tasyncTest( 'resumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'resumed', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'resumed', _onEvent );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "doc/meetingcpp-2016/uml/game.uml",
    "content": "@startuml\n\nclass Canvas\nclass Config\nclass Board\nclass Controller\nclass Game\n\nGame .. Controller\nGame .. Canvas\nController .. Config\nController .. Board\nBoard .. Config\n\n@enduml\n"
  },
  {
    "path": "doc/mkdocs.yml",
    "content": "copyright: Copyright &copy; 2012-2017 Kris Jusiak (kris at jusiak net)\nsite_name: \"[Boost].DI\"\nsite_url: http://boost-experimental.github.io/di\nsite_author: Kris Jusiak\nrepo_url: https://github.com/boost-experimental/di\nrepo_name: di\ndocs_dir: .\nuse_directory_urls: false\ntheme_dir: themes/boost-experimental\ngoogle_analytics: ['UA-73083568-1', 'auto']\nextra_javascript: []\nextra_css: []\n\npages:\n- Introduction: index.md\n- Overview: overview.md\n- Tutorial: tutorial.md\n- Try It Online!: try_it.md\n- Benchmarks: benchmarks.md\n- User Guide: user_guide.md\n- Examples: examples.md\n- Extensions: extensions.md\n- FAQ: FAQ.md\n- CHANGELOG: CHANGELOG.md\n"
  },
  {
    "path": "doc/overview.md",
    "content": "###Quick Start\n\n* Get [boost/di.hpp](https://raw.githubusercontent.com/boost-experimental/di/cpp14/include/boost/di.hpp) header\n```sh\nwget https://raw.githubusercontent.com/boost-experimental/di/cpp14/include/boost/di.hpp\n```\n\n* Include the header and define `di` namespace alias\n```cpp\n#include \"boost/di.hpp\"\nnamespace di = boost::di;\n```\n\n* Compile with C++14 support\n```sh\n$CXX -std=c++14 ...\n```\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\n[Boost].DI compiles with -fno-exceptions -fno-rtti -Wall -Wextra -Werror -pedantic -pedantic-errors\n</span>\n\n* To run tests\n```sh\ngit clone https://github.com/boost-experimental/di && cd di && make\n```\n\n###Dependencies\n\n* No external dependencies are required (neither STL nor Boost)\n\n###Supported/Tested compilers\n\n* [Clang-3.4+](https://travis-ci.org/boost-experimental/di)\n* [GCC-5.2+](https://travis-ci.org/boost-experimental/di)\n* [MSVC-2015+](https://ci.appveyor.com/project/krzysztof-jusiak/di)\n\n###Configuration\n| Macro                             | Description |\n| --------------------------------- | ----------- |\n| `BOOST_DI_VERSION`                | Current version of [Boost].DI (ex. 1'0'0) |\n| `BOOST_DI_CFG`                    | Global configuration allows to customize provider and policies (See [Config](user_guide.md#di_config)) |\n| `BOOST_DI_CFG_CTOR_LIMIT_SIZE`    | Limits number of allowed constructor parameters [0-10, default=10] (See [Injections](user_guide.md#injections)) |\n| `BOOST_DI_CFG_DIAGNOSTICS_LEVEL`  | Gives more information with error messages (See [Error messages](#error-messages)) |\n| `BOOST_DI_NAMESPACE_BEGIN`        | `namespace boost { namespace di { inline namespace v_1_0_0 {` |\n| `BOOST_DI_NAMESPACE_END`          | `}}}` |\n\n###Exception Safety\n\n* [Boost].DI is not using exceptions internally and therefore might be compiled with `-fno-exceptions`.\n* Check [User Guide](user_guide.md) to verify which API's are marked `noexcept`.\n\n###Thread Safety\n\n* [Boost].DI is thread safe.\n\n###Error Messages\n\n* [Boost].DI is designed to give great diagnostic errors. The examples below will show you the actual error messages for different scenarios. Check [`Concepts`](user_guide.md#concepts) to check it out.\n\n###Performance\n\n* [Boost].DI has none run-time overhead and compiles faster than Java's DI frameworks. Check [`Benchmarks`](benchmarks.md) to see more.\n\n---\n\n[Bindings]: user_guide.md#bindings\n[Scopes]: user_guide.md#scopes\n[Providers]: user_guide.md#providers\n[Policies]: user_guide.md#policies\n[Config]: user_guide.md#di_config\n[di::inject]: #di_inject\n[di::ctor_traits]: #di_ctor_traits\n[BOOST_DI_INJECT]: #BOOST_DI_INJECT\n[BOOST_DI_INJECT_TRAITS]: #BOOST_DI_INJECT_TRAITS\n"
  },
  {
    "path": "doc/scripts/update_readme_toc.py",
    "content": "#!/usr/bin/env python\n#update_readme_toc.py doc/mkdocs.yml README.md http://boost-experimental.github.io/msm-lite\n\nimport fileinput, sys, os\n\ngenerating = False\nfor line in fileinput.input(sys.argv[2], inplace=True):\n  if line.startswith('[](GENERATE_TOC_BEGIN)'):\n    generating = True\n    print(line)\n    with open(sys.argv[1], 'r') as file:\n      for line in file:\n        index = line.split(':')\n        if index[0][0] == '-':\n          ext = ('.html' if index[1][1:-4] == 'index' else '/index.html')\n          print('* [' + index[0][2:] + '](' + sys.argv[3] +'/' + index[1][1:-4] + ext + ')')\n          path = os.path.dirname(sys.argv[1])\n          with open((path + '/' if path != '' else '') + index[1][1:-1], 'r') as md:\n            for line in md:\n              if line.startswith('##'):\n                name = line.replace('#', '')[:-1]\n                id = filter(lambda c: c == '-' or c == '_' or str.isalnum(c), name.lower().replace(\" \", \"-\")).replace(\"--\", \"\")\n                print('    * [' + name + '](' + sys.argv[3] + '/' + index[1][1:-4] + ext + \"#\" + id + ')')\n    print\n  elif line.startswith('[](GENERATE_TOC_END)'):\n    generating = False\n    sys.stdout.write(line)\n  elif generating == False:\n    sys.stdout.write(line)\n\n"
  },
  {
    "path": "doc/themes/boost-classic/README.md",
    "content": "Based on 'Mkdocs Boost theme' (https://github.com/pfultz2/mkdocs-boost) by Paul Fultz II\n"
  },
  {
    "path": "doc/themes/boost-classic/base.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=US-ASCII\">\n{% if page_description %}<meta name=\"description\" content=\"{{ page_description }}\">{% endif %}\n{% if site_author %}<meta name=\"author\" content=\"{{ site_author }}\">{% endif %}\n{% if canonical_url %}<link rel=\"canonical\" href=\"{{ canonical_url }}\">{% endif %}\n<title>{% if page_title %}{{ page_title }} - {% endif %}{{ site_name }}</title>\n\n<link href=\"{{ base_url }}/css/boostbook.css\" rel=\"stylesheet\">\n<link href=\"{{ base_url }}/css/github.css\" rel=\"stylesheet\">\n\n{%- for path in extra_css %}\n<link href=\"{{ path }}\" rel=\"stylesheet\">\n{%- endfor %}\n</head>\n<body bgcolor=\"white\" text=\"black\" link=\"#0000FF\" vlink=\"#840084\" alink=\"#0000FF\">\n\n<div width=\"100%\">\n<a href=\"http://www.boost.org/\"><img alt=\"Boost C++ Libraries\" width=\"277\" height=\"86\" src=\"{{ base_url }}/images/boost.png\"></a>\n</div>\n\n<hr>\n<div class=\"spirit-nav\">\n<a accesskey=\"p\"  {% if previous_page %}href=\"{{ previous_page.url }}\"{% endif %}><img src=\"{{ base_url }}/images/prev.png\" alt=\"Prev\"></a><a accesskey=\"u\" href=\"{{ homepage_url }}\"><img src=\"{{ base_url }}/images/up.png\" alt=\"Up\"></a><a accesskey=\"h\" href=\"{{ homepage_url }}\"><img src=\"{{ base_url }}/images/home.png\" alt=\"Home\"></a><a accesskey=\"n\"  {% if next_page %}href=\"{{ next_page.url }}\"{% endif %}><img src=\"{{ base_url }}/images/next.png\" alt=\"Next\"></a>\n</div>\n\n<div class=\"chapter\">\n{% if current_page and current_page.is_homepage %}\n\n<div class=\"chapter\">\n<div class=\"titlepage\"><div>\n<div><h2 class=\"title\">\n<a></a>{{ site_name }}</h2></div>\n<div><div class=\"author\"><h3 class=\"author\">\n{{ site_author }}\n</h3></div></div>\n<div><p class=\"copyright\">{% if copyright %}{{ copyright }}{% endif %}</p></div>\n<div><div class=\"legalnotice\">\n<a name=\"idm45555445986288\"></a><p>Distributed under the Boost Software License, Version 1.0.\n      (See accompanying file <code class=\"filename\">LICENSE_1_0.txt</code> or copy at\n      <a href=\"http://www.boost.org/LICENSE_1_0.txt\" target=\"_top\">http://www.boost.org/LICENSE_1_0.txt</a>)\n      </p>\n</div></div>\n</div></div>\n\n{% include \"nav.html\" %}\n\n{% else %}\n\n{% include \"toc.html\" %}\n\n{% endif %}\n\n<div class=\"section\">\n{{ content }}\n</div>\n\n<script src=\"{{ base_url }}/js/highlight.pack.js\"></script>\n\n<script>\nhljs.configure({languages:['cpp']});\nhljs.initHighlightingOnLoad();\n</script>\n{%- for path in extra_javascript %}\n<script src=\"{{ path }}\"></script>\n{%- endfor %}\n\n<div class=\"copyright-footer\">{% if copyright %}{{ copyright }}{% endif %}\n      <p>Distributed under the Boost Software License, Version 1.0.\n      (See accompanying file <code class=\"filename\">LICENSE_1_0.txt</code> or copy at\n      <a href=\"http://www.boost.org/LICENSE_1_0.txt\" target=\"_top\">http://www.boost.org/LICENSE_1_0.txt</a>)\n      </p>\n</div>\n\n</div>\n\n<hr>\n<div class=\"spirit-nav\">\n<a accesskey=\"p\"  {% if previous_page %}href=\"{{ previous_page.url }}\"{% endif %}><img src=\"{{ base_url }}/images/prev.png\" alt=\"Prev\"></a><a accesskey=\"u\" href=\"{{ homepage_url }}\"><img src=\"{{ base_url }}/images/up.png\" alt=\"Up\"></a><a accesskey=\"h\" href=\"{{ homepage_url }}\"><img src=\"{{ base_url }}/images/home.png\" alt=\"Home\"></a><a accesskey=\"n\"  {% if next_page %}href=\"{{ next_page.url }}\"{% endif %}><img src=\"{{ base_url }}/images/next.png\" alt=\"Next\"></a>\n</div>\n\n<script async defer id=\"github-bjs\" src=\"https://buttons.github.io/buttons.js\"></script>\n<select onChange=\"window.location.href=this.value\" style=\"position: absolute; top: 20px; right: 30px; z-index: 10;\">\n    <option value=\"https://boost-experimental.github.io/di\">Theme: Boost Experimental</option>\n    <option value=\"https://boost-experimental.github.io/di/boost\" selected>Theme: Boost Classic</option>\n</select>\n</body>\n</html>\n"
  },
  {
    "path": "doc/themes/boost-classic/css/boostbook.css",
    "content": "\n/*=============================================================================\nCopyright (c) 2004 Joel de Guzman\nhttp://spirit.sourceforge.net/\n\nCopyright 2013 Niall Douglas additions for colors and alignment.\nCopyright 2013 Paul A. Bristow additions for more colors and alignments.\n\nDistributed under the Boost Software License, Version 1.0. (See accompany-\ning file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n=============================================================================*/\n\n/*=============================================================================\nBody defaults\n=============================================================================*/\n\n    body\n    {\n        margin: 1em;\n        font-family: sans-serif;\n    }\n\n/*=============================================================================\nParagraphs\n=============================================================================*/\n\n    p\n    {\n        text-align: left;\n        font-size: 10pt;\n        line-height: 1.15;\n    }\n\n/*=============================================================================\nProgram listings\n=============================================================================*/\n\n    /* Code on paragraphs */\n    p tt.computeroutput\n    {\n        font-size: 9pt;\n    }\n\n    pre.synopsis\n    {\n        font-size: 9pt;\n        margin: 1pc 4% 0pc 4%;\n        padding: 0.5pc 0.5pc 0.5pc 0.5pc;\n    }\n\n    .programlisting,\n    .screen,\n    pre > code,\n    div.codehilite\n    {\n        font-size: 9pt;\n        display: block;\n        margin: 1pc 4% 0pc 4%;\n        padding: 0.5pc 0.5pc 0.5pc 0.5pc;\n    }\n\n    /* Program listings in tables don't get borders */\n    td .programlisting,\n    td .screen\n    {\n        margin: 0pc 0pc 0pc 0pc;\n        padding: 0pc 0pc 0pc 0pc;\n    }\n\n/*=============================================================================\nHeadings\n=============================================================================*/\n\n    h1, h2, h3, h4, h5, h6\n    {\n        text-align: left;\n        margin: 1em 0em 0.5em 0em;\n        font-weight: bold;\n    }\n\n    h1 { font-size: 150%; padding-top: 0.5em; }\n    h2 { font-weight: bold; font-size: 130%; }\n    h3 { font-weight: bold; font-size: 120%; }\n    h4 { font-weight: bold; font-size: 110%; }\n    h5 { font-weight: normal; font-style: italic; font-size: 100%; }\n    h6 { font-weight: normal; font-style: italic; font-size: 100%; }\n\n    /* Top page titles */\n    title,\n    h1.title,\n    h2.title\n    h3.title,\n    h4.title,\n    h5.title,\n    h6.title,\n    .refentrytitle\n    {\n        font-weight: bold;\n        margin-bottom: 1pc;\n    }\n\n    h1.title { font-size: 150% }\n    h2.title { font-size: 130% }\n    h3.title { font-size: 120% }\n    h4.title { font-size: 110% }\n    h5.title { font-size: 100% }\n    h6.title { font-size: 100% }\n\n    .section h1\n    {\n        margin: 0em 0em 0.5em 0em;\n        font-size: 150%;\n    }\n\n    .section h2 { font-size: 130% }\n    .section h3 { font-size: 120% }\n    .section h4 { font-size: 110% }\n    .section h5 { font-size: 100% }\n    .section h6 { font-size: 100% }\n\n    /* Code on titles */\n    h1 tt.computeroutput { font-size: 140% }\n    h2 tt.computeroutput { font-size: 140% }\n    h3 tt.computeroutput { font-size: 130% }\n    h4 tt.computeroutput { font-size: 130% }\n    h5 tt.computeroutput { font-size: 130% }\n    h6 tt.computeroutput { font-size: 130% }\n\n\n/*=============================================================================\nAuthor\n=============================================================================*/\n\n    h3.author\n    {\n        font-size: 100%\n    }\n\n/*=============================================================================\nLists\n=============================================================================*/\n\n    li\n    {\n        font-size: 10pt;\n        line-height: 1.3;\n    }\n\n    /* Unordered lists */\n    ul\n    {\n        text-align: left;\n    }\n\n    /* Ordered lists */\n    ol\n    {\n        text-align: left;\n    }\n\n/*=============================================================================\nLinks\n=============================================================================*/\n\n    a\n    {\n        text-decoration: none; /* no underline */\n    }\n\n    a:hover\n    {\n        text-decoration: underline;\n    }\n\n/*=============================================================================\nSpirit style navigation\n=============================================================================*/\n\n    .spirit-nav\n    {\n        text-align: right;\n    }\n\n    .spirit-nav a\n    {\n        color: white;\n        padding-left: 0.5em;\n    }\n\n    .spirit-nav img\n    {\n        border-width: 0px;\n    }\n\n/*=============================================================================\nCopyright footer\n=============================================================================*/\n    .copyright-footer\n    {\n        text-align: right;\n        font-size: 70%;\n    }\n\n    .copyright-footer p\n    {\n        text-align: right;\n        font-size: 80%;\n    }\n\n/*=============================================================================\nTable of contents\n=============================================================================*/\n\n    div.toc\n    {\n       margin: 1pc 4% 0pc 4%;\n       padding: 0.1pc 1pc 0.1pc 1pc;\n       font-size: 80%;\n       line-height: 1.15;\n    }\n\n    .boost-toc\n    {\n       float: right;\n       padding: 0.5pc;\n    }\n\n    /* Code on toc */\n    .toc .computeroutput { font-size: 120% }\n\n    /* No margin on nested menus */\n\n    .toc dl dl { margin: 0; }\n\n/*=============================================================================\nTables\n=============================================================================*/\n\n    .table-title,\n    div.table p.title\n    {\n        margin-left: 4%;\n        padding-right: 0.5em;\n        padding-left: 0.5em;\n    }\n\n    .informaltable table,\n    .table table\n    {\n        width: 92%;\n        margin-left: 4%;\n        margin-right: 4%;\n    }\n\n    div.informaltable table,\n    div.table table\n    {\n        padding: 4px;\n    }\n\n    /* Table Cells */\n    div.informaltable table tr td,\n    div.table table tr td\n    {\n        padding: 0.5em;\n        text-align: left;\n        font-size: 9pt;\n    }\n\n    div.informaltable table tr th,\n    div.table table tr th\n    {\n        padding: 0.5em 0.5em 0.5em 0.5em;\n        border: 1pt solid white;\n        font-size: 80%;\n    }\n\n    table.simplelist\n    {\n        width: auto !important;\n        margin: 0em !important;\n        padding: 0em !important;\n        border: none !important;\n    }\n    table.simplelist td\n    {\n        margin: 0em !important;\n        padding: 0em !important;\n        text-align: left !important;\n        font-size: 9pt !important;\n        border: none !important;\n    }\n\n/*=============================================================================\nSuppress margins in tables\n=============================================================================*/\n\n    table th > *:first-child,\n    table td > *:first-child\n    {\n        margin-top: 0;\n    }\n\n    table th > *:last-child,\n    table td > *:last-child\n    {\n        margin-bottom: 0;\n    }\n\n/*=============================================================================\nBlurbs\n=============================================================================*/\n\n    div.note,\n    div.tip,\n    div.important,\n    div.caution,\n    div.warning,\n    p.blurb\n    {\n        font-size: 9pt; /* A little bit smaller than the main text */\n        line-height: 1.2;\n        display: block;\n        margin: 1pc 4% 0pc 4%;\n        padding: 0.5pc 0.5pc 0.5pc 0.5pc;\n    }\n\n    p.blurb img\n    {\n        padding: 1pt;\n    }\n\n/*=============================================================================\nVariable Lists\n=============================================================================*/\n\n    div.variablelist\n    {\n        margin: 1em 0;\n    }\n\n    /* Make the terms in definition lists bold */\n    div.variablelist dl dt,\n    span.term\n    {\n        font-weight: bold;\n        font-size: 10pt;\n    }\n\n    div.variablelist table tbody tr td\n    {\n        text-align: left;\n        vertical-align: top;\n        padding: 0em 2em 0em 0em;\n        font-size: 10pt;\n        margin: 0em 0em 0.5em 0em;\n        line-height: 1;\n    }\n\n    div.variablelist dl dt\n    {\n        margin-bottom: 0.2em;\n    }\n\n    div.variablelist dl dd\n    {\n        margin: 0em 0em 0.5em 2em;\n        font-size: 10pt;\n    }\n\n    div.variablelist table tbody tr td p,\n    div.variablelist dl dd p\n    {\n        margin: 0em 0em 0.5em 0em;\n        line-height: 1;\n    }\n\n/*=============================================================================\nMisc\n=============================================================================*/\n\n    /* Title of books and articles in bibliographies */\n    span.title\n    {\n        font-style: italic;\n    }\n\n    span.underline\n    {\n        text-decoration: underline;\n    }\n\n    span.strikethrough\n    {\n        text-decoration: line-through;\n    }\n\n    /* Copyright, Legal Notice */\n    div div.legalnotice p\n    {\n        text-align: left\n    }\n\n/*=============================================================================\nColors\n=============================================================================*/\n\n    @media screen\n    {\n        body {\n            background-color: #FFFFFF;\n            color: #000000;\n        }\n\n    /* Syntax Highlighting */\n        .keyword,\n        .codehilite .k, \n        .codehilite .kc,\n        .codehilite .kd,\n        .codehilite .kn,\n        .codehilite .kp,\n        .codehilite .kr,\n        .codehilite .kt\n        { color: #0000AA; }\n        .identifier,\n        .codehilite .n,\n        .codehilite .na,\n        .codehilite .nb,\n        .codehilite .bp,\n        .codehilite .nc,\n        .codehilite .no,\n        .codehilite .nd,\n        .codehilite .ni,\n        .codehilite .ne,\n        .codehilite .nf,\n        .codehilite .py,\n        .codehilite .nl,\n        .codehilite .nn,\n        .codehilite .nx,\n        .codehilite .nt,\n        .codehilite .nv,\n        .codehilite .vc,\n        .codehilite .vg,\n        .codehilite .vi\n        { color: #000000; }\n        .special \n        { color: #707070; }\n        .preprocessor,\n        .codehilite .cp\n        { color: #402080; }\n        .char,\n        .codehilite .sc \n        { color: teal; }\n        .comment,\n        .codehilite .cm,\n        .codehilite .c1,\n        .codehilite .cs\n        { color: #800000; }\n        .string,\n        .codehilite .s,\n        .codehilite .s2,\n        .codehilite .se,\n        .codehilite .sh,\n        .codehilite .si,\n        .codehilite .sx,\n        .codehilite .sr,\n        .codehilite .s1,\n        .codehilite .ss\n        { color: teal; }\n        .number,\n        .codehilite .m,\n        .codehilite .mf,\n        .codehilite .mh,\n        .codehilite .mi,\n        .codehilite .mo\n        { color: teal; }\n        .white_bkd { background-color: #FFFFFF; }\n        .dk_grey_bkd { background-color: #999999; }\n\n    /* Links */\n        a, a .keyword, a .identifier, a .special, a .preprocessor\n        a .char, a .comment, a .string, a .number\n        {\n            color: #005a9c;\n        }\n\n        a:visited, a:visited .keyword, a:visited .identifier,\n        a:visited .special, a:visited .preprocessor a:visited .char,\n        a:visited .comment, a:visited .string, a:visited .number\n        {\n            color: #9c5a9c;\n        }\n\n        h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,\n        h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,\n        h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited\n        {\n            text-decoration: none; /* no underline */\n            color: #000000;\n        }\n\n    /* Copyright, Legal Notice */\n        .copyright\n        {\n            color: #666666;\n            font-size: small;\n        }\n\n        div div.legalnotice p\n        {\n            color: #666666;\n        }\n\n    /* Program listing */\n        pre.synopsis\n        {\n            border: 1px solid #DCDCDC;\n        }\n\n        .programlisting,\n        .screen,\n        pre > code,\n        div.codehilite\n        {\n            border: 1px solid #DCDCDC;\n        }\n\n        td .programlisting,\n        td .screen\n        {\n            border: 0px solid #DCDCDC;\n        }\n\n    /* Blurbs */\n        div.note,\n        div.tip,\n        div.important,\n        div.caution,\n        div.warning,\n        p.blurb\n        {\n            border: 1px solid #DCDCDC;\n        }\n\n    /* Table of contents */\n        div.toc\n        {\n            border: 1px solid #DCDCDC;\n        }\n\n    /* Tables */\n        div.informaltable table tr td,\n        div.table table tr td\n        {\n            border: 1px solid #DCDCDC;\n        }\n\n        div.informaltable table tr th,\n        div.table table tr th\n        {\n            background-color: #F0F0F0;\n            border: 1px solid #DCDCDC;\n        }\n\n        .copyright-footer\n        {\n            color: #8F8F8F;\n        }\n\n    /* Misc */\n        span.highlight\n        {\n            color: #00A000;\n        }\n    }\n\n    @media print\n    {\n    /* Links */\n        a\n        {\n            color: black;\n        }\n\n        a:visited\n        {\n            color: black;\n        }\n\n        .spirit-nav\n        {\n            display: none;\n        }\n\n    /* Program listing */\n        pre.synopsis\n        {\n            border: 1px solid gray;\n        }\n\n        .programlisting,\n        .screen\n        {\n            border: 1px solid gray;\n        }\n\n        td .programlisting,\n        td .screen\n        {\n            border: 0px solid #DCDCDC;\n        }\n\n    /* Table of contents */\n        div.toc\n        {\n            border: 1px solid gray;\n        }\n\n        .informaltable table,\n        .table table\n        {\n            border: 1px solid gray;\n            border-collapse: collapse;\n        }\n\n    /* Tables */\n        div.informaltable table tr td,\n        div.table table tr td\n        {\n            border: 1px solid gray;\n        }\n\n        div.informaltable table tr th,\n        div.table table tr th\n        {\n            border: 1px solid gray;\n        }\n\n        table.simplelist tr td\n        {\n            border: none !important;\n        }\n\n    /* Misc */\n        span.highlight\n        {\n            font-weight: bold;\n        }\n    }\n\n/*=============================================================================\nImages\n=============================================================================*/\n\n    span.inlinemediaobject img\n    {\n        vertical-align: middle;\n    }\n\n/*==============================================================================\nSuper and Subscript: style so that line spacing isn't effected, see\nhttp://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=1&postId=5341\n==============================================================================*/\n\nsup,\nsub {\nheight: 0;\nline-height: 1;\nvertical-align: baseline;\nposition: relative;\n\n}\n\n/* For internet explorer: */\n\n* html sup,\n* html sub {\nvertical-align: bottom;\n}\n\nsup {\nbottom: 1ex;\n}\n\nsub {\ntop: .5ex;\n}\n\n/*==============================================================================\nIndexes: pretty much the same as the TOC.\n==============================================================================*/\n\n    .index\n    {\n       font-size: 80%;\n       padding-top: 0px;\n       padding-bottom: 0px;\n       margin-top: 0px;\n       margin-bottom: 0px;\n       margin-left: 0px;\n    }\n\n    .index ul\n    {\n       padding-left: 3em;\n    }\n\n    .index p\n    {\n       padding: 2px;\n       margin: 2px;\n    }\n\n    .index-entry-level-0\n    {\n        font-weight: bold;\n    }\n\n    .index em\n    {\n        font-weight: bold;\n    }\n\n\n/*==============================================================================\nAlignment and coloring use 'role' feature, available from Quickbook 1.6 up.\nAdded from Niall Douglas for role color and alignment.\nhttp://article.gmane.org/gmane.comp.lib.boost.devel/243318\n*/\n\n/* Add text alignment (see http://www.w3schools.com/cssref/pr_text_text-align.asp) */\nspan.aligncenter\n{\n  display: inline-block; width: 100%; text-align: center;\n}\nspan.alignright\n{\n  display: inline-block; width: 100%; text-align: right;\n}\n/* alignleft is the default. */\nspan.alignleft\n{\n  display: inline-block; width: 100%; text-align: left;\n}\n\n/* alignjustify stretches the word spacing so that each line has equal width\nwithin a chosen fraction of page width (here arbitrarily 20%).\n*Not* useful inside table items as the column width remains the total string width.\nNor very useful, except to temporarily restrict the width.\n*/\nspan.alignjustify\n{\n  display: inline-block; width: 20%; text-align: justify;\n}\n\n/* Text colors.\nNames at http://www.w3.org/TR/2002/WD-css3-color-20020219/ 4.3. X11 color keywords.\nQuickbook Usage: [role red Some red text]\n\n*/\nspan.red { inline-block; color: red; }\nspan.green { color: green; }\nspan.lime { color: #00FF00; }\nspan.blue { color: blue; }\nspan.navy { color: navy; }\nspan.yellow { color: yellow; }\nspan.magenta { color: magenta; }\nspan.indigo { color: #4B0082; }\nspan.cyan { color: cyan; }\nspan.purple { color: purple; }\nspan.gold { color: gold; }\nspan.silver { color: silver; } /* lighter gray */\nspan.gray { color: #808080; } /* light gray */\n\ntable {\n  table-layout: fixed;\n  border:1px solid #C0C0C0;\n  border-collapse:collapse;\n  margin-bottom: 20px;\n  padding:5px;\n  width: 100%;\n  font-size: 90%;\n}\nth {\n  border:1px solid #C0C0C0;\n  padding:5px;\n  background:#F0F0F0;\n}\ntd {\n  border:1px solid #C0C0C0;\n  padding:5px;\n}\nspan.warning {\n  display: inline-block;\n  border:1px solid #C0C0C0;\n  border-collapse:collapse;\n  margin-bottom: 20px;\n  padding:5px;\n}\n"
  },
  {
    "path": "doc/themes/boost-classic/css/github.css",
    "content": "/*\n\ngithub.com style (c) Vasily Polovnyov <vast@whiteants.net>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #333;\n  background: #f8f8f8;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #998;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-subst {\n  color: #333;\n  font-weight: bold;\n}\n\n.hljs-number,\n.hljs-literal,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag .hljs-attr {\n  color: #008080;\n}\n\n.hljs-string,\n.hljs-doctag {\n  color: #d14;\n}\n\n.hljs-title,\n.hljs-section,\n.hljs-selector-id {\n  color: #900;\n  font-weight: bold;\n}\n\n.hljs-subst {\n  font-weight: normal;\n}\n\n.hljs-type,\n.hljs-class .hljs-title {\n  color: #458;\n  font-weight: bold;\n}\n\n.hljs-tag,\n.hljs-name,\n.hljs-attribute {\n  color: #000080;\n  font-weight: normal;\n}\n\n.hljs-regexp,\n.hljs-link {\n  color: #009926;\n}\n\n.hljs-symbol,\n.hljs-bullet {\n  color: #990073;\n}\n\n.hljs-built_in,\n.hljs-builtin-name {\n  color: #0086b3;\n}\n\n.hljs-meta {\n  color: #999;\n  font-weight: bold;\n}\n\n.hljs-deletion {\n  background: #fdd;\n}\n\n.hljs-addition {\n  background: #dfd;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "doc/themes/boost-classic/js/highlight.pack.js",
    "content": "/*! highlight.js v9.1.0 | BSD3 License | git.io/hljslicense */\n!function(e){\"undefined\"!=typeof exports?e(exports):(self.hljs=e({}),\"function\"==typeof define&&define.amd&&define(\"hljs\",[],function(){return self.hljs}))}(function(e){function n(e){return e.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var n,t,r,i=e.className+\" \";if(i+=e.parentNode?e.parentNode.className:\"\",t=/\\blang(?:uage)?-([\\w-]+)\\b/i.exec(i))return E(t[1])?t[1]:\"no-highlight\";for(i=i.split(/\\s+/),n=0,r=i.length;r>n;n++)if(E(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+Array.prototype.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"==e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else\"start\"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\b\\w+\\b/,!0),i&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&i.tE&&(a.tE+=(a.e?\"|\":\"\")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push(\"self\"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?\"\":x.classPrefix,i='<span class=\"'+a,o=t?\"\":\"</span>\";return i+=e+'\">',i+n+o}function p(){if(!L.k)return n(M);var e=\"\",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(M);r;){e+=n(M.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=h(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(M)}return e+n(M.substr(t))}function d(){var e=\"string\"==typeof L.sL;if(e&&!R[L.sL])return n(M);var t=e?l(L.sL,M,!0,y[L.sL]):f(M,L.sL.length?L.sL:void 0);return L.r>0&&(B+=t.r),e&&(y[L.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){return void 0!==L.sL?d():p()}function v(e,t){var r=e.cN?h(e.cN,\"\",!0):\"\";e.rB?(k+=r,M=\"\"):e.eB?(k+=n(t)+r,M=\"\"):(k+=r,M=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(M+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(M+=t),k+=b();do L.cN&&(k+=\"</span>\"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),M=\"\",a.starts&&v(a.starts,\"\"),i.rE?0:t.length}if(c(t,L))throw new Error('Illegal lexeme \"'+t+'\" for mode \"'+(L.cN||\"<unnamed>\")+'\"');return M+=t,t.length||1}var N=E(e);if(!N)throw new Error('Unknown language: \"'+e+'\"');s(N);var w,L=i||N,y={},k=\"\";for(w=L;w!=N;w=w.parent)w.cN&&(k=h(w.cN,\"\",!0)+k);var M=\"\",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),w=L;w.parent;w=w.parent)w.cN&&(k+=\"</span>\");return{r:B,value:k,language:e,top:L}}catch(O){if(-1!=O.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw O}}function f(e,t){t=t||x.languages||Object.keys(R);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(E(n)){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return x.tabReplace&&(e=e.replace(/^((<[^>]+>|\\t)+)/gm,function(e,n){return n.replace(/\\t/g,x.tabReplace)})),x.useBR&&(e=e.replace(/\\n/g,\"<br>\")),e}function h(e,n,t){var r=n?w[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n=i(e);if(!a(n)){var t;x.useBR?(t=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),t.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):t=e;var r=t.textContent,o=n?l(n,r,!0):f(r),s=u(t);if(s.length){var p=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\");p.innerHTML=o.value,o.value=c(s,u(p),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=h(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){x=o(x,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll(\"pre code\");Array.prototype.forEach.call(e,p)}}function v(){addEventListener(\"DOMContentLoaded\",b,!1),addEventListener(\"load\",b,!1)}function m(n,t){var r=R[n]=t(e);r.aliases&&r.aliases.forEach(function(e){w[e]=n})}function N(){return Object.keys(R)}function E(e){return e=(e||\"\").toLowerCase(),R[e]||R[w[e]]}var x={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},R={},w={};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=E,e.inherit=o,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"(-?)(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:\"doctag\",b:\"(?:TODO|FIXME|NOTE|BUG|XXX):\",r:0}),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e});hljs.registerLanguage(\"cpp\",function(t){var e={cN:\"keyword\",b:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},r={cN:\"string\",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?\"'}),{b:'(u8?|U)?R\"',e:'\"',c:[t.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},i={cN:\"number\",v:[{b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},{b:t.CNR}],r:0},s={cN:\"meta\",b:\"#\",e:\"$\",k:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma ifdef ifndef\"},c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",k:{\"meta-keyword\":\"include\"},c:[t.inherit(r,{cN:\"meta-string\"}),{cN:\"meta-string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},r,t.CLCM,t.CBCM]},a=t.IR+\"\\\\s*\\\\(\",c={keyword:\"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong\",built_in:\"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr\",literal:\"true false nullptr NULL\"};return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:c,i:\"</\",c:[e,t.CLCM,t.CBCM,i,r,s,{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:c,c:[\"self\",e]},{b:t.IR+\"::\",k:c},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t.IR+\"[\\\\*&\\\\s]+)+\"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\\w\\s\\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,i]},t.CLCM,t.CBCM,s]}]}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"meta\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},a={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},l={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,a,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,a,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,l,{b:/->/,eW:!0,k:\"None\"}]},{cN:\"meta\",b:/^[\\t ]*@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"section\",b:/^[\\w]+:\\s*$/},{cN:\"meta\",b:/^\\.PHONY:/,e:/$/,k:{\"meta-keyword\":\".PHONY\"},l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"javascript\",function(e){return{aliases:[\"js\"],k:{keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await import from as\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},c:[{cN:\"meta\",r:10,b:/^\\s*['\"]use (strict|asm)['\"]/},{cN:\"meta\",b:/^#!/,e:/$/},e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,{cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\"}]},e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\\s*[);\\]]/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\\[|%/},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0},{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]},{bK:\"constructor\",e:/\\{/,eE:!0}],i:/#(?!!)/}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"section\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"quote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"string\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"symbol\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:\"^\\\\[.+\\\\]:\",rB:!0,c:[{cN:\"symbol\",b:\"\\\\[\",e:\"\\\\]:\",eB:!0,eE:!0,starts:{cN:\"link\",e:\"$\"}}]}]}});hljs.registerLanguage(\"cs\",function(e){var t=\"abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield\",r=e.IR+\"(<\"+e.IR+\">)?\";return{aliases:[\"csharp\"],k:t,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"doctag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"meta\",b:\"#\",e:\"$\",k:{\"meta-keyword\":\"if else elif endif define undef warning error line region endregion pragma checksum\"}},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},e.ASM,e.QSM,e.CNM,{bK:\"class interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"namespace\",e:/[{;=]/,i:/[^\\s:]/,c:[e.inherit(e.TM,{b:\"[a-zA-Z](\\\\.?\\\\w)*\"}),e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+r+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"meta\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"comment\",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\\-\\-\\-/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+\\+\\+/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"addition\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",t={b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\\w-]+\\s*\\(/,rB:!0,c:[{cN:\"built_in\",b:/[\\w-]+/}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"number\",b:\"#[0-9A-Fa-f]+\"},{cN:\"meta\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|'\\$]/,c:[e.CBCM,{cN:\"selector-id\",b:/#[A-Za-z0-9_-]+/},{cN:\"selector-class\",b:/\\.[A-Za-z0-9_-]+/},{cN:\"selector-attr\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"selector-pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"'.]+/},{b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{b:\"@\",e:\"[{;]\",c:[{cN:\"keyword\",b:/\\S+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:\"selector-tag\",b:c,r:0},{b:\"{\",e:\"}\",i:/\\S/,c:[e.CBCM,t]}]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},i=[e.BE,r,n],o=[n,e.HCM,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:i,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"function\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",eE:!0,r:5,c:[e.TM]},{b:\"-\\\\w\\\\b\",r:0},{b:\"^__DATA__$\",e:\"^__END__$\",sL:\"mojolicious\",c:[{b:\"^@@.*\",e:\"$\",cN:\"comment\"}]}];return r.c=o,s.c=o,{aliases:[\"pl\"],k:t,c:o}});hljs.registerLanguage(\"json\",function(e){var t={literal:\"true false null\"},i=[e.QSM,e.CNM],r={e:\",\",eW:!0,eE:!0,c:i,k:t},s={b:\"{\",e:\"}\",c:[{cN:\"attr\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:!0,eE:!0,c:[e.BE],i:\"\\\\n\",starts:r}],i:\"\\\\S\"},n={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(r)],i:\"\\\\S\"};return i.splice(i.length,0,s,n),{c:i,k:t,i:\"\\\\S\"}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\.]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",_:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"meta\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,s,a,t]}});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"(AV|CA|CF|CG|CI|MK|MP|NS|UI|XC)\\\\w+\"},i={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},n=/[a-zA-Z@][a-zA-Z0-9_]*/,o=\"@interface @class @protocol @implementation\";return{aliases:[\"mm\",\"objc\",\"obj-c\"],k:i,l:n,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"meta\",b:\"#\",e:\"$\",c:[{cN:\"meta-string\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+o.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:o,l:n,c:[e.UTM]},{b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"dts\",function(e){var a={cN:\"string\",v:[e.inherit(e.QSM,{b:'((u8?|U)|L)?\"'}),{b:'(u8?|U)?R\"',e:'\"',c:[e.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},c={cN:\"number\",v:[{b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},{b:e.CNR}],r:0},b={cN:\"meta\",b:\"#\",e:\"$\",k:{\"meta-keyword\":\"if else elif endif define undef ifdef ifndef\"},c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",k:{\"meta-keyword\":\"include\"},c:[e.inherit(a,{cN:\"meta-string\"}),{cN:\"meta-string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},a,e.CLCM,e.CBCM]},i={cN:\"variable\",b:\"\\\\&[a-z\\\\d_]*\\\\b\"},r={cN:\"meta-keyword\",b:\"/[a-z][a-z\\\\d-]*/\"},d={cN:\"symbol\",b:\"^\\\\s*[a-zA-Z_][a-zA-Z\\\\d_]*:\"},n={cN:\"params\",b:\"<\",e:\">\",c:[c,i]},s={cN:\"class\",b:/[a-zA-Z_][a-zA-Z\\d_@]*\\s{/,e:/[{;=]/,rB:!0,eE:!0},t={cN:\"class\",b:\"/\\\\s*{\",e:\"};\",r:10,c:[i,r,d,s,n,e.CLCM,e.CBCM,c,a]};return{k:\"\",c:[t,i,r,d,s,n,e.CLCM,e.CBCM,c,a,b,{b:e.IR+\"::\",k:\"\"}]}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"section\",b:\"</?\",e:\">\"},{cN:\"attribute\",b:/\\w+/,r:0,k:{nomarkup:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"meta\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"variable\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"xml\",function(s){var t=\"[A-Za-z0-9\\\\._:-]+\",e={b:/<\\?(php)?(?!\\w)/,e:/\\?>/,sL:\"php\"},r={eW:!0,i:/</,r:0,c:[e,{cN:\"attr\",b:t,r:0},{b:\"=\",r:0,c:[{cN:\"string\",c:[e],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\\/>]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"meta\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},s.C(\"<!--\",\"-->\",{r:10}),{b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{name:\"style\"},c:[r],starts:{e:\"</style>\",rE:!0,sL:[\"css\",\"xml\"]}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{name:\"script\"},c:[r],starts:{e:\"</script>\",rE:!0,sL:[\"actionscript\",\"javascript\",\"handlebars\",\"xml\"]}},e,{cN:\"meta\",b:/<\\?\\w+/,e:/\\?>/,r:10},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"name\",b:/[^\\/><\\s]+/,r:0},r]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",r={cN:\"subst\",b:/#\\{/,e:/}/,k:c},s=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,r]},{b:/\"/,e:/\"/,c:[e.BE,r]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[r,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];r.c=s;var i=e.inherit(e.TM,{b:n}),t=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(s)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:s.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+t,e:\"[-=]>\",rB:!0,c:[i,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:t,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"ruby\",function(e){var b=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",c=\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",r={cN:\"doctag\",b:\"@[A-Za-z]+\"},a={b:\"#<\",e:\">\"},s=[e.C(\"#\",\"$\",{c:[r]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[r],r:10}),e.C(\"^__END__\",\"\\\\n$\")],n={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:c},t={cN:\"string\",c:[e.BE,n],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",endsParent:!0,k:c},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{b:\"<\\\\s*\",c:[{b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(s)},{cN:\"function\",bK:\"def\",e:\"$|;\",c:[e.inherit(e.TM,{b:b}),i].concat(s)},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[t,{b:b}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,n],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(s),r:0}].concat(s);n.c=d,i.c=d;var o=\"[>?]>\",l=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",w=[{b:/^\\s*=>/,starts:{e:\"$\",c:d}},{cN:\"meta\",b:\"^(\"+o+\"|\"+l+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:c,i:/\\/\\*/,c:s.concat(w).concat(d)}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{literal:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s+{\",rB:!0,e:\"{\",c:[{cN:\"section\",b:e.UIR}],r:0},{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"attribute\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"java\",function(e){var a=e.UIR+\"(<\"+e.UIR+\"(\\\\s*,\\\\s*\"+e.UIR+\")*>)?\",t=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",r=\"\\\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+)(\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))?|\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))([eE][-+]?\\\\d+)?)[lLfF]?\",c={cN:\"number\",b:r,r:0};return{aliases:[\"jsp\"],k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{b:/\\w+@/,r:0},{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+a+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},c,{cN:\"meta\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"php\",function(e){var c={b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},a={cN:\"meta\",b:/<\\?(php)?|\\?>/},i={cN:\"string\",c:[e.BE,a],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},t={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"},a]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:/<<<['\"]?\\w+['\"]?$/,e:/^\\w+;?$/,c:[e.BE,{cN:\"subst\",v:[{b:/\\$\\w+/},{b:/\\{\\$/,e:/\\}/}]}]},a,c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,i,t]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,t]}});hljs.registerLanguage(\"ini\",function(e){var b={cN:\"string\",c:[e.BE],v:[{b:\"'''\",e:\"'''\",r:10},{b:'\"\"\"',e:'\"\"\"',r:10},{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]};return{aliases:[\"toml\"],cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),e.HCM,{cN:\"section\",b:/^\\s*\\[+/,e:/\\]+/},{b:/^[a-z0-9\\[\\]_-]+\\s*=\\s*/,e:\"$\",rB:!0,c:[{cN:\"attr\",b:/[a-z0-9\\[\\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:\"literal\",b:/\\bon|off|true|false|yes|no\\b/},{cN:\"variable\",v:[{b:/\\$[\\w\\d\"][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},b,{cN:\"number\",b:/([\\+\\-]+)?[\\d]+_[\\d_]+/},e.NM]}]}]}});hljs.registerLanguage(\"http\",function(e){var t=\"HTTP/[0-9\\\\.]+\";return{aliases:[\"https\"],i:\"\\\\S\",c:[{b:\"^\"+t,e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{b:\"^[A-Z]+ (.*?) \"+t+\"$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0},{b:t},{cN:\"keyword\",b:\"[A-Z]+\"}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{e:\"$\",r:0}},{b:\"\\\\n\\\\n\",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>{}*]/,c:[{bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke\",e:/;/,eW:!0,k:{keyword:\"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes c cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle d data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration e each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract f failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function g general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http i id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists k keep keep_duplicates key keys kill l language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim m main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex n name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding p package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime t table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});"
  },
  {
    "path": "doc/themes/boost-classic/nav.html",
    "content": "<div class=\"toc\">\n<p><b>Table of Contents</b></p>\n<dl class=\"toc\">\n{% for nav_item in nav %}\n    {% if nav_item.children %}\n        <dt><span class=\"section\"><a href=\"{{ nav_item.url }}\">{{ nav_item.title }}</a></span></dt>\n        <dd><dl>\n            {% for nav_item in nav_item.children %}\n                <dt><span class=\"section\"><a href=\"{{ nav_item.url }}\">{{ nav_item.title }}</a></span></dt>\n            {% endfor %}\n        </dl></dd>\n    {% else %}\n        <dt><span class=\"section\"><a href=\"{{ nav_item.url }}\">{{ nav_item.title }}</a></span></dt>\n    {% endif %}\n{% endfor %}\n</dl>\n</div>\n"
  },
  {
    "path": "doc/themes/boost-classic/scripts/update_markdown.py",
    "content": "#!/usr/bin/env python\n#update_md.py . http://boost-experimental.github.io/di/cpp14\n\nimport fileinput, sys, os, glob\n\ndef print_cpp(filename):\n  print(\"```cpp\")\n  with open(filename, 'r') as file:\n    ignore = False\n    tmp_ignore = False\n    for line in file:\n      if line.startswith(\"//<-\"):\n        ignore = True\n        tmp_ignore = True\n      elif line.startswith(\"//->\"):\n        tmp_ignore = False\n      if not ignore and not line.startswith(\"//\") and not line.find(\"clang-format\") != -1:\n        print line,\n      ignore = tmp_ignore\n  print(\"```\")\n\ndef update_md(filename):\n  for line in fileinput.input(filename, inplace=True):\n    if line.find(\"[CPP]\") != -1 or line.find(\"[CPP*]\") != -1:\n      print_cpp(\"../\" + line.split(\"(\")[1][len(sys.argv[2])+1:].split(\")\")[0])\n      href = line.split(\"(\")[1].split(\")\")[0]\n      print \"* [\" + href + \"](\" + href + \")\"\n    elif line.find(\"[CPP(BTN)]\") != -1:\n      name = line.split(\"(\")[2].split(\"|\")[0].replace(\"_\", \" \").replace(\"Run\", \"\")\n      href = line.split(\"|\")[1].split(\")\")[0]\n      print \"* [\" + name + \"](\" + href + \")\"\n    elif line.find(\"[CPP(SHOW)]\") != -1:\n      print_cpp(\"../\" + line.split(\"(\")[2][len(sys.argv[2])+1:].split(\")\")[0])\n    elif line.find(\"[CPP(SPLIT)]\") != -1:\n      print_cpp(\"../\" + line.split(\"(\")[2][len(sys.argv[2])+1:].split(\")\")[0])\n    elif line.find(\"[IFRAME]\") != -1:\n      src = line.split(\"(\")[1].split(\")\")[0]\n      print \"[\" + src + \"](\" + src + \")\"\n    elif line.find(\"[YOUTUBE]\") != -1:\n      src = line.split(\"(\")[1].split(\")\")[0]\n      print \"[\" + src + \"](\" + src + \")\"\n    else:\n      print(line),\n\nfor filename in glob.iglob(sys.argv[1] + '/*.md'):\n  update_md(filename)\n"
  },
  {
    "path": "doc/themes/boost-classic/toc.html",
    "content": "<div class=\"toc\">\n<dl class=\"toc\">\n{% for toc_item in toc %}\n    {% if toc_item.children %}\n        <dt><span class=\"section\"><a href=\"{{ toc_item.url }}\">{{ toc_item.title }}</a></span></dt>\n        <dd><dl>\n            {% for toc_item in toc_item.children %}\n                <dt><span class=\"section\"><a href=\"{{ toc_item.url }}\">{{ toc_item.title }}</a></span></dt>\n            {% endfor %}\n        </dl></dd>\n    {% else %}\n        <dt><span class=\"section\"><a href=\"{{ toc_item.url }}\">{{ toc_item.title }}</a></span></dt>\n    {% endif %}\n{% endfor %}\n</dl>\n</div>\n"
  },
  {
    "path": "doc/themes/boost-experimental/base.html",
    "content": "<!DOCTYPE html>\n<!--[if IE 8]><html class=\"no-js lt-ie9\" lang=\"en\" > <![endif]-->\n<!--[if gt IE 8]><!--> <html class=\"no-js\" lang=\"en\" > <!--<![endif]-->\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  {% if page_description %}<meta name=\"description\" content=\"{{ page_description }}\">{% endif %}\n  {% if site_author %}<meta name=\"author\" content=\"{{ site_author }}\">{% endif %}\n  {% block htmltitle %}\n  <title>{% if page_title %}{{ page_title }} - {% endif %}{{ site_name }}</title>\n  {% endblock %}\n\n  {% if favicon %}<link rel=\"shortcut icon\" href=\"{{ favicon }}\">\n  {% else %}<link rel=\"shortcut icon\" href=\"{{ base_url }}/img/favicon.ico\">{% endif %}\n\n  {# CSS #}\n  <link href='https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700|Inconsolata:400,700' rel='stylesheet' type='text/css'>\n\n  <link rel=\"stylesheet\" href=\"{{ base_url }}/css/theme.css\" type=\"text/css\" />\n  <link rel=\"stylesheet\" href=\"{{ base_url }}/css/theme_extra.css\" type=\"text/css\" />\n  <link rel=\"stylesheet\" href=\"{{ base_url }}/css/codemirror.css\">\n  <link rel=\"stylesheet\" href=\"{{ base_url }}/css/highlight.css\">\n  <link rel=\"stylesheet\" href=\"{{ base_url }}/css/mdn-like.css\">\n  {%- for path in extra_css %}\n  <link href=\"{{ path }}\" rel=\"stylesheet\">\n  {%- endfor %}\n\n  {% if current_page %}\n  <script>\n    // Current page data\n    var mkdocs_page_name = \"{{ page_title }}\";\n    var mkdocs_page_input_path = \"{{ current_page.input_path }}\";\n    var mkdocs_page_url = \"{{ current_page.abs_url }}\";\n  </script>\n  {% endif %}\n  <script src=\"{{ base_url }}/js/jquery-2.1.1.min.js\"></script>\n  <script src=\"{{ base_url }}/js/modernizr-2.8.3.min.js\"></script>\n  <script type=\"text/javascript\" src=\"{{ base_url }}/js/highlight.pack.js\"></script>\n  <script src=\"{{ base_url }}/js/theme.js\"></script>\n\n  <script src=\"{{ base_url }}/js/codemirror/codemirror.js\"></script>\n  <script src=\"{{ base_url }}/js/codemirror/clike.js\"></script>\n  <script src=\"{{ base_url }}/js/codemirror/active-line.js\"></script>\n\n  <script src=\"{{ base_url }}/js/cpp.js\"></script>\n  <script src=\"{{ base_url }}/js/gitter.js\"></script>\n  <script src=\"{{ base_url }}/js/utility.js\"></script>\n\n  {%- block extrahead %} {% endblock %}\n\n  {%- for path in extra_javascript %}\n  <script src=\"{{ path }}\"></script>\n  {%- endfor %}\n\n  {% if google_analytics %}\n  <script>\n      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n      ga('create', '{{ google_analytics[0] }}', '{{ google_analytics[1] }}');\n      ga('send', 'pageview');\n  </script>\n  {% endif %}\n</head>\n\n<body class=\"wy-body-for-nav\" role=\"document\">\n\n  <div class=\"wy-grid-for-nav\">\n\n\t{# SIDE NAV, TOGGLES ON MOBILE #}\n\t<nav data-toggle=\"wy-nav-shift\" class=\"wy-nav-side stickynav\">\n\n      <img src=\"{{base_url}}/img/boost.png\" />\n      <a href=\"{{ homepage_url }}\" class=\"icon icon-home\" style=\"font-weight:bold;text-align:left;padding:0.809em;color:#fcfcfc;margin-bottom:0.809em\"> {{ site_name }}</a>\n\n      <div class=\"wy-side-nav-search\">\n\t\t{% include \"searchbox.html\" %}\n      </div>\n\n      <div class=\"wy-menu wy-menu-vertical\" data-spy=\"affix\" role=\"navigation\" aria-label=\"main navigation\">\n\n        <ul class=\"current\">\n          {% for nav_item in nav %}\n            <li>{% include \"toc.html\" %}<li>\n          {% endfor %}\n        </ul>\n      </div>\n\n    </nav>\n\n    <section data-toggle=\"wy-nav-shift\" class=\"wy-nav-content-wrap\">\n\n      {# MOBILE NAV, TRIGGLES SIDE NAV ON TOGGLE #}\n      <nav class=\"wy-nav-top\" role=\"navigation\" aria-label=\"top navigation\">\n        <i data-toggle=\"wy-nav-top\" class=\"fa fa-bars\"></i>\n        <a href=\"{{ homepage_url }}\">{{ site_name }}</a>\n      </nav>\n\n      {# PAGE CONTENT #}\n      <div class=\"wy-nav-content\">\n        <div class=\"rst-content\">\n          {% include \"breadcrumbs.html\" %}\n          <div role=\"main\">\n            <div class=\"section\">\n              {% block content %}\n                {{ content }}\n              {% endblock %}\n            </div>\n          </div>\n\t  {%- block footer %}\n          {% include \"footer.html\" %}\n\t  {% endblock %}\n        </div>\n      </div>\n\n    </section>\n\n  </div>\n\n{% include \"versions.html\" %}\n\n<script async defer id=\"github-bjs\" src=\"https://buttons.github.io/buttons.js\"></script>\n\n</body>\n</html>\n{% if current_page and current_page.is_homepage %}\n<!--\nMkDocs version : {{ mkdocs_version }}\nBuild Date UTC : {{ build_date_utc }}\n-->\n{% endif %}\n"
  },
  {
    "path": "doc/themes/boost-experimental/breadcrumbs.html",
    "content": "<div role=\"navigation\" aria-label=\"breadcrumbs navigation\">\n  <ul class=\"wy-breadcrumbs\">\n    <li><a href=\"{{ homepage_url }}\">Docs</a> &raquo;</li>\n    {% if current_page %}\n      {% for doc in current_page.ancestors %}\n        {% if doc.link %}\n          <li><a href=\"{{ doc.link|e }}\">{{ doc.title }}</a> &raquo;</li>\n        {% else %}\n          <li>{{ doc.title }} &raquo;</li>\n        {% endif %}\n      {% endfor %}\n    {% endif %}\n    {% if current_page %}<li>{{ current_page.title }}</li>{% endif %}\n    <li class=\"wy-breadcrumbs-aside\">\n      {% if repo_url %}\n        {% if repo_name == 'GitHub' %}\n          <a href=\"{{ repo_url }}\" class=\"icon icon-github\"> Edit on GitHub</a>\n        {% elif repo_name == 'Bitbucket' %}\n          <a href=\"{{ repo_url }}\" class=\"icon icon-bitbucket\"> Edit on BitBucket</a>\n        {% endif %}\n      {% endif %}\n    </li>\n  </ul>\n  <hr/>\n</div>\n"
  },
  {
    "path": "doc/themes/boost-experimental/css/codemirror.css",
    "content": "/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n  color: black;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  white-space: nowrap;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror div.CodeMirror-cursor {\n  border-left: 1px solid black;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.CodeMirror.cm-fat-cursor div.CodeMirror-cursor {\n  width: auto;\n  border: 0;\n  background: #7e7;\n}\n.CodeMirror.cm-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n@-moz-keyframes blink {\n  0% { background: #7e7; }\n  50% { background: none; }\n  100% { background: #7e7; }\n}\n@-webkit-keyframes blink {\n  0% { background: #7e7; }\n  50% { background: none; }\n  100% { background: #7e7; }\n}\n@keyframes blink {\n  0% { background: #7e7; }\n  50% { background: none; }\n  100% { background: #7e7; }\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\ndiv.CodeMirror-overwrite div.CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n.cm-strikethrough {text-decoration: line-through;}\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3 {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n.CodeMirror-composing { border-bottom: 2px solid; }\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  position: relative;\n  overflow: hidden;\n  background: white;\n}\n\n.CodeMirror-scroll {\n  overflow: scroll !important; /* Things will break if this is overridden */\n  /* 30px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -30px; margin-right: -30px;\n  padding-bottom: 30px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 30px solid transparent;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actuall scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  display: inline-block;\n  margin-bottom: -30px;\n  /* Hack to make IE7 behave */\n  *zoom:1;\n  *display:inline;\n}\n.CodeMirror-gutter-wrapper {\n  position: absolute;\n  z-index: 4;\n  height: 100%;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n.CodeMirror-gutter-wrapper {\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  user-select: none;\n}\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: 12px;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n  -webkit-tap-highlight-color: transparent;\n}\n.CodeMirror-wrap pre {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  overflow: auto;\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-code {\n  outline: none;\n}\n\n/* Force content-box sizing for the elements where we expect it */\n.CodeMirror-scroll,\n.CodeMirror-sizer,\n.CodeMirror-gutter,\n.CodeMirror-gutters,\n.CodeMirror-linenumber {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n.CodeMirror-measure pre { position: static; }\n\n.CodeMirror div.CodeMirror-cursor {\n  position: absolute;\n  border-right: none;\n  width: 0;\n}\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n.CodeMirror ::selection { background: #d7d4f0; }\n.CodeMirror ::-moz-selection { background: #d7d4f0; }\n\n.cm-searching {\n  background: #ffa;\n  background: rgba(255, 255, 0, .4);\n}\n\n/* IE7 hack to prevent it from returning funny offsetTops on the spans */\n.CodeMirror span { *vertical-align: text-bottom; }\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* See issue #2901 */\n.cm-tab-wrap-hack:after { content: ''; }\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n"
  },
  {
    "path": "doc/themes/boost-experimental/css/highlight.css",
    "content": "/*\nThis is the GitHub theme for highlight.js\n\ngithub.com style (c) Vasily Polovnyov <vast@whiteants.net>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #333;\n  -webkit-text-size-adjust: none;\n}\n\n.hljs-comment,\n.diff .hljs-header,\n.hljs-javadoc {\n  color: #998;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.css .rule .hljs-keyword,\n.hljs-winutils,\n.nginx .hljs-title,\n.hljs-subst,\n.hljs-request,\n.hljs-status {\n  color: #333;\n  font-weight: bold;\n}\n\n.hljs-number,\n.hljs-hexcolor,\n.ruby .hljs-constant {\n  color: #008080;\n}\n\n.hljs-string,\n.hljs-tag .hljs-value,\n.hljs-phpdoc,\n.hljs-dartdoc,\n.tex .hljs-formula {\n  color: #d14;\n}\n\n.hljs-title,\n.hljs-id,\n.scss .hljs-preprocessor {\n  color: #900;\n  font-weight: bold;\n}\n\n.hljs-list .hljs-keyword,\n.hljs-subst {\n  font-weight: normal;\n}\n\n.hljs-class .hljs-title,\n.hljs-type,\n.vhdl .hljs-literal,\n.tex .hljs-command {\n  color: #458;\n  font-weight: bold;\n}\n\n.hljs-tag,\n.hljs-tag .hljs-title,\n.hljs-rule .hljs-property,\n.django .hljs-tag .hljs-keyword {\n  color: #000080;\n  font-weight: normal;\n}\n\n.hljs-attribute,\n.hljs-variable,\n.lisp .hljs-body,\n.hljs-name {\n  color: #008080;\n}\n\n.hljs-regexp {\n  color: #009926;\n}\n\n.hljs-symbol,\n.ruby .hljs-symbol .hljs-string,\n.lisp .hljs-keyword,\n.clojure .hljs-keyword,\n.scheme .hljs-keyword,\n.tex .hljs-special,\n.hljs-prompt {\n  color: #990073;\n}\n\n.hljs-built_in {\n  color: #0086b3;\n}\n\n.hljs-preprocessor,\n.hljs-pragma,\n.hljs-pi,\n.hljs-doctype,\n.hljs-shebang,\n.hljs-cdata {\n  color: #999;\n  font-weight: bold;\n}\n\n.hljs-deletion {\n  background: #fdd;\n}\n\n.hljs-addition {\n  background: #dfd;\n}\n\n.diff .hljs-change {\n  background: #0086b3;\n}\n\n.hljs-chunk {\n  color: #aaa;\n}\n"
  },
  {
    "path": "doc/themes/boost-experimental/css/mdn-like.css",
    "content": "/*\n  MDN-LIKE Theme - Mozilla\n  Ported to CodeMirror by Peter Kroon <plakroon@gmail.com>\n  Report bugs/issues here: https://github.com/codemirror/CodeMirror/issues\n  GitHub: @peterkroon\n\n  The mdn-like theme is inspired on the displayed code examples at: https://developer.mozilla.org/en-US/docs/Web/CSS/animation\n\n*/\n.cm-s-mdn-like.CodeMirror { color: #999; background-color: #fff; }\n.cm-s-mdn-like .CodeMirror-selected { background: #cfc !important; }\n.cm-s-mdn-like.CodeMirror ::selection { background: #cfc; }\n.cm-s-mdn-like.CodeMirror ::-moz-selection { background: #cfc; }\n\n.cm-s-mdn-like .CodeMirror-gutters { background: #f8f8f8; border-left: 6px solid rgba(0,83,159,0.65); color: #333; }\n.cm-s-mdn-like .CodeMirror-linenumber { color: #aaa; padding-left: 8px; }\ndiv.cm-s-mdn-like .CodeMirror-cursor { border-left: 2px solid #222; }\n\n.cm-s-mdn-like .cm-keyword {  color: #6262FF; }\n.cm-s-mdn-like .cm-atom { color: #F90; }\n.cm-s-mdn-like .cm-number { color:  #ca7841; }\n.cm-s-mdn-like .cm-def { color: #8DA6CE; }\n.cm-s-mdn-like span.cm-variable-2, .cm-s-mdn-like span.cm-tag { color: #690; }\n.cm-s-mdn-like span.cm-variable-3, .cm-s-mdn-like span.cm-def { color: #07a; }\n\n.cm-s-mdn-like .cm-variable { color: #07a; }\n.cm-s-mdn-like .cm-property { color: #905; }\n.cm-s-mdn-like .cm-qualifier { color: #690; }\n\n.cm-s-mdn-like .cm-operator { color: #cda869; }\n.cm-s-mdn-like .cm-comment { color:#777; font-weight:normal; }\n.cm-s-mdn-like .cm-string { color:#07a; font-style:italic; }\n.cm-s-mdn-like .cm-string-2 { color:#bd6b18; } /*?*/\n.cm-s-mdn-like .cm-meta { color: #000; } /*?*/\n.cm-s-mdn-like .cm-builtin { color: #9B7536; } /*?*/\n.cm-s-mdn-like .cm-tag { color: #997643; }\n.cm-s-mdn-like .cm-attribute { color: #d6bb6d; } /*?*/\n.cm-s-mdn-like .cm-header { color: #FF6400; }\n.cm-s-mdn-like .cm-hr { color: #AEAEAE; }\n.cm-s-mdn-like .cm-link {   color:#ad9361; font-style:italic; text-decoration:none; }\n.cm-s-mdn-like .cm-error { border-bottom: 1px solid red; }\n\ndiv.cm-s-mdn-like .CodeMirror-activeline-background {background: #efefff;}\ndiv.cm-s-mdn-like span.CodeMirror-matchingbracket {outline:1px solid grey; color: inherit;}\n\n.cm-s-mdn-like.CodeMirror { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFcAAAAyCAYAAAAp8UeFAAAHvklEQVR42s2b63bcNgyEQZCSHCdt2vd/0tWF7I+Q6XgMXiTtuvU5Pl57ZQKkKHzEAOtF5KeIJBGJ8uvL599FRFREZhFx8DeXv8trn68RuGaC8TRfo3SNp9dlDDHedyLyTUTeRWStXKPZrjtpZxaRw5hPqozRs1N8/enzIiQRWcCgy4MUA0f+XWliDhyL8Lfyvx7ei/Ae3iQFHyw7U/59pQVIMEEPEz0G7XiwdRjzSfC3UTtz9vchIntxvry5iMgfIhJoEflOz2CQr3F5h/HfeFe+GTdLaKcu9L8LTeQb/R/7GgbsfKedyNdoHsN31uRPWrfZ5wsj/NzzRQHuToIdU3ahwnsKPxXCjJITuOsi7XLc7SG/v5GdALs7wf8JjTFiB5+QvTEfRyGOfX3Lrx8wxyQi3sNq46O7QahQiCsRFgqddjBouVEHOKDgXAQHD9gJCr5sMKkEdjwsarG/ww3BMHBU7OBjXnzdyY7SfCxf5/z6ATccrwlKuwC/jhznnPF4CgVzhhVf4xp2EixcBActO75iZ8/fM9zAs2OMzKdslgXWJ9XG8PQoOAMA5fGcsvORgv0doBXyHrCwfLJAOwo71QLNkb8n2Pl6EWiR7OCibtkPaz4Kc/0NNAze2gju3zOwekALDaCFPI5vjPFmgGY5AZqyGEvH1x7QfIb8YtxMnA/b+QQ0aQDAwc6JMFg8CbQZ4qoYEEHbRwNojuK3EHwd7VALSgq+MNDKzfT58T8qdpADrgW0GmgcAS1lhzztJmkAzcPNOQbsWEALBDSlMKUG0Eq4CLAQWvEVQ9WU57gZJwZtgPO3r9oBTQ9WO8TjqXINx8R0EYpiZEUWOF3FxkbJkgU9B2f41YBrIj5ZfsQa0M5kTgiAAqM3ShXLgu8XMqcrQBvJ0CL5pnTsfMB13oB8athpAq2XOQmcGmoACCLydx7nToa23ATaSIY2ichfOdPTGxlasXMLaL0MLZAOwAKIM+y8CmicobGdCcbbK9DzN+yYGVoNNI5iUKTMyYOjPse4A8SM1MmcXgU0toOq1yO/v8FOxlASyc7TgeYaAMBJHcY1CcCwGI/TK4AmDbDyKYBBtFUkRwto8gygiQEaByFgJ00BH2M8JWwQS1nafDXQCidWyOI8AcjDCSjCLk8ngObuAm3JAHAdubAmOaK06V8MNEsKPJOhobSprwQa6gD7DclRQdqcwL4zxqgBrQcabUiBLclRDKAlWp+etPkBaNMA0AKlrHwTdEByZAA4GM+SNluSY6wAzcMNewxmgig5Ks0nkrSpBvSaQHMdKTBAnLojOdYyGpQ254602ZILPdTD1hdlggdIm74jbTp8vDwF5ZYUeLWGJpWsh6XNyXgcYwVoJQTEhhTYkxzZjiU5npU2TaB979TQehlaAVq4kaGpiPwwwLkYUuBbQwocyQTv1tA0+1UFWoJF3iv1oq+qoSk8EQdJmwHkziIF7oOZk14EGitibAdjLYYK78H5vZOhtWpoI0ATGHs0Q8OMb4Ey+2bU2UYztCtA0wFAs7TplGLRVQCcqaFdGSPCeTI1QNIC52iWNzof6Uib7xjEp07mNNoUYmVosVItHrHzRlLgBn9LFyRHaQCtVUMbtTNhoXWiTOO9k/V8BdAc1Oq0ArSQs6/5SU0hckNy9NnXqQY0PGYo5dWJ7nINaN6o958FWin27aBaWRka1r5myvLOAm0j30eBJqCxHLReVclxhxOEN2JfDWjxBtAC7MIH1fVaGdoOp4qJYDgKtKPSFNID2gSnGldrCqkFZ+5UeQXQBIRrSwocbdZYQT/2LwRahBPBXoHrB8nxaGROST62DKUbQOMMzZIC9abkuELfQzQALWTnDNAm8KHWFOJgJ5+SHIvTPcmx1xQyZRhNL5Qci689aXMEaN/uNIWkEwDAvFpOZmgsBaaGnbs1NPa1Jm32gBZAIh1pCtG7TSH4aE0y1uVY4uqoFPisGlpP2rSA5qTecWn5agK6BzSpgAyD+wFaqhnYoSZ1Vwr8CmlTQbrcO3ZaX0NAEyMbYaAlyquFoLKK3SPby9CeVUPThrSJmkCAE0CrKUQadi4DrdSlWhmah0YL9z9vClH59YGbHx1J8VZTyAjQepJjmXwAKTDQI3omc3p1U4gDUf6RfcdYfrUp5ClAi2J3Ba6UOXGo+K+bQrjjssitG2SJzshaLwMtXgRagUNpYYoVkMSBLM+9GGiJZMvduG6DRZ4qc04DMPtQQxOjEtACmhO7K1AbNbQDEggZyJwscFpAGwENhoBeUwh3bWolhe8BTYVKxQEWrSUn/uhcM5KhvUu/+eQu0Lzhi+VrK0PrZZNDQKs9cpYUuFYgMVpD4/NxenJTiMCNqdUEUf1qZWjppLT5qSkkUZbCwkbZMSuVnu80hfSkzRbQeqCZSAh6huR4VtoM2gHAlLf72smuWgE+VV7XpE25Ab2WFDgyhnSuKbs4GuGzCjR+tIoUuMFg3kgcWKLTwRqanJQ2W00hAsenfaApRC42hbCvK1SlE0HtE9BGgneJO+ELamitD1YjjOYnNYVcraGhtKkW0EqVVeDx733I2NH581k1NNxNLG0i0IJ8/NjVaOZ0tYZ2Vtr0Xv7tPV3hkWp9EFkgS/J0vosngTaSoaG06WHi+xObQkaAdlbanP8B2+2l0f90LmUAAAAASUVORK5CYII=); }\n"
  },
  {
    "path": "doc/themes/boost-experimental/css/theme.css",
    "content": "/*\n * This file is copied from the upstream ReadTheDocs Sphinx\n * theme. To aid upgradability this file should *not* be edited.\n * modifications we need should be included in theme_extra.css.\n *\n * https://github.com/rtfd/readthedocs.org/blob/master/media/css/sphinx_rtd_theme.css\n */\n\n*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:hover,a:active{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;color:#000;text-decoration:none}mark{background:#ff0;color:#000;font-style:italic;font-weight:bold}pre,code,.rst-content tt,kbd,samp{font-family:monospace,serif;_font-family:\"courier new\",monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:before,q:after{content:\"\";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}ul,ol,dl{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:0;margin:0;padding:0}label{cursor:pointer}legend{border:0;*margin-left:-7px;padding:0;white-space:normal}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type=\"button\"],input[type=\"reset\"],input[type=\"submit\"]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type=\"checkbox\"],input[type=\"radio\"]{box-sizing:border-box;padding:0;*width:13px;*height:13px}input[type=\"search\"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=\"search\"]::-webkit-search-decoration,input[type=\"search\"]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top;resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:0.2em 0;background:#ccc;color:#000;padding:0.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none !important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{html,body,section{background:none !important}*{box-shadow:none !important;text-shadow:none !important;filter:none !important;-ms-filter:none !important}a,a:visited{text-decoration:underline}.ir a:after,a[href^=\"javascript:\"]:after,a[href^=\"#\"]:after{content:\"\"}pre,blockquote{page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}.fa:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo,.btn,input[type=\"text\"],input[type=\"password\"],input[type=\"email\"],input[type=\"url\"],input[type=\"date\"],input[type=\"month\"],input[type=\"time\"],input[type=\"datetime\"],input[type=\"datetime-local\"],input[type=\"week\"],input[type=\"number\"],input[type=\"search\"],input[type=\"tel\"],input[type=\"color\"],select,textarea,.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a,.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a,.wy-nav-top a{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:\"\"}.clearfix:after{clear:both}/*!\n *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:'FontAwesome';src:url(\"../fonts/fontawesome-webfont.eot?v=4.1.0\");src:url(\"../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0\") format(\"embedded-opentype\"),url(\"../fonts/fontawesome-webfont.woff?v=4.1.0\") format(\"woff\"),url(\"../fonts/fontawesome-webfont.ttf?v=4.1.0\") format(\"truetype\"),url(\"../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular\") format(\"svg\");font-weight:normal;font-style:normal}.fa,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.icon{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:0.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:0.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.rst-content .pull-left.admonition-title,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content dl dt .pull-left.headerlink,.pull-left.icon{margin-right:.3em}.fa.pull-right,.rst-content .pull-right.admonition-title,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content dl dt .pull-right.headerlink,.pull-right.icon{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:\"\"}.fa-music:before{content:\"\"}.fa-search:before,.icon-search:before{content:\"\"}.fa-envelope-o:before{content:\"\"}.fa-heart:before{content:\"\"}.fa-star:before{content:\"\"}.fa-star-o:before{content:\"\"}.fa-user:before{content:\"\"}.fa-film:before{content:\"\"}.fa-th-large:before{content:\"\"}.fa-th:before{content:\"\"}.fa-th-list:before{content:\"\"}.fa-check:before{content:\"\"}.fa-times:before{content:\"\"}.fa-search-plus:before{content:\"\"}.fa-search-minus:before{content:\"\"}.fa-power-off:before{content:\"\"}.fa-signal:before{content:\"\"}.fa-gear:before,.fa-cog:before{content:\"\"}.fa-trash-o:before{content:\"\"}.fa-home:before,.icon-home:before{content:\"\"}.fa-file-o:before{content:\"\"}.fa-clock-o:before{content:\"\"}.fa-road:before{content:\"\"}.fa-download:before{content:\"\"}.fa-arrow-circle-o-down:before{content:\"\"}.fa-arrow-circle-o-up:before{content:\"\"}.fa-inbox:before{content:\"\"}.fa-play-circle-o:before{content:\"\"}.fa-rotate-right:before,.fa-repeat:before{content:\"\"}.fa-refresh:before{content:\"\"}.fa-list-alt:before{content:\"\"}.fa-lock:before{content:\"\"}.fa-flag:before{content:\"\"}.fa-headphones:before{content:\"\"}.fa-volume-off:before{content:\"\"}.fa-volume-down:before{content:\"\"}.fa-volume-up:before{content:\"\"}.fa-qrcode:before{content:\"\"}.fa-barcode:before{content:\"\"}.fa-tag:before{content:\"\"}.fa-tags:before{content:\"\"}.fa-book:before,.icon-book:before{content:\"\"}.fa-bookmark:before{content:\"\"}.fa-print:before{content:\"\"}.fa-camera:before{content:\"\"}.fa-font:before{content:\"\"}.fa-bold:before{content:\"\"}.fa-italic:before{content:\"\"}.fa-text-height:before{content:\"\"}.fa-text-width:before{content:\"\"}.fa-align-left:before{content:\"\"}.fa-align-center:before{content:\"\"}.fa-align-right:before{content:\"\"}.fa-align-justify:before{content:\"\"}.fa-list:before{content:\"\"}.fa-dedent:before,.fa-outdent:before{content:\"\"}.fa-indent:before{content:\"\"}.fa-video-camera:before{content:\"\"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:\"\"}.fa-pencil:before{content:\"\"}.fa-map-marker:before{content:\"\"}.fa-adjust:before{content:\"\"}.fa-tint:before{content:\"\"}.fa-edit:before,.fa-pencil-square-o:before{content:\"\"}.fa-share-square-o:before{content:\"\"}.fa-check-square-o:before{content:\"\"}.fa-arrows:before{content:\"\"}.fa-step-backward:before{content:\"\"}.fa-fast-backward:before{content:\"\"}.fa-backward:before{content:\"\"}.fa-play:before{content:\"\"}.fa-pause:before{content:\"\"}.fa-stop:before{content:\"\"}.fa-forward:before{content:\"\"}.fa-fast-forward:before{content:\"\"}.fa-step-forward:before{content:\"\"}.fa-eject:before{content:\"\"}.fa-chevron-left:before{content:\"\"}.fa-chevron-right:before{content:\"\"}.fa-plus-circle:before{content:\"\"}.fa-minus-circle:before{content:\"\"}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:\"\"}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:\"\"}.fa-question-circle:before{content:\"\"}.fa-info-circle:before{content:\"\"}.fa-crosshairs:before{content:\"\"}.fa-times-circle-o:before{content:\"\"}.fa-check-circle-o:before{content:\"\"}.fa-ban:before{content:\"\"}.fa-arrow-left:before{content:\"\"}.fa-arrow-right:before{content:\"\"}.fa-arrow-up:before{content:\"\"}.fa-arrow-down:before{content:\"\"}.fa-mail-forward:before,.fa-share:before{content:\"\"}.fa-expand:before{content:\"\"}.fa-compress:before{content:\"\"}.fa-plus:before{content:\"\"}.fa-minus:before{content:\"\"}.fa-asterisk:before{content:\"\"}.fa-exclamation-circle:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.rst-content .admonition-title:before{content:\"\"}.fa-gift:before{content:\"\"}.fa-leaf:before{content:\"\"}.fa-fire:before,.icon-fire:before{content:\"\"}.fa-eye:before{content:\"\"}.fa-eye-slash:before{content:\"\"}.fa-warning:before,.fa-exclamation-triangle:before{content:\"\"}.fa-plane:before{content:\"\"}.fa-calendar:before{content:\"\"}.fa-random:before{content:\"\"}.fa-comment:before{content:\"\"}.fa-magnet:before{content:\"\"}.fa-chevron-up:before{content:\"\"}.fa-chevron-down:before{content:\"\"}.fa-retweet:before{content:\"\"}.fa-shopping-cart:before{content:\"\"}.fa-folder:before{content:\"\"}.fa-folder-open:before{content:\"\"}.fa-arrows-v:before{content:\"\"}.fa-arrows-h:before{content:\"\"}.fa-bar-chart-o:before{content:\"\"}.fa-twitter-square:before{content:\"\"}.fa-facebook-square:before{content:\"\"}.fa-camera-retro:before{content:\"\"}.fa-key:before{content:\"\"}.fa-gears:before,.fa-cogs:before{content:\"\"}.fa-comments:before{content:\"\"}.fa-thumbs-o-up:before{content:\"\"}.fa-thumbs-o-down:before{content:\"\"}.fa-star-half:before{content:\"\"}.fa-heart-o:before{content:\"\"}.fa-sign-out:before{content:\"\"}.fa-linkedin-square:before{content:\"\"}.fa-thumb-tack:before{content:\"\"}.fa-external-link:before{content:\"\"}.fa-sign-in:before{content:\"\"}.fa-trophy:before{content:\"\"}.fa-github-square:before{content:\"\"}.fa-upload:before{content:\"\"}.fa-lemon-o:before{content:\"\"}.fa-phone:before{content:\"\"}.fa-square-o:before{content:\"\"}.fa-bookmark-o:before{content:\"\"}.fa-phone-square:before{content:\"\"}.fa-twitter:before{content:\"\"}.fa-facebook:before{content:\"\"}.fa-github:before,.icon-github:before{content:\"\"}.fa-unlock:before{content:\"\"}.fa-credit-card:before{content:\"\"}.fa-rss:before{content:\"\"}.fa-hdd-o:before{content:\"\"}.fa-bullhorn:before{content:\"\"}.fa-bell:before{content:\"\"}.fa-certificate:before{content:\"\"}.fa-hand-o-right:before{content:\"\"}.fa-hand-o-left:before{content:\"\"}.fa-hand-o-up:before{content:\"\"}.fa-hand-o-down:before{content:\"\"}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:\"\"}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:\"\"}.fa-arrow-circle-up:before{content:\"\"}.fa-arrow-circle-down:before{content:\"\"}.fa-globe:before{content:\"\"}.fa-wrench:before{content:\"\"}.fa-tasks:before{content:\"\"}.fa-filter:before{content:\"\"}.fa-briefcase:before{content:\"\"}.fa-arrows-alt:before{content:\"\"}.fa-group:before,.fa-users:before{content:\"\"}.fa-chain:before,.fa-link:before,.icon-link:before{content:\"\"}.fa-cloud:before{content:\"\"}.fa-flask:before{content:\"\"}.fa-cut:before,.fa-scissors:before{content:\"\"}.fa-copy:before,.fa-files-o:before{content:\"\"}.fa-paperclip:before{content:\"\"}.fa-save:before,.fa-floppy-o:before{content:\"\"}.fa-square:before{content:\"\"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:\"\"}.fa-list-ul:before{content:\"\"}.fa-list-ol:before{content:\"\"}.fa-strikethrough:before{content:\"\"}.fa-underline:before{content:\"\"}.fa-table:before{content:\"\"}.fa-magic:before{content:\"\"}.fa-truck:before{content:\"\"}.fa-pinterest:before{content:\"\"}.fa-pinterest-square:before{content:\"\"}.fa-google-plus-square:before{content:\"\"}.fa-google-plus:before{content:\"\"}.fa-money:before{content:\"\"}.fa-caret-down:before,.wy-dropdown .caret:before,.icon-caret-down:before{content:\"\"}.fa-caret-up:before{content:\"\"}.fa-caret-left:before{content:\"\"}.fa-caret-right:before{content:\"\"}.fa-columns:before{content:\"\"}.fa-unsorted:before,.fa-sort:before{content:\"\"}.fa-sort-down:before,.fa-sort-desc:before{content:\"\"}.fa-sort-up:before,.fa-sort-asc:before{content:\"\"}.fa-envelope:before{content:\"\"}.fa-linkedin:before{content:\"\"}.fa-rotate-left:before,.fa-undo:before{content:\"\"}.fa-legal:before,.fa-gavel:before{content:\"\"}.fa-dashboard:before,.fa-tachometer:before{content:\"\"}.fa-comment-o:before{content:\"\"}.fa-comments-o:before{content:\"\"}.fa-flash:before,.fa-bolt:before{content:\"\"}.fa-sitemap:before{content:\"\"}.fa-umbrella:before{content:\"\"}.fa-paste:before,.fa-clipboard:before{content:\"\"}.fa-lightbulb-o:before{content:\"\"}.fa-exchange:before{content:\"\"}.fa-cloud-download:before{content:\"\"}.fa-cloud-upload:before{content:\"\"}.fa-user-md:before{content:\"\"}.fa-stethoscope:before{content:\"\"}.fa-suitcase:before{content:\"\"}.fa-bell-o:before{content:\"\"}.fa-coffee:before{content:\"\"}.fa-cutlery:before{content:\"\"}.fa-file-text-o:before{content:\"\"}.fa-building-o:before{content:\"\"}.fa-hospital-o:before{content:\"\"}.fa-ambulance:before{content:\"\"}.fa-medkit:before{content:\"\"}.fa-fighter-jet:before{content:\"\"}.fa-beer:before{content:\"\"}.fa-h-square:before{content:\"\"}.fa-plus-square:before{content:\"\"}.fa-angle-double-left:before{content:\"\"}.fa-angle-double-right:before{content:\"\"}.fa-angle-double-up:before{content:\"\"}.fa-angle-double-down:before{content:\"\"}.fa-angle-left:before{content:\"\"}.fa-angle-right:before{content:\"\"}.fa-angle-up:before{content:\"\"}.fa-angle-down:before{content:\"\"}.fa-desktop:before{content:\"\"}.fa-laptop:before{content:\"\"}.fa-tablet:before{content:\"\"}.fa-mobile-phone:before,.fa-mobile:before{content:\"\"}.fa-circle-o:before{content:\"\"}.fa-quote-left:before{content:\"\"}.fa-quote-right:before{content:\"\"}.fa-spinner:before{content:\"\"}.fa-circle:before{content:\"\"}.fa-mail-reply:before,.fa-reply:before{content:\"\"}.fa-github-alt:before{content:\"\"}.fa-folder-o:before{content:\"\"}.fa-folder-open-o:before{content:\"\"}.fa-smile-o:before{content:\"\"}.fa-frown-o:before{content:\"\"}.fa-meh-o:before{content:\"\"}.fa-gamepad:before{content:\"\"}.fa-keyboard-o:before{content:\"\"}.fa-flag-o:before{content:\"\"}.fa-flag-checkered:before{content:\"\"}.fa-terminal:before{content:\"\"}.fa-code:before{content:\"\"}.fa-mail-reply-all:before,.fa-reply-all:before{content:\"\"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:\"\"}.fa-location-arrow:before{content:\"\"}.fa-crop:before{content:\"\"}.fa-code-fork:before{content:\"\"}.fa-unlink:before,.fa-chain-broken:before{content:\"\"}.fa-question:before{content:\"\"}.fa-info:before{content:\"\"}.fa-exclamation:before{content:\"\"}.fa-superscript:before{content:\"\"}.fa-subscript:before{content:\"\"}.fa-eraser:before{content:\"\"}.fa-puzzle-piece:before{content:\"\"}.fa-microphone:before{content:\"\"}.fa-microphone-slash:before{content:\"\"}.fa-shield:before{content:\"\"}.fa-calendar-o:before{content:\"\"}.fa-fire-extinguisher:before{content:\"\"}.fa-rocket:before{content:\"\"}.fa-maxcdn:before{content:\"\"}.fa-chevron-circle-left:before{content:\"\"}.fa-chevron-circle-right:before{content:\"\"}.fa-chevron-circle-up:before{content:\"\"}.fa-chevron-circle-down:before{content:\"\"}.fa-html5:before{content:\"\"}.fa-css3:before{content:\"\"}.fa-anchor:before{content:\"\"}.fa-unlock-alt:before{content:\"\"}.fa-bullseye:before{content:\"\"}.fa-ellipsis-h:before{content:\"\"}.fa-ellipsis-v:before{content:\"\"}.fa-rss-square:before{content:\"\"}.fa-play-circle:before{content:\"\"}.fa-ticket:before{content:\"\"}.fa-minus-square:before{content:\"\"}.fa-minus-square-o:before{content:\"\"}.fa-level-up:before{content:\"\"}.fa-level-down:before{content:\"\"}.fa-check-square:before{content:\"\"}.fa-pencil-square:before{content:\"\"}.fa-external-link-square:before{content:\"\"}.fa-share-square:before{content:\"\"}.fa-compass:before{content:\"\"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:\"\"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:\"\"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:\"\"}.fa-euro:before,.fa-eur:before{content:\"\"}.fa-gbp:before{content:\"\"}.fa-dollar:before,.fa-usd:before{content:\"\"}.fa-rupee:before,.fa-inr:before{content:\"\"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:\"\"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:\"\"}.fa-won:before,.fa-krw:before{content:\"\"}.fa-bitcoin:before,.fa-btc:before{content:\"\"}.fa-file:before{content:\"\"}.fa-file-text:before{content:\"\"}.fa-sort-alpha-asc:before{content:\"\"}.fa-sort-alpha-desc:before{content:\"\"}.fa-sort-amount-asc:before{content:\"\"}.fa-sort-amount-desc:before{content:\"\"}.fa-sort-numeric-asc:before{content:\"\"}.fa-sort-numeric-desc:before{content:\"\"}.fa-thumbs-up:before{content:\"\"}.fa-thumbs-down:before{content:\"\"}.fa-youtube-square:before{content:\"\"}.fa-youtube:before{content:\"\"}.fa-xing:before{content:\"\"}.fa-xing-square:before{content:\"\"}.fa-youtube-play:before{content:\"\"}.fa-dropbox:before{content:\"\"}.fa-stack-overflow:before{content:\"\"}.fa-instagram:before{content:\"\"}.fa-flickr:before{content:\"\"}.fa-adn:before{content:\"\"}.fa-bitbucket:before,.icon-bitbucket:before{content:\"\"}.fa-bitbucket-square:before{content:\"\"}.fa-tumblr:before{content:\"\"}.fa-tumblr-square:before{content:\"\"}.fa-long-arrow-down:before{content:\"\"}.fa-long-arrow-up:before{content:\"\"}.fa-long-arrow-left:before{content:\"\"}.fa-long-arrow-right:before{content:\"\"}.fa-apple:before{content:\"\"}.fa-windows:before{content:\"\"}.fa-android:before{content:\"\"}.fa-linux:before{content:\"\"}.fa-dribbble:before{content:\"\"}.fa-skype:before{content:\"\"}.fa-foursquare:before{content:\"\"}.fa-trello:before{content:\"\"}.fa-female:before{content:\"\"}.fa-male:before{content:\"\"}.fa-gittip:before{content:\"\"}.fa-sun-o:before{content:\"\"}.fa-moon-o:before{content:\"\"}.fa-archive:before{content:\"\"}.fa-bug:before{content:\"\"}.fa-vk:before{content:\"\"}.fa-weibo:before{content:\"\"}.fa-renren:before{content:\"\"}.fa-pagelines:before{content:\"\"}.fa-stack-exchange:before{content:\"\"}.fa-arrow-circle-o-right:before{content:\"\"}.fa-arrow-circle-o-left:before{content:\"\"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:\"\"}.fa-dot-circle-o:before{content:\"\"}.fa-wheelchair:before{content:\"\"}.fa-vimeo-square:before{content:\"\"}.fa-turkish-lira:before,.fa-try:before{content:\"\"}.fa-plus-square-o:before{content:\"\"}.fa-space-shuttle:before{content:\"\"}.fa-slack:before{content:\"\"}.fa-envelope-square:before{content:\"\"}.fa-wordpress:before{content:\"\"}.fa-openid:before{content:\"\"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:\"\"}.fa-mortar-board:before,.fa-graduation-cap:before{content:\"\"}.fa-yahoo:before{content:\"\"}.fa-google:before{content:\"\"}.fa-reddit:before{content:\"\"}.fa-reddit-square:before{content:\"\"}.fa-stumbleupon-circle:before{content:\"\"}.fa-stumbleupon:before{content:\"\"}.fa-delicious:before{content:\"\"}.fa-digg:before{content:\"\"}.fa-pied-piper-square:before,.fa-pied-piper:before{content:\"\"}.fa-pied-piper-alt:before{content:\"\"}.fa-drupal:before{content:\"\"}.fa-joomla:before{content:\"\"}.fa-language:before{content:\"\"}.fa-fax:before{content:\"\"}.fa-building:before{content:\"\"}.fa-child:before{content:\"\"}.fa-paw:before{content:\"\"}.fa-spoon:before{content:\"\"}.fa-cube:before{content:\"\"}.fa-cubes:before{content:\"\"}.fa-behance:before{content:\"\"}.fa-behance-square:before{content:\"\"}.fa-steam:before{content:\"\"}.fa-steam-square:before{content:\"\"}.fa-recycle:before{content:\"\"}.fa-automobile:before,.fa-car:before{content:\"\"}.fa-cab:before,.fa-taxi:before{content:\"\"}.fa-tree:before{content:\"\"}.fa-spotify:before{content:\"\"}.fa-deviantart:before{content:\"\"}.fa-soundcloud:before{content:\"\"}.fa-database:before{content:\"\"}.fa-file-pdf-o:before{content:\"\"}.fa-file-word-o:before{content:\"\"}.fa-file-excel-o:before{content:\"\"}.fa-file-powerpoint-o:before{content:\"\"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:\"\"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:\"\"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:\"\"}.fa-file-movie-o:before,.fa-file-video-o:before{content:\"\"}.fa-file-code-o:before{content:\"\"}.fa-vine:before{content:\"\"}.fa-codepen:before{content:\"\"}.fa-jsfiddle:before{content:\"\"}.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:\"\"}.fa-circle-o-notch:before{content:\"\"}.fa-ra:before,.fa-rebel:before{content:\"\"}.fa-ge:before,.fa-empire:before{content:\"\"}.fa-git-square:before{content:\"\"}.fa-git:before{content:\"\"}.fa-hacker-news:before{content:\"\"}.fa-tencent-weibo:before{content:\"\"}.fa-qq:before{content:\"\"}.fa-wechat:before,.fa-weixin:before{content:\"\"}.fa-send:before,.fa-paper-plane:before{content:\"\"}.fa-send-o:before,.fa-paper-plane-o:before{content:\"\"}.fa-history:before{content:\"\"}.fa-circle-thin:before{content:\"\"}.fa-header:before{content:\"\"}.fa-paragraph:before{content:\"\"}.fa-sliders:before{content:\"\"}.fa-share-alt:before{content:\"\"}.fa-share-alt-square:before{content:\"\"}.fa-bomb:before{content:\"\"}.fa,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.icon,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context{font-family:inherit}.fa:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before{font-family:\"FontAwesome\";display:inline-block;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa,a .rst-content .admonition-title,.rst-content a .admonition-title,a .rst-content h1 .headerlink,.rst-content h1 a .headerlink,a .rst-content h2 .headerlink,.rst-content h2 a .headerlink,a .rst-content h3 .headerlink,.rst-content h3 a .headerlink,a .rst-content h4 .headerlink,.rst-content h4 a .headerlink,a .rst-content h5 .headerlink,.rst-content h5 a .headerlink,a .rst-content h6 .headerlink,.rst-content h6 a .headerlink,a .rst-content dl dt .headerlink,.rst-content dl dt a .headerlink,a .icon{display:inline-block;text-decoration:inherit}.btn .fa,.btn .rst-content .admonition-title,.rst-content .btn .admonition-title,.btn .rst-content h1 .headerlink,.rst-content h1 .btn .headerlink,.btn .rst-content h2 .headerlink,.rst-content h2 .btn .headerlink,.btn .rst-content h3 .headerlink,.rst-content h3 .btn .headerlink,.btn .rst-content h4 .headerlink,.rst-content h4 .btn .headerlink,.btn .rst-content h5 .headerlink,.rst-content h5 .btn .headerlink,.btn .rst-content h6 .headerlink,.rst-content h6 .btn .headerlink,.btn .rst-content dl dt .headerlink,.rst-content dl dt .btn .headerlink,.btn .icon,.nav .fa,.nav .rst-content .admonition-title,.rst-content .nav .admonition-title,.nav .rst-content h1 .headerlink,.rst-content h1 .nav .headerlink,.nav .rst-content h2 .headerlink,.rst-content h2 .nav .headerlink,.nav .rst-content h3 .headerlink,.rst-content h3 .nav .headerlink,.nav .rst-content h4 .headerlink,.rst-content h4 .nav .headerlink,.nav .rst-content h5 .headerlink,.rst-content h5 .nav .headerlink,.nav .rst-content h6 .headerlink,.rst-content h6 .nav .headerlink,.nav .rst-content dl dt .headerlink,.rst-content dl dt .nav .headerlink,.nav .icon{display:inline}.btn .fa.fa-large,.btn .rst-content .fa-large.admonition-title,.rst-content .btn .fa-large.admonition-title,.btn .rst-content h1 .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.btn .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .btn .fa-large.headerlink,.btn .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .fa-large.admonition-title,.rst-content .nav .fa-large.admonition-title,.nav .rst-content h1 .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.nav .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.nav .fa-large.icon{line-height:0.9em}.btn .fa.fa-spin,.btn .rst-content .fa-spin.admonition-title,.rst-content .btn .fa-spin.admonition-title,.btn .rst-content h1 .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.btn .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .btn .fa-spin.headerlink,.btn .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .fa-spin.admonition-title,.rst-content .nav .fa-spin.admonition-title,.nav .rst-content h1 .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.nav .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.nav .fa-spin.icon{display:inline-block}.btn.fa:before,.rst-content .btn.admonition-title:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content dl dt .btn.headerlink:before,.btn.icon:before{opacity:0.5;-webkit-transition:opacity 0.05s ease-in;-moz-transition:opacity 0.05s ease-in;transition:opacity 0.05s ease-in}.btn.fa:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.btn.icon:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .rst-content .admonition-title:before,.rst-content .btn-mini .admonition-title:before,.btn-mini .rst-content h1 .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.btn-mini .rst-content dl dt .headerlink:before,.rst-content dl dt .btn-mini .headerlink:before,.btn-mini .icon:before{font-size:14px;vertical-align:-15%}.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.wy-alert-title,.rst-content .admonition-title{color:#fff;font-weight:bold;display:block;color:#fff;background:#6ab0de;margin:-12px;padding:6px 12px;margin-bottom:12px}.wy-alert.wy-alert-danger,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.admonition-todo{background:#fdf3f2}.wy-alert.wy-alert-danger .wy-alert-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .danger .wy-alert-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .danger .admonition-title,.rst-content .error .admonition-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title{background:#f29f97}.wy-alert.wy-alert-warning,.rst-content .wy-alert-warning.note,.rst-content .attention,.rst-content .caution,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.tip,.rst-content .warning,.rst-content .wy-alert-warning.seealso,.rst-content .admonition-todo{background:#ffedcc}.wy-alert.wy-alert-warning .wy-alert-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .attention .wy-alert-title,.rst-content .caution .wy-alert-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .admonition-todo .wy-alert-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .attention .admonition-title,.rst-content .caution .admonition-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .warning .admonition-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .admonition-todo .admonition-title{background:#f0b37e}.wy-alert.wy-alert-info,.rst-content .note,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.rst-content .seealso,.rst-content .wy-alert-info.admonition-todo{background:#e7f2fa}.wy-alert.wy-alert-info .wy-alert-title,.rst-content .note .wy-alert-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.rst-content .note .admonition-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .seealso .admonition-title,.rst-content .wy-alert-info.admonition-todo .admonition-title{background:#6ab0de}.wy-alert.wy-alert-success,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.warning,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.admonition-todo{background:#dbfaf4}.wy-alert.wy-alert-success .wy-alert-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .hint .wy-alert-title,.rst-content .important .wy-alert-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .hint .admonition-title,.rst-content .important .admonition-title,.rst-content .tip .admonition-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.admonition-todo .admonition-title{background:#1abc9c}.wy-alert.wy-alert-neutral,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.admonition-todo{background:#f3f6f6}.wy-alert.wy-alert-neutral .wy-alert-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .admonition-title{color:#404040;background:#e1e4e5}.wy-alert.wy-alert-neutral a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.admonition-todo a{color:#2980B9}.wy-alert p:last-child,.rst-content .note p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.rst-content .seealso p:last-child,.rst-content .admonition-todo p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0px;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,0.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all 0.3s ease-in;-moz-transition:all 0.3s ease-in;transition:all 0.3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27AE60}.wy-tray-container li.wy-tray-item-info{background:#2980B9}.wy-tray-container li.wy-tray-item-warning{background:#E67E22}.wy-tray-container li.wy-tray-item-danger{background:#E74C3C}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width: 768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px 12px;color:#fff;border:1px solid rgba(0,0,0,0.1);background-color:#27AE60;text-decoration:none;font-weight:normal;font-family:\"Lato\",\"proxima-nova\",\"Helvetica Neue\",Arial,sans-serif;box-shadow:0px 1px 2px -1px rgba(255,255,255,0.5) inset,0px -2px 0px 0px rgba(0,0,0,0.1) inset;outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all 0.1s linear;-moz-transition:all 0.1s linear;transition:all 0.1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:0px -1px 0px 0px rgba(0,0,0,0.05) inset,0px 2px 0px 0px rgba(0,0,0,0.1) inset;padding:8px 12px 6px 12px}.btn:visited{color:#fff}.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn-disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn-disabled:hover,.btn-disabled:focus,.btn-disabled:active{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980B9 !important}.btn-info:hover{background-color:#2e8ece !important}.btn-neutral{background-color:#f3f6f6 !important;color:#404040 !important}.btn-neutral:hover{background-color:#e5ebeb !important;color:#404040}.btn-neutral:visited{color:#404040 !important}.btn-success{background-color:#27AE60 !important}.btn-success:hover{background-color:#295 !important}.btn-danger{background-color:#E74C3C !important}.btn-danger:hover{background-color:#ea6153 !important}.btn-warning{background-color:#E67E22 !important}.btn-warning:hover{background-color:#e98b39 !important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f !important}.btn-link{background-color:transparent !important;color:#2980B9;box-shadow:none;border-color:transparent !important}.btn-link:hover{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:active{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:visited{color:#9B59B6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:before,.wy-btn-group:after{display:table;content:\"\"}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:solid 1px #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,0.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980B9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:solid 1px #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type=\"search\"]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980B9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;text-align:right}.wy-dropdown-arrow:before{content:\" \";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned input,.wy-form-aligned textarea,.wy-form-aligned select,.wy-form-aligned .wy-help-inline,.wy-form-aligned label{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{border:0;margin:0;padding:0}legend{display:block;width:100%;border:0;padding:0;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label{display:block;margin:0 0 0.3125em 0;color:#999;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;*zoom:1;max-width:68em;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:before,.wy-control-group:after{display:table;content:\"\"}.wy-control-group:after{clear:both}.wy-control-group:before,.wy-control-group:after{display:table;content:\"\"}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:\" *\";color:#E74C3C}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full input[type=\"text\"],.wy-control-group .wy-form-full input[type=\"password\"],.wy-control-group .wy-form-full input[type=\"email\"],.wy-control-group .wy-form-full input[type=\"url\"],.wy-control-group .wy-form-full input[type=\"date\"],.wy-control-group .wy-form-full input[type=\"month\"],.wy-control-group .wy-form-full input[type=\"time\"],.wy-control-group .wy-form-full input[type=\"datetime\"],.wy-control-group .wy-form-full input[type=\"datetime-local\"],.wy-control-group .wy-form-full input[type=\"week\"],.wy-control-group .wy-form-full input[type=\"number\"],.wy-control-group .wy-form-full input[type=\"search\"],.wy-control-group .wy-form-full input[type=\"tel\"],.wy-control-group .wy-form-full input[type=\"color\"],.wy-control-group .wy-form-halves input[type=\"text\"],.wy-control-group .wy-form-halves input[type=\"password\"],.wy-control-group .wy-form-halves input[type=\"email\"],.wy-control-group .wy-form-halves input[type=\"url\"],.wy-control-group .wy-form-halves input[type=\"date\"],.wy-control-group .wy-form-halves input[type=\"month\"],.wy-control-group .wy-form-halves input[type=\"time\"],.wy-control-group .wy-form-halves input[type=\"datetime\"],.wy-control-group .wy-form-halves input[type=\"datetime-local\"],.wy-control-group .wy-form-halves input[type=\"week\"],.wy-control-group .wy-form-halves input[type=\"number\"],.wy-control-group .wy-form-halves input[type=\"search\"],.wy-control-group .wy-form-halves input[type=\"tel\"],.wy-control-group .wy-form-halves input[type=\"color\"],.wy-control-group .wy-form-thirds input[type=\"text\"],.wy-control-group .wy-form-thirds input[type=\"password\"],.wy-control-group .wy-form-thirds input[type=\"email\"],.wy-control-group .wy-form-thirds input[type=\"url\"],.wy-control-group .wy-form-thirds input[type=\"date\"],.wy-control-group .wy-form-thirds input[type=\"month\"],.wy-control-group .wy-form-thirds input[type=\"time\"],.wy-control-group .wy-form-thirds input[type=\"datetime\"],.wy-control-group .wy-form-thirds input[type=\"datetime-local\"],.wy-control-group .wy-form-thirds input[type=\"week\"],.wy-control-group .wy-form-thirds input[type=\"number\"],.wy-control-group .wy-form-thirds input[type=\"search\"],.wy-control-group .wy-form-thirds input[type=\"tel\"],.wy-control-group .wy-form-thirds input[type=\"color\"]{width:100%}.wy-control-group .wy-form-full{float:left;display:block;margin-right:2.35765%;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child{margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n+1){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child{margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control{margin:6px 0 0 0;font-size:90%}.wy-control-no-input{display:inline-block;margin:6px 0 0 0;font-size:90%}.wy-control-group.fluid-input input[type=\"text\"],.wy-control-group.fluid-input input[type=\"password\"],.wy-control-group.fluid-input input[type=\"email\"],.wy-control-group.fluid-input input[type=\"url\"],.wy-control-group.fluid-input input[type=\"date\"],.wy-control-group.fluid-input input[type=\"month\"],.wy-control-group.fluid-input input[type=\"time\"],.wy-control-group.fluid-input input[type=\"datetime\"],.wy-control-group.fluid-input input[type=\"datetime-local\"],.wy-control-group.fluid-input input[type=\"week\"],.wy-control-group.fluid-input input[type=\"number\"],.wy-control-group.fluid-input input[type=\"search\"],.wy-control-group.fluid-input input[type=\"tel\"],.wy-control-group.fluid-input input[type=\"color\"]{width:100%}.wy-form-message-inline{display:inline-block;padding-left:0.3em;color:#666;vertical-align:middle;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:0.3125em;font-style:italic}input{line-height:normal}input[type=\"button\"],input[type=\"reset\"],input[type=\"submit\"]{-webkit-appearance:button;cursor:pointer;font-family:\"Lato\",\"proxima-nova\",\"Helvetica Neue\",Arial,sans-serif;*overflow:visible}input[type=\"text\"],input[type=\"password\"],input[type=\"email\"],input[type=\"url\"],input[type=\"date\"],input[type=\"month\"],input[type=\"time\"],input[type=\"datetime\"],input[type=\"datetime-local\"],input[type=\"week\"],input[type=\"number\"],input[type=\"search\"],input[type=\"tel\"],input[type=\"color\"]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:\"Lato\",\"proxima-nova\",\"Helvetica Neue\",Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border 0.3s linear;-moz-transition:border 0.3s linear;transition:border 0.3s linear}input[type=\"datetime-local\"]{padding:0.34375em 0.625em}input[disabled]{cursor:default}input[type=\"checkbox\"],input[type=\"radio\"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin-right:0.3125em;*height:13px;*width:13px}input[type=\"search\"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=\"search\"]::-webkit-search-cancel-button,input[type=\"search\"]::-webkit-search-decoration{-webkit-appearance:none}input[type=\"text\"]:focus,input[type=\"password\"]:focus,input[type=\"email\"]:focus,input[type=\"url\"]:focus,input[type=\"date\"]:focus,input[type=\"month\"]:focus,input[type=\"time\"]:focus,input[type=\"datetime\"]:focus,input[type=\"datetime-local\"]:focus,input[type=\"week\"]:focus,input[type=\"number\"]:focus,input[type=\"search\"]:focus,input[type=\"tel\"]:focus,input[type=\"color\"]:focus{outline:0;outline:thin dotted \\9;border-color:#333}input.no-focus:focus{border-color:#ccc !important}input[type=\"file\"]:focus,input[type=\"radio\"]:focus,input[type=\"checkbox\"]:focus{outline:thin dotted #333;outline:1px auto #129FEA}input[type=\"text\"][disabled],input[type=\"password\"][disabled],input[type=\"email\"][disabled],input[type=\"url\"][disabled],input[type=\"date\"][disabled],input[type=\"month\"][disabled],input[type=\"time\"][disabled],input[type=\"datetime\"][disabled],input[type=\"datetime-local\"][disabled],input[type=\"week\"][disabled],input[type=\"number\"][disabled],input[type=\"search\"][disabled],input[type=\"tel\"][disabled],input[type=\"color\"][disabled]{cursor:not-allowed;background-color:#f3f6f6;color:#cad2d3}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#E74C3C;border:1px solid #E74C3C}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#E74C3C}input[type=\"file\"]:focus:invalid:focus,input[type=\"radio\"]:focus:invalid:focus,input[type=\"checkbox\"]:focus:invalid:focus{outline-color:#E74C3C}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:\"Lato\",\"proxima-nova\",\"Helvetica Neue\",Arial,sans-serif}select,textarea{padding:0.5em 0.625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border 0.3s linear;-moz-transition:border 0.3s linear;transition:border 0.3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#fff;color:#cad2d3;border-color:transparent}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{padding:6px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:solid 1px #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#E74C3C}.wy-control-group.wy-control-group-error input[type=\"text\"],.wy-control-group.wy-control-group-error input[type=\"password\"],.wy-control-group.wy-control-group-error input[type=\"email\"],.wy-control-group.wy-control-group-error input[type=\"url\"],.wy-control-group.wy-control-group-error input[type=\"date\"],.wy-control-group.wy-control-group-error input[type=\"month\"],.wy-control-group.wy-control-group-error input[type=\"time\"],.wy-control-group.wy-control-group-error input[type=\"datetime\"],.wy-control-group.wy-control-group-error input[type=\"datetime-local\"],.wy-control-group.wy-control-group-error input[type=\"week\"],.wy-control-group.wy-control-group-error input[type=\"number\"],.wy-control-group.wy-control-group-error input[type=\"search\"],.wy-control-group.wy-control-group-error input[type=\"tel\"],.wy-control-group.wy-control-group-error input[type=\"color\"]{border:solid 1px #E74C3C}.wy-control-group.wy-control-group-error textarea{border:solid 1px #E74C3C}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:0.5em 0.625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27AE60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#E74C3C}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#E67E22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980B9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width: 480px){.wy-form button[type=\"submit\"]{margin:0.7em 0 0}.wy-form input[type=\"text\"],.wy-form input[type=\"password\"],.wy-form input[type=\"email\"],.wy-form input[type=\"url\"],.wy-form input[type=\"date\"],.wy-form input[type=\"month\"],.wy-form input[type=\"time\"],.wy-form input[type=\"datetime\"],.wy-form input[type=\"datetime-local\"],.wy-form input[type=\"week\"],.wy-form input[type=\"number\"],.wy-form input[type=\"search\"],.wy-form input[type=\"tel\"],.wy-form input[type=\"color\"]{margin-bottom:0.3em;display:block}.wy-form label{margin-bottom:0.3em;display:block}.wy-form input[type=\"password\"],.wy-form input[type=\"email\"],.wy-form input[type=\"url\"],.wy-form input[type=\"date\"],.wy-form input[type=\"month\"],.wy-form input[type=\"time\"],.wy-form input[type=\"datetime\"],.wy-form input[type=\"datetime-local\"],.wy-form input[type=\"week\"],.wy-form input[type=\"number\"],.wy-form input[type=\"search\"],.wy-form input[type=\"tel\"],.wy-form input[type=\"color\"]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:0.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0 0}.wy-form .wy-help-inline,.wy-form-message-inline,.wy-form-message{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width: 768px){.tablet-hide{display:none}}@media screen and (max-width: 480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.wy-table,.rst-content table.docutils,.rst-content table.field-list{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.wy-table caption,.rst-content table.docutils caption,.rst-content table.field-list caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td,.wy-table th,.rst-content table.docutils th,.rst-content table.field-list th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.wy-table td:first-child,.rst-content table.docutils td:first-child,.rst-content table.field-list td:first-child,.wy-table th:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list th:first-child{border-left-width:0}.wy-table thead,.rst-content table.docutils thead,.rst-content table.field-list thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.wy-table thead th,.rst-content table.docutils thead th,.rst-content table.field-list thead th{font-weight:bold;border-bottom:solid 2px #e1e4e5}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td{background-color:transparent;vertical-align:middle}.wy-table td p,.rst-content table.docutils td p,.rst-content table.field-list td p{line-height:18px}.wy-table td p:last-child,.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child{margin-bottom:0}.wy-table .wy-table-cell-min,.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min{width:1%;padding-right:0}.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:gray;font-size:90%}.wy-table-tertiary{color:gray;font-size:80%}.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td,.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td{background-color:#f3f6f6}.wy-table-backed{background-color:#f3f6f6}.wy-table-bordered-all,.rst-content table.docutils{border:1px solid #e1e4e5}.wy-table-bordered-all td,.rst-content table.docutils td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.wy-table-bordered-all tbody>tr:last-child td,.rst-content table.docutils tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px 0;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0 !important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980B9;text-decoration:none}a:hover{color:#3091d1}a:visited{color:#9B59B6}html{height:100%;overflow-x:hidden}body{font-family:\"Lato\",\"proxima-nova\",\"Helvetica Neue\",Arial,sans-serif;font-weight:normal;color:#404040;min-height:100%;overflow-x:hidden;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#E67E22 !important}a.wy-text-warning:hover{color:#eb9950 !important}.wy-text-info{color:#2980B9 !important}a.wy-text-info:hover{color:#409ad5 !important}.wy-text-success{color:#27AE60 !important}a.wy-text-success:hover{color:#36d278 !important}.wy-text-danger{color:#E74C3C !important}a.wy-text-danger:hover{color:#ed7669 !important}.wy-text-neutral{color:#404040 !important}a.wy-text-neutral:hover{color:#595959 !important}h1,h2,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:\"Roboto Slab\",\"ff-tisa-web-pro\",\"Georgia\",Arial,sans-serif}p{line-height:24px;margin:0;font-size:16px;margin-bottom:24px}h1{font-size:175%}h2{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}code,.rst-content tt{white-space:nowrap;max-width:100%;background:#fff;border:solid 1px #e1e4e5;font-size:75%;padding:0 5px;font-family:Consolas,\"Andale Mono WT\",\"Andale Mono\",\"Lucida Console\",\"Lucida Sans Typewriter\",\"DejaVu Sans Mono\",\"Bitstream Vera Sans Mono\",\"Liberation Mono\",\"Nimbus Mono L\",Monaco,\"Courier New\",Courier,monospace;color:#E74C3C;overflow-x:auto}code.code-large,.rst-content tt.code-large{font-size:90%}.wy-plain-list-disc,.rst-content .section ul,.rst-content .toctree-wrapper ul,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.wy-plain-list-disc li,.rst-content .section ul li,.rst-content .toctree-wrapper ul li,article ul li{list-style:disc;margin-left:24px}.wy-plain-list-disc li p:last-child,.rst-content .section ul li p:last-child,.rst-content .toctree-wrapper ul li p:last-child,article ul li p:last-child{margin-bottom:0}.wy-plain-list-disc li ul,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li ul,article ul li ul{margin-bottom:0}.wy-plain-list-disc li li,.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,article ul li li{list-style:circle}.wy-plain-list-disc li li li,.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,article ul li li li{list-style:square}.wy-plain-list-disc li ol li,.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,article ul li ol li{list-style:decimal}.wy-plain-list-decimal,.rst-content .section ol,.rst-content ol.arabic,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.wy-plain-list-decimal li,.rst-content .section ol li,.rst-content ol.arabic li,article ol li{list-style:decimal;margin-left:24px}.wy-plain-list-decimal li p:last-child,.rst-content .section ol li p:last-child,.rst-content ol.arabic li p:last-child,article ol li p:last-child{margin-bottom:0}.wy-plain-list-decimal li ul,.rst-content .section ol li ul,.rst-content ol.arabic li ul,article ol li ul{margin-bottom:0}.wy-plain-list-decimal li ul li,.rst-content .section ol li ul li,.rst-content ol.arabic li ul li,article ol li ul li{list-style:disc}.codeblock-example{border:1px solid #e1e4e5;border-bottom:none;padding:24px;padding-top:48px;font-weight:500;background:#fff;position:relative}.codeblock-example:after{content:\"Example\";position:absolute;top:0px;left:0px;background:#9B59B6;color:#fff;padding:6px 12px}.codeblock-example.prettyprint-example-only{border:1px solid #e1e4e5;margin-bottom:24px}.codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight']{border:1px solid #e1e4e5;padding:0px;overflow-x:auto;background:#fff;margin:1px 0 24px 0}.codeblock div[class^='highlight'],pre.literal-block div[class^='highlight'],.rst-content .literal-block div[class^='highlight'],div[class^='highlight'] div[class^='highlight']{border:none;background:none;margin:0}div[class^='highlight'] td.code{width:100%}.linenodiv pre{border-right:solid 1px #e6e9ea;margin:0;padding:12px 12px;font-family:Consolas,\"Andale Mono WT\",\"Andale Mono\",\"Lucida Console\",\"Lucida Sans Typewriter\",\"DejaVu Sans Mono\",\"Bitstream Vera Sans Mono\",\"Liberation Mono\",\"Nimbus Mono L\",Monaco,\"Courier New\",Courier,monospace;font-size:12px;line-height:1.5;color:#d9d9d9}div[class^='highlight'] pre{white-space:pre;margin:0;padding:12px 12px;font-family:Consolas,\"Andale Mono WT\",\"Andale Mono\",\"Lucida Console\",\"Lucida Sans Typewriter\",\"DejaVu Sans Mono\",\"Bitstream Vera Sans Mono\",\"Liberation Mono\",\"Nimbus Mono L\",Monaco,\"Courier New\",Courier,monospace;font-size:12px;line-height:1.5;display:block;overflow:auto;color:#404040}@media print{.codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight'],div[class^='highlight'] pre{white-space:pre-wrap}}.hll{background-color:#ffc;margin:0 -12px;padding:0 12px;display:block}.c{color:#998;font-style:italic}.err{color:#a61717;background-color:#e3d2d2}.k{font-weight:bold}.o{font-weight:bold}.cm{color:#998;font-style:italic}.cp{color:#999;font-weight:bold}.c1{color:#998;font-style:italic}.cs{color:#999;font-weight:bold;font-style:italic}.gd{color:#000;background-color:#fdd}.gd .x{color:#000;background-color:#faa}.ge{font-style:italic}.gr{color:#a00}.gh{color:#999}.gi{color:#000;background-color:#dfd}.gi .x{color:#000;background-color:#afa}.go{color:#888}.gp{color:#555}.gs{font-weight:bold}.gu{color:purple;font-weight:bold}.gt{color:#a00}.kc{font-weight:bold}.kd{font-weight:bold}.kn{font-weight:bold}.kp{font-weight:bold}.kr{font-weight:bold}.kt{color:#458;font-weight:bold}.m{color:#099}.s{color:#d14}.n{color:#333}.na{color:teal}.nb{color:#0086b3}.nc{color:#458;font-weight:bold}.no{color:teal}.ni{color:purple}.ne{color:#900;font-weight:bold}.nf{color:#900;font-weight:bold}.nn{color:#555}.nt{color:navy}.nv{color:teal}.ow{font-weight:bold}.w{color:#bbb}.mf{color:#099}.mh{color:#099}.mi{color:#099}.mo{color:#099}.sb{color:#d14}.sc{color:#d14}.sd{color:#d14}.s2{color:#d14}.se{color:#d14}.sh{color:#d14}.si{color:#d14}.sx{color:#d14}.sr{color:#009926}.s1{color:#d14}.ss{color:#990073}.bp{color:#999}.vc{color:teal}.vg{color:teal}.vi{color:teal}.il{color:#099}.gc{color:#999;background-color:#EAF2F5}.wy-breadcrumbs li{display:inline-block}.wy-breadcrumbs li.wy-breadcrumbs-aside{float:right}.wy-breadcrumbs li a{display:inline-block;padding:5px}.wy-breadcrumbs li a:first-child{padding-left:0}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width: 480px){.wy-breadcrumbs-extra{display:none}.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:before,.wy-menu-horiz:after{display:table;content:\"\"}.wy-menu-horiz:after{clear:both}.wy-menu-horiz ul,.wy-menu-horiz li{display:inline-block}.wy-menu-horiz li:hover{background:rgba(255,255,255,0.1)}.wy-menu-horiz li.divide-left{border-left:solid 1px #404040}.wy-menu-horiz li.divide-right{border-right:solid 1px #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical header{height:32px;display:inline-block;line-height:32px;padding:0 1.618em;display:block;font-weight:bold;text-transform:uppercase;font-size:80%;color:#2980B9;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:solid 1px #404040}.wy-menu-vertical li.divide-bottom{border-bottom:solid 1px #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:gray;border-right:solid 1px #c9c9c9;padding:0.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a{color:#404040;padding:0.4045em 1.618em;font-weight:bold;position:relative;background:#fcfcfc;border:none;border-bottom:solid 1px #c9c9c9;border-top:solid 1px #c9c9c9;padding-left:1.618em -4px}.wy-menu-vertical li.on a:hover,.wy-menu-vertical li.current>a:hover{background:#fcfcfc}.wy-menu-vertical li.toctree-l2.current>a{background:#c9c9c9;padding:0.4045em 2.427em}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical .local-toc li ul{display:block}.wy-menu-vertical li ul li a{margin-bottom:0;color:#b3b3b3;font-weight:normal}.wy-menu-vertical a{display:inline-block;line-height:18px;padding:0.4045em 1.618em;display:block;position:relative;font-size:90%;color:#b3b3b3}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:active{background-color:#2980B9;cursor:pointer;color:#fff}.wy-side-nav-search{z-index:200;text-align:left;padding:0.809em;display:block;color:#fcfcfc;margin-bottom:0.809em}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto 0.809em auto;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a{color:#fcfcfc;font-size:100%;font-weight:bold;display:inline-block;padding:4px 6px;margin-bottom:0.809em}.wy-side-nav-search>a:hover,.wy-side-nav-search .wy-dropdown>a:hover{background:rgba(255,255,255,0.1)}.wy-nav .wy-menu-vertical header{color:#2980B9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980B9;color:#fff}[data-menu-wrap]{-webkit-transition:all 0.2s ease-in;-moz-transition:all 0.2s ease-in;transition:all 0.2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:left repeat-y #fcfcfc;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxOERBMTRGRDBFMUUxMUUzODUwMkJCOThDMEVFNURFMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxOERBMTRGRTBFMUUxMUUzODUwMkJCOThDMEVFNURFMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE4REExNEZCMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjE4REExNEZDMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+EwrlwAAAAA5JREFUeNpiMDU0BAgwAAE2AJgB9BnaAAAAAElFTkSuQmCC);background-size:300px 1px}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:absolute;top:0;left:0;width:300px;overflow:hidden;min-height:100%;background:#343131;z-index:200}.wy-nav-top{display:none;background:#2980B9;color:#fff;padding:0.4045em 0.809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:before,.wy-nav-top:after{display:table;content:\"\"}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:bold}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:#999}footer p{margin-bottom:12px}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:before,.rst-footer-buttons:after{display:table;content:\"\"}.rst-footer-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:solid 1px #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:solid 1px #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:gray;font-size:90%}@media screen and (max-width: 768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width: 1400px){.wy-nav-content-wrap{background:rgba(0,0,0,0.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,footer,.wy-nav-side{display:none}.wy-nav-content-wrap{margin-left:0}}nav.stickynav{position:fixed;top:0}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;border-top:solid 10px #343131;font-family:\"Lato\",\"proxima-nova\",\"Helvetica Neue\",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:\"\"}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .icon{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}img{width:100%;height:auto}}.rst-content img{max-width:100%;height:auto !important}.rst-content div.figure{margin-bottom:24px}.rst-content div.figure.align-center{text-align:center}.rst-content .section>img{margin-bottom:24px}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content .note .last,.rst-content .attention .last,.rst-content .caution .last,.rst-content .danger .last,.rst-content .error .last,.rst-content .hint .last,.rst-content .important .last,.rst-content .tip .last,.rst-content .warning .last,.rst-content .seealso .last,.rst-content .admonition-todo .last{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,0.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent !important;border-color:rgba(0,0,0,0.1) !important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha li{list-style:upper-alpha}.rst-content .section ol p,.rst-content .section ul p{margin-bottom:12px}.rst-content .line-block{margin-left:24px}.rst-content .topic-title{font-weight:bold;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0px 0px 24px 24px}.rst-content .align-left{float:left;margin:0px 24px 24px 0px}.rst-content .align-center{margin:auto;display:block}.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink{display:none;visibility:hidden;font-size:14px}.rst-content h1 .headerlink:after,.rst-content h2 .headerlink:after,.rst-content h3 .headerlink:after,.rst-content h4 .headerlink:after,.rst-content h5 .headerlink:after,.rst-content h6 .headerlink:after,.rst-content dl dt .headerlink:after{visibility:visible;content:\"\";font-family:FontAwesome;display:inline-block}.rst-content h1:hover .headerlink,.rst-content h2:hover .headerlink,.rst-content h3:hover .headerlink,.rst-content h4:hover .headerlink,.rst-content h5:hover .headerlink,.rst-content h6:hover .headerlink,.rst-content dl dt:hover .headerlink{display:inline-block}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:solid 1px #e1e4e5}.rst-content .sidebar p,.rst-content .sidebar ul,.rst-content .sidebar dl{font-size:90%}.rst-content .sidebar .last{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:\"Roboto Slab\",\"ff-tisa-web-pro\",\"Georgia\",Arial,sans-serif;font-weight:bold;background:#e1e4e5;padding:6px 12px;margin:-24px;margin-bottom:24px;font-size:100%}.rst-content .highlighted{background:#F1C40F;display:inline-block;font-weight:bold;padding:0 6px}.rst-content .footnote-reference,.rst-content .citation-reference{vertical-align:super;font-size:90%}.rst-content table.docutils.citation,.rst-content table.docutils.footnote{background:none;border:none;color:#999}.rst-content table.docutils.citation td,.rst-content table.docutils.citation tr,.rst-content table.docutils.footnote td,.rst-content table.docutils.footnote tr{border:none;background-color:transparent !important;white-space:normal}.rst-content table.docutils.citation td.label,.rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}.rst-content table.field-list{border:none}.rst-content table.field-list td{border:none;padding-top:5px}.rst-content table.field-list td>strong{display:inline-block;margin-top:3px}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left;padding-left:0}.rst-content tt{color:#000}.rst-content tt big,.rst-content tt em{font-size:100% !important;line-height:normal}.rst-content tt .xref,a .rst-content tt{font-weight:bold}.rst-content a tt{color:#2980B9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:bold}.rst-content dl p,.rst-content dl table,.rst-content dl ul,.rst-content dl ol{margin-bottom:12px !important}.rst-content dl dd{margin:0 0 12px 24px}.rst-content dl:not(.docutils){margin-bottom:24px}.rst-content dl:not(.docutils) dt{display:inline-block;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980B9;border-top:solid 3px #6ab0de;padding:6px;position:relative}.rst-content dl:not(.docutils) dt:before{color:#6ab0de}.rst-content dl:not(.docutils) dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dl dt{margin-bottom:6px;border:none;border-left:solid 3px #ccc;background:#f0f0f0;color:gray}.rst-content dl:not(.docutils) dl dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dt:first-child{margin-top:0}.rst-content dl:not(.docutils) tt{font-weight:bold}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descclassname{background-color:transparent;border:none;padding:0;font-size:100% !important}.rst-content dl:not(.docutils) tt.descname{font-weight:bold}.rst-content dl:not(.docutils) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:bold}.rst-content dl:not(.docutils) .property{display:inline-block;padding-right:8px}.rst-content .viewcode-link,.rst-content .viewcode-back{display:inline-block;color:#27AE60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:bold}@media screen and (max-width: 480px){.rst-content .sidebar{width:100%}}span[id*='MathJax-Span']{color:#404040}.math{text-align:center}\n"
  },
  {
    "path": "doc/themes/boost-experimental/css/theme_extra.css",
    "content": "/*\n * Tweak the overal size to better match RTD.\n */\nbody {\n    font-size: 90%;\n}\n\nh3, h4, h5, h6 {\n    color: #2980b9;\n    font-weight: 300\n}\n\n/*\n * Sphinx doesn't have support for section dividers like we do in\n * MkDocs, this styles the section titles in the nav\n *\n * https://github.com/mkdocs/mkdocs/issues/175\n */\n.wy-menu-vertical span {\n    line-height: 18px;\n    padding: 0.4045em 1.618em;\n    display: block;\n    position: relative;\n    font-size: 90%;\n    color: #838383;\n}\n\n.wy-menu-vertical .subnav a {\n    padding: 0.4045em 2.427em;\n}\n\n/*\n * Long navigations run off the bottom of the screen as the nav\n * area doesn't scroll.\n *\n * https://github.com/mkdocs/mkdocs/pull/202\n */\n.wy-nav-side {\n    height: 100%;\n    overflow-y: auto;\n}\n\n/*\n * readthedocs theme hides nav items when the window height is\n * too small to contain them.\n *\n * https://github.com/mkdocs/mkdocs/issues/#348\n */\n.wy-menu-vertical ul {\n  margin-bottom: 2em;\n}\n\n/*\n * Fix wrapping in the code highlighting\n *\n * https://github.com/mkdocs/mkdocs/issues/233\n */\ncode {\n    white-space: pre;\n}\n\n/*\n * Wrap inline code samples otherwise they shoot of the side and\n * can't be read at all.\n *\n * https://github.com/mkdocs/mkdocs/issues/313\n */\np code {\n    word-wrap: break-word;\n}\n\n/*\n * The CSS classes from highlight.js seem to clash with the\n * ReadTheDocs theme causing some code to be incorrectly made\n * bold and italic.\n *\n * https://github.com/mkdocs/mkdocs/issues/411\n */\ncode.cs, code.c {\n    font-weight: inherit;\n    font-style: inherit;\n}\n\n/*\n * Fix some issues with the theme and non-highlighted code\n * samples. Without and highlighting styles attached the\n * formatting is broken.\n *\n * https://github.com/mkdocs/mkdocs/issues/319\n */\n.no-highlight {\n  display: block;\n  padding: 0.5em;\n  color: #333;\n}\n\n\n/*\n * Additions specific to the search functionality provided by MkDocs\n */\n\n#mkdocs-search-results article h3\n{\n    margin-top: 23px;\n    border-top: 1px solid #E1E4E5;\n    padding-top: 24px;\n}\n\n#mkdocs-search-results article:first-child h3 {\n    border-top: none;\n}\n\n#mkdocs-search-query{\n    width: 100%;\n    border-radius: 50px;\n    padding: 6px 12px;\n    border-color: #D1D4D5;\n}\n\n.wy-menu-vertical li ul {\n    display: inherit;\n}\n\n.wy-menu-vertical li ul.subnav ul.subnav{\n    padding-left: 1em;\n}\n\n\n/*\n * Improve inline code blocks within admonitions.\n *\n * https://github.com/mkdocs/mkdocs/issues/656\n */\n div.admonition code {\n  color: #404040;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  background: rgba(255, 255, 255, 0.7);\n}\n\n.wy-nav-content {\n\tmax-width: 1024px;\n}\n"
  },
  {
    "path": "doc/themes/boost-experimental/footer.html",
    "content": "<footer>\n\n  <select onChange=\"window.location.href=this.value\" style=\"position: absolute; top: 20px; right: 30px; z-index: 10;\">\n    <option value=\"https://boost-experimental.github.io/di\" selected>Theme: Boost Experimental</option>\n    <option value=\"https://boost-experimental.github.io/di/boost\">Theme: Boost Classic</option>\n  </select>\n\n  {% if next_page or previous_page %}\n    <div class=\"rst-footer-buttons\" role=\"navigation\" aria-label=\"footer navigation\">\n      {% if next_page %}\n        <a href=\"{{ next_page.url }}\" class=\"btn btn-neutral float-right\" title=\"{{ next_page.title }}\">Next <span class=\"icon icon-circle-arrow-right\"></span></a>\n      {% endif %}\n      {% if previous_page %}\n        <a href=\"{{ previous_page.url }}\" class=\"btn btn-neutral\" title=\"{{ previous_page.title }}\"><span class=\"icon icon-circle-arrow-left\"></span> Previous</a>\n      {% endif %}\n    </div>\n  {% endif %}\n\n  <hr/>\n\n  <div id=\"disqus_thread\"></div>\n  <script type=\"text/javascript\">\n  /* * * CONFIGURATION VARIABLES * * */\n  var disqus_shortname = 'boost-di';\n\n  /* * * DON'T EDIT BELOW THIS LINE * * */\n  (function() {\n  var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;\n  dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';\n  (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);\n  })();\n  </script>\n  <noscript>Please enable JavaScript to view the <a href=\"https://disqus.com/?ref_noscript\" rel=\"nofollow\">comments powered by Disqus.</a></noscript>\n\n  <div role=\"contentinfo\">\n    <!-- Copyright etc -->\n    {% if copyright %}\n      <p>{{ copyright }}</p>\n    {% endif %}\n  </div>\n\n  Built with <a href=\"http://www.mkdocs.org\">MkDocs</a> using a <a href=\"https://github.com/snide/sphinx_rtd_theme\">theme</a> provided by <a href=\"https://readthedocs.org\">Read the Docs</a> | Powered by <a href=\"http://melpon.org/wandbox\">Wandbox</a>\n</footer>\n"
  },
  {
    "path": "doc/themes/boost-experimental/js/codemirror/active-line.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// Because sometimes you need to style the cursor's line.\n//\n// Adds an option 'styleActiveLine' which, when enabled, gives the\n// active line's wrapping <div> the CSS class \"CodeMirror-activeline\",\n// and gives its background <div> the class \"CodeMirror-activeline-background\".\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define_wknd == \"function\")\n    define_wknd([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n  var WRAP_CLASS = \"CodeMirror-activeline\";\n  var BACK_CLASS = \"CodeMirror-activeline-background\";\n\n  CodeMirror.defineOption(\"styleActiveLine\", false, function(cm, val, old) {\n    var prev = old && old != CodeMirror.Init;\n    if (val && !prev) {\n      cm.state.activeLines = [];\n      updateActiveLines(cm, cm.listSelections());\n      cm.on(\"beforeSelectionChange\", selectionChange);\n    } else if (!val && prev) {\n      cm.off(\"beforeSelectionChange\", selectionChange);\n      clearActiveLines(cm);\n      delete cm.state.activeLines;\n    }\n  });\n\n  function clearActiveLines(cm) {\n    for (var i = 0; i < cm.state.activeLines.length; i++) {\n      cm.removeLineClass(cm.state.activeLines[i], \"wrap\", WRAP_CLASS);\n      cm.removeLineClass(cm.state.activeLines[i], \"background\", BACK_CLASS);\n    }\n  }\n\n  function sameArray(a, b) {\n    if (a.length != b.length) return false;\n    for (var i = 0; i < a.length; i++)\n      if (a[i] != b[i]) return false;\n    return true;\n  }\n\n  function updateActiveLines(cm, ranges) {\n    var active = [];\n    for (var i = 0; i < ranges.length; i++) {\n      var range = ranges[i];\n      if (!range.empty()) continue;\n      var line = cm.getLineHandleVisualStart(range.head.line);\n      if (active[active.length - 1] != line) active.push(line);\n    }\n    if (sameArray(cm.state.activeLines, active)) return;\n    cm.operation(function() {\n      clearActiveLines(cm);\n      for (var i = 0; i < active.length; i++) {\n        cm.addLineClass(active[i], \"wrap\", WRAP_CLASS);\n        cm.addLineClass(active[i], \"background\", BACK_CLASS);\n      }\n      cm.state.activeLines = active;\n    });\n  }\n\n  function selectionChange(cm, sel) {\n    updateActiveLines(cm, sel.ranges);\n  }\n});\n"
  },
  {
    "path": "doc/themes/boost-experimental/js/codemirror/clike.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define_wknd == \"function\")\n    define_wknd([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"clike\", function(config, parserConfig) {\n  var indentUnit = config.indentUnit,\n      statementIndentUnit = parserConfig.statementIndentUnit || indentUnit,\n      dontAlignCalls = parserConfig.dontAlignCalls,\n      keywords = parserConfig.keywords || {},\n      types = parserConfig.types || {},\n      builtin = parserConfig.builtin || {},\n      blockKeywords = parserConfig.blockKeywords || {},\n      defKeywords = parserConfig.defKeywords || {},\n      atoms = parserConfig.atoms || {},\n      hooks = parserConfig.hooks || {},\n      multiLineStrings = parserConfig.multiLineStrings,\n      indentStatements = parserConfig.indentStatements !== false,\n      indentSwitch = parserConfig.indentSwitch !== false,\n      namespaceSeparator = parserConfig.namespaceSeparator;\n  var isOperatorChar = /[+\\-*&%=<>!?|\\/]/;\n\n  var curPunc, isDefKeyword;\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (hooks[ch]) {\n      var result = hooks[ch](stream, state);\n      if (result !== false) return result;\n    }\n    if (ch == '\"' || ch == \"'\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n    if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    }\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w\\.]/);\n      return \"number\";\n    }\n    if (ch == \"/\") {\n      if (stream.eat(\"*\")) {\n        state.tokenize = tokenComment;\n        return tokenComment(stream, state);\n      }\n      if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n    }\n    if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return \"operator\";\n    }\n    stream.eatWhile(/[\\w\\$_\\xa1-\\uffff]/);\n    if (namespaceSeparator) while (stream.match(namespaceSeparator))\n      stream.eatWhile(/[\\w\\$_\\xa1-\\uffff]/);\n\n    var cur = stream.current();\n    if (keywords.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      if (defKeywords.propertyIsEnumerable(cur)) isDefKeyword = true;\n      return \"keyword\";\n    }\n    if (types.propertyIsEnumerable(cur)) return \"variable-3\";\n    if (builtin.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"builtin\";\n    }\n    if (atoms.propertyIsEnumerable(cur)) return \"atom\";\n    return \"variable\";\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {end = true; break;}\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end || !(escaped || multiLineStrings))\n        state.tokenize = null;\n      return \"string\";\n    };\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = null;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  function Context(indented, column, type, align, prev) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.align = align;\n    this.prev = prev;\n  }\n  function isStatement(type) {\n    return type == \"statement\" || type == \"switchstatement\" || type == \"namespace\";\n  }\n  function pushContext(state, col, type) {\n    var indent = state.indented;\n    if (state.context && isStatement(state.context.type) && !isStatement(type))\n      indent = state.context.indented;\n    return state.context = new Context(indent, col, type, null, state.context);\n  }\n  function popContext(state) {\n    var t = state.context.type;\n    if (t == \")\" || t == \"]\" || t == \"}\")\n      state.indented = state.context.indented;\n    return state.context = state.context.prev;\n  }\n\n  function typeBefore(stream, state) {\n    if (state.prevToken == \"variable\" || state.prevToken == \"variable-3\") return true;\n    if (/\\S(?:[^- ]>|[*\\]])\\s*$|\\*$/.test(stream.string.slice(0, stream.start))) return true;\n  }\n\n  function isTopScope(context) {\n    for (;;) {\n      if (!context || context.type == \"top\") return true;\n      if (context.type == \"}\" && context.prev.type != \"namespace\") return false;\n      context = context.prev;\n    }\n  }\n\n  // Interface\n\n  return {\n    startState: function(basecolumn) {\n      return {\n        tokenize: null,\n        context: new Context((basecolumn || 0) - indentUnit, 0, \"top\", false),\n        indented: 0,\n        startOfLine: true,\n        prevToken: null\n      };\n    },\n\n    token: function(stream, state) {\n      var ctx = state.context;\n      if (stream.sol()) {\n        if (ctx.align == null) ctx.align = false;\n        state.indented = stream.indentation();\n        state.startOfLine = true;\n      }\n      if (stream.eatSpace()) return null;\n      curPunc = isDefKeyword = null;\n      var style = (state.tokenize || tokenBase)(stream, state);\n      if (style == \"comment\" || style == \"meta\") return style;\n      if (ctx.align == null) ctx.align = true;\n\n      if ((curPunc == \";\" || curPunc == \":\" || curPunc == \",\"))\n        while (isStatement(state.context.type)) popContext(state);\n      else if (curPunc == \"{\") pushContext(state, stream.column(), \"}\");\n      else if (curPunc == \"[\") pushContext(state, stream.column(), \"]\");\n      else if (curPunc == \"(\") pushContext(state, stream.column(), \")\");\n      else if (curPunc == \"}\") {\n        while (isStatement(ctx.type)) ctx = popContext(state);\n        if (ctx.type == \"}\") ctx = popContext(state);\n        while (isStatement(ctx.type)) ctx = popContext(state);\n      }\n      else if (curPunc == ctx.type) popContext(state);\n      else if (indentStatements &&\n               (((ctx.type == \"}\" || ctx.type == \"top\") && curPunc != \";\") ||\n                (isStatement(ctx.type) && curPunc == \"newstatement\"))) {\n        var type = \"statement\";\n        if (curPunc == \"newstatement\" && indentSwitch && stream.current() == \"switch\")\n          type = \"switchstatement\";\n        else if (style == \"keyword\" && stream.current() == \"namespace\")\n          type = \"namespace\";\n        pushContext(state, stream.column(), type);\n      }\n\n      if (style == \"variable\" &&\n          ((state.prevToken == \"def\" ||\n            (parserConfig.typeFirstDefinitions && typeBefore(stream, state) &&\n             isTopScope(state.context) && stream.match(/^\\s*\\(/, false)))))\n        style = \"def\";\n\n      if (hooks.token) {\n        var result = hooks.token(stream, state, style);\n        if (result !== undefined) style = result;\n      }\n\n      if (style == \"def\" && parserConfig.styleDefs === false) style = \"variable\";\n\n      state.startOfLine = false;\n      state.prevToken = isDefKeyword ? \"def\" : style || curPunc;\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize != tokenBase && state.tokenize != null) return CodeMirror.Pass;\n      var ctx = state.context, firstChar = textAfter && textAfter.charAt(0);\n      if (isStatement(ctx.type) && firstChar == \"}\") ctx = ctx.prev;\n      var closing = firstChar == ctx.type;\n      var switchBlock = ctx.prev && ctx.prev.type == \"switchstatement\";\n      if (isStatement(ctx.type))\n        return ctx.indented + (firstChar == \"{\" ? 0 : statementIndentUnit);\n      if (ctx.align && (!dontAlignCalls || ctx.type != \")\"))\n        return ctx.column + (closing ? 0 : 1);\n      if (ctx.type == \")\" && !closing)\n        return ctx.indented + statementIndentUnit;\n\n      return ctx.indented + (closing ? 0 : indentUnit) +\n        (!closing && switchBlock && !/^(?:case|default)\\b/.test(textAfter) ? indentUnit : 0);\n    },\n\n    electricInput: indentSwitch ? /^\\s*(?:case .*?:|default:|\\{\\}?|\\})$/ : /^\\s*[{}]$/,\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\",\n    lineComment: \"//\",\n    fold: \"brace\"\n  };\n});\n\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n  var cKeywords = \"auto if break case register continue return default do sizeof \" +\n    \"static else struct switch extern typedef float union for \" +\n    \"goto while enum const volatile\";\n  var cTypes = \"int long char short double float unsigned signed void size_t ptrdiff_t\";\n\n  function cppHook(stream, state) {\n    if (!state.startOfLine) return false;\n    for (;;) {\n      if (stream.skipTo(\"\\\\\")) {\n        stream.next();\n        if (stream.eol()) {\n          state.tokenize = cppHook;\n          break;\n        }\n      } else {\n        stream.skipToEnd();\n        state.tokenize = null;\n        break;\n      }\n    }\n    return \"meta\";\n  }\n\n  function pointerHook(_stream, state) {\n    if (state.prevToken == \"variable-3\") return \"variable-3\";\n    return false;\n  }\n\n  function cpp11StringHook(stream, state) {\n    stream.backUp(1);\n    // Raw strings.\n    if (stream.match(/(R|u8R|uR|UR|LR)/)) {\n      var match = stream.match(/\"([^\\s\\\\()]{0,16})\\(/);\n      if (!match) {\n        return false;\n      }\n      state.cpp11RawStringDelim = match[1];\n      state.tokenize = tokenRawString;\n      return tokenRawString(stream, state);\n    }\n    // Unicode strings/chars.\n    if (stream.match(/(u8|u|U|L)/)) {\n      if (stream.match(/[\"']/, /* eat */ false)) {\n        return \"string\";\n      }\n      return false;\n    }\n    // Ignore this hook.\n    stream.next();\n    return false;\n  }\n\n  function cppLooksLikeConstructor(word) {\n    var lastTwo = /(\\w+)::(\\w+)$/.exec(word);\n    return lastTwo && lastTwo[1] == lastTwo[2];\n  }\n\n  // C#-style strings where \"\" escapes a quote.\n  function tokenAtString(stream, state) {\n    var next;\n    while ((next = stream.next()) != null) {\n      if (next == '\"' && !stream.eat('\"')) {\n        state.tokenize = null;\n        break;\n      }\n    }\n    return \"string\";\n  }\n\n  // C++11 raw string literal is <prefix>\"<delim>( anything )<delim>\", where\n  // <delim> can be a string up to 16 characters long.\n  function tokenRawString(stream, state) {\n    // Escape characters that have special regex meanings.\n    var delim = state.cpp11RawStringDelim.replace(/[^\\w\\s]/g, '\\\\$&');\n    var match = stream.match(new RegExp(\".*?\\\\)\" + delim + '\"'));\n    if (match)\n      state.tokenize = null;\n    else\n      stream.skipToEnd();\n    return \"string\";\n  }\n\n  function def(mimes, mode) {\n    if (typeof mimes == \"string\") mimes = [mimes];\n    var words = [];\n    function add(obj) {\n      if (obj) for (var prop in obj) if (obj.hasOwnProperty(prop))\n        words.push(prop);\n    }\n    add(mode.keywords);\n    add(mode.types);\n    add(mode.builtin);\n    add(mode.atoms);\n    if (words.length) {\n      mode.helperType = mimes[0];\n      CodeMirror.registerHelper(\"hintWords\", mimes[0], words);\n    }\n\n    for (var i = 0; i < mimes.length; ++i)\n      CodeMirror.defineMIME(mimes[i], mode);\n  }\n\n  def([\"text/x-csrc\", \"text/x-c\", \"text/x-chdr\"], {\n    name: \"clike\",\n    keywords: words(cKeywords),\n    types: words(cTypes + \" bool _Complex _Bool float_t double_t intptr_t intmax_t \" +\n                 \"int8_t int16_t int32_t int64_t uintptr_t uintmax_t uint8_t uint16_t \" +\n                 \"uint32_t uint64_t\"),\n    blockKeywords: words(\"case do else for if switch while struct\"),\n    defKeywords: words(\"struct\"),\n    typeFirstDefinitions: true,\n    atoms: words(\"null true false\"),\n    hooks: {\"#\": cppHook, \"*\": pointerHook},\n    modeProps: {fold: [\"brace\", \"include\"]}\n  });\n\n  def([\"text/x-c++src\", \"text/x-c++hdr\"], {\n    name: \"clike\",\n    keywords: words(cKeywords + \" asm dynamic_cast namespace reinterpret_cast try explicit new \" +\n                    \"static_cast typeid catch operator template typename class friend private \" +\n                    \"this using const_cast inline public throw virtual delete mutable protected \" +\n                    \"alignas alignof constexpr decltype nullptr noexcept thread_local final \" +\n                    \"static_assert override\"),\n    types: words(cTypes + \" bool wchar_t\"),\n    blockKeywords: words(\"catch class do else finally for if struct switch try while\"),\n    defKeywords: words(\"class namespace struct enum union\"),\n    typeFirstDefinitions: true,\n    atoms: words(\"true false null\"),\n    hooks: {\n      \"#\": cppHook,\n      \"*\": pointerHook,\n      \"u\": cpp11StringHook,\n      \"U\": cpp11StringHook,\n      \"L\": cpp11StringHook,\n      \"R\": cpp11StringHook,\n      token: function(stream, state, style) {\n        if (style == \"variable\" && stream.peek() == \"(\" &&\n            (state.prevToken == \";\" || state.prevToken == null ||\n             state.prevToken == \"}\") &&\n            cppLooksLikeConstructor(stream.current()))\n          return \"def\";\n      }\n    },\n    namespaceSeparator: \"::\",\n    modeProps: {fold: [\"brace\", \"include\"]}\n  });\n\n  def(\"text/x-java\", {\n    name: \"clike\",\n    keywords: words(\"abstract assert break case catch class const continue default \" +\n                    \"do else enum extends final finally float for goto if implements import \" +\n                    \"instanceof interface native new package private protected public \" +\n                    \"return static strictfp super switch synchronized this throw throws transient \" +\n                    \"try volatile while\"),\n    types: words(\"byte short int long float double boolean char void Boolean Byte Character Double Float \" +\n                 \"Integer Long Number Object Short String StringBuffer StringBuilder Void\"),\n    blockKeywords: words(\"catch class do else finally for if switch try while\"),\n    defKeywords: words(\"class interface package enum\"),\n    typeFirstDefinitions: true,\n    atoms: words(\"true false null\"),\n    hooks: {\n      \"@\": function(stream) {\n        stream.eatWhile(/[\\w\\$_]/);\n        return \"meta\";\n      }\n    },\n    modeProps: {fold: [\"brace\", \"import\"]}\n  });\n\n  def(\"text/x-csharp\", {\n    name: \"clike\",\n    keywords: words(\"abstract as async await base break case catch checked class const continue\" +\n                    \" default delegate do else enum event explicit extern finally fixed for\" +\n                    \" foreach goto if implicit in interface internal is lock namespace new\" +\n                    \" operator out override params private protected public readonly ref return sealed\" +\n                    \" sizeof stackalloc static struct switch this throw try typeof unchecked\" +\n                    \" unsafe using virtual void volatile while add alias ascending descending dynamic from get\" +\n                    \" global group into join let orderby partial remove select set value var yield\"),\n    types: words(\"Action Boolean Byte Char DateTime DateTimeOffset Decimal Double Func\" +\n                 \" Guid Int16 Int32 Int64 Object SByte Single String Task TimeSpan UInt16 UInt32\" +\n                 \" UInt64 bool byte char decimal double short int long object\"  +\n                 \" sbyte float string ushort uint ulong\"),\n    blockKeywords: words(\"catch class do else finally for foreach if struct switch try while\"),\n    defKeywords: words(\"class interface namespace struct var\"),\n    typeFirstDefinitions: true,\n    atoms: words(\"true false null\"),\n    hooks: {\n      \"@\": function(stream, state) {\n        if (stream.eat('\"')) {\n          state.tokenize = tokenAtString;\n          return tokenAtString(stream, state);\n        }\n        stream.eatWhile(/[\\w\\$_]/);\n        return \"meta\";\n      }\n    }\n  });\n\n  function tokenTripleString(stream, state) {\n    var escaped = false;\n    while (!stream.eol()) {\n      if (!escaped && stream.match('\"\"\"')) {\n        state.tokenize = null;\n        break;\n      }\n      escaped = stream.next() == \"\\\\\" && !escaped;\n    }\n    return \"string\";\n  }\n\n  def(\"text/x-scala\", {\n    name: \"clike\",\n    keywords: words(\n\n      /* scala */\n      \"abstract case catch class def do else extends false final finally for forSome if \" +\n      \"implicit import lazy match new null object override package private protected return \" +\n      \"sealed super this throw trait try type val var while with yield _ : = => <- <: \" +\n      \"<% >: # @ \" +\n\n      /* package scala */\n      \"assert assume require print println printf readLine readBoolean readByte readShort \" +\n      \"readChar readInt readLong readFloat readDouble \" +\n\n      \":: #:: \"\n    ),\n    types: words(\n      \"AnyVal App Application Array BufferedIterator BigDecimal BigInt Char Console Either \" +\n      \"Enumeration Equiv Error Exception Fractional Function IndexedSeq Integral Iterable \" +\n      \"Iterator List Map Numeric Nil NotNull Option Ordered Ordering PartialFunction PartialOrdering \" +\n      \"Product Proxy Range Responder Seq Serializable Set Specializable Stream StringBuilder \" +\n      \"StringContext Symbol Throwable Traversable TraversableOnce Tuple Unit Vector \" +\n\n      /* package java.lang */\n      \"Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable \" +\n      \"Compiler Double Exception Float Integer Long Math Number Object Package Pair Process \" +\n      \"Runtime Runnable SecurityManager Short StackTraceElement StrictMath String \" +\n      \"StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void\"\n    ),\n    multiLineStrings: true,\n    blockKeywords: words(\"catch class do else finally for forSome if match switch try while\"),\n    defKeywords: words(\"class def object package trait type val var\"),\n    atoms: words(\"true false null\"),\n    indentStatements: false,\n    indentSwitch: false,\n    hooks: {\n      \"@\": function(stream) {\n        stream.eatWhile(/[\\w\\$_]/);\n        return \"meta\";\n      },\n      '\"': function(stream, state) {\n        if (!stream.match('\"\"')) return false;\n        state.tokenize = tokenTripleString;\n        return state.tokenize(stream, state);\n      },\n      \"'\": function(stream) {\n        stream.eatWhile(/[\\w\\$_\\xa1-\\uffff]/);\n        return \"atom\";\n      }\n    },\n    modeProps: {closeBrackets: {triples: '\"'}}\n  });\n\n  def([\"x-shader/x-vertex\", \"x-shader/x-fragment\"], {\n    name: \"clike\",\n    keywords: words(\"sampler1D sampler2D sampler3D samplerCube \" +\n                    \"sampler1DShadow sampler2DShadow \" +\n                    \"const attribute uniform varying \" +\n                    \"break continue discard return \" +\n                    \"for while do if else struct \" +\n                    \"in out inout\"),\n    types: words(\"float int bool void \" +\n                 \"vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 \" +\n                 \"mat2 mat3 mat4\"),\n    blockKeywords: words(\"for while do if else struct\"),\n    builtin: words(\"radians degrees sin cos tan asin acos atan \" +\n                    \"pow exp log exp2 sqrt inversesqrt \" +\n                    \"abs sign floor ceil fract mod min max clamp mix step smoothstep \" +\n                    \"length distance dot cross normalize ftransform faceforward \" +\n                    \"reflect refract matrixCompMult \" +\n                    \"lessThan lessThanEqual greaterThan greaterThanEqual \" +\n                    \"equal notEqual any all not \" +\n                    \"texture1D texture1DProj texture1DLod texture1DProjLod \" +\n                    \"texture2D texture2DProj texture2DLod texture2DProjLod \" +\n                    \"texture3D texture3DProj texture3DLod texture3DProjLod \" +\n                    \"textureCube textureCubeLod \" +\n                    \"shadow1D shadow2D shadow1DProj shadow2DProj \" +\n                    \"shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod \" +\n                    \"dFdx dFdy fwidth \" +\n                    \"noise1 noise2 noise3 noise4\"),\n    atoms: words(\"true false \" +\n                \"gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex \" +\n                \"gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 \" +\n                \"gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 \" +\n                \"gl_FogCoord gl_PointCoord \" +\n                \"gl_Position gl_PointSize gl_ClipVertex \" +\n                \"gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor \" +\n                \"gl_TexCoord gl_FogFragCoord \" +\n                \"gl_FragCoord gl_FrontFacing \" +\n                \"gl_FragData gl_FragDepth \" +\n                \"gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix \" +\n                \"gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse \" +\n                \"gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse \" +\n                \"gl_TexureMatrixTranspose gl_ModelViewMatrixInverseTranspose \" +\n                \"gl_ProjectionMatrixInverseTranspose \" +\n                \"gl_ModelViewProjectionMatrixInverseTranspose \" +\n                \"gl_TextureMatrixInverseTranspose \" +\n                \"gl_NormalScale gl_DepthRange gl_ClipPlane \" +\n                \"gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel \" +\n                \"gl_FrontLightModelProduct gl_BackLightModelProduct \" +\n                \"gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ \" +\n                \"gl_FogParameters \" +\n                \"gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords \" +\n                \"gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats \" +\n                \"gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits \" +\n                \"gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits \" +\n                \"gl_MaxDrawBuffers\"),\n    indentSwitch: false,\n    hooks: {\"#\": cppHook},\n    modeProps: {fold: [\"brace\", \"include\"]}\n  });\n\n  def(\"text/x-nesc\", {\n    name: \"clike\",\n    keywords: words(cKeywords + \"as atomic async call command component components configuration event generic \" +\n                    \"implementation includes interface module new norace nx_struct nx_union post provides \" +\n                    \"signal task uses abstract extends\"),\n    types: words(cTypes),\n    blockKeywords: words(\"case do else for if switch while struct\"),\n    atoms: words(\"null true false\"),\n    hooks: {\"#\": cppHook},\n    modeProps: {fold: [\"brace\", \"include\"]}\n  });\n\n  def(\"text/x-objectivec\", {\n    name: \"clike\",\n    keywords: words(cKeywords + \"inline restrict _Bool _Complex _Imaginery BOOL Class bycopy byref id IMP in \" +\n                    \"inout nil oneway out Protocol SEL self super atomic nonatomic retain copy readwrite readonly\"),\n    types: words(cTypes),\n    atoms: words(\"YES NO NULL NILL ON OFF true false\"),\n    hooks: {\n      \"@\": function(stream) {\n        stream.eatWhile(/[\\w\\$]/);\n        return \"keyword\";\n      },\n      \"#\": cppHook\n    },\n    modeProps: {fold: \"brace\"}\n  });\n\n});\n"
  },
  {
    "path": "doc/themes/boost-experimental/js/codemirror/codemirror.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// This is CodeMirror (http://codemirror.net), a code editor\n// implemented in JavaScript on top of the browser's DOM.\n//\n// You can find some technical background for some of the code below\n// at http://marijnhaverbeke.nl/blog/#cm-internals .\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    module.exports = mod();\n  else if (typeof define_wknd == \"function\")\n    return define_wknd([], mod);\n  else // Plain browser env\n    this.CodeMirror = mod();\n})(function() {\n  \"use strict\";\n\n  // BROWSER SNIFFING\n\n  // Kludges for bugs and behavior differences that can't be feature\n  // detected are enabled based on userAgent etc sniffing.\n\n  var gecko = /gecko\\/\\d/i.test(navigator.userAgent);\n  var ie_upto10 = /MSIE \\d/.test(navigator.userAgent);\n  var ie_11up = /Trident\\/(?:[7-9]|\\d{2,})\\..*rv:(\\d+)/.exec(navigator.userAgent);\n  var ie = ie_upto10 || ie_11up;\n  var ie_version = ie && (ie_upto10 ? document.documentMode || 6 : ie_11up[1]);\n  var webkit = /WebKit\\//.test(navigator.userAgent);\n  var qtwebkit = webkit && /Qt\\/\\d+\\.\\d+/.test(navigator.userAgent);\n  var chrome = /Chrome\\//.test(navigator.userAgent);\n  var presto = /Opera\\//.test(navigator.userAgent);\n  var safari = /Apple Computer/.test(navigator.vendor);\n  var mac_geMountainLion = /Mac OS X 1\\d\\D([8-9]|\\d\\d)\\D/.test(navigator.userAgent);\n  var phantom = /PhantomJS/.test(navigator.userAgent);\n\n  var ios = /AppleWebKit/.test(navigator.userAgent) && /Mobile\\/\\w+/.test(navigator.userAgent);\n  // This is woefully incomplete. Suggestions for alternative methods welcome.\n  var mobile = ios || /Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(navigator.userAgent);\n  var mac = ios || /Mac/.test(navigator.platform);\n  var windows = /win/i.test(navigator.platform);\n\n  var presto_version = presto && navigator.userAgent.match(/Version\\/(\\d*\\.\\d*)/);\n  if (presto_version) presto_version = Number(presto_version[1]);\n  if (presto_version && presto_version >= 15) { presto = false; webkit = true; }\n  // Some browsers use the wrong event properties to signal cmd/ctrl on OS X\n  var flipCtrlCmd = mac && (qtwebkit || presto && (presto_version == null || presto_version < 12.11));\n  var captureRightClick = gecko || (ie && ie_version >= 9);\n\n  // Optimize some code when these features are not used.\n  var sawReadOnlySpans = false, sawCollapsedSpans = false;\n\n  // EDITOR CONSTRUCTOR\n\n  // A CodeMirror instance represents an editor. This is the object\n  // that user code is usually dealing with.\n\n  function CodeMirror(place, options) {\n    if (!(this instanceof CodeMirror)) return new CodeMirror(place, options);\n\n    this.options = options = options ? copyObj(options) : {};\n    // Determine effective options based on given values and defaults.\n    copyObj(defaults, options, false);\n    setGuttersForLineNumbers(options);\n\n    var doc = options.value;\n    if (typeof doc == \"string\") doc = new Doc(doc, options.mode);\n    this.doc = doc;\n\n    var input = new CodeMirror.inputStyles[options.inputStyle](this);\n    var display = this.display = new Display(place, doc, input);\n    display.wrapper.CodeMirror = this;\n    updateGutters(this);\n    themeChanged(this);\n    if (options.lineWrapping)\n      this.display.wrapper.className += \" CodeMirror-wrap\";\n    if (options.autofocus && !mobile) display.input.focus();\n    initScrollbars(this);\n\n    this.state = {\n      keyMaps: [],  // stores maps added by addKeyMap\n      overlays: [], // highlighting overlays, as added by addOverlay\n      modeGen: 0,   // bumped when mode/overlay changes, used to invalidate highlighting info\n      overwrite: false,\n      delayingBlurEvent: false,\n      focused: false,\n      suppressEdits: false, // used to disable editing during key handlers when in readOnly mode\n      pasteIncoming: false, cutIncoming: false, // help recognize paste/cut edits in input.poll\n      draggingText: false,\n      highlight: new Delayed(), // stores highlight worker timeout\n      keySeq: null,  // Unfinished key sequence\n      specialChars: null\n    };\n\n    var cm = this;\n\n    // Override magic textarea content restore that IE sometimes does\n    // on our hidden textarea on reload\n    if (ie && ie_version < 11) setTimeout(function() { cm.display.input.reset(true); }, 20);\n\n    registerEventHandlers(this);\n    ensureGlobalHandlers();\n\n    startOperation(this);\n    this.curOp.forceUpdate = true;\n    attachDoc(this, doc);\n\n    if ((options.autofocus && !mobile) || cm.hasFocus())\n      setTimeout(bind(onFocus, this), 20);\n    else\n      onBlur(this);\n\n    for (var opt in optionHandlers) if (optionHandlers.hasOwnProperty(opt))\n      optionHandlers[opt](this, options[opt], Init);\n    maybeUpdateLineNumberWidth(this);\n    if (options.finishInit) options.finishInit(this);\n    for (var i = 0; i < initHooks.length; ++i) initHooks[i](this);\n    endOperation(this);\n    // Suppress optimizelegibility in Webkit, since it breaks text\n    // measuring on line wrapping boundaries.\n    if (webkit && options.lineWrapping &&\n        getComputedStyle(display.lineDiv).textRendering == \"optimizelegibility\")\n      display.lineDiv.style.textRendering = \"auto\";\n  }\n\n  // DISPLAY CONSTRUCTOR\n\n  // The display handles the DOM integration, both for input reading\n  // and content drawing. It holds references to DOM nodes and\n  // display-related state.\n\n  function Display(place, doc, input) {\n    var d = this;\n    this.input = input;\n\n    // Covers bottom-right square when both scrollbars are present.\n    d.scrollbarFiller = elt(\"div\", null, \"CodeMirror-scrollbar-filler\");\n    d.scrollbarFiller.setAttribute(\"cm-not-content\", \"true\");\n    // Covers bottom of gutter when coverGutterNextToScrollbar is on\n    // and h scrollbar is present.\n    d.gutterFiller = elt(\"div\", null, \"CodeMirror-gutter-filler\");\n    d.gutterFiller.setAttribute(\"cm-not-content\", \"true\");\n    // Will contain the actual code, positioned to cover the viewport.\n    d.lineDiv = elt(\"div\", null, \"CodeMirror-code\");\n    // Elements are added to these to represent selection and cursors.\n    d.selectionDiv = elt(\"div\", null, null, \"position: relative; z-index: 1\");\n    d.cursorDiv = elt(\"div\", null, \"CodeMirror-cursors\");\n    // A visibility: hidden element used to find the size of things.\n    d.measure = elt(\"div\", null, \"CodeMirror-measure\");\n    // When lines outside of the viewport are measured, they are drawn in this.\n    d.lineMeasure = elt(\"div\", null, \"CodeMirror-measure\");\n    // Wraps everything that needs to exist inside the vertically-padded coordinate system\n    d.lineSpace = elt(\"div\", [d.measure, d.lineMeasure, d.selectionDiv, d.cursorDiv, d.lineDiv],\n                      null, \"position: relative; outline: none\");\n    // Moved around its parent to cover visible view.\n    d.mover = elt(\"div\", [elt(\"div\", [d.lineSpace], \"CodeMirror-lines\")], null, \"position: relative\");\n    // Set to the height of the document, allowing scrolling.\n    d.sizer = elt(\"div\", [d.mover], \"CodeMirror-sizer\");\n    d.sizerWidth = null;\n    // Behavior of elts with overflow: auto and padding is\n    // inconsistent across browsers. This is used to ensure the\n    // scrollable area is big enough.\n    d.heightForcer = elt(\"div\", null, null, \"position: absolute; height: \" + scrollerGap + \"px; width: 1px;\");\n    // Will contain the gutters, if any.\n    d.gutters = elt(\"div\", null, \"CodeMirror-gutters\");\n    d.lineGutter = null;\n    // Actual scrollable element.\n    d.scroller = elt(\"div\", [d.sizer, d.heightForcer, d.gutters], \"CodeMirror-scroll\");\n    d.scroller.setAttribute(\"tabIndex\", \"-1\");\n    // The element in which the editor lives.\n    d.wrapper = elt(\"div\", [d.scrollbarFiller, d.gutterFiller, d.scroller], \"CodeMirror\");\n\n    // Work around IE7 z-index bug (not perfect, hence IE7 not really being supported)\n    if (ie && ie_version < 8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0; }\n    if (!webkit && !(gecko && mobile)) d.scroller.draggable = true;\n\n    if (place) {\n      if (place.appendChild) place.appendChild(d.wrapper);\n      else place(d.wrapper);\n    }\n\n    // Current rendered range (may be bigger than the view window).\n    d.viewFrom = d.viewTo = doc.first;\n    d.reportedViewFrom = d.reportedViewTo = doc.first;\n    // Information about the rendered lines.\n    d.view = [];\n    d.renderedView = null;\n    // Holds info about a single rendered line when it was rendered\n    // for measurement, while not in view.\n    d.externalMeasured = null;\n    // Empty space (in pixels) above the view\n    d.viewOffset = 0;\n    d.lastWrapHeight = d.lastWrapWidth = 0;\n    d.updateLineNumbers = null;\n\n    d.nativeBarWidth = d.barHeight = d.barWidth = 0;\n    d.scrollbarsClipped = false;\n\n    // Used to only resize the line number gutter when necessary (when\n    // the amount of lines crosses a boundary that makes its width change)\n    d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null;\n    // Set to true when a non-horizontal-scrolling line widget is\n    // added. As an optimization, line widget aligning is skipped when\n    // this is false.\n    d.alignWidgets = false;\n\n    d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;\n\n    // Tracks the maximum line length so that the horizontal scrollbar\n    // can be kept static when scrolling.\n    d.maxLine = null;\n    d.maxLineLength = 0;\n    d.maxLineChanged = false;\n\n    // Used for measuring wheel scrolling granularity\n    d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null;\n\n    // True when shift is held down.\n    d.shift = false;\n\n    // Used to track whether anything happened since the context menu\n    // was opened.\n    d.selForContextMenu = null;\n\n    d.activeTouch = null;\n\n    input.init(d);\n  }\n\n  // STATE UPDATES\n\n  // Used to get the editor into a consistent state again when options change.\n\n  function loadMode(cm) {\n    cm.doc.mode = CodeMirror.getMode(cm.options, cm.doc.modeOption);\n    resetModeState(cm);\n  }\n\n  function resetModeState(cm) {\n    cm.doc.iter(function(line) {\n      if (line.stateAfter) line.stateAfter = null;\n      if (line.styles) line.styles = null;\n    });\n    cm.doc.frontier = cm.doc.first;\n    startWorker(cm, 100);\n    cm.state.modeGen++;\n    if (cm.curOp) regChange(cm);\n  }\n\n  function wrappingChanged(cm) {\n    if (cm.options.lineWrapping) {\n      addClass(cm.display.wrapper, \"CodeMirror-wrap\");\n      cm.display.sizer.style.minWidth = \"\";\n      cm.display.sizerWidth = null;\n    } else {\n      rmClass(cm.display.wrapper, \"CodeMirror-wrap\");\n      findMaxLine(cm);\n    }\n    estimateLineHeights(cm);\n    regChange(cm);\n    clearCaches(cm);\n    setTimeout(function(){updateScrollbars(cm);}, 100);\n  }\n\n  // Returns a function that estimates the height of a line, to use as\n  // first approximation until the line becomes visible (and is thus\n  // properly measurable).\n  function estimateHeight(cm) {\n    var th = textHeight(cm.display), wrapping = cm.options.lineWrapping;\n    var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3);\n    return function(line) {\n      if (lineIsHidden(cm.doc, line)) return 0;\n\n      var widgetsHeight = 0;\n      if (line.widgets) for (var i = 0; i < line.widgets.length; i++) {\n        if (line.widgets[i].height) widgetsHeight += line.widgets[i].height;\n      }\n\n      if (wrapping)\n        return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th;\n      else\n        return widgetsHeight + th;\n    };\n  }\n\n  function estimateLineHeights(cm) {\n    var doc = cm.doc, est = estimateHeight(cm);\n    doc.iter(function(line) {\n      var estHeight = est(line);\n      if (estHeight != line.height) updateLineHeight(line, estHeight);\n    });\n  }\n\n  function themeChanged(cm) {\n    cm.display.wrapper.className = cm.display.wrapper.className.replace(/\\s*cm-s-\\S+/g, \"\") +\n      cm.options.theme.replace(/(^|\\s)\\s*/g, \" cm-s-\");\n    clearCaches(cm);\n  }\n\n  function guttersChanged(cm) {\n    updateGutters(cm);\n    regChange(cm);\n    setTimeout(function(){alignHorizontally(cm);}, 20);\n  }\n\n  // Rebuild the gutter elements, ensure the margin to the left of the\n  // code matches their width.\n  function updateGutters(cm) {\n    var gutters = cm.display.gutters, specs = cm.options.gutters;\n    removeChildren(gutters);\n    for (var i = 0; i < specs.length; ++i) {\n      var gutterClass = specs[i];\n      var gElt = gutters.appendChild(elt(\"div\", null, \"CodeMirror-gutter \" + gutterClass));\n      if (gutterClass == \"CodeMirror-linenumbers\") {\n        cm.display.lineGutter = gElt;\n        gElt.style.width = (cm.display.lineNumWidth || 1) + \"px\";\n      }\n    }\n    gutters.style.display = i ? \"\" : \"none\";\n    updateGutterSpace(cm);\n  }\n\n  function updateGutterSpace(cm) {\n    var width = cm.display.gutters.offsetWidth;\n    cm.display.sizer.style.marginLeft = width + \"px\";\n  }\n\n  // Compute the character length of a line, taking into account\n  // collapsed ranges (see markText) that might hide parts, and join\n  // other lines onto it.\n  function lineLength(line) {\n    if (line.height == 0) return 0;\n    var len = line.text.length, merged, cur = line;\n    while (merged = collapsedSpanAtStart(cur)) {\n      var found = merged.find(0, true);\n      cur = found.from.line;\n      len += found.from.ch - found.to.ch;\n    }\n    cur = line;\n    while (merged = collapsedSpanAtEnd(cur)) {\n      var found = merged.find(0, true);\n      len -= cur.text.length - found.from.ch;\n      cur = found.to.line;\n      len += cur.text.length - found.to.ch;\n    }\n    return len;\n  }\n\n  // Find the longest line in the document.\n  function findMaxLine(cm) {\n    var d = cm.display, doc = cm.doc;\n    d.maxLine = getLine(doc, doc.first);\n    d.maxLineLength = lineLength(d.maxLine);\n    d.maxLineChanged = true;\n    doc.iter(function(line) {\n      var len = lineLength(line);\n      if (len > d.maxLineLength) {\n        d.maxLineLength = len;\n        d.maxLine = line;\n      }\n    });\n  }\n\n  // Make sure the gutters options contains the element\n  // \"CodeMirror-linenumbers\" when the lineNumbers option is true.\n  function setGuttersForLineNumbers(options) {\n    var found = indexOf(options.gutters, \"CodeMirror-linenumbers\");\n    if (found == -1 && options.lineNumbers) {\n      options.gutters = options.gutters.concat([\"CodeMirror-linenumbers\"]);\n    } else if (found > -1 && !options.lineNumbers) {\n      options.gutters = options.gutters.slice(0);\n      options.gutters.splice(found, 1);\n    }\n  }\n\n  // SCROLLBARS\n\n  // Prepare DOM reads needed to update the scrollbars. Done in one\n  // shot to minimize update/measure roundtrips.\n  function measureForScrollbars(cm) {\n    var d = cm.display, gutterW = d.gutters.offsetWidth;\n    var docH = Math.round(cm.doc.height + paddingVert(cm.display));\n    return {\n      clientHeight: d.scroller.clientHeight,\n      viewHeight: d.wrapper.clientHeight,\n      scrollWidth: d.scroller.scrollWidth, clientWidth: d.scroller.clientWidth,\n      viewWidth: d.wrapper.clientWidth,\n      barLeft: cm.options.fixedGutter ? gutterW : 0,\n      docHeight: docH,\n      scrollHeight: docH + scrollGap(cm) + d.barHeight,\n      nativeBarWidth: d.nativeBarWidth,\n      gutterWidth: gutterW\n    };\n  }\n\n  function NativeScrollbars(place, scroll, cm) {\n    this.cm = cm;\n    var vert = this.vert = elt(\"div\", [elt(\"div\", null, null, \"min-width: 1px\")], \"CodeMirror-vscrollbar\");\n    var horiz = this.horiz = elt(\"div\", [elt(\"div\", null, null, \"height: 100%; min-height: 1px\")], \"CodeMirror-hscrollbar\");\n    place(vert); place(horiz);\n\n    on(vert, \"scroll\", function() {\n      if (vert.clientHeight) scroll(vert.scrollTop, \"vertical\");\n    });\n    on(horiz, \"scroll\", function() {\n      if (horiz.clientWidth) scroll(horiz.scrollLeft, \"horizontal\");\n    });\n\n    this.checkedOverlay = false;\n    // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8).\n    if (ie && ie_version < 8) this.horiz.style.minHeight = this.vert.style.minWidth = \"18px\";\n  }\n\n  NativeScrollbars.prototype = copyObj({\n    update: function(measure) {\n      var needsH = measure.scrollWidth > measure.clientWidth + 1;\n      var needsV = measure.scrollHeight > measure.clientHeight + 1;\n      var sWidth = measure.nativeBarWidth;\n\n      if (needsV) {\n        this.vert.style.display = \"block\";\n        this.vert.style.bottom = needsH ? sWidth + \"px\" : \"0\";\n        var totalHeight = measure.viewHeight - (needsH ? sWidth : 0);\n        // A bug in IE8 can cause this value to be negative, so guard it.\n        this.vert.firstChild.style.height =\n          Math.max(0, measure.scrollHeight - measure.clientHeight + totalHeight) + \"px\";\n      } else {\n        this.vert.style.display = \"\";\n        this.vert.firstChild.style.height = \"0\";\n      }\n\n      if (needsH) {\n        this.horiz.style.display = \"block\";\n        this.horiz.style.right = needsV ? sWidth + \"px\" : \"0\";\n        this.horiz.style.left = measure.barLeft + \"px\";\n        var totalWidth = measure.viewWidth - measure.barLeft - (needsV ? sWidth : 0);\n        this.horiz.firstChild.style.width =\n          (measure.scrollWidth - measure.clientWidth + totalWidth) + \"px\";\n      } else {\n        this.horiz.style.display = \"\";\n        this.horiz.firstChild.style.width = \"0\";\n      }\n\n      if (!this.checkedOverlay && measure.clientHeight > 0) {\n        if (sWidth == 0) this.overlayHack();\n        this.checkedOverlay = true;\n      }\n\n      return {right: needsV ? sWidth : 0, bottom: needsH ? sWidth : 0};\n    },\n    setScrollLeft: function(pos) {\n      if (this.horiz.scrollLeft != pos) this.horiz.scrollLeft = pos;\n    },\n    setScrollTop: function(pos) {\n      if (this.vert.scrollTop != pos) this.vert.scrollTop = pos;\n    },\n    overlayHack: function() {\n      var w = mac && !mac_geMountainLion ? \"12px\" : \"18px\";\n      this.horiz.style.minHeight = this.vert.style.minWidth = w;\n      var self = this;\n      var barMouseDown = function(e) {\n        if (e_target(e) != self.vert && e_target(e) != self.horiz)\n          operation(self.cm, onMouseDown)(e);\n      };\n      on(this.vert, \"mousedown\", barMouseDown);\n      on(this.horiz, \"mousedown\", barMouseDown);\n    },\n    clear: function() {\n      var parent = this.horiz.parentNode;\n      parent.removeChild(this.horiz);\n      parent.removeChild(this.vert);\n    }\n  }, NativeScrollbars.prototype);\n\n  function NullScrollbars() {}\n\n  NullScrollbars.prototype = copyObj({\n    update: function() { return {bottom: 0, right: 0}; },\n    setScrollLeft: function() {},\n    setScrollTop: function() {},\n    clear: function() {}\n  }, NullScrollbars.prototype);\n\n  CodeMirror.scrollbarModel = {\"native\": NativeScrollbars, \"null\": NullScrollbars};\n\n  function initScrollbars(cm) {\n    if (cm.display.scrollbars) {\n      cm.display.scrollbars.clear();\n      if (cm.display.scrollbars.addClass)\n        rmClass(cm.display.wrapper, cm.display.scrollbars.addClass);\n    }\n\n    cm.display.scrollbars = new CodeMirror.scrollbarModel[cm.options.scrollbarStyle](function(node) {\n      cm.display.wrapper.insertBefore(node, cm.display.scrollbarFiller);\n      // Prevent clicks in the scrollbars from killing focus\n      on(node, \"mousedown\", function() {\n        if (cm.state.focused) setTimeout(function() { cm.display.input.focus(); }, 0);\n      });\n      node.setAttribute(\"cm-not-content\", \"true\");\n    }, function(pos, axis) {\n      if (axis == \"horizontal\") setScrollLeft(cm, pos);\n      else setScrollTop(cm, pos);\n    }, cm);\n    if (cm.display.scrollbars.addClass)\n      addClass(cm.display.wrapper, cm.display.scrollbars.addClass);\n  }\n\n  function updateScrollbars(cm, measure) {\n    if (!measure) measure = measureForScrollbars(cm);\n    var startWidth = cm.display.barWidth, startHeight = cm.display.barHeight;\n    updateScrollbarsInner(cm, measure);\n    for (var i = 0; i < 4 && startWidth != cm.display.barWidth || startHeight != cm.display.barHeight; i++) {\n      if (startWidth != cm.display.barWidth && cm.options.lineWrapping)\n        updateHeightsInViewport(cm);\n      updateScrollbarsInner(cm, measureForScrollbars(cm));\n      startWidth = cm.display.barWidth; startHeight = cm.display.barHeight;\n    }\n  }\n\n  // Re-synchronize the fake scrollbars with the actual size of the\n  // content.\n  function updateScrollbarsInner(cm, measure) {\n    var d = cm.display;\n    var sizes = d.scrollbars.update(measure);\n\n    d.sizer.style.paddingRight = (d.barWidth = sizes.right) + \"px\";\n    d.sizer.style.paddingBottom = (d.barHeight = sizes.bottom) + \"px\";\n\n    if (sizes.right && sizes.bottom) {\n      d.scrollbarFiller.style.display = \"block\";\n      d.scrollbarFiller.style.height = sizes.bottom + \"px\";\n      d.scrollbarFiller.style.width = sizes.right + \"px\";\n    } else d.scrollbarFiller.style.display = \"\";\n    if (sizes.bottom && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) {\n      d.gutterFiller.style.display = \"block\";\n      d.gutterFiller.style.height = sizes.bottom + \"px\";\n      d.gutterFiller.style.width = measure.gutterWidth + \"px\";\n    } else d.gutterFiller.style.display = \"\";\n  }\n\n  // Compute the lines that are visible in a given viewport (defaults\n  // the the current scroll position). viewport may contain top,\n  // height, and ensure (see op.scrollToPos) properties.\n  function visibleLines(display, doc, viewport) {\n    var top = viewport && viewport.top != null ? Math.max(0, viewport.top) : display.scroller.scrollTop;\n    top = Math.floor(top - paddingTop(display));\n    var bottom = viewport && viewport.bottom != null ? viewport.bottom : top + display.wrapper.clientHeight;\n\n    var from = lineAtHeight(doc, top), to = lineAtHeight(doc, bottom);\n    // Ensure is a {from: {line, ch}, to: {line, ch}} object, and\n    // forces those lines into the viewport (if possible).\n    if (viewport && viewport.ensure) {\n      var ensureFrom = viewport.ensure.from.line, ensureTo = viewport.ensure.to.line;\n      if (ensureFrom < from) {\n        from = ensureFrom;\n        to = lineAtHeight(doc, heightAtLine(getLine(doc, ensureFrom)) + display.wrapper.clientHeight);\n      } else if (Math.min(ensureTo, doc.lastLine()) >= to) {\n        from = lineAtHeight(doc, heightAtLine(getLine(doc, ensureTo)) - display.wrapper.clientHeight);\n        to = ensureTo;\n      }\n    }\n    return {from: from, to: Math.max(to, from + 1)};\n  }\n\n  // LINE NUMBERS\n\n  // Re-align line numbers and gutter marks to compensate for\n  // horizontal scrolling.\n  function alignHorizontally(cm) {\n    var display = cm.display, view = display.view;\n    if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) return;\n    var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft;\n    var gutterW = display.gutters.offsetWidth, left = comp + \"px\";\n    for (var i = 0; i < view.length; i++) if (!view[i].hidden) {\n      if (cm.options.fixedGutter && view[i].gutter)\n        view[i].gutter.style.left = left;\n      var align = view[i].alignable;\n      if (align) for (var j = 0; j < align.length; j++)\n        align[j].style.left = left;\n    }\n    if (cm.options.fixedGutter)\n      display.gutters.style.left = (comp + gutterW) + \"px\";\n  }\n\n  // Used to ensure that the line number gutter is still the right\n  // size for the current document size. Returns true when an update\n  // is needed.\n  function maybeUpdateLineNumberWidth(cm) {\n    if (!cm.options.lineNumbers) return false;\n    var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display;\n    if (last.length != display.lineNumChars) {\n      var test = display.measure.appendChild(elt(\"div\", [elt(\"div\", last)],\n                                                 \"CodeMirror-linenumber CodeMirror-gutter-elt\"));\n      var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW;\n      display.lineGutter.style.width = \"\";\n      display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding) + 1;\n      display.lineNumWidth = display.lineNumInnerWidth + padding;\n      display.lineNumChars = display.lineNumInnerWidth ? last.length : -1;\n      display.lineGutter.style.width = display.lineNumWidth + \"px\";\n      updateGutterSpace(cm);\n      return true;\n    }\n    return false;\n  }\n\n  function lineNumberFor(options, i) {\n    return String(options.lineNumberFormatter(i + options.firstLineNumber));\n  }\n\n  // Computes display.scroller.scrollLeft + display.gutters.offsetWidth,\n  // but using getBoundingClientRect to get a sub-pixel-accurate\n  // result.\n  function compensateForHScroll(display) {\n    return display.scroller.getBoundingClientRect().left - display.sizer.getBoundingClientRect().left;\n  }\n\n  // DISPLAY DRAWING\n\n  function DisplayUpdate(cm, viewport, force) {\n    var display = cm.display;\n\n    this.viewport = viewport;\n    // Store some values that we'll need later (but don't want to force a relayout for)\n    this.visible = visibleLines(display, cm.doc, viewport);\n    this.editorIsHidden = !display.wrapper.offsetWidth;\n    this.wrapperHeight = display.wrapper.clientHeight;\n    this.wrapperWidth = display.wrapper.clientWidth;\n    this.oldDisplayWidth = displayWidth(cm);\n    this.force = force;\n    this.dims = getDimensions(cm);\n    this.events = [];\n  }\n\n  DisplayUpdate.prototype.signal = function(emitter, type) {\n    if (hasHandler(emitter, type))\n      this.events.push(arguments);\n  };\n  DisplayUpdate.prototype.finish = function() {\n    for (var i = 0; i < this.events.length; i++)\n      signal.apply(null, this.events[i]);\n  };\n\n  function maybeClipScrollbars(cm) {\n    var display = cm.display;\n    if (!display.scrollbarsClipped && display.scroller.offsetWidth) {\n      display.nativeBarWidth = display.scroller.offsetWidth - display.scroller.clientWidth;\n      display.heightForcer.style.height = scrollGap(cm) + \"px\";\n      display.sizer.style.marginBottom = -display.nativeBarWidth + \"px\";\n      display.sizer.style.borderRightWidth = scrollGap(cm) + \"px\";\n      display.scrollbarsClipped = true;\n    }\n  }\n\n  // Does the actual updating of the line display. Bails out\n  // (returning false) when there is nothing to be done and forced is\n  // false.\n  function updateDisplayIfNeeded(cm, update) {\n    var display = cm.display, doc = cm.doc;\n\n    if (update.editorIsHidden) {\n      resetView(cm);\n      return false;\n    }\n\n    // Bail out if the visible area is already rendered and nothing changed.\n    if (!update.force &&\n        update.visible.from >= display.viewFrom && update.visible.to <= display.viewTo &&\n        (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo) &&\n        display.renderedView == display.view && countDirtyView(cm) == 0)\n      return false;\n\n    if (maybeUpdateLineNumberWidth(cm)) {\n      resetView(cm);\n      update.dims = getDimensions(cm);\n    }\n\n    // Compute a suitable new viewport (from & to)\n    var end = doc.first + doc.size;\n    var from = Math.max(update.visible.from - cm.options.viewportMargin, doc.first);\n    var to = Math.min(end, update.visible.to + cm.options.viewportMargin);\n    if (display.viewFrom < from && from - display.viewFrom < 20) from = Math.max(doc.first, display.viewFrom);\n    if (display.viewTo > to && display.viewTo - to < 20) to = Math.min(end, display.viewTo);\n    if (sawCollapsedSpans) {\n      from = visualLineNo(cm.doc, from);\n      to = visualLineEndNo(cm.doc, to);\n    }\n\n    var different = from != display.viewFrom || to != display.viewTo ||\n      display.lastWrapHeight != update.wrapperHeight || display.lastWrapWidth != update.wrapperWidth;\n    adjustView(cm, from, to);\n\n    display.viewOffset = heightAtLine(getLine(cm.doc, display.viewFrom));\n    // Position the mover div to align with the current scroll position\n    cm.display.mover.style.top = display.viewOffset + \"px\";\n\n    var toUpdate = countDirtyView(cm);\n    if (!different && toUpdate == 0 && !update.force && display.renderedView == display.view &&\n        (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo))\n      return false;\n\n    // For big changes, we hide the enclosing element during the\n    // update, since that speeds up the operations on most browsers.\n    var focused = activeElt();\n    if (toUpdate > 4) display.lineDiv.style.display = \"none\";\n    patchDisplay(cm, display.updateLineNumbers, update.dims);\n    if (toUpdate > 4) display.lineDiv.style.display = \"\";\n    display.renderedView = display.view;\n    // There might have been a widget with a focused element that got\n    // hidden or updated, if so re-focus it.\n    if (focused && activeElt() != focused && focused.offsetHeight) focused.focus();\n\n    // Prevent selection and cursors from interfering with the scroll\n    // width and height.\n    removeChildren(display.cursorDiv);\n    removeChildren(display.selectionDiv);\n    display.gutters.style.height = 0;\n\n    if (different) {\n      display.lastWrapHeight = update.wrapperHeight;\n      display.lastWrapWidth = update.wrapperWidth;\n      startWorker(cm, 400);\n    }\n\n    display.updateLineNumbers = null;\n\n    return true;\n  }\n\n  function postUpdateDisplay(cm, update) {\n    var viewport = update.viewport;\n    for (var first = true;; first = false) {\n      if (!first || !cm.options.lineWrapping || update.oldDisplayWidth == displayWidth(cm)) {\n        // Clip forced viewport to actual scrollable area.\n        if (viewport && viewport.top != null)\n          viewport = {top: Math.min(cm.doc.height + paddingVert(cm.display) - displayHeight(cm), viewport.top)};\n        // Updated line heights might result in the drawn area not\n        // actually covering the viewport. Keep looping until it does.\n        update.visible = visibleLines(cm.display, cm.doc, viewport);\n        if (update.visible.from >= cm.display.viewFrom && update.visible.to <= cm.display.viewTo)\n          break;\n      }\n      if (!updateDisplayIfNeeded(cm, update)) break;\n      updateHeightsInViewport(cm);\n      var barMeasure = measureForScrollbars(cm);\n      updateSelection(cm);\n      setDocumentHeight(cm, barMeasure);\n      updateScrollbars(cm, barMeasure);\n    }\n\n    update.signal(cm, \"update\", cm);\n    if (cm.display.viewFrom != cm.display.reportedViewFrom || cm.display.viewTo != cm.display.reportedViewTo) {\n      update.signal(cm, \"viewportChange\", cm, cm.display.viewFrom, cm.display.viewTo);\n      cm.display.reportedViewFrom = cm.display.viewFrom; cm.display.reportedViewTo = cm.display.viewTo;\n    }\n  }\n\n  function updateDisplaySimple(cm, viewport) {\n    var update = new DisplayUpdate(cm, viewport);\n    if (updateDisplayIfNeeded(cm, update)) {\n      updateHeightsInViewport(cm);\n      postUpdateDisplay(cm, update);\n      var barMeasure = measureForScrollbars(cm);\n      updateSelection(cm);\n      setDocumentHeight(cm, barMeasure);\n      updateScrollbars(cm, barMeasure);\n      update.finish();\n    }\n  }\n\n  function setDocumentHeight(cm, measure) {\n    cm.display.sizer.style.minHeight = measure.docHeight + \"px\";\n    var total = measure.docHeight + cm.display.barHeight;\n    cm.display.heightForcer.style.top = total + \"px\";\n    cm.display.gutters.style.height = Math.max(total + scrollGap(cm), measure.clientHeight) + \"px\";\n  }\n\n  // Read the actual heights of the rendered lines, and update their\n  // stored heights to match.\n  function updateHeightsInViewport(cm) {\n    var display = cm.display;\n    var prevBottom = display.lineDiv.offsetTop;\n    for (var i = 0; i < display.view.length; i++) {\n      var cur = display.view[i], height;\n      if (cur.hidden) continue;\n      if (ie && ie_version < 8) {\n        var bot = cur.node.offsetTop + cur.node.offsetHeight;\n        height = bot - prevBottom;\n        prevBottom = bot;\n      } else {\n        var box = cur.node.getBoundingClientRect();\n        height = box.bottom - box.top;\n      }\n      var diff = cur.line.height - height;\n      if (height < 2) height = textHeight(display);\n      if (diff > .001 || diff < -.001) {\n        updateLineHeight(cur.line, height);\n        updateWidgetHeight(cur.line);\n        if (cur.rest) for (var j = 0; j < cur.rest.length; j++)\n          updateWidgetHeight(cur.rest[j]);\n      }\n    }\n  }\n\n  // Read and store the height of line widgets associated with the\n  // given line.\n  function updateWidgetHeight(line) {\n    if (line.widgets) for (var i = 0; i < line.widgets.length; ++i)\n      line.widgets[i].height = line.widgets[i].node.offsetHeight;\n  }\n\n  // Do a bulk-read of the DOM positions and sizes needed to draw the\n  // view, so that we don't interleave reading and writing to the DOM.\n  function getDimensions(cm) {\n    var d = cm.display, left = {}, width = {};\n    var gutterLeft = d.gutters.clientLeft;\n    for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) {\n      left[cm.options.gutters[i]] = n.offsetLeft + n.clientLeft + gutterLeft;\n      width[cm.options.gutters[i]] = n.clientWidth;\n    }\n    return {fixedPos: compensateForHScroll(d),\n            gutterTotalWidth: d.gutters.offsetWidth,\n            gutterLeft: left,\n            gutterWidth: width,\n            wrapperWidth: d.wrapper.clientWidth};\n  }\n\n  // Sync the actual display DOM structure with display.view, removing\n  // nodes for lines that are no longer in view, and creating the ones\n  // that are not there yet, and updating the ones that are out of\n  // date.\n  function patchDisplay(cm, updateNumbersFrom, dims) {\n    var display = cm.display, lineNumbers = cm.options.lineNumbers;\n    var container = display.lineDiv, cur = container.firstChild;\n\n    function rm(node) {\n      var next = node.nextSibling;\n      // Works around a throw-scroll bug in OS X Webkit\n      if (webkit && mac && cm.display.currentWheelTarget == node)\n        node.style.display = \"none\";\n      else\n        node.parentNode.removeChild(node);\n      return next;\n    }\n\n    var view = display.view, lineN = display.viewFrom;\n    // Loop over the elements in the view, syncing cur (the DOM nodes\n    // in display.lineDiv) with the view as we go.\n    for (var i = 0; i < view.length; i++) {\n      var lineView = view[i];\n      if (lineView.hidden) {\n      } else if (!lineView.node || lineView.node.parentNode != container) { // Not drawn yet\n        var node = buildLineElement(cm, lineView, lineN, dims);\n        container.insertBefore(node, cur);\n      } else { // Already drawn\n        while (cur != lineView.node) cur = rm(cur);\n        var updateNumber = lineNumbers && updateNumbersFrom != null &&\n          updateNumbersFrom <= lineN && lineView.lineNumber;\n        if (lineView.changes) {\n          if (indexOf(lineView.changes, \"gutter\") > -1) updateNumber = false;\n          updateLineForChanges(cm, lineView, lineN, dims);\n        }\n        if (updateNumber) {\n          removeChildren(lineView.lineNumber);\n          lineView.lineNumber.appendChild(document.createTextNode(lineNumberFor(cm.options, lineN)));\n        }\n        cur = lineView.node.nextSibling;\n      }\n      lineN += lineView.size;\n    }\n    while (cur) cur = rm(cur);\n  }\n\n  // When an aspect of a line changes, a string is added to\n  // lineView.changes. This updates the relevant part of the line's\n  // DOM structure.\n  function updateLineForChanges(cm, lineView, lineN, dims) {\n    for (var j = 0; j < lineView.changes.length; j++) {\n      var type = lineView.changes[j];\n      if (type == \"text\") updateLineText(cm, lineView);\n      else if (type == \"gutter\") updateLineGutter(cm, lineView, lineN, dims);\n      else if (type == \"class\") updateLineClasses(lineView);\n      else if (type == \"widget\") updateLineWidgets(cm, lineView, dims);\n    }\n    lineView.changes = null;\n  }\n\n  // Lines with gutter elements, widgets or a background class need to\n  // be wrapped, and have the extra elements added to the wrapper div\n  function ensureLineWrapped(lineView) {\n    if (lineView.node == lineView.text) {\n      lineView.node = elt(\"div\", null, null, \"position: relative\");\n      if (lineView.text.parentNode)\n        lineView.text.parentNode.replaceChild(lineView.node, lineView.text);\n      lineView.node.appendChild(lineView.text);\n      if (ie && ie_version < 8) lineView.node.style.zIndex = 2;\n    }\n    return lineView.node;\n  }\n\n  function updateLineBackground(lineView) {\n    var cls = lineView.bgClass ? lineView.bgClass + \" \" + (lineView.line.bgClass || \"\") : lineView.line.bgClass;\n    if (cls) cls += \" CodeMirror-linebackground\";\n    if (lineView.background) {\n      if (cls) lineView.background.className = cls;\n      else { lineView.background.parentNode.removeChild(lineView.background); lineView.background = null; }\n    } else if (cls) {\n      var wrap = ensureLineWrapped(lineView);\n      lineView.background = wrap.insertBefore(elt(\"div\", null, cls), wrap.firstChild);\n    }\n  }\n\n  // Wrapper around buildLineContent which will reuse the structure\n  // in display.externalMeasured when possible.\n  function getLineContent(cm, lineView) {\n    var ext = cm.display.externalMeasured;\n    if (ext && ext.line == lineView.line) {\n      cm.display.externalMeasured = null;\n      lineView.measure = ext.measure;\n      return ext.built;\n    }\n    return buildLineContent(cm, lineView);\n  }\n\n  // Redraw the line's text. Interacts with the background and text\n  // classes because the mode may output tokens that influence these\n  // classes.\n  function updateLineText(cm, lineView) {\n    var cls = lineView.text.className;\n    var built = getLineContent(cm, lineView);\n    if (lineView.text == lineView.node) lineView.node = built.pre;\n    lineView.text.parentNode.replaceChild(built.pre, lineView.text);\n    lineView.text = built.pre;\n    if (built.bgClass != lineView.bgClass || built.textClass != lineView.textClass) {\n      lineView.bgClass = built.bgClass;\n      lineView.textClass = built.textClass;\n      updateLineClasses(lineView);\n    } else if (cls) {\n      lineView.text.className = cls;\n    }\n  }\n\n  function updateLineClasses(lineView) {\n    updateLineBackground(lineView);\n    if (lineView.line.wrapClass)\n      ensureLineWrapped(lineView).className = lineView.line.wrapClass;\n    else if (lineView.node != lineView.text)\n      lineView.node.className = \"\";\n    var textClass = lineView.textClass ? lineView.textClass + \" \" + (lineView.line.textClass || \"\") : lineView.line.textClass;\n    lineView.text.className = textClass || \"\";\n  }\n\n  function updateLineGutter(cm, lineView, lineN, dims) {\n    if (lineView.gutter) {\n      lineView.node.removeChild(lineView.gutter);\n      lineView.gutter = null;\n    }\n    var markers = lineView.line.gutterMarkers;\n    if (cm.options.lineNumbers || markers) {\n      var wrap = ensureLineWrapped(lineView);\n      var gutterWrap = lineView.gutter = elt(\"div\", null, \"CodeMirror-gutter-wrapper\", \"left: \" +\n                                             (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) +\n                                             \"px; width: \" + dims.gutterTotalWidth + \"px\");\n      cm.display.input.setUneditable(gutterWrap);\n      wrap.insertBefore(gutterWrap, lineView.text);\n      if (lineView.line.gutterClass)\n        gutterWrap.className += \" \" + lineView.line.gutterClass;\n      if (cm.options.lineNumbers && (!markers || !markers[\"CodeMirror-linenumbers\"]))\n        lineView.lineNumber = gutterWrap.appendChild(\n          elt(\"div\", lineNumberFor(cm.options, lineN),\n              \"CodeMirror-linenumber CodeMirror-gutter-elt\",\n              \"left: \" + dims.gutterLeft[\"CodeMirror-linenumbers\"] + \"px; width: \"\n              + cm.display.lineNumInnerWidth + \"px\"));\n      if (markers) for (var k = 0; k < cm.options.gutters.length; ++k) {\n        var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id];\n        if (found)\n          gutterWrap.appendChild(elt(\"div\", [found], \"CodeMirror-gutter-elt\", \"left: \" +\n                                     dims.gutterLeft[id] + \"px; width: \" + dims.gutterWidth[id] + \"px\"));\n      }\n    }\n  }\n\n  function updateLineWidgets(cm, lineView, dims) {\n    if (lineView.alignable) lineView.alignable = null;\n    for (var node = lineView.node.firstChild, next; node; node = next) {\n      var next = node.nextSibling;\n      if (node.className == \"CodeMirror-linewidget\")\n        lineView.node.removeChild(node);\n    }\n    insertLineWidgets(cm, lineView, dims);\n  }\n\n  // Build a line's DOM representation from scratch\n  function buildLineElement(cm, lineView, lineN, dims) {\n    var built = getLineContent(cm, lineView);\n    lineView.text = lineView.node = built.pre;\n    if (built.bgClass) lineView.bgClass = built.bgClass;\n    if (built.textClass) lineView.textClass = built.textClass;\n\n    updateLineClasses(lineView);\n    updateLineGutter(cm, lineView, lineN, dims);\n    insertLineWidgets(cm, lineView, dims);\n    return lineView.node;\n  }\n\n  // A lineView may contain multiple logical lines (when merged by\n  // collapsed spans). The widgets for all of them need to be drawn.\n  function insertLineWidgets(cm, lineView, dims) {\n    insertLineWidgetsFor(cm, lineView.line, lineView, dims, true);\n    if (lineView.rest) for (var i = 0; i < lineView.rest.length; i++)\n      insertLineWidgetsFor(cm, lineView.rest[i], lineView, dims, false);\n  }\n\n  function insertLineWidgetsFor(cm, line, lineView, dims, allowAbove) {\n    if (!line.widgets) return;\n    var wrap = ensureLineWrapped(lineView);\n    for (var i = 0, ws = line.widgets; i < ws.length; ++i) {\n      var widget = ws[i], node = elt(\"div\", [widget.node], \"CodeMirror-linewidget\");\n      if (!widget.handleMouseEvents) node.setAttribute(\"cm-ignore-events\", \"true\");\n      positionLineWidget(widget, node, lineView, dims);\n      cm.display.input.setUneditable(node);\n      if (allowAbove && widget.above)\n        wrap.insertBefore(node, lineView.gutter || lineView.text);\n      else\n        wrap.appendChild(node);\n      signalLater(widget, \"redraw\");\n    }\n  }\n\n  function positionLineWidget(widget, node, lineView, dims) {\n    if (widget.noHScroll) {\n      (lineView.alignable || (lineView.alignable = [])).push(node);\n      var width = dims.wrapperWidth;\n      node.style.left = dims.fixedPos + \"px\";\n      if (!widget.coverGutter) {\n        width -= dims.gutterTotalWidth;\n        node.style.paddingLeft = dims.gutterTotalWidth + \"px\";\n      }\n      node.style.width = width + \"px\";\n    }\n    if (widget.coverGutter) {\n      node.style.zIndex = 5;\n      node.style.position = \"relative\";\n      if (!widget.noHScroll) node.style.marginLeft = -dims.gutterTotalWidth + \"px\";\n    }\n  }\n\n  // POSITION OBJECT\n\n  // A Pos instance represents a position within the text.\n  var Pos = CodeMirror.Pos = function(line, ch) {\n    if (!(this instanceof Pos)) return new Pos(line, ch);\n    this.line = line; this.ch = ch;\n  };\n\n  // Compare two positions, return 0 if they are the same, a negative\n  // number when a is less, and a positive number otherwise.\n  var cmp = CodeMirror.cmpPos = function(a, b) { return a.line - b.line || a.ch - b.ch; };\n\n  function copyPos(x) {return Pos(x.line, x.ch);}\n  function maxPos(a, b) { return cmp(a, b) < 0 ? b : a; }\n  function minPos(a, b) { return cmp(a, b) < 0 ? a : b; }\n\n  // INPUT HANDLING\n\n  function ensureFocus(cm) {\n    if (!cm.state.focused) { cm.display.input.focus(); onFocus(cm); }\n  }\n\n  function isReadOnly(cm) {\n    return cm.options.readOnly || cm.doc.cantEdit;\n  }\n\n  // This will be set to an array of strings when copying, so that,\n  // when pasting, we know what kind of selections the copied text\n  // was made out of.\n  var lastCopied = null;\n\n  function applyTextInput(cm, inserted, deleted, sel, origin) {\n    var doc = cm.doc;\n    cm.display.shift = false;\n    if (!sel) sel = doc.sel;\n\n    var paste = cm.state.pasteIncoming || origin == \"paste\";\n    var textLines = splitLines(inserted), multiPaste = null;\n    // When pasing N lines into N selections, insert one line per selection\n    if (paste && sel.ranges.length > 1) {\n      if (lastCopied && lastCopied.join(\"\\n\") == inserted)\n        multiPaste = sel.ranges.length % lastCopied.length == 0 && map(lastCopied, splitLines);\n      else if (textLines.length == sel.ranges.length)\n        multiPaste = map(textLines, function(l) { return [l]; });\n    }\n\n    // Normal behavior is to insert the new text into every selection\n    for (var i = sel.ranges.length - 1; i >= 0; i--) {\n      var range = sel.ranges[i];\n      var from = range.from(), to = range.to();\n      if (range.empty()) {\n        if (deleted && deleted > 0) // Handle deletion\n          from = Pos(from.line, from.ch - deleted);\n        else if (cm.state.overwrite && !paste) // Handle overwrite\n          to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + lst(textLines).length));\n      }\n      var updateInput = cm.curOp.updateInput;\n      var changeEvent = {from: from, to: to, text: multiPaste ? multiPaste[i % multiPaste.length] : textLines,\n                         origin: origin || (paste ? \"paste\" : cm.state.cutIncoming ? \"cut\" : \"+input\")};\n      makeChange(cm.doc, changeEvent);\n      signalLater(cm, \"inputRead\", cm, changeEvent);\n    }\n    if (inserted && !paste)\n      triggerElectric(cm, inserted);\n\n    ensureCursorVisible(cm);\n    cm.curOp.updateInput = updateInput;\n    cm.curOp.typing = true;\n    cm.state.pasteIncoming = cm.state.cutIncoming = false;\n  }\n\n  function handlePaste(e, cm) {\n    var pasted = e.clipboardData && e.clipboardData.getData(\"text/plain\");\n    if (pasted) {\n      e.preventDefault();\n      runInOp(cm, function() { applyTextInput(cm, pasted, 0, null, \"paste\"); });\n      return true;\n    }\n  }\n\n  function triggerElectric(cm, inserted) {\n    // When an 'electric' character is inserted, immediately trigger a reindent\n    if (!cm.options.electricChars || !cm.options.smartIndent) return;\n    var sel = cm.doc.sel;\n\n    for (var i = sel.ranges.length - 1; i >= 0; i--) {\n      var range = sel.ranges[i];\n      if (range.head.ch > 100 || (i && sel.ranges[i - 1].head.line == range.head.line)) continue;\n      var mode = cm.getModeAt(range.head);\n      var indented = false;\n      if (mode.electricChars) {\n        for (var j = 0; j < mode.electricChars.length; j++)\n          if (inserted.indexOf(mode.electricChars.charAt(j)) > -1) {\n            indented = indentLine(cm, range.head.line, \"smart\");\n            break;\n          }\n      } else if (mode.electricInput) {\n        if (mode.electricInput.test(getLine(cm.doc, range.head.line).text.slice(0, range.head.ch)))\n          indented = indentLine(cm, range.head.line, \"smart\");\n      }\n      if (indented) signalLater(cm, \"electricInput\", cm, range.head.line);\n    }\n  }\n\n  function copyableRanges(cm) {\n    var text = [], ranges = [];\n    for (var i = 0; i < cm.doc.sel.ranges.length; i++) {\n      var line = cm.doc.sel.ranges[i].head.line;\n      var lineRange = {anchor: Pos(line, 0), head: Pos(line + 1, 0)};\n      ranges.push(lineRange);\n      text.push(cm.getRange(lineRange.anchor, lineRange.head));\n    }\n    return {text: text, ranges: ranges};\n  }\n\n  function disableBrowserMagic(field) {\n    field.setAttribute(\"autocorrect\", \"off\");\n    field.setAttribute(\"autocapitalize\", \"off\");\n    field.setAttribute(\"spellcheck\", \"false\");\n  }\n\n  // TEXTAREA INPUT STYLE\n\n  function TextareaInput(cm) {\n    this.cm = cm;\n    // See input.poll and input.reset\n    this.prevInput = \"\";\n\n    // Flag that indicates whether we expect input to appear real soon\n    // now (after some event like 'keypress' or 'input') and are\n    // polling intensively.\n    this.pollingFast = false;\n    // Self-resetting timeout for the poller\n    this.polling = new Delayed();\n    // Tracks when input.reset has punted to just putting a short\n    // string into the textarea instead of the full selection.\n    this.inaccurateSelection = false;\n    // Used to work around IE issue with selection being forgotten when focus moves away from textarea\n    this.hasSelection = false;\n    this.composing = null;\n  };\n\n  function hiddenTextarea() {\n    var te = elt(\"textarea\", null, null, \"position: absolute; padding: 0; width: 1px; height: 1em; outline: none\");\n    var div = elt(\"div\", [te], null, \"overflow: hidden; position: relative; width: 3px; height: 0px;\");\n    // The textarea is kept positioned near the cursor to prevent the\n    // fact that it'll be scrolled into view on input from scrolling\n    // our fake cursor out of view. On webkit, when wrap=off, paste is\n    // very slow. So make the area wide instead.\n    if (webkit) te.style.width = \"1000px\";\n    else te.setAttribute(\"wrap\", \"off\");\n    // If border: 0; -- iOS fails to open keyboard (issue #1287)\n    if (ios) te.style.border = \"1px solid black\";\n    disableBrowserMagic(te);\n    return div;\n  }\n\n  TextareaInput.prototype = copyObj({\n    init: function(display) {\n      var input = this, cm = this.cm;\n\n      // Wraps and hides input textarea\n      var div = this.wrapper = hiddenTextarea();\n      // The semihidden textarea that is focused when the editor is\n      // focused, and receives input.\n      var te = this.textarea = div.firstChild;\n      display.wrapper.insertBefore(div, display.wrapper.firstChild);\n\n      // Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore)\n      if (ios) te.style.width = \"0px\";\n\n      on(te, \"input\", function() {\n        if (ie && ie_version >= 9 && input.hasSelection) input.hasSelection = null;\n        input.poll();\n      });\n\n      on(te, \"paste\", function(e) {\n        if (handlePaste(e, cm)) return true;\n\n        cm.state.pasteIncoming = true;\n        input.fastPoll();\n      });\n\n      function prepareCopyCut(e) {\n        if (cm.somethingSelected()) {\n          lastCopied = cm.getSelections();\n          if (input.inaccurateSelection) {\n            input.prevInput = \"\";\n            input.inaccurateSelection = false;\n            te.value = lastCopied.join(\"\\n\");\n            selectInput(te);\n          }\n        } else if (!cm.options.lineWiseCopyCut) {\n          return;\n        } else {\n          var ranges = copyableRanges(cm);\n          lastCopied = ranges.text;\n          if (e.type == \"cut\") {\n            cm.setSelections(ranges.ranges, null, sel_dontScroll);\n          } else {\n            input.prevInput = \"\";\n            te.value = ranges.text.join(\"\\n\");\n            selectInput(te);\n          }\n        }\n        if (e.type == \"cut\") cm.state.cutIncoming = true;\n      }\n      on(te, \"cut\", prepareCopyCut);\n      on(te, \"copy\", prepareCopyCut);\n\n      on(display.scroller, \"paste\", function(e) {\n        if (eventInWidget(display, e)) return;\n        cm.state.pasteIncoming = true;\n        input.focus();\n      });\n\n      // Prevent normal selection in the editor (we handle our own)\n      on(display.lineSpace, \"selectstart\", function(e) {\n        if (!eventInWidget(display, e)) e_preventDefault(e);\n      });\n\n      on(te, \"compositionstart\", function() {\n        var start = cm.getCursor(\"from\");\n        input.composing = {\n          start: start,\n          range: cm.markText(start, cm.getCursor(\"to\"), {className: \"CodeMirror-composing\"})\n        };\n      });\n      on(te, \"compositionend\", function() {\n        if (input.composing) {\n          input.poll();\n          input.composing.range.clear();\n          input.composing = null;\n        }\n      });\n    },\n\n    prepareSelection: function() {\n      // Redraw the selection and/or cursor\n      var cm = this.cm, display = cm.display, doc = cm.doc;\n      var result = prepareSelection(cm);\n\n      // Move the hidden textarea near the cursor to prevent scrolling artifacts\n      if (cm.options.moveInputWithCursor) {\n        var headPos = cursorCoords(cm, doc.sel.primary().head, \"div\");\n        var wrapOff = display.wrapper.getBoundingClientRect(), lineOff = display.lineDiv.getBoundingClientRect();\n        result.teTop = Math.max(0, Math.min(display.wrapper.clientHeight - 10,\n                                            headPos.top + lineOff.top - wrapOff.top));\n        result.teLeft = Math.max(0, Math.min(display.wrapper.clientWidth - 10,\n                                             headPos.left + lineOff.left - wrapOff.left));\n      }\n\n      return result;\n    },\n\n    showSelection: function(drawn) {\n      var cm = this.cm, display = cm.display;\n      removeChildrenAndAdd(display.cursorDiv, drawn.cursors);\n      removeChildrenAndAdd(display.selectionDiv, drawn.selection);\n      if (drawn.teTop != null) {\n        this.wrapper.style.top = drawn.teTop + \"px\";\n        this.wrapper.style.left = drawn.teLeft + \"px\";\n      }\n    },\n\n    // Reset the input to correspond to the selection (or to be empty,\n    // when not typing and nothing is selected)\n    reset: function(typing) {\n      if (this.contextMenuPending) return;\n      var minimal, selected, cm = this.cm, doc = cm.doc;\n      if (cm.somethingSelected()) {\n        this.prevInput = \"\";\n        var range = doc.sel.primary();\n        minimal = hasCopyEvent &&\n          (range.to().line - range.from().line > 100 || (selected = cm.getSelection()).length > 1000);\n        var content = minimal ? \"-\" : selected || cm.getSelection();\n        this.textarea.value = content;\n        if (cm.state.focused) selectInput(this.textarea);\n        if (ie && ie_version >= 9) this.hasSelection = content;\n      } else if (!typing) {\n        this.prevInput = this.textarea.value = \"\";\n        if (ie && ie_version >= 9) this.hasSelection = null;\n      }\n      this.inaccurateSelection = minimal;\n    },\n\n    getField: function() { return this.textarea; },\n\n    supportsTouch: function() { return false; },\n\n    focus: function() {\n      if (this.cm.options.readOnly != \"nocursor\" && (!mobile || activeElt() != this.textarea)) {\n        try { this.textarea.focus(); }\n        catch (e) {} // IE8 will throw if the textarea is display: none or not in DOM\n      }\n    },\n\n    blur: function() { this.textarea.blur(); },\n\n    resetPosition: function() {\n      this.wrapper.style.top = this.wrapper.style.left = 0;\n    },\n\n    receivedFocus: function() { this.slowPoll(); },\n\n    // Poll for input changes, using the normal rate of polling. This\n    // runs as long as the editor is focused.\n    slowPoll: function() {\n      var input = this;\n      if (input.pollingFast) return;\n      input.polling.set(this.cm.options.pollInterval, function() {\n        input.poll();\n        if (input.cm.state.focused) input.slowPoll();\n      });\n    },\n\n    // When an event has just come in that is likely to add or change\n    // something in the input textarea, we poll faster, to ensure that\n    // the change appears on the screen quickly.\n    fastPoll: function() {\n      var missed = false, input = this;\n      input.pollingFast = true;\n      function p() {\n        var changed = input.poll();\n        if (!changed && !missed) {missed = true; input.polling.set(60, p);}\n        else {input.pollingFast = false; input.slowPoll();}\n      }\n      input.polling.set(20, p);\n    },\n\n    // Read input from the textarea, and update the document to match.\n    // When something is selected, it is present in the textarea, and\n    // selected (unless it is huge, in which case a placeholder is\n    // used). When nothing is selected, the cursor sits after previously\n    // seen text (can be empty), which is stored in prevInput (we must\n    // not reset the textarea when typing, because that breaks IME).\n    poll: function() {\n      var cm = this.cm, input = this.textarea, prevInput = this.prevInput;\n      // Since this is called a *lot*, try to bail out as cheaply as\n      // possible when it is clear that nothing happened. hasSelection\n      // will be the case when there is a lot of text in the textarea,\n      // in which case reading its value would be expensive.\n      if (this.contextMenuPending || !cm.state.focused ||\n          (hasSelection(input) && !prevInput) ||\n          isReadOnly(cm) || cm.options.disableInput || cm.state.keySeq)\n        return false;\n\n      var text = input.value;\n      // If nothing changed, bail.\n      if (text == prevInput && !cm.somethingSelected()) return false;\n      // Work around nonsensical selection resetting in IE9/10, and\n      // inexplicable appearance of private area unicode characters on\n      // some key combos in Mac (#2689).\n      if (ie && ie_version >= 9 && this.hasSelection === text ||\n          mac && /[\\uf700-\\uf7ff]/.test(text)) {\n        cm.display.input.reset();\n        return false;\n      }\n\n      if (cm.doc.sel == cm.display.selForContextMenu) {\n        var first = text.charCodeAt(0);\n        if (first == 0x200b && !prevInput) prevInput = \"\\u200b\";\n        if (first == 0x21da) { this.reset(); return this.cm.execCommand(\"undo\"); }\n      }\n      // Find the part of the input that is actually new\n      var same = 0, l = Math.min(prevInput.length, text.length);\n      while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) ++same;\n\n      var self = this;\n      runInOp(cm, function() {\n        applyTextInput(cm, text.slice(same), prevInput.length - same,\n                       null, self.composing ? \"*compose\" : null);\n\n        // Don't leave long text in the textarea, since it makes further polling slow\n        if (text.length > 1000 || text.indexOf(\"\\n\") > -1) input.value = self.prevInput = \"\";\n        else self.prevInput = text;\n\n        if (self.composing) {\n          self.composing.range.clear();\n          self.composing.range = cm.markText(self.composing.start, cm.getCursor(\"to\"),\n                                             {className: \"CodeMirror-composing\"});\n        }\n      });\n      return true;\n    },\n\n    ensurePolled: function() {\n      if (this.pollingFast && this.poll()) this.pollingFast = false;\n    },\n\n    onKeyPress: function() {\n      if (ie && ie_version >= 9) this.hasSelection = null;\n      this.fastPoll();\n    },\n\n    onContextMenu: function(e) {\n      var input = this, cm = input.cm, display = cm.display, te = input.textarea;\n      var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop;\n      if (!pos || presto) return; // Opera is difficult.\n\n      // Reset the current text selection only if the click is done outside of the selection\n      // and 'resetSelectionOnContextMenu' option is true.\n      var reset = cm.options.resetSelectionOnContextMenu;\n      if (reset && cm.doc.sel.contains(pos) == -1)\n        operation(cm, setSelection)(cm.doc, simpleSelection(pos), sel_dontScroll);\n\n      var oldCSS = te.style.cssText;\n      input.wrapper.style.position = \"absolute\";\n      te.style.cssText = \"position: fixed; width: 30px; height: 30px; top: \" + (e.clientY - 5) +\n        \"px; left: \" + (e.clientX - 5) + \"px; z-index: 1000; background: \" +\n        (ie ? \"rgba(255, 255, 255, .05)\" : \"transparent\") +\n        \"; outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);\";\n      if (webkit) var oldScrollY = window.scrollY; // Work around Chrome issue (#2712)\n      display.input.focus();\n      if (webkit) window.scrollTo(null, oldScrollY);\n      display.input.reset();\n      // Adds \"Select all\" to context menu in FF\n      if (!cm.somethingSelected()) te.value = input.prevInput = \" \";\n      input.contextMenuPending = true;\n      display.selForContextMenu = cm.doc.sel;\n      clearTimeout(display.detectingSelectAll);\n\n      // Select-all will be greyed out if there's nothing to select, so\n      // this adds a zero-width space so that we can later check whether\n      // it got selected.\n      function prepareSelectAllHack() {\n        if (te.selectionStart != null) {\n          var selected = cm.somethingSelected();\n          var extval = \"\\u200b\" + (selected ? te.value : \"\");\n          te.value = \"\\u21da\"; // Used to catch context-menu undo\n          te.value = extval;\n          input.prevInput = selected ? \"\" : \"\\u200b\";\n          te.selectionStart = 1; te.selectionEnd = extval.length;\n          // Re-set this, in case some other handler touched the\n          // selection in the meantime.\n          display.selForContextMenu = cm.doc.sel;\n        }\n      }\n      function rehide() {\n        input.contextMenuPending = false;\n        input.wrapper.style.position = \"relative\";\n        te.style.cssText = oldCSS;\n        if (ie && ie_version < 9) display.scrollbars.setScrollTop(display.scroller.scrollTop = scrollPos);\n\n        // Try to detect the user choosing select-all\n        if (te.selectionStart != null) {\n          if (!ie || (ie && ie_version < 9)) prepareSelectAllHack();\n          var i = 0, poll = function() {\n            if (display.selForContextMenu == cm.doc.sel && te.selectionStart == 0 &&\n                te.selectionEnd > 0 && input.prevInput == \"\\u200b\")\n              operation(cm, commands.selectAll)(cm);\n            else if (i++ < 10) display.detectingSelectAll = setTimeout(poll, 500);\n            else display.input.reset();\n          };\n          display.detectingSelectAll = setTimeout(poll, 200);\n        }\n      }\n\n      if (ie && ie_version >= 9) prepareSelectAllHack();\n      if (captureRightClick) {\n        e_stop(e);\n        var mouseup = function() {\n          off(window, \"mouseup\", mouseup);\n          setTimeout(rehide, 20);\n        };\n        on(window, \"mouseup\", mouseup);\n      } else {\n        setTimeout(rehide, 50);\n      }\n    },\n\n    setUneditable: nothing,\n\n    needsContentAttribute: false\n  }, TextareaInput.prototype);\n\n  // CONTENTEDITABLE INPUT STYLE\n\n  function ContentEditableInput(cm) {\n    this.cm = cm;\n    this.lastAnchorNode = this.lastAnchorOffset = this.lastFocusNode = this.lastFocusOffset = null;\n    this.polling = new Delayed();\n    this.gracePeriod = false;\n  }\n\n  ContentEditableInput.prototype = copyObj({\n    init: function(display) {\n      var input = this, cm = input.cm;\n      var div = input.div = display.lineDiv;\n      div.contentEditable = \"true\";\n      disableBrowserMagic(div);\n\n      on(div, \"paste\", function(e) { handlePaste(e, cm); })\n\n      on(div, \"compositionstart\", function(e) {\n        var data = e.data;\n        input.composing = {sel: cm.doc.sel, data: data, startData: data};\n        if (!data) return;\n        var prim = cm.doc.sel.primary();\n        var line = cm.getLine(prim.head.line);\n        var found = line.indexOf(data, Math.max(0, prim.head.ch - data.length));\n        if (found > -1 && found <= prim.head.ch)\n          input.composing.sel = simpleSelection(Pos(prim.head.line, found),\n                                                Pos(prim.head.line, found + data.length));\n      });\n      on(div, \"compositionupdate\", function(e) {\n        input.composing.data = e.data;\n      });\n      on(div, \"compositionend\", function(e) {\n        var ours = input.composing;\n        if (!ours) return;\n        if (e.data != ours.startData && !/\\u200b/.test(e.data))\n          ours.data = e.data;\n        // Need a small delay to prevent other code (input event,\n        // selection polling) from doing damage when fired right after\n        // compositionend.\n        setTimeout(function() {\n          if (!ours.handled)\n            input.applyComposition(ours);\n          if (input.composing == ours)\n            input.composing = null;\n        }, 50);\n      });\n\n      on(div, \"touchstart\", function() {\n        input.forceCompositionEnd();\n      });\n\n      on(div, \"input\", function() {\n        if (input.composing) return;\n        if (!input.pollContent())\n          runInOp(input.cm, function() {regChange(cm);});\n      });\n\n      function onCopyCut(e) {\n        if (cm.somethingSelected()) {\n          lastCopied = cm.getSelections();\n          if (e.type == \"cut\") cm.replaceSelection(\"\", null, \"cut\");\n        } else if (!cm.options.lineWiseCopyCut) {\n          return;\n        } else {\n          var ranges = copyableRanges(cm);\n          lastCopied = ranges.text;\n          if (e.type == \"cut\") {\n            cm.operation(function() {\n              cm.setSelections(ranges.ranges, 0, sel_dontScroll);\n              cm.replaceSelection(\"\", null, \"cut\");\n            });\n          }\n        }\n        // iOS exposes the clipboard API, but seems to discard content inserted into it\n        if (e.clipboardData && !ios) {\n          e.preventDefault();\n          e.clipboardData.clearData();\n          e.clipboardData.setData(\"text/plain\", lastCopied.join(\"\\n\"));\n        } else {\n          // Old-fashioned briefly-focus-a-textarea hack\n          var kludge = hiddenTextarea(), te = kludge.firstChild;\n          cm.display.lineSpace.insertBefore(kludge, cm.display.lineSpace.firstChild);\n          te.value = lastCopied.join(\"\\n\");\n          var hadFocus = document.activeElement;\n          selectInput(te);\n          setTimeout(function() {\n            cm.display.lineSpace.removeChild(kludge);\n            hadFocus.focus();\n          }, 50);\n        }\n      }\n      on(div, \"copy\", onCopyCut);\n      on(div, \"cut\", onCopyCut);\n    },\n\n    prepareSelection: function() {\n      var result = prepareSelection(this.cm, false);\n      result.focus = this.cm.state.focused;\n      return result;\n    },\n\n    showSelection: function(info) {\n      if (!info || !this.cm.display.view.length) return;\n      if (info.focus) this.showPrimarySelection();\n      this.showMultipleSelections(info);\n    },\n\n    showPrimarySelection: function() {\n      var sel = window.getSelection(), prim = this.cm.doc.sel.primary();\n      var curAnchor = domToPos(this.cm, sel.anchorNode, sel.anchorOffset);\n      var curFocus = domToPos(this.cm, sel.focusNode, sel.focusOffset);\n      if (curAnchor && !curAnchor.bad && curFocus && !curFocus.bad &&\n          cmp(minPos(curAnchor, curFocus), prim.from()) == 0 &&\n          cmp(maxPos(curAnchor, curFocus), prim.to()) == 0)\n        return;\n\n      var start = posToDOM(this.cm, prim.from());\n      var end = posToDOM(this.cm, prim.to());\n      if (!start && !end) return;\n\n      var view = this.cm.display.view;\n      var old = sel.rangeCount && sel.getRangeAt(0);\n      if (!start) {\n        start = {node: view[0].measure.map[2], offset: 0};\n      } else if (!end) { // FIXME dangerously hacky\n        var measure = view[view.length - 1].measure;\n        var map = measure.maps ? measure.maps[measure.maps.length - 1] : measure.map;\n        end = {node: map[map.length - 1], offset: map[map.length - 2] - map[map.length - 3]};\n      }\n\n      try { var rng = range(start.node, start.offset, end.offset, end.node); }\n      catch(e) {} // Our model of the DOM might be outdated, in which case the range we try to set can be impossible\n      if (rng) {\n        sel.removeAllRanges();\n        sel.addRange(rng);\n        if (old && sel.anchorNode == null) sel.addRange(old);\n        else if (gecko) this.startGracePeriod();\n      }\n      this.rememberSelection();\n    },\n\n    startGracePeriod: function() {\n      var input = this;\n      clearTimeout(this.gracePeriod);\n      this.gracePeriod = setTimeout(function() {\n        input.gracePeriod = false;\n        if (input.selectionChanged())\n          input.cm.operation(function() { input.cm.curOp.selectionChanged = true; });\n      }, 20);\n    },\n\n    showMultipleSelections: function(info) {\n      removeChildrenAndAdd(this.cm.display.cursorDiv, info.cursors);\n      removeChildrenAndAdd(this.cm.display.selectionDiv, info.selection);\n    },\n\n    rememberSelection: function() {\n      var sel = window.getSelection();\n      this.lastAnchorNode = sel.anchorNode; this.lastAnchorOffset = sel.anchorOffset;\n      this.lastFocusNode = sel.focusNode; this.lastFocusOffset = sel.focusOffset;\n    },\n\n    selectionInEditor: function() {\n      var sel = window.getSelection();\n      if (!sel.rangeCount) return false;\n      var node = sel.getRangeAt(0).commonAncestorContainer;\n      return contains(this.div, node);\n    },\n\n    focus: function() {\n      if (this.cm.options.readOnly != \"nocursor\") this.div.focus();\n    },\n    blur: function() { this.div.blur(); },\n    getField: function() { return this.div; },\n\n    supportsTouch: function() { return true; },\n\n    receivedFocus: function() {\n      var input = this;\n      if (this.selectionInEditor())\n        this.pollSelection();\n      else\n        runInOp(this.cm, function() { input.cm.curOp.selectionChanged = true; });\n\n      function poll() {\n        if (input.cm.state.focused) {\n          input.pollSelection();\n          input.polling.set(input.cm.options.pollInterval, poll);\n        }\n      }\n      this.polling.set(this.cm.options.pollInterval, poll);\n    },\n\n    selectionChanged: function() {\n      var sel = window.getSelection();\n      return sel.anchorNode != this.lastAnchorNode || sel.anchorOffset != this.lastAnchorOffset ||\n        sel.focusNode != this.lastFocusNode || sel.focusOffset != this.lastFocusOffset;\n    },\n\n    pollSelection: function() {\n      if (!this.composing && !this.gracePeriod && this.selectionChanged()) {\n        var sel = window.getSelection(), cm = this.cm;\n        this.rememberSelection();\n        var anchor = domToPos(cm, sel.anchorNode, sel.anchorOffset);\n        var head = domToPos(cm, sel.focusNode, sel.focusOffset);\n        if (anchor && head) runInOp(cm, function() {\n          setSelection(cm.doc, simpleSelection(anchor, head), sel_dontScroll);\n          if (anchor.bad || head.bad) cm.curOp.selectionChanged = true;\n        });\n      }\n    },\n\n    pollContent: function() {\n      var cm = this.cm, display = cm.display, sel = cm.doc.sel.primary();\n      var from = sel.from(), to = sel.to();\n      if (from.line < display.viewFrom || to.line > display.viewTo - 1) return false;\n\n      var fromIndex;\n      if (from.line == display.viewFrom || (fromIndex = findViewIndex(cm, from.line)) == 0) {\n        var fromLine = lineNo(display.view[0].line);\n        var fromNode = display.view[0].node;\n      } else {\n        var fromLine = lineNo(display.view[fromIndex].line);\n        var fromNode = display.view[fromIndex - 1].node.nextSibling;\n      }\n      var toIndex = findViewIndex(cm, to.line);\n      if (toIndex == display.view.length - 1) {\n        var toLine = display.viewTo - 1;\n        var toNode = display.lineDiv.lastChild;\n      } else {\n        var toLine = lineNo(display.view[toIndex + 1].line) - 1;\n        var toNode = display.view[toIndex + 1].node.previousSibling;\n      }\n\n      var newText = splitLines(domTextBetween(cm, fromNode, toNode, fromLine, toLine));\n      var oldText = getBetween(cm.doc, Pos(fromLine, 0), Pos(toLine, getLine(cm.doc, toLine).text.length));\n      while (newText.length > 1 && oldText.length > 1) {\n        if (lst(newText) == lst(oldText)) { newText.pop(); oldText.pop(); toLine--; }\n        else if (newText[0] == oldText[0]) { newText.shift(); oldText.shift(); fromLine++; }\n        else break;\n      }\n\n      var cutFront = 0, cutEnd = 0;\n      var newTop = newText[0], oldTop = oldText[0], maxCutFront = Math.min(newTop.length, oldTop.length);\n      while (cutFront < maxCutFront && newTop.charCodeAt(cutFront) == oldTop.charCodeAt(cutFront))\n        ++cutFront;\n      var newBot = lst(newText), oldBot = lst(oldText);\n      var maxCutEnd = Math.min(newBot.length - (newText.length == 1 ? cutFront : 0),\n                               oldBot.length - (oldText.length == 1 ? cutFront : 0));\n      while (cutEnd < maxCutEnd &&\n             newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1))\n        ++cutEnd;\n\n      newText[newText.length - 1] = newBot.slice(0, newBot.length - cutEnd);\n      newText[0] = newText[0].slice(cutFront);\n\n      var chFrom = Pos(fromLine, cutFront);\n      var chTo = Pos(toLine, oldText.length ? lst(oldText).length - cutEnd : 0);\n      if (newText.length > 1 || newText[0] || cmp(chFrom, chTo)) {\n        replaceRange(cm.doc, newText, chFrom, chTo, \"+input\");\n        return true;\n      }\n    },\n\n    ensurePolled: function() {\n      this.forceCompositionEnd();\n    },\n    reset: function() {\n      this.forceCompositionEnd();\n    },\n    forceCompositionEnd: function() {\n      if (!this.composing || this.composing.handled) return;\n      this.applyComposition(this.composing);\n      this.composing.handled = true;\n      this.div.blur();\n      this.div.focus();\n    },\n    applyComposition: function(composing) {\n      if (composing.data && composing.data != composing.startData)\n        operation(this.cm, applyTextInput)(this.cm, composing.data, 0, composing.sel);\n    },\n\n    setUneditable: function(node) {\n      node.setAttribute(\"contenteditable\", \"false\");\n    },\n\n    onKeyPress: function(e) {\n      e.preventDefault();\n      operation(this.cm, applyTextInput)(this.cm, String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode), 0);\n    },\n\n    onContextMenu: nothing,\n    resetPosition: nothing,\n\n    needsContentAttribute: true\n  }, ContentEditableInput.prototype);\n\n  function posToDOM(cm, pos) {\n    var view = findViewForLine(cm, pos.line);\n    if (!view || view.hidden) return null;\n    var line = getLine(cm.doc, pos.line);\n    var info = mapFromLineView(view, line, pos.line);\n\n    var order = getOrder(line), side = \"left\";\n    if (order) {\n      var partPos = getBidiPartAt(order, pos.ch);\n      side = partPos % 2 ? \"right\" : \"left\";\n    }\n    var result = nodeAndOffsetInLineMap(info.map, pos.ch, side);\n    result.offset = result.collapse == \"right\" ? result.end : result.start;\n    return result;\n  }\n\n  function badPos(pos, bad) { if (bad) pos.bad = true; return pos; }\n\n  function domToPos(cm, node, offset) {\n    var lineNode;\n    if (node == cm.display.lineDiv) {\n      lineNode = cm.display.lineDiv.childNodes[offset];\n      if (!lineNode) return badPos(cm.clipPos(Pos(cm.display.viewTo - 1)), true);\n      node = null; offset = 0;\n    } else {\n      for (lineNode = node;; lineNode = lineNode.parentNode) {\n        if (!lineNode || lineNode == cm.display.lineDiv) return null;\n        if (lineNode.parentNode && lineNode.parentNode == cm.display.lineDiv) break;\n      }\n    }\n    for (var i = 0; i < cm.display.view.length; i++) {\n      var lineView = cm.display.view[i];\n      if (lineView.node == lineNode)\n        return locateNodeInLineView(lineView, node, offset);\n    }\n  }\n\n  function locateNodeInLineView(lineView, node, offset) {\n    var wrapper = lineView.text.firstChild, bad = false;\n    if (!node || !contains(wrapper, node)) return badPos(Pos(lineNo(lineView.line), 0), true);\n    if (node == wrapper) {\n      bad = true;\n      node = wrapper.childNodes[offset];\n      offset = 0;\n      if (!node) {\n        var line = lineView.rest ? lst(lineView.rest) : lineView.line;\n        return badPos(Pos(lineNo(line), line.text.length), bad);\n      }\n    }\n\n    var textNode = node.nodeType == 3 ? node : null, topNode = node;\n    if (!textNode && node.childNodes.length == 1 && node.firstChild.nodeType == 3) {\n      textNode = node.firstChild;\n      if (offset) offset = textNode.nodeValue.length;\n    }\n    while (topNode.parentNode != wrapper) topNode = topNode.parentNode;\n    var measure = lineView.measure, maps = measure.maps;\n\n    function find(textNode, topNode, offset) {\n      for (var i = -1; i < (maps ? maps.length : 0); i++) {\n        var map = i < 0 ? measure.map : maps[i];\n        for (var j = 0; j < map.length; j += 3) {\n          var curNode = map[j + 2];\n          if (curNode == textNode || curNode == topNode) {\n            var line = lineNo(i < 0 ? lineView.line : lineView.rest[i]);\n            var ch = map[j] + offset;\n            if (offset < 0 || curNode != textNode) ch = map[j + (offset ? 1 : 0)];\n            return Pos(line, ch);\n          }\n        }\n      }\n    }\n    var found = find(textNode, topNode, offset);\n    if (found) return badPos(found, bad);\n\n    // FIXME this is all really shaky. might handle the few cases it needs to handle, but likely to cause problems\n    for (var after = topNode.nextSibling, dist = textNode ? textNode.nodeValue.length - offset : 0; after; after = after.nextSibling) {\n      found = find(after, after.firstChild, 0);\n      if (found)\n        return badPos(Pos(found.line, found.ch - dist), bad);\n      else\n        dist += after.textContent.length;\n    }\n    for (var before = topNode.previousSibling, dist = offset; before; before = before.previousSibling) {\n      found = find(before, before.firstChild, -1);\n      if (found)\n        return badPos(Pos(found.line, found.ch + dist), bad);\n      else\n        dist += after.textContent.length;\n    }\n  }\n\n  function domTextBetween(cm, from, to, fromLine, toLine) {\n    var text = \"\", closing = false;\n    function recognizeMarker(id) { return function(marker) { return marker.id == id; }; }\n    function walk(node) {\n      if (node.nodeType == 1) {\n        var cmText = node.getAttribute(\"cm-text\");\n        if (cmText != null) {\n          if (cmText == \"\") cmText = node.textContent.replace(/\\u200b/g, \"\");\n          text += cmText;\n          return;\n        }\n        var markerID = node.getAttribute(\"cm-marker\"), range;\n        if (markerID) {\n          var found = cm.findMarks(Pos(fromLine, 0), Pos(toLine + 1, 0), recognizeMarker(+markerID));\n          if (found.length && (range = found[0].find()))\n            text += getBetween(cm.doc, range.from, range.to).join(\"\\n\");\n          return;\n        }\n        if (node.getAttribute(\"contenteditable\") == \"false\") return;\n        for (var i = 0; i < node.childNodes.length; i++)\n          walk(node.childNodes[i]);\n        if (/^(pre|div|p)$/i.test(node.nodeName))\n          closing = true;\n      } else if (node.nodeType == 3) {\n        var val = node.nodeValue;\n        if (!val) return;\n        if (closing) {\n          text += \"\\n\";\n          closing = false;\n        }\n        text += val;\n      }\n    }\n    for (;;) {\n      walk(from);\n      if (from == to) break;\n      from = from.nextSibling;\n    }\n    return text;\n  }\n\n  CodeMirror.inputStyles = {\"textarea\": TextareaInput, \"contenteditable\": ContentEditableInput};\n\n  // SELECTION / CURSOR\n\n  // Selection objects are immutable. A new one is created every time\n  // the selection changes. A selection is one or more non-overlapping\n  // (and non-touching) ranges, sorted, and an integer that indicates\n  // which one is the primary selection (the one that's scrolled into\n  // view, that getCursor returns, etc).\n  function Selection(ranges, primIndex) {\n    this.ranges = ranges;\n    this.primIndex = primIndex;\n  }\n\n  Selection.prototype = {\n    primary: function() { return this.ranges[this.primIndex]; },\n    equals: function(other) {\n      if (other == this) return true;\n      if (other.primIndex != this.primIndex || other.ranges.length != this.ranges.length) return false;\n      for (var i = 0; i < this.ranges.length; i++) {\n        var here = this.ranges[i], there = other.ranges[i];\n        if (cmp(here.anchor, there.anchor) != 0 || cmp(here.head, there.head) != 0) return false;\n      }\n      return true;\n    },\n    deepCopy: function() {\n      for (var out = [], i = 0; i < this.ranges.length; i++)\n        out[i] = new Range(copyPos(this.ranges[i].anchor), copyPos(this.ranges[i].head));\n      return new Selection(out, this.primIndex);\n    },\n    somethingSelected: function() {\n      for (var i = 0; i < this.ranges.length; i++)\n        if (!this.ranges[i].empty()) return true;\n      return false;\n    },\n    contains: function(pos, end) {\n      if (!end) end = pos;\n      for (var i = 0; i < this.ranges.length; i++) {\n        var range = this.ranges[i];\n        if (cmp(end, range.from()) >= 0 && cmp(pos, range.to()) <= 0)\n          return i;\n      }\n      return -1;\n    }\n  };\n\n  function Range(anchor, head) {\n    this.anchor = anchor; this.head = head;\n  }\n\n  Range.prototype = {\n    from: function() { return minPos(this.anchor, this.head); },\n    to: function() { return maxPos(this.anchor, this.head); },\n    empty: function() {\n      return this.head.line == this.anchor.line && this.head.ch == this.anchor.ch;\n    }\n  };\n\n  // Take an unsorted, potentially overlapping set of ranges, and\n  // build a selection out of it. 'Consumes' ranges array (modifying\n  // it).\n  function normalizeSelection(ranges, primIndex) {\n    var prim = ranges[primIndex];\n    ranges.sort(function(a, b) { return cmp(a.from(), b.from()); });\n    primIndex = indexOf(ranges, prim);\n    for (var i = 1; i < ranges.length; i++) {\n      var cur = ranges[i], prev = ranges[i - 1];\n      if (cmp(prev.to(), cur.from()) >= 0) {\n        var from = minPos(prev.from(), cur.from()), to = maxPos(prev.to(), cur.to());\n        var inv = prev.empty() ? cur.from() == cur.head : prev.from() == prev.head;\n        if (i <= primIndex) --primIndex;\n        ranges.splice(--i, 2, new Range(inv ? to : from, inv ? from : to));\n      }\n    }\n    return new Selection(ranges, primIndex);\n  }\n\n  function simpleSelection(anchor, head) {\n    return new Selection([new Range(anchor, head || anchor)], 0);\n  }\n\n  // Most of the external API clips given positions to make sure they\n  // actually exist within the document.\n  function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1));}\n  function clipPos(doc, pos) {\n    if (pos.line < doc.first) return Pos(doc.first, 0);\n    var last = doc.first + doc.size - 1;\n    if (pos.line > last) return Pos(last, getLine(doc, last).text.length);\n    return clipToLen(pos, getLine(doc, pos.line).text.length);\n  }\n  function clipToLen(pos, linelen) {\n    var ch = pos.ch;\n    if (ch == null || ch > linelen) return Pos(pos.line, linelen);\n    else if (ch < 0) return Pos(pos.line, 0);\n    else return pos;\n  }\n  function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size;}\n  function clipPosArray(doc, array) {\n    for (var out = [], i = 0; i < array.length; i++) out[i] = clipPos(doc, array[i]);\n    return out;\n  }\n\n  // SELECTION UPDATES\n\n  // The 'scroll' parameter given to many of these indicated whether\n  // the new cursor position should be scrolled into view after\n  // modifying the selection.\n\n  // If shift is held or the extend flag is set, extends a range to\n  // include a given position (and optionally a second position).\n  // Otherwise, simply returns the range between the given positions.\n  // Used for cursor motion and such.\n  function extendRange(doc, range, head, other) {\n    if (doc.cm && doc.cm.display.shift || doc.extend) {\n      var anchor = range.anchor;\n      if (other) {\n        var posBefore = cmp(head, anchor) < 0;\n        if (posBefore != (cmp(other, anchor) < 0)) {\n          anchor = head;\n          head = other;\n        } else if (posBefore != (cmp(head, other) < 0)) {\n          head = other;\n        }\n      }\n      return new Range(anchor, head);\n    } else {\n      return new Range(other || head, head);\n    }\n  }\n\n  // Extend the primary selection range, discard the rest.\n  function extendSelection(doc, head, other, options) {\n    setSelection(doc, new Selection([extendRange(doc, doc.sel.primary(), head, other)], 0), options);\n  }\n\n  // Extend all selections (pos is an array of selections with length\n  // equal the number of selections)\n  function extendSelections(doc, heads, options) {\n    for (var out = [], i = 0; i < doc.sel.ranges.length; i++)\n      out[i] = extendRange(doc, doc.sel.ranges[i], heads[i], null);\n    var newSel = normalizeSelection(out, doc.sel.primIndex);\n    setSelection(doc, newSel, options);\n  }\n\n  // Updates a single range in the selection.\n  function replaceOneSelection(doc, i, range, options) {\n    var ranges = doc.sel.ranges.slice(0);\n    ranges[i] = range;\n    setSelection(doc, normalizeSelection(ranges, doc.sel.primIndex), options);\n  }\n\n  // Reset the selection to a single range.\n  function setSimpleSelection(doc, anchor, head, options) {\n    setSelection(doc, simpleSelection(anchor, head), options);\n  }\n\n  // Give beforeSelectionChange handlers a change to influence a\n  // selection update.\n  function filterSelectionChange(doc, sel) {\n    var obj = {\n      ranges: sel.ranges,\n      update: function(ranges) {\n        this.ranges = [];\n        for (var i = 0; i < ranges.length; i++)\n          this.ranges[i] = new Range(clipPos(doc, ranges[i].anchor),\n                                     clipPos(doc, ranges[i].head));\n      }\n    };\n    signal(doc, \"beforeSelectionChange\", doc, obj);\n    if (doc.cm) signal(doc.cm, \"beforeSelectionChange\", doc.cm, obj);\n    if (obj.ranges != sel.ranges) return normalizeSelection(obj.ranges, obj.ranges.length - 1);\n    else return sel;\n  }\n\n  function setSelectionReplaceHistory(doc, sel, options) {\n    var done = doc.history.done, last = lst(done);\n    if (last && last.ranges) {\n      done[done.length - 1] = sel;\n      setSelectionNoUndo(doc, sel, options);\n    } else {\n      setSelection(doc, sel, options);\n    }\n  }\n\n  // Set a new selection.\n  function setSelection(doc, sel, options) {\n    setSelectionNoUndo(doc, sel, options);\n    addSelectionToHistory(doc, doc.sel, doc.cm ? doc.cm.curOp.id : NaN, options);\n  }\n\n  function setSelectionNoUndo(doc, sel, options) {\n    if (hasHandler(doc, \"beforeSelectionChange\") || doc.cm && hasHandler(doc.cm, \"beforeSelectionChange\"))\n      sel = filterSelectionChange(doc, sel);\n\n    var bias = options && options.bias ||\n      (cmp(sel.primary().head, doc.sel.primary().head) < 0 ? -1 : 1);\n    setSelectionInner(doc, skipAtomicInSelection(doc, sel, bias, true));\n\n    if (!(options && options.scroll === false) && doc.cm)\n      ensureCursorVisible(doc.cm);\n  }\n\n  function setSelectionInner(doc, sel) {\n    if (sel.equals(doc.sel)) return;\n\n    doc.sel = sel;\n\n    if (doc.cm) {\n      doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged = true;\n      signalCursorActivity(doc.cm);\n    }\n    signalLater(doc, \"cursorActivity\", doc);\n  }\n\n  // Verify that the selection does not partially select any atomic\n  // marked ranges.\n  function reCheckSelection(doc) {\n    setSelectionInner(doc, skipAtomicInSelection(doc, doc.sel, null, false), sel_dontScroll);\n  }\n\n  // Return a selection that does not partially select any atomic\n  // ranges.\n  function skipAtomicInSelection(doc, sel, bias, mayClear) {\n    var out;\n    for (var i = 0; i < sel.ranges.length; i++) {\n      var range = sel.ranges[i];\n      var newAnchor = skipAtomic(doc, range.anchor, bias, mayClear);\n      var newHead = skipAtomic(doc, range.head, bias, mayClear);\n      if (out || newAnchor != range.anchor || newHead != range.head) {\n        if (!out) out = sel.ranges.slice(0, i);\n        out[i] = new Range(newAnchor, newHead);\n      }\n    }\n    return out ? normalizeSelection(out, sel.primIndex) : sel;\n  }\n\n  // Ensure a given position is not inside an atomic range.\n  function skipAtomic(doc, pos, bias, mayClear) {\n    var flipped = false, curPos = pos;\n    var dir = bias || 1;\n    doc.cantEdit = false;\n    search: for (;;) {\n      var line = getLine(doc, curPos.line);\n      if (line.markedSpans) {\n        for (var i = 0; i < line.markedSpans.length; ++i) {\n          var sp = line.markedSpans[i], m = sp.marker;\n          if ((sp.from == null || (m.inclusiveLeft ? sp.from <= curPos.ch : sp.from < curPos.ch)) &&\n              (sp.to == null || (m.inclusiveRight ? sp.to >= curPos.ch : sp.to > curPos.ch))) {\n            if (mayClear) {\n              signal(m, \"beforeCursorEnter\");\n              if (m.explicitlyCleared) {\n                if (!line.markedSpans) break;\n                else {--i; continue;}\n              }\n            }\n            if (!m.atomic) continue;\n            var newPos = m.find(dir < 0 ? -1 : 1);\n            if (cmp(newPos, curPos) == 0) {\n              newPos.ch += dir;\n              if (newPos.ch < 0) {\n                if (newPos.line > doc.first) newPos = clipPos(doc, Pos(newPos.line - 1));\n                else newPos = null;\n              } else if (newPos.ch > line.text.length) {\n                if (newPos.line < doc.first + doc.size - 1) newPos = Pos(newPos.line + 1, 0);\n                else newPos = null;\n              }\n              if (!newPos) {\n                if (flipped) {\n                  // Driven in a corner -- no valid cursor position found at all\n                  // -- try again *with* clearing, if we didn't already\n                  if (!mayClear) return skipAtomic(doc, pos, bias, true);\n                  // Otherwise, turn off editing until further notice, and return the start of the doc\n                  doc.cantEdit = true;\n                  return Pos(doc.first, 0);\n                }\n                flipped = true; newPos = pos; dir = -dir;\n              }\n            }\n            curPos = newPos;\n            continue search;\n          }\n        }\n      }\n      return curPos;\n    }\n  }\n\n  // SELECTION DRAWING\n\n  function updateSelection(cm) {\n    cm.display.input.showSelection(cm.display.input.prepareSelection());\n  }\n\n  function prepareSelection(cm, primary) {\n    var doc = cm.doc, result = {};\n    var curFragment = result.cursors = document.createDocumentFragment();\n    var selFragment = result.selection = document.createDocumentFragment();\n\n    for (var i = 0; i < doc.sel.ranges.length; i++) {\n      if (primary === false && i == doc.sel.primIndex) continue;\n      var range = doc.sel.ranges[i];\n      var collapsed = range.empty();\n      if (collapsed || cm.options.showCursorWhenSelecting)\n        drawSelectionCursor(cm, range, curFragment);\n      if (!collapsed)\n        drawSelectionRange(cm, range, selFragment);\n    }\n    return result;\n  }\n\n  // Draws a cursor for the given range\n  function drawSelectionCursor(cm, range, output) {\n    var pos = cursorCoords(cm, range.head, \"div\", null, null, !cm.options.singleCursorHeightPerLine);\n\n    var cursor = output.appendChild(elt(\"div\", \"\\u00a0\", \"CodeMirror-cursor\"));\n    cursor.style.left = pos.left + \"px\";\n    cursor.style.top = pos.top + \"px\";\n    cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + \"px\";\n\n    if (pos.other) {\n      // Secondary cursor, shown when on a 'jump' in bi-directional text\n      var otherCursor = output.appendChild(elt(\"div\", \"\\u00a0\", \"CodeMirror-cursor CodeMirror-secondarycursor\"));\n      otherCursor.style.display = \"\";\n      otherCursor.style.left = pos.other.left + \"px\";\n      otherCursor.style.top = pos.other.top + \"px\";\n      otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + \"px\";\n    }\n  }\n\n  // Draws the given range as a highlighted selection\n  function drawSelectionRange(cm, range, output) {\n    var display = cm.display, doc = cm.doc;\n    var fragment = document.createDocumentFragment();\n    var padding = paddingH(cm.display), leftSide = padding.left;\n    var rightSide = Math.max(display.sizerWidth, displayWidth(cm) - display.sizer.offsetLeft) - padding.right;\n\n    function add(left, top, width, bottom) {\n      if (top < 0) top = 0;\n      top = Math.round(top);\n      bottom = Math.round(bottom);\n      fragment.appendChild(elt(\"div\", null, \"CodeMirror-selected\", \"position: absolute; left: \" + left +\n                               \"px; top: \" + top + \"px; width: \" + (width == null ? rightSide - left : width) +\n                               \"px; height: \" + (bottom - top) + \"px\"));\n    }\n\n    function drawForLine(line, fromArg, toArg) {\n      var lineObj = getLine(doc, line);\n      var lineLen = lineObj.text.length;\n      var start, end;\n      function coords(ch, bias) {\n        return charCoords(cm, Pos(line, ch), \"div\", lineObj, bias);\n      }\n\n      iterateBidiSections(getOrder(lineObj), fromArg || 0, toArg == null ? lineLen : toArg, function(from, to, dir) {\n        var leftPos = coords(from, \"left\"), rightPos, left, right;\n        if (from == to) {\n          rightPos = leftPos;\n          left = right = leftPos.left;\n        } else {\n          rightPos = coords(to - 1, \"right\");\n          if (dir == \"rtl\") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp; }\n          left = leftPos.left;\n          right = rightPos.right;\n        }\n        if (fromArg == null && from == 0) left = leftSide;\n        if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part\n          add(left, leftPos.top, null, leftPos.bottom);\n          left = leftSide;\n          if (leftPos.bottom < rightPos.top) add(left, leftPos.bottom, null, rightPos.top);\n        }\n        if (toArg == null && to == lineLen) right = rightSide;\n        if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left)\n          start = leftPos;\n        if (!end || rightPos.bottom > end.bottom || rightPos.bottom == end.bottom && rightPos.right > end.right)\n          end = rightPos;\n        if (left < leftSide + 1) left = leftSide;\n        add(left, rightPos.top, right - left, rightPos.bottom);\n      });\n      return {start: start, end: end};\n    }\n\n    var sFrom = range.from(), sTo = range.to();\n    if (sFrom.line == sTo.line) {\n      drawForLine(sFrom.line, sFrom.ch, sTo.ch);\n    } else {\n      var fromLine = getLine(doc, sFrom.line), toLine = getLine(doc, sTo.line);\n      var singleVLine = visualLine(fromLine) == visualLine(toLine);\n      var leftEnd = drawForLine(sFrom.line, sFrom.ch, singleVLine ? fromLine.text.length + 1 : null).end;\n      var rightStart = drawForLine(sTo.line, singleVLine ? 0 : null, sTo.ch).start;\n      if (singleVLine) {\n        if (leftEnd.top < rightStart.top - 2) {\n          add(leftEnd.right, leftEnd.top, null, leftEnd.bottom);\n          add(leftSide, rightStart.top, rightStart.left, rightStart.bottom);\n        } else {\n          add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom);\n        }\n      }\n      if (leftEnd.bottom < rightStart.top)\n        add(leftSide, leftEnd.bottom, null, rightStart.top);\n    }\n\n    output.appendChild(fragment);\n  }\n\n  // Cursor-blinking\n  function restartBlink(cm) {\n    if (!cm.state.focused) return;\n    var display = cm.display;\n    clearInterval(display.blinker);\n    var on = true;\n    display.cursorDiv.style.visibility = \"\";\n    if (cm.options.cursorBlinkRate > 0)\n      display.blinker = setInterval(function() {\n        display.cursorDiv.style.visibility = (on = !on) ? \"\" : \"hidden\";\n      }, cm.options.cursorBlinkRate);\n    else if (cm.options.cursorBlinkRate < 0)\n      display.cursorDiv.style.visibility = \"hidden\";\n  }\n\n  // HIGHLIGHT WORKER\n\n  function startWorker(cm, time) {\n    if (cm.doc.mode.startState && cm.doc.frontier < cm.display.viewTo)\n      cm.state.highlight.set(time, bind(highlightWorker, cm));\n  }\n\n  function highlightWorker(cm) {\n    var doc = cm.doc;\n    if (doc.frontier < doc.first) doc.frontier = doc.first;\n    if (doc.frontier >= cm.display.viewTo) return;\n    var end = +new Date + cm.options.workTime;\n    var state = copyState(doc.mode, getStateBefore(cm, doc.frontier));\n    var changedLines = [];\n\n    doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function(line) {\n      if (doc.frontier >= cm.display.viewFrom) { // Visible\n        var oldStyles = line.styles;\n        var highlighted = highlightLine(cm, line, state, true);\n        line.styles = highlighted.styles;\n        var oldCls = line.styleClasses, newCls = highlighted.classes;\n        if (newCls) line.styleClasses = newCls;\n        else if (oldCls) line.styleClasses = null;\n        var ischange = !oldStyles || oldStyles.length != line.styles.length ||\n          oldCls != newCls && (!oldCls || !newCls || oldCls.bgClass != newCls.bgClass || oldCls.textClass != newCls.textClass);\n        for (var i = 0; !ischange && i < oldStyles.length; ++i) ischange = oldStyles[i] != line.styles[i];\n        if (ischange) changedLines.push(doc.frontier);\n        line.stateAfter = copyState(doc.mode, state);\n      } else {\n        processLine(cm, line.text, state);\n        line.stateAfter = doc.frontier % 5 == 0 ? copyState(doc.mode, state) : null;\n      }\n      ++doc.frontier;\n      if (+new Date > end) {\n        startWorker(cm, cm.options.workDelay);\n        return true;\n      }\n    });\n    if (changedLines.length) runInOp(cm, function() {\n      for (var i = 0; i < changedLines.length; i++)\n        regLineChange(cm, changedLines[i], \"text\");\n    });\n  }\n\n  // Finds the line to start with when starting a parse. Tries to\n  // find a line with a stateAfter, so that it can start with a\n  // valid state. If that fails, it returns the line with the\n  // smallest indentation, which tends to need the least context to\n  // parse correctly.\n  function findStartLine(cm, n, precise) {\n    var minindent, minline, doc = cm.doc;\n    var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100);\n    for (var search = n; search > lim; --search) {\n      if (search <= doc.first) return doc.first;\n      var line = getLine(doc, search - 1);\n      if (line.stateAfter && (!precise || search <= doc.frontier)) return search;\n      var indented = countColumn(line.text, null, cm.options.tabSize);\n      if (minline == null || minindent > indented) {\n        minline = search - 1;\n        minindent = indented;\n      }\n    }\n    return minline;\n  }\n\n  function getStateBefore(cm, n, precise) {\n    var doc = cm.doc, display = cm.display;\n    if (!doc.mode.startState) return true;\n    var pos = findStartLine(cm, n, precise), state = pos > doc.first && getLine(doc, pos-1).stateAfter;\n    if (!state) state = startState(doc.mode);\n    else state = copyState(doc.mode, state);\n    doc.iter(pos, n, function(line) {\n      processLine(cm, line.text, state);\n      var save = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo;\n      line.stateAfter = save ? copyState(doc.mode, state) : null;\n      ++pos;\n    });\n    if (precise) doc.frontier = pos;\n    return state;\n  }\n\n  // POSITION MEASUREMENT\n\n  function paddingTop(display) {return display.lineSpace.offsetTop;}\n  function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight;}\n  function paddingH(display) {\n    if (display.cachedPaddingH) return display.cachedPaddingH;\n    var e = removeChildrenAndAdd(display.measure, elt(\"pre\", \"x\"));\n    var style = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle;\n    var data = {left: parseInt(style.paddingLeft), right: parseInt(style.paddingRight)};\n    if (!isNaN(data.left) && !isNaN(data.right)) display.cachedPaddingH = data;\n    return data;\n  }\n\n  function scrollGap(cm) { return scrollerGap - cm.display.nativeBarWidth; }\n  function displayWidth(cm) {\n    return cm.display.scroller.clientWidth - scrollGap(cm) - cm.display.barWidth;\n  }\n  function displayHeight(cm) {\n    return cm.display.scroller.clientHeight - scrollGap(cm) - cm.display.barHeight;\n  }\n\n  // Ensure the lineView.wrapping.heights array is populated. This is\n  // an array of bottom offsets for the lines that make up a drawn\n  // line. When lineWrapping is on, there might be more than one\n  // height.\n  function ensureLineHeights(cm, lineView, rect) {\n    var wrapping = cm.options.lineWrapping;\n    var curWidth = wrapping && displayWidth(cm);\n    if (!lineView.measure.heights || wrapping && lineView.measure.width != curWidth) {\n      var heights = lineView.measure.heights = [];\n      if (wrapping) {\n        lineView.measure.width = curWidth;\n        var rects = lineView.text.firstChild.getClientRects();\n        for (var i = 0; i < rects.length - 1; i++) {\n          var cur = rects[i], next = rects[i + 1];\n          if (Math.abs(cur.bottom - next.bottom) > 2)\n            heights.push((cur.bottom + next.top) / 2 - rect.top);\n        }\n      }\n      heights.push(rect.bottom - rect.top);\n    }\n  }\n\n  // Find a line map (mapping character offsets to text nodes) and a\n  // measurement cache for the given line number. (A line view might\n  // contain multiple lines when collapsed ranges are present.)\n  function mapFromLineView(lineView, line, lineN) {\n    if (lineView.line == line)\n      return {map: lineView.measure.map, cache: lineView.measure.cache};\n    for (var i = 0; i < lineView.rest.length; i++)\n      if (lineView.rest[i] == line)\n        return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]};\n    for (var i = 0; i < lineView.rest.length; i++)\n      if (lineNo(lineView.rest[i]) > lineN)\n        return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i], before: true};\n  }\n\n  // Render a line into the hidden node display.externalMeasured. Used\n  // when measurement is needed for a line that's not in the viewport.\n  function updateExternalMeasurement(cm, line) {\n    line = visualLine(line);\n    var lineN = lineNo(line);\n    var view = cm.display.externalMeasured = new LineView(cm.doc, line, lineN);\n    view.lineN = lineN;\n    var built = view.built = buildLineContent(cm, view);\n    view.text = built.pre;\n    removeChildrenAndAdd(cm.display.lineMeasure, built.pre);\n    return view;\n  }\n\n  // Get a {top, bottom, left, right} box (in line-local coordinates)\n  // for a given character.\n  function measureChar(cm, line, ch, bias) {\n    return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias);\n  }\n\n  // Find a line view that corresponds to the given line number.\n  function findViewForLine(cm, lineN) {\n    if (lineN >= cm.display.viewFrom && lineN < cm.display.viewTo)\n      return cm.display.view[findViewIndex(cm, lineN)];\n    var ext = cm.display.externalMeasured;\n    if (ext && lineN >= ext.lineN && lineN < ext.lineN + ext.size)\n      return ext;\n  }\n\n  // Measurement can be split in two steps, the set-up work that\n  // applies to the whole line, and the measurement of the actual\n  // character. Functions like coordsChar, that need to do a lot of\n  // measurements in a row, can thus ensure that the set-up work is\n  // only done once.\n  function prepareMeasureForLine(cm, line) {\n    var lineN = lineNo(line);\n    var view = findViewForLine(cm, lineN);\n    if (view && !view.text)\n      view = null;\n    else if (view && view.changes)\n      updateLineForChanges(cm, view, lineN, getDimensions(cm));\n    if (!view)\n      view = updateExternalMeasurement(cm, line);\n\n    var info = mapFromLineView(view, line, lineN);\n    return {\n      line: line, view: view, rect: null,\n      map: info.map, cache: info.cache, before: info.before,\n      hasHeights: false\n    };\n  }\n\n  // Given a prepared measurement object, measures the position of an\n  // actual character (or fetches it from the cache).\n  function measureCharPrepared(cm, prepared, ch, bias, varHeight) {\n    if (prepared.before) ch = -1;\n    var key = ch + (bias || \"\"), found;\n    if (prepared.cache.hasOwnProperty(key)) {\n      found = prepared.cache[key];\n    } else {\n      if (!prepared.rect)\n        prepared.rect = prepared.view.text.getBoundingClientRect();\n      if (!prepared.hasHeights) {\n        ensureLineHeights(cm, prepared.view, prepared.rect);\n        prepared.hasHeights = true;\n      }\n      found = measureCharInner(cm, prepared, ch, bias);\n      if (!found.bogus) prepared.cache[key] = found;\n    }\n    return {left: found.left, right: found.right,\n            top: varHeight ? found.rtop : found.top,\n            bottom: varHeight ? found.rbottom : found.bottom};\n  }\n\n  var nullRect = {left: 0, right: 0, top: 0, bottom: 0};\n\n  function nodeAndOffsetInLineMap(map, ch, bias) {\n    var node, start, end, collapse;\n    // First, search the line map for the text node corresponding to,\n    // or closest to, the target character.\n    for (var i = 0; i < map.length; i += 3) {\n      var mStart = map[i], mEnd = map[i + 1];\n      if (ch < mStart) {\n        start = 0; end = 1;\n        collapse = \"left\";\n      } else if (ch < mEnd) {\n        start = ch - mStart;\n        end = start + 1;\n      } else if (i == map.length - 3 || ch == mEnd && map[i + 3] > ch) {\n        end = mEnd - mStart;\n        start = end - 1;\n        if (ch >= mEnd) collapse = \"right\";\n      }\n      if (start != null) {\n        node = map[i + 2];\n        if (mStart == mEnd && bias == (node.insertLeft ? \"left\" : \"right\"))\n          collapse = bias;\n        if (bias == \"left\" && start == 0)\n          while (i && map[i - 2] == map[i - 3] && map[i - 1].insertLeft) {\n            node = map[(i -= 3) + 2];\n            collapse = \"left\";\n          }\n        if (bias == \"right\" && start == mEnd - mStart)\n          while (i < map.length - 3 && map[i + 3] == map[i + 4] && !map[i + 5].insertLeft) {\n            node = map[(i += 3) + 2];\n            collapse = \"right\";\n          }\n        break;\n      }\n    }\n    return {node: node, start: start, end: end, collapse: collapse, coverStart: mStart, coverEnd: mEnd};\n  }\n\n  function measureCharInner(cm, prepared, ch, bias) {\n    var place = nodeAndOffsetInLineMap(prepared.map, ch, bias);\n    var node = place.node, start = place.start, end = place.end, collapse = place.collapse;\n\n    var rect;\n    if (node.nodeType == 3) { // If it is a text node, use a range to retrieve the coordinates.\n      for (var i = 0; i < 4; i++) { // Retry a maximum of 4 times when nonsense rectangles are returned\n        while (start && isExtendingChar(prepared.line.text.charAt(place.coverStart + start))) --start;\n        while (place.coverStart + end < place.coverEnd && isExtendingChar(prepared.line.text.charAt(place.coverStart + end))) ++end;\n        if (ie && ie_version < 9 && start == 0 && end == place.coverEnd - place.coverStart) {\n          rect = node.parentNode.getBoundingClientRect();\n        } else if (ie && cm.options.lineWrapping) {\n          var rects = range(node, start, end).getClientRects();\n          if (rects.length)\n            rect = rects[bias == \"right\" ? rects.length - 1 : 0];\n          else\n            rect = nullRect;\n        } else {\n          rect = range(node, start, end).getBoundingClientRect() || nullRect;\n        }\n        if (rect.left || rect.right || start == 0) break;\n        end = start;\n        start = start - 1;\n        collapse = \"right\";\n      }\n      if (ie && ie_version < 11) rect = maybeUpdateRectForZooming(cm.display.measure, rect);\n    } else { // If it is a widget, simply get the box for the whole widget.\n      if (start > 0) collapse = bias = \"right\";\n      var rects;\n      if (cm.options.lineWrapping && (rects = node.getClientRects()).length > 1)\n        rect = rects[bias == \"right\" ? rects.length - 1 : 0];\n      else\n        rect = node.getBoundingClientRect();\n    }\n    if (ie && ie_version < 9 && !start && (!rect || !rect.left && !rect.right)) {\n      var rSpan = node.parentNode.getClientRects()[0];\n      if (rSpan)\n        rect = {left: rSpan.left, right: rSpan.left + charWidth(cm.display), top: rSpan.top, bottom: rSpan.bottom};\n      else\n        rect = nullRect;\n    }\n\n    var rtop = rect.top - prepared.rect.top, rbot = rect.bottom - prepared.rect.top;\n    var mid = (rtop + rbot) / 2;\n    var heights = prepared.view.measure.heights;\n    for (var i = 0; i < heights.length - 1; i++)\n      if (mid < heights[i]) break;\n    var top = i ? heights[i - 1] : 0, bot = heights[i];\n    var result = {left: (collapse == \"right\" ? rect.right : rect.left) - prepared.rect.left,\n                  right: (collapse == \"left\" ? rect.left : rect.right) - prepared.rect.left,\n                  top: top, bottom: bot};\n    if (!rect.left && !rect.right) result.bogus = true;\n    if (!cm.options.singleCursorHeightPerLine) { result.rtop = rtop; result.rbottom = rbot; }\n\n    return result;\n  }\n\n  // Work around problem with bounding client rects on ranges being\n  // returned incorrectly when zoomed on IE10 and below.\n  function maybeUpdateRectForZooming(measure, rect) {\n    if (!window.screen || screen.logicalXDPI == null ||\n        screen.logicalXDPI == screen.deviceXDPI || !hasBadZoomedRects(measure))\n      return rect;\n    var scaleX = screen.logicalXDPI / screen.deviceXDPI;\n    var scaleY = screen.logicalYDPI / screen.deviceYDPI;\n    return {left: rect.left * scaleX, right: rect.right * scaleX,\n            top: rect.top * scaleY, bottom: rect.bottom * scaleY};\n  }\n\n  function clearLineMeasurementCacheFor(lineView) {\n    if (lineView.measure) {\n      lineView.measure.cache = {};\n      lineView.measure.heights = null;\n      if (lineView.rest) for (var i = 0; i < lineView.rest.length; i++)\n        lineView.measure.caches[i] = {};\n    }\n  }\n\n  function clearLineMeasurementCache(cm) {\n    cm.display.externalMeasure = null;\n    removeChildren(cm.display.lineMeasure);\n    for (var i = 0; i < cm.display.view.length; i++)\n      clearLineMeasurementCacheFor(cm.display.view[i]);\n  }\n\n  function clearCaches(cm) {\n    clearLineMeasurementCache(cm);\n    cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null;\n    if (!cm.options.lineWrapping) cm.display.maxLineChanged = true;\n    cm.display.lineNumChars = null;\n  }\n\n  function pageScrollX() { return window.pageXOffset || (document.documentElement || document.body).scrollLeft; }\n  function pageScrollY() { return window.pageYOffset || (document.documentElement || document.body).scrollTop; }\n\n  // Converts a {top, bottom, left, right} box from line-local\n  // coordinates into another coordinate system. Context may be one of\n  // \"line\", \"div\" (display.lineDiv), \"local\"/null (editor), \"window\",\n  // or \"page\".\n  function intoCoordSystem(cm, lineObj, rect, context) {\n    if (lineObj.widgets) for (var i = 0; i < lineObj.widgets.length; ++i) if (lineObj.widgets[i].above) {\n      var size = widgetHeight(lineObj.widgets[i]);\n      rect.top += size; rect.bottom += size;\n    }\n    if (context == \"line\") return rect;\n    if (!context) context = \"local\";\n    var yOff = heightAtLine(lineObj);\n    if (context == \"local\") yOff += paddingTop(cm.display);\n    else yOff -= cm.display.viewOffset;\n    if (context == \"page\" || context == \"window\") {\n      var lOff = cm.display.lineSpace.getBoundingClientRect();\n      yOff += lOff.top + (context == \"window\" ? 0 : pageScrollY());\n      var xOff = lOff.left + (context == \"window\" ? 0 : pageScrollX());\n      rect.left += xOff; rect.right += xOff;\n    }\n    rect.top += yOff; rect.bottom += yOff;\n    return rect;\n  }\n\n  // Coverts a box from \"div\" coords to another coordinate system.\n  // Context may be \"window\", \"page\", \"div\", or \"local\"/null.\n  function fromCoordSystem(cm, coords, context) {\n    if (context == \"div\") return coords;\n    var left = coords.left, top = coords.top;\n    // First move into \"page\" coordinate system\n    if (context == \"page\") {\n      left -= pageScrollX();\n      top -= pageScrollY();\n    } else if (context == \"local\" || !context) {\n      var localBox = cm.display.sizer.getBoundingClientRect();\n      left += localBox.left;\n      top += localBox.top;\n    }\n\n    var lineSpaceBox = cm.display.lineSpace.getBoundingClientRect();\n    return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top};\n  }\n\n  function charCoords(cm, pos, context, lineObj, bias) {\n    if (!lineObj) lineObj = getLine(cm.doc, pos.line);\n    return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context);\n  }\n\n  // Returns a box for a given cursor position, which may have an\n  // 'other' property containing the position of the secondary cursor\n  // on a bidi boundary.\n  function cursorCoords(cm, pos, context, lineObj, preparedMeasure, varHeight) {\n    lineObj = lineObj || getLine(cm.doc, pos.line);\n    if (!preparedMeasure) preparedMeasure = prepareMeasureForLine(cm, lineObj);\n    function get(ch, right) {\n      var m = measureCharPrepared(cm, preparedMeasure, ch, right ? \"right\" : \"left\", varHeight);\n      if (right) m.left = m.right; else m.right = m.left;\n      return intoCoordSystem(cm, lineObj, m, context);\n    }\n    function getBidi(ch, partPos) {\n      var part = order[partPos], right = part.level % 2;\n      if (ch == bidiLeft(part) && partPos && part.level < order[partPos - 1].level) {\n        part = order[--partPos];\n        ch = bidiRight(part) - (part.level % 2 ? 0 : 1);\n        right = true;\n      } else if (ch == bidiRight(part) && partPos < order.length - 1 && part.level < order[partPos + 1].level) {\n        part = order[++partPos];\n        ch = bidiLeft(part) - part.level % 2;\n        right = false;\n      }\n      if (right && ch == part.to && ch > part.from) return get(ch - 1);\n      return get(ch, right);\n    }\n    var order = getOrder(lineObj), ch = pos.ch;\n    if (!order) return get(ch);\n    var partPos = getBidiPartAt(order, ch);\n    var val = getBidi(ch, partPos);\n    if (bidiOther != null) val.other = getBidi(ch, bidiOther);\n    return val;\n  }\n\n  // Used to cheaply estimate the coordinates for a position. Used for\n  // intermediate scroll updates.\n  function estimateCoords(cm, pos) {\n    var left = 0, pos = clipPos(cm.doc, pos);\n    if (!cm.options.lineWrapping) left = charWidth(cm.display) * pos.ch;\n    var lineObj = getLine(cm.doc, pos.line);\n    var top = heightAtLine(lineObj) + paddingTop(cm.display);\n    return {left: left, right: left, top: top, bottom: top + lineObj.height};\n  }\n\n  // Positions returned by coordsChar contain some extra information.\n  // xRel is the relative x position of the input coordinates compared\n  // to the found position (so xRel > 0 means the coordinates are to\n  // the right of the character position, for example). When outside\n  // is true, that means the coordinates lie outside the line's\n  // vertical range.\n  function PosWithInfo(line, ch, outside, xRel) {\n    var pos = Pos(line, ch);\n    pos.xRel = xRel;\n    if (outside) pos.outside = true;\n    return pos;\n  }\n\n  // Compute the character position closest to the given coordinates.\n  // Input must be lineSpace-local (\"div\" coordinate system).\n  function coordsChar(cm, x, y) {\n    var doc = cm.doc;\n    y += cm.display.viewOffset;\n    if (y < 0) return PosWithInfo(doc.first, 0, true, -1);\n    var lineN = lineAtHeight(doc, y), last = doc.first + doc.size - 1;\n    if (lineN > last)\n      return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, true, 1);\n    if (x < 0) x = 0;\n\n    var lineObj = getLine(doc, lineN);\n    for (;;) {\n      var found = coordsCharInner(cm, lineObj, lineN, x, y);\n      var merged = collapsedSpanAtEnd(lineObj);\n      var mergedPos = merged && merged.find(0, true);\n      if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0))\n        lineN = lineNo(lineObj = mergedPos.to.line);\n      else\n        return found;\n    }\n  }\n\n  function coordsCharInner(cm, lineObj, lineNo, x, y) {\n    var innerOff = y - heightAtLine(lineObj);\n    var wrongLine = false, adjust = 2 * cm.display.wrapper.clientWidth;\n    var preparedMeasure = prepareMeasureForLine(cm, lineObj);\n\n    function getX(ch) {\n      var sp = cursorCoords(cm, Pos(lineNo, ch), \"line\", lineObj, preparedMeasure);\n      wrongLine = true;\n      if (innerOff > sp.bottom) return sp.left - adjust;\n      else if (innerOff < sp.top) return sp.left + adjust;\n      else wrongLine = false;\n      return sp.left;\n    }\n\n    var bidi = getOrder(lineObj), dist = lineObj.text.length;\n    var from = lineLeft(lineObj), to = lineRight(lineObj);\n    var fromX = getX(from), fromOutside = wrongLine, toX = getX(to), toOutside = wrongLine;\n\n    if (x > toX) return PosWithInfo(lineNo, to, toOutside, 1);\n    // Do a binary search between these bounds.\n    for (;;) {\n      if (bidi ? to == from || to == moveVisually(lineObj, from, 1) : to - from <= 1) {\n        var ch = x < fromX || x - fromX <= toX - x ? from : to;\n        var xDiff = x - (ch == from ? fromX : toX);\n        while (isExtendingChar(lineObj.text.charAt(ch))) ++ch;\n        var pos = PosWithInfo(lineNo, ch, ch == from ? fromOutside : toOutside,\n                              xDiff < -1 ? -1 : xDiff > 1 ? 1 : 0);\n        return pos;\n      }\n      var step = Math.ceil(dist / 2), middle = from + step;\n      if (bidi) {\n        middle = from;\n        for (var i = 0; i < step; ++i) middle = moveVisually(lineObj, middle, 1);\n      }\n      var middleX = getX(middle);\n      if (middleX > x) {to = middle; toX = middleX; if (toOutside = wrongLine) toX += 1000; dist = step;}\n      else {from = middle; fromX = middleX; fromOutside = wrongLine; dist -= step;}\n    }\n  }\n\n  var measureText;\n  // Compute the default text height.\n  function textHeight(display) {\n    if (display.cachedTextHeight != null) return display.cachedTextHeight;\n    if (measureText == null) {\n      measureText = elt(\"pre\");\n      // Measure a bunch of lines, for browsers that compute\n      // fractional heights.\n      for (var i = 0; i < 49; ++i) {\n        measureText.appendChild(document.createTextNode(\"x\"));\n        measureText.appendChild(elt(\"br\"));\n      }\n      measureText.appendChild(document.createTextNode(\"x\"));\n    }\n    removeChildrenAndAdd(display.measure, measureText);\n    var height = measureText.offsetHeight / 50;\n    if (height > 3) display.cachedTextHeight = height;\n    removeChildren(display.measure);\n    return height || 1;\n  }\n\n  // Compute the default character width.\n  function charWidth(display) {\n    if (display.cachedCharWidth != null) return display.cachedCharWidth;\n    var anchor = elt(\"span\", \"xxxxxxxxxx\");\n    var pre = elt(\"pre\", [anchor]);\n    removeChildrenAndAdd(display.measure, pre);\n    var rect = anchor.getBoundingClientRect(), width = (rect.right - rect.left) / 10;\n    if (width > 2) display.cachedCharWidth = width;\n    return width || 10;\n  }\n\n  // OPERATIONS\n\n  // Operations are used to wrap a series of changes to the editor\n  // state in such a way that each change won't have to update the\n  // cursor and display (which would be awkward, slow, and\n  // error-prone). Instead, display updates are batched and then all\n  // combined and executed at once.\n\n  var operationGroup = null;\n\n  var nextOpId = 0;\n  // Start a new operation.\n  function startOperation(cm) {\n    cm.curOp = {\n      cm: cm,\n      viewChanged: false,      // Flag that indicates that lines might need to be redrawn\n      startHeight: cm.doc.height, // Used to detect need to update scrollbar\n      forceUpdate: false,      // Used to force a redraw\n      updateInput: null,       // Whether to reset the input textarea\n      typing: false,           // Whether this reset should be careful to leave existing text (for compositing)\n      changeObjs: null,        // Accumulated changes, for firing change events\n      cursorActivityHandlers: null, // Set of handlers to fire cursorActivity on\n      cursorActivityCalled: 0, // Tracks which cursorActivity handlers have been called already\n      selectionChanged: false, // Whether the selection needs to be redrawn\n      updateMaxLine: false,    // Set when the widest line needs to be determined anew\n      scrollLeft: null, scrollTop: null, // Intermediate scroll position, not pushed to DOM yet\n      scrollToPos: null,       // Used to scroll to a specific position\n      focus: false,\n      id: ++nextOpId           // Unique ID\n    };\n    if (operationGroup) {\n      operationGroup.ops.push(cm.curOp);\n    } else {\n      cm.curOp.ownsGroup = operationGroup = {\n        ops: [cm.curOp],\n        delayedCallbacks: []\n      };\n    }\n  }\n\n  function fireCallbacksForOps(group) {\n    // Calls delayed callbacks and cursorActivity handlers until no\n    // new ones appear\n    var callbacks = group.delayedCallbacks, i = 0;\n    do {\n      for (; i < callbacks.length; i++)\n        callbacks[i]();\n      for (var j = 0; j < group.ops.length; j++) {\n        var op = group.ops[j];\n        if (op.cursorActivityHandlers)\n          while (op.cursorActivityCalled < op.cursorActivityHandlers.length)\n            op.cursorActivityHandlers[op.cursorActivityCalled++](op.cm);\n      }\n    } while (i < callbacks.length);\n  }\n\n  // Finish an operation, updating the display and signalling delayed events\n  function endOperation(cm) {\n    var op = cm.curOp, group = op.ownsGroup;\n    if (!group) return;\n\n    try { fireCallbacksForOps(group); }\n    finally {\n      operationGroup = null;\n      for (var i = 0; i < group.ops.length; i++)\n        group.ops[i].cm.curOp = null;\n      endOperations(group);\n    }\n  }\n\n  // The DOM updates done when an operation finishes are batched so\n  // that the minimum number of relayouts are required.\n  function endOperations(group) {\n    var ops = group.ops;\n    for (var i = 0; i < ops.length; i++) // Read DOM\n      endOperation_R1(ops[i]);\n    for (var i = 0; i < ops.length; i++) // Write DOM (maybe)\n      endOperation_W1(ops[i]);\n    for (var i = 0; i < ops.length; i++) // Read DOM\n      endOperation_R2(ops[i]);\n    for (var i = 0; i < ops.length; i++) // Write DOM (maybe)\n      endOperation_W2(ops[i]);\n    for (var i = 0; i < ops.length; i++) // Read DOM\n      endOperation_finish(ops[i]);\n  }\n\n  function endOperation_R1(op) {\n    var cm = op.cm, display = cm.display;\n    maybeClipScrollbars(cm);\n    if (op.updateMaxLine) findMaxLine(cm);\n\n    op.mustUpdate = op.viewChanged || op.forceUpdate || op.scrollTop != null ||\n      op.scrollToPos && (op.scrollToPos.from.line < display.viewFrom ||\n                         op.scrollToPos.to.line >= display.viewTo) ||\n      display.maxLineChanged && cm.options.lineWrapping;\n    op.update = op.mustUpdate &&\n      new DisplayUpdate(cm, op.mustUpdate && {top: op.scrollTop, ensure: op.scrollToPos}, op.forceUpdate);\n  }\n\n  function endOperation_W1(op) {\n    op.updatedDisplay = op.mustUpdate && updateDisplayIfNeeded(op.cm, op.update);\n  }\n\n  function endOperation_R2(op) {\n    var cm = op.cm, display = cm.display;\n    if (op.updatedDisplay) updateHeightsInViewport(cm);\n\n    op.barMeasure = measureForScrollbars(cm);\n\n    // If the max line changed since it was last measured, measure it,\n    // and ensure the document's width matches it.\n    // updateDisplay_W2 will use these properties to do the actual resizing\n    if (display.maxLineChanged && !cm.options.lineWrapping) {\n      op.adjustWidthTo = measureChar(cm, display.maxLine, display.maxLine.text.length).left + 3;\n      cm.display.sizerWidth = op.adjustWidthTo;\n      op.barMeasure.scrollWidth =\n        Math.max(display.scroller.clientWidth, display.sizer.offsetLeft + op.adjustWidthTo + scrollGap(cm) + cm.display.barWidth);\n      op.maxScrollLeft = Math.max(0, display.sizer.offsetLeft + op.adjustWidthTo - displayWidth(cm));\n    }\n\n    if (op.updatedDisplay || op.selectionChanged)\n      op.preparedSelection = display.input.prepareSelection();\n  }\n\n  function endOperation_W2(op) {\n    var cm = op.cm;\n\n    if (op.adjustWidthTo != null) {\n      cm.display.sizer.style.minWidth = op.adjustWidthTo + \"px\";\n      if (op.maxScrollLeft < cm.doc.scrollLeft)\n        setScrollLeft(cm, Math.min(cm.display.scroller.scrollLeft, op.maxScrollLeft), true);\n      cm.display.maxLineChanged = false;\n    }\n\n    if (op.preparedSelection)\n      cm.display.input.showSelection(op.preparedSelection);\n    if (op.updatedDisplay)\n      setDocumentHeight(cm, op.barMeasure);\n    if (op.updatedDisplay || op.startHeight != cm.doc.height)\n      updateScrollbars(cm, op.barMeasure);\n\n    if (op.selectionChanged) restartBlink(cm);\n\n    if (cm.state.focused && op.updateInput)\n      cm.display.input.reset(op.typing);\n    if (op.focus && op.focus == activeElt()) ensureFocus(op.cm);\n  }\n\n  function endOperation_finish(op) {\n    var cm = op.cm, display = cm.display, doc = cm.doc;\n\n    if (op.updatedDisplay) postUpdateDisplay(cm, op.update);\n\n    // Abort mouse wheel delta measurement, when scrolling explicitly\n    if (display.wheelStartX != null && (op.scrollTop != null || op.scrollLeft != null || op.scrollToPos))\n      display.wheelStartX = display.wheelStartY = null;\n\n    // Propagate the scroll position to the actual DOM scroller\n    if (op.scrollTop != null && (display.scroller.scrollTop != op.scrollTop || op.forceScroll)) {\n      doc.scrollTop = Math.max(0, Math.min(display.scroller.scrollHeight - display.scroller.clientHeight, op.scrollTop));\n      display.scrollbars.setScrollTop(doc.scrollTop);\n      display.scroller.scrollTop = doc.scrollTop;\n    }\n    if (op.scrollLeft != null && (display.scroller.scrollLeft != op.scrollLeft || op.forceScroll)) {\n      doc.scrollLeft = Math.max(0, Math.min(display.scroller.scrollWidth - displayWidth(cm), op.scrollLeft));\n      display.scrollbars.setScrollLeft(doc.scrollLeft);\n      display.scroller.scrollLeft = doc.scrollLeft;\n      alignHorizontally(cm);\n    }\n    // If we need to scroll a specific position into view, do so.\n    if (op.scrollToPos) {\n      var coords = scrollPosIntoView(cm, clipPos(doc, op.scrollToPos.from),\n                                     clipPos(doc, op.scrollToPos.to), op.scrollToPos.margin);\n      if (op.scrollToPos.isCursor && cm.state.focused) maybeScrollWindow(cm, coords);\n    }\n\n    // Fire events for markers that are hidden/unidden by editing or\n    // undoing\n    var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers;\n    if (hidden) for (var i = 0; i < hidden.length; ++i)\n      if (!hidden[i].lines.length) signal(hidden[i], \"hide\");\n    if (unhidden) for (var i = 0; i < unhidden.length; ++i)\n      if (unhidden[i].lines.length) signal(unhidden[i], \"unhide\");\n\n    if (display.wrapper.offsetHeight)\n      doc.scrollTop = cm.display.scroller.scrollTop;\n\n    // Fire change events, and delayed event handlers\n    if (op.changeObjs)\n      signal(cm, \"changes\", cm, op.changeObjs);\n    if (op.update)\n      op.update.finish();\n  }\n\n  // Run the given function in an operation\n  function runInOp(cm, f) {\n    if (cm.curOp) return f();\n    startOperation(cm);\n    try { return f(); }\n    finally { endOperation(cm); }\n  }\n  // Wraps a function in an operation. Returns the wrapped function.\n  function operation(cm, f) {\n    return function() {\n      if (cm.curOp) return f.apply(cm, arguments);\n      startOperation(cm);\n      try { return f.apply(cm, arguments); }\n      finally { endOperation(cm); }\n    };\n  }\n  // Used to add methods to editor and doc instances, wrapping them in\n  // operations.\n  function methodOp(f) {\n    return function() {\n      if (this.curOp) return f.apply(this, arguments);\n      startOperation(this);\n      try { return f.apply(this, arguments); }\n      finally { endOperation(this); }\n    };\n  }\n  function docMethodOp(f) {\n    return function() {\n      var cm = this.cm;\n      if (!cm || cm.curOp) return f.apply(this, arguments);\n      startOperation(cm);\n      try { return f.apply(this, arguments); }\n      finally { endOperation(cm); }\n    };\n  }\n\n  // VIEW TRACKING\n\n  // These objects are used to represent the visible (currently drawn)\n  // part of the document. A LineView may correspond to multiple\n  // logical lines, if those are connected by collapsed ranges.\n  function LineView(doc, line, lineN) {\n    // The starting line\n    this.line = line;\n    // Continuing lines, if any\n    this.rest = visualLineContinued(line);\n    // Number of logical lines in this visual line\n    this.size = this.rest ? lineNo(lst(this.rest)) - lineN + 1 : 1;\n    this.node = this.text = null;\n    this.hidden = lineIsHidden(doc, line);\n  }\n\n  // Create a range of LineView objects for the given lines.\n  function buildViewArray(cm, from, to) {\n    var array = [], nextPos;\n    for (var pos = from; pos < to; pos = nextPos) {\n      var view = new LineView(cm.doc, getLine(cm.doc, pos), pos);\n      nextPos = pos + view.size;\n      array.push(view);\n    }\n    return array;\n  }\n\n  // Updates the display.view data structure for a given change to the\n  // document. From and to are in pre-change coordinates. Lendiff is\n  // the amount of lines added or subtracted by the change. This is\n  // used for changes that span multiple lines, or change the way\n  // lines are divided into visual lines. regLineChange (below)\n  // registers single-line changes.\n  function regChange(cm, from, to, lendiff) {\n    if (from == null) from = cm.doc.first;\n    if (to == null) to = cm.doc.first + cm.doc.size;\n    if (!lendiff) lendiff = 0;\n\n    var display = cm.display;\n    if (lendiff && to < display.viewTo &&\n        (display.updateLineNumbers == null || display.updateLineNumbers > from))\n      display.updateLineNumbers = from;\n\n    cm.curOp.viewChanged = true;\n\n    if (from >= display.viewTo) { // Change after\n      if (sawCollapsedSpans && visualLineNo(cm.doc, from) < display.viewTo)\n        resetView(cm);\n    } else if (to <= display.viewFrom) { // Change before\n      if (sawCollapsedSpans && visualLineEndNo(cm.doc, to + lendiff) > display.viewFrom) {\n        resetView(cm);\n      } else {\n        display.viewFrom += lendiff;\n        display.viewTo += lendiff;\n      }\n    } else if (from <= display.viewFrom && to >= display.viewTo) { // Full overlap\n      resetView(cm);\n    } else if (from <= display.viewFrom) { // Top overlap\n      var cut = viewCuttingPoint(cm, to, to + lendiff, 1);\n      if (cut) {\n        display.view = display.view.slice(cut.index);\n        display.viewFrom = cut.lineN;\n        display.viewTo += lendiff;\n      } else {\n        resetView(cm);\n      }\n    } else if (to >= display.viewTo) { // Bottom overlap\n      var cut = viewCuttingPoint(cm, from, from, -1);\n      if (cut) {\n        display.view = display.view.slice(0, cut.index);\n        display.viewTo = cut.lineN;\n      } else {\n        resetView(cm);\n      }\n    } else { // Gap in the middle\n      var cutTop = viewCuttingPoint(cm, from, from, -1);\n      var cutBot = viewCuttingPoint(cm, to, to + lendiff, 1);\n      if (cutTop && cutBot) {\n        display.view = display.view.slice(0, cutTop.index)\n          .concat(buildViewArray(cm, cutTop.lineN, cutBot.lineN))\n          .concat(display.view.slice(cutBot.index));\n        display.viewTo += lendiff;\n      } else {\n        resetView(cm);\n      }\n    }\n\n    var ext = display.externalMeasured;\n    if (ext) {\n      if (to < ext.lineN)\n        ext.lineN += lendiff;\n      else if (from < ext.lineN + ext.size)\n        display.externalMeasured = null;\n    }\n  }\n\n  // Register a change to a single line. Type must be one of \"text\",\n  // \"gutter\", \"class\", \"widget\"\n  function regLineChange(cm, line, type) {\n    cm.curOp.viewChanged = true;\n    var display = cm.display, ext = cm.display.externalMeasured;\n    if (ext && line >= ext.lineN && line < ext.lineN + ext.size)\n      display.externalMeasured = null;\n\n    if (line < display.viewFrom || line >= display.viewTo) return;\n    var lineView = display.view[findViewIndex(cm, line)];\n    if (lineView.node == null) return;\n    var arr = lineView.changes || (lineView.changes = []);\n    if (indexOf(arr, type) == -1) arr.push(type);\n  }\n\n  // Clear the view.\n  function resetView(cm) {\n    cm.display.viewFrom = cm.display.viewTo = cm.doc.first;\n    cm.display.view = [];\n    cm.display.viewOffset = 0;\n  }\n\n  // Find the view element corresponding to a given line. Return null\n  // when the line isn't visible.\n  function findViewIndex(cm, n) {\n    if (n >= cm.display.viewTo) return null;\n    n -= cm.display.viewFrom;\n    if (n < 0) return null;\n    var view = cm.display.view;\n    for (var i = 0; i < view.length; i++) {\n      n -= view[i].size;\n      if (n < 0) return i;\n    }\n  }\n\n  function viewCuttingPoint(cm, oldN, newN, dir) {\n    var index = findViewIndex(cm, oldN), diff, view = cm.display.view;\n    if (!sawCollapsedSpans || newN == cm.doc.first + cm.doc.size)\n      return {index: index, lineN: newN};\n    for (var i = 0, n = cm.display.viewFrom; i < index; i++)\n      n += view[i].size;\n    if (n != oldN) {\n      if (dir > 0) {\n        if (index == view.length - 1) return null;\n        diff = (n + view[index].size) - oldN;\n        index++;\n      } else {\n        diff = n - oldN;\n      }\n      oldN += diff; newN += diff;\n    }\n    while (visualLineNo(cm.doc, newN) != newN) {\n      if (index == (dir < 0 ? 0 : view.length - 1)) return null;\n      newN += dir * view[index - (dir < 0 ? 1 : 0)].size;\n      index += dir;\n    }\n    return {index: index, lineN: newN};\n  }\n\n  // Force the view to cover a given range, adding empty view element\n  // or clipping off existing ones as needed.\n  function adjustView(cm, from, to) {\n    var display = cm.display, view = display.view;\n    if (view.length == 0 || from >= display.viewTo || to <= display.viewFrom) {\n      display.view = buildViewArray(cm, from, to);\n      display.viewFrom = from;\n    } else {\n      if (display.viewFrom > from)\n        display.view = buildViewArray(cm, from, display.viewFrom).concat(display.view);\n      else if (display.viewFrom < from)\n        display.view = display.view.slice(findViewIndex(cm, from));\n      display.viewFrom = from;\n      if (display.viewTo < to)\n        display.view = display.view.concat(buildViewArray(cm, display.viewTo, to));\n      else if (display.viewTo > to)\n        display.view = display.view.slice(0, findViewIndex(cm, to));\n    }\n    display.viewTo = to;\n  }\n\n  // Count the number of lines in the view whose DOM representation is\n  // out of date (or nonexistent).\n  function countDirtyView(cm) {\n    var view = cm.display.view, dirty = 0;\n    for (var i = 0; i < view.length; i++) {\n      var lineView = view[i];\n      if (!lineView.hidden && (!lineView.node || lineView.changes)) ++dirty;\n    }\n    return dirty;\n  }\n\n  // EVENT HANDLERS\n\n  // Attach the necessary event handlers when initializing the editor\n  function registerEventHandlers(cm) {\n    var d = cm.display;\n    on(d.scroller, \"mousedown\", operation(cm, onMouseDown));\n    // Older IE's will not fire a second mousedown for a double click\n    if (ie && ie_version < 11)\n      on(d.scroller, \"dblclick\", operation(cm, function(e) {\n        if (signalDOMEvent(cm, e)) return;\n        var pos = posFromMouse(cm, e);\n        if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) return;\n        e_preventDefault(e);\n        var word = cm.findWordAt(pos);\n        extendSelection(cm.doc, word.anchor, word.head);\n      }));\n    else\n      on(d.scroller, \"dblclick\", function(e) { signalDOMEvent(cm, e) || e_preventDefault(e); });\n    // Some browsers fire contextmenu *after* opening the menu, at\n    // which point we can't mess with it anymore. Context menu is\n    // handled in onMouseDown for these browsers.\n    if (!captureRightClick) on(d.scroller, \"contextmenu\", function(e) {onContextMenu(cm, e);});\n\n    // Used to suppress mouse event handling when a touch happens\n    var touchFinished, prevTouch = {end: 0};\n    function finishTouch() {\n      if (d.activeTouch) {\n        touchFinished = setTimeout(function() {d.activeTouch = null;}, 1000);\n        prevTouch = d.activeTouch;\n        prevTouch.end = +new Date;\n      }\n    };\n    function isMouseLikeTouchEvent(e) {\n      if (e.touches.length != 1) return false;\n      var touch = e.touches[0];\n      return touch.radiusX <= 1 && touch.radiusY <= 1;\n    }\n    function farAway(touch, other) {\n      if (other.left == null) return true;\n      var dx = other.left - touch.left, dy = other.top - touch.top;\n      return dx * dx + dy * dy > 20 * 20;\n    }\n    on(d.scroller, \"touchstart\", function(e) {\n      if (!isMouseLikeTouchEvent(e)) {\n        clearTimeout(touchFinished);\n        var now = +new Date;\n        d.activeTouch = {start: now, moved: false,\n                         prev: now - prevTouch.end <= 300 ? prevTouch : null};\n        if (e.touches.length == 1) {\n          d.activeTouch.left = e.touches[0].pageX;\n          d.activeTouch.top = e.touches[0].pageY;\n        }\n      }\n    });\n    on(d.scroller, \"touchmove\", function() {\n      if (d.activeTouch) d.activeTouch.moved = true;\n    });\n    on(d.scroller, \"touchend\", function(e) {\n      var touch = d.activeTouch;\n      if (touch && !eventInWidget(d, e) && touch.left != null &&\n          !touch.moved && new Date - touch.start < 300) {\n        var pos = cm.coordsChar(d.activeTouch, \"page\"), range;\n        if (!touch.prev || farAway(touch, touch.prev)) // Single tap\n          range = new Range(pos, pos);\n        else if (!touch.prev.prev || farAway(touch, touch.prev.prev)) // Double tap\n          range = cm.findWordAt(pos);\n        else // Triple tap\n          range = new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0)));\n        cm.setSelection(range.anchor, range.head);\n        cm.focus();\n        e_preventDefault(e);\n      }\n      finishTouch();\n    });\n    on(d.scroller, \"touchcancel\", finishTouch);\n\n    // Sync scrolling between fake scrollbars and real scrollable\n    // area, ensure viewport is updated when scrolling.\n    on(d.scroller, \"scroll\", function() {\n      if (d.scroller.clientHeight) {\n        setScrollTop(cm, d.scroller.scrollTop);\n        setScrollLeft(cm, d.scroller.scrollLeft, true);\n        signal(cm, \"scroll\", cm);\n      }\n    });\n\n    // Listen to wheel events in order to try and update the viewport on time.\n    on(d.scroller, \"mousewheel\", function(e){onScrollWheel(cm, e);});\n    on(d.scroller, \"DOMMouseScroll\", function(e){onScrollWheel(cm, e);});\n\n    // Prevent wrapper from ever scrolling\n    on(d.wrapper, \"scroll\", function() { d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; });\n\n    d.dragFunctions = {\n      simple: function(e) {if (!signalDOMEvent(cm, e)) e_stop(e);},\n      start: function(e){onDragStart(cm, e);},\n      drop: operation(cm, onDrop)\n    };\n\n    var inp = d.input.getField();\n    on(inp, \"keyup\", function(e) { onKeyUp.call(cm, e); });\n    on(inp, \"keydown\", operation(cm, onKeyDown));\n    on(inp, \"keypress\", operation(cm, onKeyPress));\n    on(inp, \"focus\", bind(onFocus, cm));\n    on(inp, \"blur\", bind(onBlur, cm));\n  }\n\n  function dragDropChanged(cm, value, old) {\n    var wasOn = old && old != CodeMirror.Init;\n    if (!value != !wasOn) {\n      var funcs = cm.display.dragFunctions;\n      var toggle = value ? on : off;\n      toggle(cm.display.scroller, \"dragstart\", funcs.start);\n      toggle(cm.display.scroller, \"dragenter\", funcs.simple);\n      toggle(cm.display.scroller, \"dragover\", funcs.simple);\n      toggle(cm.display.scroller, \"drop\", funcs.drop);\n    }\n  }\n\n  // Called when the window resizes\n  function onResize(cm) {\n    var d = cm.display;\n    if (d.lastWrapHeight == d.wrapper.clientHeight && d.lastWrapWidth == d.wrapper.clientWidth)\n      return;\n    // Might be a text scaling operation, clear size caches.\n    d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;\n    d.scrollbarsClipped = false;\n    cm.setSize();\n  }\n\n  // MOUSE EVENTS\n\n  // Return true when the given mouse event happened in a widget\n  function eventInWidget(display, e) {\n    for (var n = e_target(e); n != display.wrapper; n = n.parentNode) {\n      if (!n || (n.nodeType == 1 && n.getAttribute(\"cm-ignore-events\") == \"true\") ||\n          (n.parentNode == display.sizer && n != display.mover))\n        return true;\n    }\n  }\n\n  // Given a mouse event, find the corresponding position. If liberal\n  // is false, it checks whether a gutter or scrollbar was clicked,\n  // and returns null if it was. forRect is used by rectangular\n  // selections, and tries to estimate a character position even for\n  // coordinates beyond the right of the text.\n  function posFromMouse(cm, e, liberal, forRect) {\n    var display = cm.display;\n    if (!liberal && e_target(e).getAttribute(\"cm-not-content\") == \"true\") return null;\n\n    var x, y, space = display.lineSpace.getBoundingClientRect();\n    // Fails unpredictably on IE[67] when mouse is dragged around quickly.\n    try { x = e.clientX - space.left; y = e.clientY - space.top; }\n    catch (e) { return null; }\n    var coords = coordsChar(cm, x, y), line;\n    if (forRect && coords.xRel == 1 && (line = getLine(cm.doc, coords.line).text).length == coords.ch) {\n      var colDiff = countColumn(line, line.length, cm.options.tabSize) - line.length;\n      coords = Pos(coords.line, Math.max(0, Math.round((x - paddingH(cm.display).left) / charWidth(cm.display)) - colDiff));\n    }\n    return coords;\n  }\n\n  // A mouse down can be a single click, double click, triple click,\n  // start of selection drag, start of text drag, new cursor\n  // (ctrl-click), rectangle drag (alt-drag), or xwin\n  // middle-click-paste. Or it might be a click on something we should\n  // not interfere with, such as a scrollbar or widget.\n  function onMouseDown(e) {\n    var cm = this, display = cm.display;\n    if (display.activeTouch && display.input.supportsTouch() || signalDOMEvent(cm, e)) return;\n    display.shift = e.shiftKey;\n\n    if (eventInWidget(display, e)) {\n      if (!webkit) {\n        // Briefly turn off draggability, to allow widgets to do\n        // normal dragging things.\n        display.scroller.draggable = false;\n        setTimeout(function(){display.scroller.draggable = true;}, 100);\n      }\n      return;\n    }\n    if (clickInGutter(cm, e)) return;\n    var start = posFromMouse(cm, e);\n    window.focus();\n\n    switch (e_button(e)) {\n    case 1:\n      if (start)\n        leftButtonDown(cm, e, start);\n      else if (e_target(e) == display.scroller)\n        e_preventDefault(e);\n      break;\n    case 2:\n      if (webkit) cm.state.lastMiddleDown = +new Date;\n      if (start) extendSelection(cm.doc, start);\n      setTimeout(function() {display.input.focus();}, 20);\n      e_preventDefault(e);\n      break;\n    case 3:\n      if (captureRightClick) onContextMenu(cm, e);\n      else delayBlurEvent(cm);\n      break;\n    }\n  }\n\n  var lastClick, lastDoubleClick;\n  function leftButtonDown(cm, e, start) {\n    if (ie) setTimeout(bind(ensureFocus, cm), 0);\n    else cm.curOp.focus = activeElt();\n\n    var now = +new Date, type;\n    if (lastDoubleClick && lastDoubleClick.time > now - 400 && cmp(lastDoubleClick.pos, start) == 0) {\n      type = \"triple\";\n    } else if (lastClick && lastClick.time > now - 400 && cmp(lastClick.pos, start) == 0) {\n      type = \"double\";\n      lastDoubleClick = {time: now, pos: start};\n    } else {\n      type = \"single\";\n      lastClick = {time: now, pos: start};\n    }\n\n    var sel = cm.doc.sel, modifier = mac ? e.metaKey : e.ctrlKey, contained;\n    if (cm.options.dragDrop && dragAndDrop && !isReadOnly(cm) &&\n        type == \"single\" && (contained = sel.contains(start)) > -1 &&\n        (cmp((contained = sel.ranges[contained]).from(), start) < 0 || start.xRel > 0) &&\n        (cmp(contained.to(), start) > 0 || start.xRel < 0))\n      leftButtonStartDrag(cm, e, start, modifier);\n    else\n      leftButtonSelect(cm, e, start, type, modifier);\n  }\n\n  // Start a text drag. When it ends, see if any dragging actually\n  // happen, and treat as a click if it didn't.\n  function leftButtonStartDrag(cm, e, start, modifier) {\n    var display = cm.display, startTime = +new Date;\n    var dragEnd = operation(cm, function(e2) {\n      if (webkit) display.scroller.draggable = false;\n      cm.state.draggingText = false;\n      off(document, \"mouseup\", dragEnd);\n      off(display.scroller, \"drop\", dragEnd);\n      if (Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) < 10) {\n        e_preventDefault(e2);\n        if (!modifier && +new Date - 200 < startTime)\n          extendSelection(cm.doc, start);\n        // Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081)\n        if (webkit || ie && ie_version == 9)\n          setTimeout(function() {document.body.focus(); display.input.focus();}, 20);\n        else\n          display.input.focus();\n      }\n    });\n    // Let the drag handler handle this.\n    if (webkit) display.scroller.draggable = true;\n    cm.state.draggingText = dragEnd;\n    // IE's approach to draggable\n    if (display.scroller.dragDrop) display.scroller.dragDrop();\n    on(document, \"mouseup\", dragEnd);\n    on(display.scroller, \"drop\", dragEnd);\n  }\n\n  // Normal selection, as opposed to text dragging.\n  function leftButtonSelect(cm, e, start, type, addNew) {\n    var display = cm.display, doc = cm.doc;\n    e_preventDefault(e);\n\n    var ourRange, ourIndex, startSel = doc.sel, ranges = startSel.ranges;\n    if (addNew && !e.shiftKey) {\n      ourIndex = doc.sel.contains(start);\n      if (ourIndex > -1)\n        ourRange = ranges[ourIndex];\n      else\n        ourRange = new Range(start, start);\n    } else {\n      ourRange = doc.sel.primary();\n      ourIndex = doc.sel.primIndex;\n    }\n\n    if (e.altKey) {\n      type = \"rect\";\n      if (!addNew) ourRange = new Range(start, start);\n      start = posFromMouse(cm, e, true, true);\n      ourIndex = -1;\n    } else if (type == \"double\") {\n      var word = cm.findWordAt(start);\n      if (cm.display.shift || doc.extend)\n        ourRange = extendRange(doc, ourRange, word.anchor, word.head);\n      else\n        ourRange = word;\n    } else if (type == \"triple\") {\n      var line = new Range(Pos(start.line, 0), clipPos(doc, Pos(start.line + 1, 0)));\n      if (cm.display.shift || doc.extend)\n        ourRange = extendRange(doc, ourRange, line.anchor, line.head);\n      else\n        ourRange = line;\n    } else {\n      ourRange = extendRange(doc, ourRange, start);\n    }\n\n    if (!addNew) {\n      ourIndex = 0;\n      setSelection(doc, new Selection([ourRange], 0), sel_mouse);\n      startSel = doc.sel;\n    } else if (ourIndex == -1) {\n      ourIndex = ranges.length;\n      setSelection(doc, normalizeSelection(ranges.concat([ourRange]), ourIndex),\n                   {scroll: false, origin: \"*mouse\"});\n    } else if (ranges.length > 1 && ranges[ourIndex].empty() && type == \"single\" && !e.shiftKey) {\n      setSelection(doc, normalizeSelection(ranges.slice(0, ourIndex).concat(ranges.slice(ourIndex + 1)), 0));\n      startSel = doc.sel;\n    } else {\n      replaceOneSelection(doc, ourIndex, ourRange, sel_mouse);\n    }\n\n    var lastPos = start;\n    function extendTo(pos) {\n      if (cmp(lastPos, pos) == 0) return;\n      lastPos = pos;\n\n      if (type == \"rect\") {\n        var ranges = [], tabSize = cm.options.tabSize;\n        var startCol = countColumn(getLine(doc, start.line).text, start.ch, tabSize);\n        var posCol = countColumn(getLine(doc, pos.line).text, pos.ch, tabSize);\n        var left = Math.min(startCol, posCol), right = Math.max(startCol, posCol);\n        for (var line = Math.min(start.line, pos.line), end = Math.min(cm.lastLine(), Math.max(start.line, pos.line));\n             line <= end; line++) {\n          var text = getLine(doc, line).text, leftPos = findColumn(text, left, tabSize);\n          if (left == right)\n            ranges.push(new Range(Pos(line, leftPos), Pos(line, leftPos)));\n          else if (text.length > leftPos)\n            ranges.push(new Range(Pos(line, leftPos), Pos(line, findColumn(text, right, tabSize))));\n        }\n        if (!ranges.length) ranges.push(new Range(start, start));\n        setSelection(doc, normalizeSelection(startSel.ranges.slice(0, ourIndex).concat(ranges), ourIndex),\n                     {origin: \"*mouse\", scroll: false});\n        cm.scrollIntoView(pos);\n      } else {\n        var oldRange = ourRange;\n        var anchor = oldRange.anchor, head = pos;\n        if (type != \"single\") {\n          if (type == \"double\")\n            var range = cm.findWordAt(pos);\n          else\n            var range = new Range(Pos(pos.line, 0), clipPos(doc, Pos(pos.line + 1, 0)));\n          if (cmp(range.anchor, anchor) > 0) {\n            head = range.head;\n            anchor = minPos(oldRange.from(), range.anchor);\n          } else {\n            head = range.anchor;\n            anchor = maxPos(oldRange.to(), range.head);\n          }\n        }\n        var ranges = startSel.ranges.slice(0);\n        ranges[ourIndex] = new Range(clipPos(doc, anchor), head);\n        setSelection(doc, normalizeSelection(ranges, ourIndex), sel_mouse);\n      }\n    }\n\n    var editorSize = display.wrapper.getBoundingClientRect();\n    // Used to ensure timeout re-tries don't fire when another extend\n    // happened in the meantime (clearTimeout isn't reliable -- at\n    // least on Chrome, the timeouts still happen even when cleared,\n    // if the clear happens after their scheduled firing time).\n    var counter = 0;\n\n    function extend(e) {\n      var curCount = ++counter;\n      var cur = posFromMouse(cm, e, true, type == \"rect\");\n      if (!cur) return;\n      if (cmp(cur, lastPos) != 0) {\n        cm.curOp.focus = activeElt();\n        extendTo(cur);\n        var visible = visibleLines(display, doc);\n        if (cur.line >= visible.to || cur.line < visible.from)\n          setTimeout(operation(cm, function(){if (counter == curCount) extend(e);}), 150);\n      } else {\n        var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0;\n        if (outside) setTimeout(operation(cm, function() {\n          if (counter != curCount) return;\n          display.scroller.scrollTop += outside;\n          extend(e);\n        }), 50);\n      }\n    }\n\n    function done(e) {\n      counter = Infinity;\n      e_preventDefault(e);\n      display.input.focus();\n      off(document, \"mousemove\", move);\n      off(document, \"mouseup\", up);\n      doc.history.lastSelOrigin = null;\n    }\n\n    var move = operation(cm, function(e) {\n      if (!e_button(e)) done(e);\n      else extend(e);\n    });\n    var up = operation(cm, done);\n    on(document, \"mousemove\", move);\n    on(document, \"mouseup\", up);\n  }\n\n  // Determines whether an event happened in the gutter, and fires the\n  // handlers for the corresponding event.\n  function gutterEvent(cm, e, type, prevent, signalfn) {\n    try { var mX = e.clientX, mY = e.clientY; }\n    catch(e) { return false; }\n    if (mX >= Math.floor(cm.display.gutters.getBoundingClientRect().right)) return false;\n    if (prevent) e_preventDefault(e);\n\n    var display = cm.display;\n    var lineBox = display.lineDiv.getBoundingClientRect();\n\n    if (mY > lineBox.bottom || !hasHandler(cm, type)) return e_defaultPrevented(e);\n    mY -= lineBox.top - display.viewOffset;\n\n    for (var i = 0; i < cm.options.gutters.length; ++i) {\n      var g = display.gutters.childNodes[i];\n      if (g && g.getBoundingClientRect().right >= mX) {\n        var line = lineAtHeight(cm.doc, mY);\n        var gutter = cm.options.gutters[i];\n        signalfn(cm, type, cm, line, gutter, e);\n        return e_defaultPrevented(e);\n      }\n    }\n  }\n\n  function clickInGutter(cm, e) {\n    return gutterEvent(cm, e, \"gutterClick\", true, signalLater);\n  }\n\n  // Kludge to work around strange IE behavior where it'll sometimes\n  // re-fire a series of drag-related events right after the drop (#1551)\n  var lastDrop = 0;\n\n  function onDrop(e) {\n    var cm = this;\n    if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e))\n      return;\n    e_preventDefault(e);\n    if (ie) lastDrop = +new Date;\n    var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files;\n    if (!pos || isReadOnly(cm)) return;\n    // Might be a file drop, in which case we simply extract the text\n    // and insert it.\n    if (files && files.length && window.FileReader && window.File) {\n      var n = files.length, text = Array(n), read = 0;\n      var loadFile = function(file, i) {\n        var reader = new FileReader;\n        reader.onload = operation(cm, function() {\n          text[i] = reader.result;\n          if (++read == n) {\n            pos = clipPos(cm.doc, pos);\n            var change = {from: pos, to: pos, text: splitLines(text.join(\"\\n\")), origin: \"paste\"};\n            makeChange(cm.doc, change);\n            setSelectionReplaceHistory(cm.doc, simpleSelection(pos, changeEnd(change)));\n          }\n        });\n        reader.readAsText(file);\n      };\n      for (var i = 0; i < n; ++i) loadFile(files[i], i);\n    } else { // Normal drop\n      // Don't do a replace if the drop happened inside of the selected text.\n      if (cm.state.draggingText && cm.doc.sel.contains(pos) > -1) {\n        cm.state.draggingText(e);\n        // Ensure the editor is re-focused\n        setTimeout(function() {cm.display.input.focus();}, 20);\n        return;\n      }\n      try {\n        var text = e.dataTransfer.getData(\"Text\");\n        if (text) {\n          if (cm.state.draggingText && !(mac ? e.altKey : e.ctrlKey))\n            var selected = cm.listSelections();\n          setSelectionNoUndo(cm.doc, simpleSelection(pos, pos));\n          if (selected) for (var i = 0; i < selected.length; ++i)\n            replaceRange(cm.doc, \"\", selected[i].anchor, selected[i].head, \"drag\");\n          cm.replaceSelection(text, \"around\", \"paste\");\n          cm.display.input.focus();\n        }\n      }\n      catch(e){}\n    }\n  }\n\n  function onDragStart(cm, e) {\n    if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return; }\n    if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) return;\n\n    e.dataTransfer.setData(\"Text\", cm.getSelection());\n\n    // Use dummy image instead of default browsers image.\n    // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there.\n    if (e.dataTransfer.setDragImage && !safari) {\n      var img = elt(\"img\", null, null, \"position: fixed; left: 0; top: 0;\");\n      img.src = \"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\";\n      if (presto) {\n        img.width = img.height = 1;\n        cm.display.wrapper.appendChild(img);\n        // Force a relayout, or Opera won't use our image for some obscure reason\n        img._top = img.offsetTop;\n      }\n      e.dataTransfer.setDragImage(img, 0, 0);\n      if (presto) img.parentNode.removeChild(img);\n    }\n  }\n\n  // SCROLL EVENTS\n\n  // Sync the scrollable area and scrollbars, ensure the viewport\n  // covers the visible area.\n  function setScrollTop(cm, val) {\n    if (Math.abs(cm.doc.scrollTop - val) < 2) return;\n    cm.doc.scrollTop = val;\n    if (!gecko) updateDisplaySimple(cm, {top: val});\n    if (cm.display.scroller.scrollTop != val) cm.display.scroller.scrollTop = val;\n    cm.display.scrollbars.setScrollTop(val);\n    if (gecko) updateDisplaySimple(cm);\n    startWorker(cm, 100);\n  }\n  // Sync scroller and scrollbar, ensure the gutter elements are\n  // aligned.\n  function setScrollLeft(cm, val, isScroller) {\n    if (isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) return;\n    val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth);\n    cm.doc.scrollLeft = val;\n    alignHorizontally(cm);\n    if (cm.display.scroller.scrollLeft != val) cm.display.scroller.scrollLeft = val;\n    cm.display.scrollbars.setScrollLeft(val);\n  }\n\n  // Since the delta values reported on mouse wheel events are\n  // unstandardized between browsers and even browser versions, and\n  // generally horribly unpredictable, this code starts by measuring\n  // the scroll effect that the first few mouse wheel events have,\n  // and, from that, detects the way it can convert deltas to pixel\n  // offsets afterwards.\n  //\n  // The reason we want to know the amount a wheel event will scroll\n  // is that it gives us a chance to update the display before the\n  // actual scrolling happens, reducing flickering.\n\n  var wheelSamples = 0, wheelPixelsPerUnit = null;\n  // Fill in a browser-detected starting value on browsers where we\n  // know one. These don't have to be accurate -- the result of them\n  // being wrong would just be a slight flicker on the first wheel\n  // scroll (if it is large enough).\n  if (ie) wheelPixelsPerUnit = -.53;\n  else if (gecko) wheelPixelsPerUnit = 15;\n  else if (chrome) wheelPixelsPerUnit = -.7;\n  else if (safari) wheelPixelsPerUnit = -1/3;\n\n  var wheelEventDelta = function(e) {\n    var dx = e.wheelDeltaX, dy = e.wheelDeltaY;\n    if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) dx = e.detail;\n    if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) dy = e.detail;\n    else if (dy == null) dy = e.wheelDelta;\n    return {x: dx, y: dy};\n  };\n  CodeMirror.wheelEventPixels = function(e) {\n    var delta = wheelEventDelta(e);\n    delta.x *= wheelPixelsPerUnit;\n    delta.y *= wheelPixelsPerUnit;\n    return delta;\n  };\n\n  function onScrollWheel(cm, e) {\n    var delta = wheelEventDelta(e), dx = delta.x, dy = delta.y;\n\n    var display = cm.display, scroll = display.scroller;\n    // Quit if there's nothing to scroll here\n    if (!(dx && scroll.scrollWidth > scroll.clientWidth ||\n          dy && scroll.scrollHeight > scroll.clientHeight)) return;\n\n    // Webkit browsers on OS X abort momentum scrolls when the target\n    // of the scroll event is removed from the scrollable element.\n    // This hack (see related code in patchDisplay) makes sure the\n    // element is kept around.\n    if (dy && mac && webkit) {\n      outer: for (var cur = e.target, view = display.view; cur != scroll; cur = cur.parentNode) {\n        for (var i = 0; i < view.length; i++) {\n          if (view[i].node == cur) {\n            cm.display.currentWheelTarget = cur;\n            break outer;\n          }\n        }\n      }\n    }\n\n    // On some browsers, horizontal scrolling will cause redraws to\n    // happen before the gutter has been realigned, causing it to\n    // wriggle around in a most unseemly way. When we have an\n    // estimated pixels/delta value, we just handle horizontal\n    // scrolling entirely here. It'll be slightly off from native, but\n    // better than glitching out.\n    if (dx && !gecko && !presto && wheelPixelsPerUnit != null) {\n      if (dy)\n        setScrollTop(cm, Math.max(0, Math.min(scroll.scrollTop + dy * wheelPixelsPerUnit, scroll.scrollHeight - scroll.clientHeight)));\n      setScrollLeft(cm, Math.max(0, Math.min(scroll.scrollLeft + dx * wheelPixelsPerUnit, scroll.scrollWidth - scroll.clientWidth)));\n      e_preventDefault(e);\n      display.wheelStartX = null; // Abort measurement, if in progress\n      return;\n    }\n\n    // 'Project' the visible viewport to cover the area that is being\n    // scrolled into view (if we know enough to estimate it).\n    if (dy && wheelPixelsPerUnit != null) {\n      var pixels = dy * wheelPixelsPerUnit;\n      var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight;\n      if (pixels < 0) top = Math.max(0, top + pixels - 50);\n      else bot = Math.min(cm.doc.height, bot + pixels + 50);\n      updateDisplaySimple(cm, {top: top, bottom: bot});\n    }\n\n    if (wheelSamples < 20) {\n      if (display.wheelStartX == null) {\n        display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop;\n        display.wheelDX = dx; display.wheelDY = dy;\n        setTimeout(function() {\n          if (display.wheelStartX == null) return;\n          var movedX = scroll.scrollLeft - display.wheelStartX;\n          var movedY = scroll.scrollTop - display.wheelStartY;\n          var sample = (movedY && display.wheelDY && movedY / display.wheelDY) ||\n            (movedX && display.wheelDX && movedX / display.wheelDX);\n          display.wheelStartX = display.wheelStartY = null;\n          if (!sample) return;\n          wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1);\n          ++wheelSamples;\n        }, 200);\n      } else {\n        display.wheelDX += dx; display.wheelDY += dy;\n      }\n    }\n  }\n\n  // KEY EVENTS\n\n  // Run a handler that was bound to a key.\n  function doHandleBinding(cm, bound, dropShift) {\n    if (typeof bound == \"string\") {\n      bound = commands[bound];\n      if (!bound) return false;\n    }\n    // Ensure previous input has been read, so that the handler sees a\n    // consistent view of the document\n    cm.display.input.ensurePolled();\n    var prevShift = cm.display.shift, done = false;\n    try {\n      if (isReadOnly(cm)) cm.state.suppressEdits = true;\n      if (dropShift) cm.display.shift = false;\n      done = bound(cm) != Pass;\n    } finally {\n      cm.display.shift = prevShift;\n      cm.state.suppressEdits = false;\n    }\n    return done;\n  }\n\n  function lookupKeyForEditor(cm, name, handle) {\n    for (var i = 0; i < cm.state.keyMaps.length; i++) {\n      var result = lookupKey(name, cm.state.keyMaps[i], handle, cm);\n      if (result) return result;\n    }\n    return (cm.options.extraKeys && lookupKey(name, cm.options.extraKeys, handle, cm))\n      || lookupKey(name, cm.options.keyMap, handle, cm);\n  }\n\n  var stopSeq = new Delayed;\n  function dispatchKey(cm, name, e, handle) {\n    var seq = cm.state.keySeq;\n    if (seq) {\n      if (isModifierKey(name)) return \"handled\";\n      stopSeq.set(50, function() {\n        if (cm.state.keySeq == seq) {\n          cm.state.keySeq = null;\n          cm.display.input.reset();\n        }\n      });\n      name = seq + \" \" + name;\n    }\n    var result = lookupKeyForEditor(cm, name, handle);\n\n    if (result == \"multi\")\n      cm.state.keySeq = name;\n    if (result == \"handled\")\n      signalLater(cm, \"keyHandled\", cm, name, e);\n\n    if (result == \"handled\" || result == \"multi\") {\n      e_preventDefault(e);\n      restartBlink(cm);\n    }\n\n    if (seq && !result && /\\'$/.test(name)) {\n      e_preventDefault(e);\n      return true;\n    }\n    return !!result;\n  }\n\n  // Handle a key from the keydown event.\n  function handleKeyBinding(cm, e) {\n    var name = keyName(e, true);\n    if (!name) return false;\n\n    if (e.shiftKey && !cm.state.keySeq) {\n      // First try to resolve full name (including 'Shift-'). Failing\n      // that, see if there is a cursor-motion command (starting with\n      // 'go') bound to the keyname without 'Shift-'.\n      return dispatchKey(cm, \"Shift-\" + name, e, function(b) {return doHandleBinding(cm, b, true);})\n          || dispatchKey(cm, name, e, function(b) {\n               if (typeof b == \"string\" ? /^go[A-Z]/.test(b) : b.motion)\n                 return doHandleBinding(cm, b);\n             });\n    } else {\n      return dispatchKey(cm, name, e, function(b) { return doHandleBinding(cm, b); });\n    }\n  }\n\n  // Handle a key from the keypress event\n  function handleCharBinding(cm, e, ch) {\n    return dispatchKey(cm, \"'\" + ch + \"'\", e,\n                       function(b) { return doHandleBinding(cm, b, true); });\n  }\n\n  var lastStoppedKey = null;\n  function onKeyDown(e) {\n    var cm = this;\n    cm.curOp.focus = activeElt();\n    if (signalDOMEvent(cm, e)) return;\n    // IE does strange things with escape.\n    if (ie && ie_version < 11 && e.keyCode == 27) e.returnValue = false;\n    var code = e.keyCode;\n    cm.display.shift = code == 16 || e.shiftKey;\n    var handled = handleKeyBinding(cm, e);\n    if (presto) {\n      lastStoppedKey = handled ? code : null;\n      // Opera has no cut event... we try to at least catch the key combo\n      if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey))\n        cm.replaceSelection(\"\", null, \"cut\");\n    }\n\n    // Turn mouse into crosshair when Alt is held on Mac.\n    if (code == 18 && !/\\bCodeMirror-crosshair\\b/.test(cm.display.lineDiv.className))\n      showCrossHair(cm);\n  }\n\n  function showCrossHair(cm) {\n    var lineDiv = cm.display.lineDiv;\n    addClass(lineDiv, \"CodeMirror-crosshair\");\n\n    function up(e) {\n      if (e.keyCode == 18 || !e.altKey) {\n        rmClass(lineDiv, \"CodeMirror-crosshair\");\n        off(document, \"keyup\", up);\n        off(document, \"mouseover\", up);\n      }\n    }\n    on(document, \"keyup\", up);\n    on(document, \"mouseover\", up);\n  }\n\n  function onKeyUp(e) {\n    if (e.keyCode == 16) this.doc.sel.shift = false;\n    signalDOMEvent(this, e);\n  }\n\n  function onKeyPress(e) {\n    var cm = this;\n    if (eventInWidget(cm.display, e) || signalDOMEvent(cm, e) || e.ctrlKey && !e.altKey || mac && e.metaKey) return;\n    var keyCode = e.keyCode, charCode = e.charCode;\n    if (presto && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return;}\n    if ((presto && (!e.which || e.which < 10)) && handleKeyBinding(cm, e)) return;\n    var ch = String.fromCharCode(charCode == null ? keyCode : charCode);\n    if (handleCharBinding(cm, e, ch)) return;\n    cm.display.input.onKeyPress(e);\n  }\n\n  // FOCUS/BLUR EVENTS\n\n  function delayBlurEvent(cm) {\n    cm.state.delayingBlurEvent = true;\n    setTimeout(function() {\n      if (cm.state.delayingBlurEvent) {\n        cm.state.delayingBlurEvent = false;\n        onBlur(cm);\n      }\n    }, 100);\n  }\n\n  function onFocus(cm) {\n    if (cm.state.delayingBlurEvent) cm.state.delayingBlurEvent = false;\n\n    if (cm.options.readOnly == \"nocursor\") return;\n    if (!cm.state.focused) {\n      signal(cm, \"focus\", cm);\n      cm.state.focused = true;\n      addClass(cm.display.wrapper, \"CodeMirror-focused\");\n      // This test prevents this from firing when a context\n      // menu is closed (since the input reset would kill the\n      // select-all detection hack)\n      if (!cm.curOp && cm.display.selForContextMenu != cm.doc.sel) {\n        cm.display.input.reset();\n        if (webkit) setTimeout(function() { cm.display.input.reset(true); }, 20); // Issue #1730\n      }\n      cm.display.input.receivedFocus();\n    }\n    restartBlink(cm);\n  }\n  function onBlur(cm) {\n    if (cm.state.delayingBlurEvent) return;\n\n    if (cm.state.focused) {\n      signal(cm, \"blur\", cm);\n      cm.state.focused = false;\n      rmClass(cm.display.wrapper, \"CodeMirror-focused\");\n    }\n    clearInterval(cm.display.blinker);\n    setTimeout(function() {if (!cm.state.focused) cm.display.shift = false;}, 150);\n  }\n\n  // CONTEXT MENU HANDLING\n\n  // To make the context menu work, we need to briefly unhide the\n  // textarea (making it as unobtrusive as possible) to let the\n  // right-click take effect on it.\n  function onContextMenu(cm, e) {\n    if (eventInWidget(cm.display, e) || contextMenuInGutter(cm, e)) return;\n    cm.display.input.onContextMenu(e);\n  }\n\n  function contextMenuInGutter(cm, e) {\n    if (!hasHandler(cm, \"gutterContextMenu\")) return false;\n    return gutterEvent(cm, e, \"gutterContextMenu\", false, signal);\n  }\n\n  // UPDATING\n\n  // Compute the position of the end of a change (its 'to' property\n  // refers to the pre-change end).\n  var changeEnd = CodeMirror.changeEnd = function(change) {\n    if (!change.text) return change.to;\n    return Pos(change.from.line + change.text.length - 1,\n               lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0));\n  };\n\n  // Adjust a position to refer to the post-change position of the\n  // same text, or the end of the change if the change covers it.\n  function adjustForChange(pos, change) {\n    if (cmp(pos, change.from) < 0) return pos;\n    if (cmp(pos, change.to) <= 0) return changeEnd(change);\n\n    var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch;\n    if (pos.line == change.to.line) ch += changeEnd(change).ch - change.to.ch;\n    return Pos(line, ch);\n  }\n\n  function computeSelAfterChange(doc, change) {\n    var out = [];\n    for (var i = 0; i < doc.sel.ranges.length; i++) {\n      var range = doc.sel.ranges[i];\n      out.push(new Range(adjustForChange(range.anchor, change),\n                         adjustForChange(range.head, change)));\n    }\n    return normalizeSelection(out, doc.sel.primIndex);\n  }\n\n  function offsetPos(pos, old, nw) {\n    if (pos.line == old.line)\n      return Pos(nw.line, pos.ch - old.ch + nw.ch);\n    else\n      return Pos(nw.line + (pos.line - old.line), pos.ch);\n  }\n\n  // Used by replaceSelections to allow moving the selection to the\n  // start or around the replaced test. Hint may be \"start\" or \"around\".\n  function computeReplacedSel(doc, changes, hint) {\n    var out = [];\n    var oldPrev = Pos(doc.first, 0), newPrev = oldPrev;\n    for (var i = 0; i < changes.length; i++) {\n      var change = changes[i];\n      var from = offsetPos(change.from, oldPrev, newPrev);\n      var to = offsetPos(changeEnd(change), oldPrev, newPrev);\n      oldPrev = change.to;\n      newPrev = to;\n      if (hint == \"around\") {\n        var range = doc.sel.ranges[i], inv = cmp(range.head, range.anchor) < 0;\n        out[i] = new Range(inv ? to : from, inv ? from : to);\n      } else {\n        out[i] = new Range(from, from);\n      }\n    }\n    return new Selection(out, doc.sel.primIndex);\n  }\n\n  // Allow \"beforeChange\" event handlers to influence a change\n  function filterChange(doc, change, update) {\n    var obj = {\n      canceled: false,\n      from: change.from,\n      to: change.to,\n      text: change.text,\n      origin: change.origin,\n      cancel: function() { this.canceled = true; }\n    };\n    if (update) obj.update = function(from, to, text, origin) {\n      if (from) this.from = clipPos(doc, from);\n      if (to) this.to = clipPos(doc, to);\n      if (text) this.text = text;\n      if (origin !== undefined) this.origin = origin;\n    };\n    signal(doc, \"beforeChange\", doc, obj);\n    if (doc.cm) signal(doc.cm, \"beforeChange\", doc.cm, obj);\n\n    if (obj.canceled) return null;\n    return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin};\n  }\n\n  // Apply a change to a document, and add it to the document's\n  // history, and propagating it to all linked documents.\n  function makeChange(doc, change, ignoreReadOnly) {\n    if (doc.cm) {\n      if (!doc.cm.curOp) return operation(doc.cm, makeChange)(doc, change, ignoreReadOnly);\n      if (doc.cm.state.suppressEdits) return;\n    }\n\n    if (hasHandler(doc, \"beforeChange\") || doc.cm && hasHandler(doc.cm, \"beforeChange\")) {\n      change = filterChange(doc, change, true);\n      if (!change) return;\n    }\n\n    // Possibly split or suppress the update based on the presence\n    // of read-only spans in its range.\n    var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to);\n    if (split) {\n      for (var i = split.length - 1; i >= 0; --i)\n        makeChangeInner(doc, {from: split[i].from, to: split[i].to, text: i ? [\"\"] : change.text});\n    } else {\n      makeChangeInner(doc, change);\n    }\n  }\n\n  function makeChangeInner(doc, change) {\n    if (change.text.length == 1 && change.text[0] == \"\" && cmp(change.from, change.to) == 0) return;\n    var selAfter = computeSelAfterChange(doc, change);\n    addChangeToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN);\n\n    makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change));\n    var rebased = [];\n\n    linkedDocs(doc, function(doc, sharedHist) {\n      if (!sharedHist && indexOf(rebased, doc.history) == -1) {\n        rebaseHist(doc.history, change);\n        rebased.push(doc.history);\n      }\n      makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change));\n    });\n  }\n\n  // Revert a change stored in a document's history.\n  function makeChangeFromHistory(doc, type, allowSelectionOnly) {\n    if (doc.cm && doc.cm.state.suppressEdits) return;\n\n    var hist = doc.history, event, selAfter = doc.sel;\n    var source = type == \"undo\" ? hist.done : hist.undone, dest = type == \"undo\" ? hist.undone : hist.done;\n\n    // Verify that there is a useable event (so that ctrl-z won't\n    // needlessly clear selection events)\n    for (var i = 0; i < source.length; i++) {\n      event = source[i];\n      if (allowSelectionOnly ? event.ranges && !event.equals(doc.sel) : !event.ranges)\n        break;\n    }\n    if (i == source.length) return;\n    hist.lastOrigin = hist.lastSelOrigin = null;\n\n    for (;;) {\n      event = source.pop();\n      if (event.ranges) {\n        pushSelectionToHistory(event, dest);\n        if (allowSelectionOnly && !event.equals(doc.sel)) {\n          setSelection(doc, event, {clearRedo: false});\n          return;\n        }\n        selAfter = event;\n      }\n      else break;\n    }\n\n    // Build up a reverse change object to add to the opposite history\n    // stack (redo when undoing, and vice versa).\n    var antiChanges = [];\n    pushSelectionToHistory(selAfter, dest);\n    dest.push({changes: antiChanges, generation: hist.generation});\n    hist.generation = event.generation || ++hist.maxGeneration;\n\n    var filter = hasHandler(doc, \"beforeChange\") || doc.cm && hasHandler(doc.cm, \"beforeChange\");\n\n    for (var i = event.changes.length - 1; i >= 0; --i) {\n      var change = event.changes[i];\n      change.origin = type;\n      if (filter && !filterChange(doc, change, false)) {\n        source.length = 0;\n        return;\n      }\n\n      antiChanges.push(historyChangeFromChange(doc, change));\n\n      var after = i ? computeSelAfterChange(doc, change) : lst(source);\n      makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change));\n      if (!i && doc.cm) doc.cm.scrollIntoView({from: change.from, to: changeEnd(change)});\n      var rebased = [];\n\n      // Propagate to the linked documents\n      linkedDocs(doc, function(doc, sharedHist) {\n        if (!sharedHist && indexOf(rebased, doc.history) == -1) {\n          rebaseHist(doc.history, change);\n          rebased.push(doc.history);\n        }\n        makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change));\n      });\n    }\n  }\n\n  // Sub-views need their line numbers shifted when text is added\n  // above or below them in the parent document.\n  function shiftDoc(doc, distance) {\n    if (distance == 0) return;\n    doc.first += distance;\n    doc.sel = new Selection(map(doc.sel.ranges, function(range) {\n      return new Range(Pos(range.anchor.line + distance, range.anchor.ch),\n                       Pos(range.head.line + distance, range.head.ch));\n    }), doc.sel.primIndex);\n    if (doc.cm) {\n      regChange(doc.cm, doc.first, doc.first - distance, distance);\n      for (var d = doc.cm.display, l = d.viewFrom; l < d.viewTo; l++)\n        regLineChange(doc.cm, l, \"gutter\");\n    }\n  }\n\n  // More lower-level change function, handling only a single document\n  // (not linked ones).\n  function makeChangeSingleDoc(doc, change, selAfter, spans) {\n    if (doc.cm && !doc.cm.curOp)\n      return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans);\n\n    if (change.to.line < doc.first) {\n      shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line));\n      return;\n    }\n    if (change.from.line > doc.lastLine()) return;\n\n    // Clip the change to the size of this doc\n    if (change.from.line < doc.first) {\n      var shift = change.text.length - 1 - (doc.first - change.from.line);\n      shiftDoc(doc, shift);\n      change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch),\n                text: [lst(change.text)], origin: change.origin};\n    }\n    var last = doc.lastLine();\n    if (change.to.line > last) {\n      change = {from: change.from, to: Pos(last, getLine(doc, last).text.length),\n                text: [change.text[0]], origin: change.origin};\n    }\n\n    change.removed = getBetween(doc, change.from, change.to);\n\n    if (!selAfter) selAfter = computeSelAfterChange(doc, change);\n    if (doc.cm) makeChangeSingleDocInEditor(doc.cm, change, spans);\n    else updateDoc(doc, change, spans);\n    setSelectionNoUndo(doc, selAfter, sel_dontScroll);\n  }\n\n  // Handle the interaction of a change to a document with the editor\n  // that this document is part of.\n  function makeChangeSingleDocInEditor(cm, change, spans) {\n    var doc = cm.doc, display = cm.display, from = change.from, to = change.to;\n\n    var recomputeMaxLength = false, checkWidthStart = from.line;\n    if (!cm.options.lineWrapping) {\n      checkWidthStart = lineNo(visualLine(getLine(doc, from.line)));\n      doc.iter(checkWidthStart, to.line + 1, function(line) {\n        if (line == display.maxLine) {\n          recomputeMaxLength = true;\n          return true;\n        }\n      });\n    }\n\n    if (doc.sel.contains(change.from, change.to) > -1)\n      signalCursorActivity(cm);\n\n    updateDoc(doc, change, spans, estimateHeight(cm));\n\n    if (!cm.options.lineWrapping) {\n      doc.iter(checkWidthStart, from.line + change.text.length, function(line) {\n        var len = lineLength(line);\n        if (len > display.maxLineLength) {\n          display.maxLine = line;\n          display.maxLineLength = len;\n          display.maxLineChanged = true;\n          recomputeMaxLength = false;\n        }\n      });\n      if (recomputeMaxLength) cm.curOp.updateMaxLine = true;\n    }\n\n    // Adjust frontier, schedule worker\n    doc.frontier = Math.min(doc.frontier, from.line);\n    startWorker(cm, 400);\n\n    var lendiff = change.text.length - (to.line - from.line) - 1;\n    // Remember that these lines changed, for updating the display\n    if (change.full)\n      regChange(cm);\n    else if (from.line == to.line && change.text.length == 1 && !isWholeLineUpdate(cm.doc, change))\n      regLineChange(cm, from.line, \"text\");\n    else\n      regChange(cm, from.line, to.line + 1, lendiff);\n\n    var changesHandler = hasHandler(cm, \"changes\"), changeHandler = hasHandler(cm, \"change\");\n    if (changeHandler || changesHandler) {\n      var obj = {\n        from: from, to: to,\n        text: change.text,\n        removed: change.removed,\n        origin: change.origin\n      };\n      if (changeHandler) signalLater(cm, \"change\", cm, obj);\n      if (changesHandler) (cm.curOp.changeObjs || (cm.curOp.changeObjs = [])).push(obj);\n    }\n    cm.display.selForContextMenu = null;\n  }\n\n  function replaceRange(doc, code, from, to, origin) {\n    if (!to) to = from;\n    if (cmp(to, from) < 0) { var tmp = to; to = from; from = tmp; }\n    if (typeof code == \"string\") code = splitLines(code);\n    makeChange(doc, {from: from, to: to, text: code, origin: origin});\n  }\n\n  // SCROLLING THINGS INTO VIEW\n\n  // If an editor sits on the top or bottom of the window, partially\n  // scrolled out of view, this ensures that the cursor is visible.\n  function maybeScrollWindow(cm, coords) {\n    if (signalDOMEvent(cm, \"scrollCursorIntoView\")) return;\n\n    var display = cm.display, box = display.sizer.getBoundingClientRect(), doScroll = null;\n    if (coords.top + box.top < 0) doScroll = true;\n    else if (coords.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) doScroll = false;\n    if (doScroll != null && !phantom) {\n      var scrollNode = elt(\"div\", \"\\u200b\", null, \"position: absolute; top: \" +\n                           (coords.top - display.viewOffset - paddingTop(cm.display)) + \"px; height: \" +\n                           (coords.bottom - coords.top + scrollGap(cm) + display.barHeight) + \"px; left: \" +\n                           coords.left + \"px; width: 2px;\");\n      cm.display.lineSpace.appendChild(scrollNode);\n      scrollNode.scrollIntoView(doScroll);\n      cm.display.lineSpace.removeChild(scrollNode);\n    }\n  }\n\n  // Scroll a given position into view (immediately), verifying that\n  // it actually became visible (as line heights are accurately\n  // measured, the position of something may 'drift' during drawing).\n  function scrollPosIntoView(cm, pos, end, margin) {\n    if (margin == null) margin = 0;\n    for (var limit = 0; limit < 5; limit++) {\n      var changed = false, coords = cursorCoords(cm, pos);\n      var endCoords = !end || end == pos ? coords : cursorCoords(cm, end);\n      var scrollPos = calculateScrollPos(cm, Math.min(coords.left, endCoords.left),\n                                         Math.min(coords.top, endCoords.top) - margin,\n                                         Math.max(coords.left, endCoords.left),\n                                         Math.max(coords.bottom, endCoords.bottom) + margin);\n      var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft;\n      if (scrollPos.scrollTop != null) {\n        setScrollTop(cm, scrollPos.scrollTop);\n        if (Math.abs(cm.doc.scrollTop - startTop) > 1) changed = true;\n      }\n      if (scrollPos.scrollLeft != null) {\n        setScrollLeft(cm, scrollPos.scrollLeft);\n        if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) changed = true;\n      }\n      if (!changed) break;\n    }\n    return coords;\n  }\n\n  // Scroll a given set of coordinates into view (immediately).\n  function scrollIntoView(cm, x1, y1, x2, y2) {\n    var scrollPos = calculateScrollPos(cm, x1, y1, x2, y2);\n    if (scrollPos.scrollTop != null) setScrollTop(cm, scrollPos.scrollTop);\n    if (scrollPos.scrollLeft != null) setScrollLeft(cm, scrollPos.scrollLeft);\n  }\n\n  // Calculate a new scroll position needed to scroll the given\n  // rectangle into view. Returns an object with scrollTop and\n  // scrollLeft properties. When these are undefined, the\n  // vertical/horizontal position does not need to be adjusted.\n  function calculateScrollPos(cm, x1, y1, x2, y2) {\n    var display = cm.display, snapMargin = textHeight(cm.display);\n    if (y1 < 0) y1 = 0;\n    var screentop = cm.curOp && cm.curOp.scrollTop != null ? cm.curOp.scrollTop : display.scroller.scrollTop;\n    var screen = displayHeight(cm), result = {};\n    if (y2 - y1 > screen) y2 = y1 + screen;\n    var docBottom = cm.doc.height + paddingVert(display);\n    var atTop = y1 < snapMargin, atBottom = y2 > docBottom - snapMargin;\n    if (y1 < screentop) {\n      result.scrollTop = atTop ? 0 : y1;\n    } else if (y2 > screentop + screen) {\n      var newTop = Math.min(y1, (atBottom ? docBottom : y2) - screen);\n      if (newTop != screentop) result.scrollTop = newTop;\n    }\n\n    var screenleft = cm.curOp && cm.curOp.scrollLeft != null ? cm.curOp.scrollLeft : display.scroller.scrollLeft;\n    var screenw = displayWidth(cm) - (cm.options.fixedGutter ? display.gutters.offsetWidth : 0);\n    var tooWide = x2 - x1 > screenw;\n    if (tooWide) x2 = x1 + screenw;\n    if (x1 < 10)\n      result.scrollLeft = 0;\n    else if (x1 < screenleft)\n      result.scrollLeft = Math.max(0, x1 - (tooWide ? 0 : 10));\n    else if (x2 > screenw + screenleft - 3)\n      result.scrollLeft = x2 + (tooWide ? 0 : 10) - screenw;\n    return result;\n  }\n\n  // Store a relative adjustment to the scroll position in the current\n  // operation (to be applied when the operation finishes).\n  function addToScrollPos(cm, left, top) {\n    if (left != null || top != null) resolveScrollToPos(cm);\n    if (left != null)\n      cm.curOp.scrollLeft = (cm.curOp.scrollLeft == null ? cm.doc.scrollLeft : cm.curOp.scrollLeft) + left;\n    if (top != null)\n      cm.curOp.scrollTop = (cm.curOp.scrollTop == null ? cm.doc.scrollTop : cm.curOp.scrollTop) + top;\n  }\n\n  // Make sure that at the end of the operation the current cursor is\n  // shown.\n  function ensureCursorVisible(cm) {\n    resolveScrollToPos(cm);\n    var cur = cm.getCursor(), from = cur, to = cur;\n    if (!cm.options.lineWrapping) {\n      from = cur.ch ? Pos(cur.line, cur.ch - 1) : cur;\n      to = Pos(cur.line, cur.ch + 1);\n    }\n    cm.curOp.scrollToPos = {from: from, to: to, margin: cm.options.cursorScrollMargin, isCursor: true};\n  }\n\n  // When an operation has its scrollToPos property set, and another\n  // scroll action is applied before the end of the operation, this\n  // 'simulates' scrolling that position into view in a cheap way, so\n  // that the effect of intermediate scroll commands is not ignored.\n  function resolveScrollToPos(cm) {\n    var range = cm.curOp.scrollToPos;\n    if (range) {\n      cm.curOp.scrollToPos = null;\n      var from = estimateCoords(cm, range.from), to = estimateCoords(cm, range.to);\n      var sPos = calculateScrollPos(cm, Math.min(from.left, to.left),\n                                    Math.min(from.top, to.top) - range.margin,\n                                    Math.max(from.right, to.right),\n                                    Math.max(from.bottom, to.bottom) + range.margin);\n      cm.scrollTo(sPos.scrollLeft, sPos.scrollTop);\n    }\n  }\n\n  // API UTILITIES\n\n  // Indent the given line. The how parameter can be \"smart\",\n  // \"add\"/null, \"subtract\", or \"prev\". When aggressive is false\n  // (typically set to true for forced single-line indents), empty\n  // lines are not indented, and places where the mode returns Pass\n  // are left alone.\n  function indentLine(cm, n, how, aggressive) {\n    var doc = cm.doc, state;\n    if (how == null) how = \"add\";\n    if (how == \"smart\") {\n      // Fall back to \"prev\" when the mode doesn't have an indentation\n      // method.\n      if (!doc.mode.indent) how = \"prev\";\n      else state = getStateBefore(cm, n);\n    }\n\n    var tabSize = cm.options.tabSize;\n    var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize);\n    if (line.stateAfter) line.stateAfter = null;\n    var curSpaceString = line.text.match(/^\\s*/)[0], indentation;\n    if (!aggressive && !/\\S/.test(line.text)) {\n      indentation = 0;\n      how = \"not\";\n    } else if (how == \"smart\") {\n      indentation = doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text);\n      if (indentation == Pass || indentation > 150) {\n        if (!aggressive) return;\n        how = \"prev\";\n      }\n    }\n    if (how == \"prev\") {\n      if (n > doc.first) indentation = countColumn(getLine(doc, n-1).text, null, tabSize);\n      else indentation = 0;\n    } else if (how == \"add\") {\n      indentation = curSpace + cm.options.indentUnit;\n    } else if (how == \"subtract\") {\n      indentation = curSpace - cm.options.indentUnit;\n    } else if (typeof how == \"number\") {\n      indentation = curSpace + how;\n    }\n    indentation = Math.max(0, indentation);\n\n    var indentString = \"\", pos = 0;\n    if (cm.options.indentWithTabs)\n      for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += \"\\t\";}\n    if (pos < indentation) indentString += spaceStr(indentation - pos);\n\n    if (indentString != curSpaceString) {\n      replaceRange(doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), \"+input\");\n      line.stateAfter = null;\n      return true;\n    } else {\n      // Ensure that, if the cursor was in the whitespace at the start\n      // of the line, it is moved to the end of that space.\n      for (var i = 0; i < doc.sel.ranges.length; i++) {\n        var range = doc.sel.ranges[i];\n        if (range.head.line == n && range.head.ch < curSpaceString.length) {\n          var pos = Pos(n, curSpaceString.length);\n          replaceOneSelection(doc, i, new Range(pos, pos));\n          break;\n        }\n      }\n    }\n  }\n\n  // Utility for applying a change to a line by handle or number,\n  // returning the number and optionally registering the line as\n  // changed.\n  function changeLine(doc, handle, changeType, op) {\n    var no = handle, line = handle;\n    if (typeof handle == \"number\") line = getLine(doc, clipLine(doc, handle));\n    else no = lineNo(handle);\n    if (no == null) return null;\n    if (op(line, no) && doc.cm) regLineChange(doc.cm, no, changeType);\n    return line;\n  }\n\n  // Helper for deleting text near the selection(s), used to implement\n  // backspace, delete, and similar functionality.\n  function deleteNearSelection(cm, compute) {\n    var ranges = cm.doc.sel.ranges, kill = [];\n    // Build up a set of ranges to kill first, merging overlapping\n    // ranges.\n    for (var i = 0; i < ranges.length; i++) {\n      var toKill = compute(ranges[i]);\n      while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) {\n        var replaced = kill.pop();\n        if (cmp(replaced.from, toKill.from) < 0) {\n          toKill.from = replaced.from;\n          break;\n        }\n      }\n      kill.push(toKill);\n    }\n    // Next, remove those actual ranges.\n    runInOp(cm, function() {\n      for (var i = kill.length - 1; i >= 0; i--)\n        replaceRange(cm.doc, \"\", kill[i].from, kill[i].to, \"+delete\");\n      ensureCursorVisible(cm);\n    });\n  }\n\n  // Used for horizontal relative motion. Dir is -1 or 1 (left or\n  // right), unit can be \"char\", \"column\" (like char, but doesn't\n  // cross line boundaries), \"word\" (across next word), or \"group\" (to\n  // the start of next group of word or non-word-non-whitespace\n  // chars). The visually param controls whether, in right-to-left\n  // text, direction 1 means to move towards the next index in the\n  // string, or towards the character to the right of the current\n  // position. The resulting position will have a hitSide=true\n  // property if it reached the end of the document.\n  function findPosH(doc, pos, dir, unit, visually) {\n    var line = pos.line, ch = pos.ch, origDir = dir;\n    var lineObj = getLine(doc, line);\n    var possible = true;\n    function findNextLine() {\n      var l = line + dir;\n      if (l < doc.first || l >= doc.first + doc.size) return (possible = false);\n      line = l;\n      return lineObj = getLine(doc, l);\n    }\n    function moveOnce(boundToLine) {\n      var next = (visually ? moveVisually : moveLogically)(lineObj, ch, dir, true);\n      if (next == null) {\n        if (!boundToLine && findNextLine()) {\n          if (visually) ch = (dir < 0 ? lineRight : lineLeft)(lineObj);\n          else ch = dir < 0 ? lineObj.text.length : 0;\n        } else return (possible = false);\n      } else ch = next;\n      return true;\n    }\n\n    if (unit == \"char\") moveOnce();\n    else if (unit == \"column\") moveOnce(true);\n    else if (unit == \"word\" || unit == \"group\") {\n      var sawType = null, group = unit == \"group\";\n      var helper = doc.cm && doc.cm.getHelper(pos, \"wordChars\");\n      for (var first = true;; first = false) {\n        if (dir < 0 && !moveOnce(!first)) break;\n        var cur = lineObj.text.charAt(ch) || \"\\n\";\n        var type = isWordChar(cur, helper) ? \"w\"\n          : group && cur == \"\\n\" ? \"n\"\n          : !group || /\\s/.test(cur) ? null\n          : \"p\";\n        if (group && !first && !type) type = \"s\";\n        if (sawType && sawType != type) {\n          if (dir < 0) {dir = 1; moveOnce();}\n          break;\n        }\n\n        if (type) sawType = type;\n        if (dir > 0 && !moveOnce(!first)) break;\n      }\n    }\n    var result = skipAtomic(doc, Pos(line, ch), origDir, true);\n    if (!possible) result.hitSide = true;\n    return result;\n  }\n\n  // For relative vertical movement. Dir may be -1 or 1. Unit can be\n  // \"page\" or \"line\". The resulting position will have a hitSide=true\n  // property if it reached the end of the document.\n  function findPosV(cm, pos, dir, unit) {\n    var doc = cm.doc, x = pos.left, y;\n    if (unit == \"page\") {\n      var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight);\n      y = pos.top + dir * (pageSize - (dir < 0 ? 1.5 : .5) * textHeight(cm.display));\n    } else if (unit == \"line\") {\n      y = dir > 0 ? pos.bottom + 3 : pos.top - 3;\n    }\n    for (;;) {\n      var target = coordsChar(cm, x, y);\n      if (!target.outside) break;\n      if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break; }\n      y += dir * 5;\n    }\n    return target;\n  }\n\n  // EDITOR METHODS\n\n  // The publicly visible API. Note that methodOp(f) means\n  // 'wrap f in an operation, performed on its `this` parameter'.\n\n  // This is not the complete set of editor methods. Most of the\n  // methods defined on the Doc type are also injected into\n  // CodeMirror.prototype, for backwards compatibility and\n  // convenience.\n\n  CodeMirror.prototype = {\n    constructor: CodeMirror,\n    focus: function(){window.focus(); this.display.input.focus();},\n\n    setOption: function(option, value) {\n      var options = this.options, old = options[option];\n      if (options[option] == value && option != \"mode\") return;\n      options[option] = value;\n      if (optionHandlers.hasOwnProperty(option))\n        operation(this, optionHandlers[option])(this, value, old);\n    },\n\n    getOption: function(option) {return this.options[option];},\n    getDoc: function() {return this.doc;},\n\n    addKeyMap: function(map, bottom) {\n      this.state.keyMaps[bottom ? \"push\" : \"unshift\"](getKeyMap(map));\n    },\n    removeKeyMap: function(map) {\n      var maps = this.state.keyMaps;\n      for (var i = 0; i < maps.length; ++i)\n        if (maps[i] == map || maps[i].name == map) {\n          maps.splice(i, 1);\n          return true;\n        }\n    },\n\n    addOverlay: methodOp(function(spec, options) {\n      var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec);\n      if (mode.startState) throw new Error(\"Overlays may not be stateful.\");\n      this.state.overlays.push({mode: mode, modeSpec: spec, opaque: options && options.opaque});\n      this.state.modeGen++;\n      regChange(this);\n    }),\n    removeOverlay: methodOp(function(spec) {\n      var overlays = this.state.overlays;\n      for (var i = 0; i < overlays.length; ++i) {\n        var cur = overlays[i].modeSpec;\n        if (cur == spec || typeof spec == \"string\" && cur.name == spec) {\n          overlays.splice(i, 1);\n          this.state.modeGen++;\n          regChange(this);\n          return;\n        }\n      }\n    }),\n\n    indentLine: methodOp(function(n, dir, aggressive) {\n      if (typeof dir != \"string\" && typeof dir != \"number\") {\n        if (dir == null) dir = this.options.smartIndent ? \"smart\" : \"prev\";\n        else dir = dir ? \"add\" : \"subtract\";\n      }\n      if (isLine(this.doc, n)) indentLine(this, n, dir, aggressive);\n    }),\n    indentSelection: methodOp(function(how) {\n      var ranges = this.doc.sel.ranges, end = -1;\n      for (var i = 0; i < ranges.length; i++) {\n        var range = ranges[i];\n        if (!range.empty()) {\n          var from = range.from(), to = range.to();\n          var start = Math.max(end, from.line);\n          end = Math.min(this.lastLine(), to.line - (to.ch ? 0 : 1)) + 1;\n          for (var j = start; j < end; ++j)\n            indentLine(this, j, how);\n          var newRanges = this.doc.sel.ranges;\n          if (from.ch == 0 && ranges.length == newRanges.length && newRanges[i].from().ch > 0)\n            replaceOneSelection(this.doc, i, new Range(from, newRanges[i].to()), sel_dontScroll);\n        } else if (range.head.line > end) {\n          indentLine(this, range.head.line, how, true);\n          end = range.head.line;\n          if (i == this.doc.sel.primIndex) ensureCursorVisible(this);\n        }\n      }\n    }),\n\n    // Fetch the parser token for a given character. Useful for hacks\n    // that want to inspect the mode state (say, for completion).\n    getTokenAt: function(pos, precise) {\n      return takeToken(this, pos, precise);\n    },\n\n    getLineTokens: function(line, precise) {\n      return takeToken(this, Pos(line), precise, true);\n    },\n\n    getTokenTypeAt: function(pos) {\n      pos = clipPos(this.doc, pos);\n      var styles = getLineStyles(this, getLine(this.doc, pos.line));\n      var before = 0, after = (styles.length - 1) / 2, ch = pos.ch;\n      var type;\n      if (ch == 0) type = styles[2];\n      else for (;;) {\n        var mid = (before + after) >> 1;\n        if ((mid ? styles[mid * 2 - 1] : 0) >= ch) after = mid;\n        else if (styles[mid * 2 + 1] < ch) before = mid + 1;\n        else { type = styles[mid * 2 + 2]; break; }\n      }\n      var cut = type ? type.indexOf(\"cm-overlay \") : -1;\n      return cut < 0 ? type : cut == 0 ? null : type.slice(0, cut - 1);\n    },\n\n    getModeAt: function(pos) {\n      var mode = this.doc.mode;\n      if (!mode.innerMode) return mode;\n      return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode;\n    },\n\n    getHelper: function(pos, type) {\n      return this.getHelpers(pos, type)[0];\n    },\n\n    getHelpers: function(pos, type) {\n      var found = [];\n      if (!helpers.hasOwnProperty(type)) return found;\n      var help = helpers[type], mode = this.getModeAt(pos);\n      if (typeof mode[type] == \"string\") {\n        if (help[mode[type]]) found.push(help[mode[type]]);\n      } else if (mode[type]) {\n        for (var i = 0; i < mode[type].length; i++) {\n          var val = help[mode[type][i]];\n          if (val) found.push(val);\n        }\n      } else if (mode.helperType && help[mode.helperType]) {\n        found.push(help[mode.helperType]);\n      } else if (help[mode.name]) {\n        found.push(help[mode.name]);\n      }\n      for (var i = 0; i < help._global.length; i++) {\n        var cur = help._global[i];\n        if (cur.pred(mode, this) && indexOf(found, cur.val) == -1)\n          found.push(cur.val);\n      }\n      return found;\n    },\n\n    getStateAfter: function(line, precise) {\n      var doc = this.doc;\n      line = clipLine(doc, line == null ? doc.first + doc.size - 1: line);\n      return getStateBefore(this, line + 1, precise);\n    },\n\n    cursorCoords: function(start, mode) {\n      var pos, range = this.doc.sel.primary();\n      if (start == null) pos = range.head;\n      else if (typeof start == \"object\") pos = clipPos(this.doc, start);\n      else pos = start ? range.from() : range.to();\n      return cursorCoords(this, pos, mode || \"page\");\n    },\n\n    charCoords: function(pos, mode) {\n      return charCoords(this, clipPos(this.doc, pos), mode || \"page\");\n    },\n\n    coordsChar: function(coords, mode) {\n      coords = fromCoordSystem(this, coords, mode || \"page\");\n      return coordsChar(this, coords.left, coords.top);\n    },\n\n    lineAtHeight: function(height, mode) {\n      height = fromCoordSystem(this, {top: height, left: 0}, mode || \"page\").top;\n      return lineAtHeight(this.doc, height + this.display.viewOffset);\n    },\n    heightAtLine: function(line, mode) {\n      var end = false, lineObj;\n      if (typeof line == \"number\") {\n        var last = this.doc.first + this.doc.size - 1;\n        if (line < this.doc.first) line = this.doc.first;\n        else if (line > last) { line = last; end = true; }\n        lineObj = getLine(this.doc, line);\n      } else {\n        lineObj = line;\n      }\n      return intoCoordSystem(this, lineObj, {top: 0, left: 0}, mode || \"page\").top +\n        (end ? this.doc.height - heightAtLine(lineObj) : 0);\n    },\n\n    defaultTextHeight: function() { return textHeight(this.display); },\n    defaultCharWidth: function() { return charWidth(this.display); },\n\n    setGutterMarker: methodOp(function(line, gutterID, value) {\n      return changeLine(this.doc, line, \"gutter\", function(line) {\n        var markers = line.gutterMarkers || (line.gutterMarkers = {});\n        markers[gutterID] = value;\n        if (!value && isEmpty(markers)) line.gutterMarkers = null;\n        return true;\n      });\n    }),\n\n    clearGutter: methodOp(function(gutterID) {\n      var cm = this, doc = cm.doc, i = doc.first;\n      doc.iter(function(line) {\n        if (line.gutterMarkers && line.gutterMarkers[gutterID]) {\n          line.gutterMarkers[gutterID] = null;\n          regLineChange(cm, i, \"gutter\");\n          if (isEmpty(line.gutterMarkers)) line.gutterMarkers = null;\n        }\n        ++i;\n      });\n    }),\n\n    lineInfo: function(line) {\n      if (typeof line == \"number\") {\n        if (!isLine(this.doc, line)) return null;\n        var n = line;\n        line = getLine(this.doc, line);\n        if (!line) return null;\n      } else {\n        var n = lineNo(line);\n        if (n == null) return null;\n      }\n      return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers,\n              textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass,\n              widgets: line.widgets};\n    },\n\n    getViewport: function() { return {from: this.display.viewFrom, to: this.display.viewTo};},\n\n    addWidget: function(pos, node, scroll, vert, horiz) {\n      var display = this.display;\n      pos = cursorCoords(this, clipPos(this.doc, pos));\n      var top = pos.bottom, left = pos.left;\n      node.style.position = \"absolute\";\n      node.setAttribute(\"cm-ignore-events\", \"true\");\n      this.display.input.setUneditable(node);\n      display.sizer.appendChild(node);\n      if (vert == \"over\") {\n        top = pos.top;\n      } else if (vert == \"above\" || vert == \"near\") {\n        var vspace = Math.max(display.wrapper.clientHeight, this.doc.height),\n        hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth);\n        // Default to positioning above (if specified and possible); otherwise default to positioning below\n        if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight)\n          top = pos.top - node.offsetHeight;\n        else if (pos.bottom + node.offsetHeight <= vspace)\n          top = pos.bottom;\n        if (left + node.offsetWidth > hspace)\n          left = hspace - node.offsetWidth;\n      }\n      node.style.top = top + \"px\";\n      node.style.left = node.style.right = \"\";\n      if (horiz == \"right\") {\n        left = display.sizer.clientWidth - node.offsetWidth;\n        node.style.right = \"0px\";\n      } else {\n        if (horiz == \"left\") left = 0;\n        else if (horiz == \"middle\") left = (display.sizer.clientWidth - node.offsetWidth) / 2;\n        node.style.left = left + \"px\";\n      }\n      if (scroll)\n        scrollIntoView(this, left, top, left + node.offsetWidth, top + node.offsetHeight);\n    },\n\n    triggerOnKeyDown: methodOp(onKeyDown),\n    triggerOnKeyPress: methodOp(onKeyPress),\n    triggerOnKeyUp: onKeyUp,\n\n    execCommand: function(cmd) {\n      if (commands.hasOwnProperty(cmd))\n        return commands[cmd](this);\n    },\n\n    triggerElectric: methodOp(function(text) { triggerElectric(this, text); }),\n\n    findPosH: function(from, amount, unit, visually) {\n      var dir = 1;\n      if (amount < 0) { dir = -1; amount = -amount; }\n      for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {\n        cur = findPosH(this.doc, cur, dir, unit, visually);\n        if (cur.hitSide) break;\n      }\n      return cur;\n    },\n\n    moveH: methodOp(function(dir, unit) {\n      var cm = this;\n      cm.extendSelectionsBy(function(range) {\n        if (cm.display.shift || cm.doc.extend || range.empty())\n          return findPosH(cm.doc, range.head, dir, unit, cm.options.rtlMoveVisually);\n        else\n          return dir < 0 ? range.from() : range.to();\n      }, sel_move);\n    }),\n\n    deleteH: methodOp(function(dir, unit) {\n      var sel = this.doc.sel, doc = this.doc;\n      if (sel.somethingSelected())\n        doc.replaceSelection(\"\", null, \"+delete\");\n      else\n        deleteNearSelection(this, function(range) {\n          var other = findPosH(doc, range.head, dir, unit, false);\n          return dir < 0 ? {from: other, to: range.head} : {from: range.head, to: other};\n        });\n    }),\n\n    findPosV: function(from, amount, unit, goalColumn) {\n      var dir = 1, x = goalColumn;\n      if (amount < 0) { dir = -1; amount = -amount; }\n      for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {\n        var coords = cursorCoords(this, cur, \"div\");\n        if (x == null) x = coords.left;\n        else coords.left = x;\n        cur = findPosV(this, coords, dir, unit);\n        if (cur.hitSide) break;\n      }\n      return cur;\n    },\n\n    moveV: methodOp(function(dir, unit) {\n      var cm = this, doc = this.doc, goals = [];\n      var collapse = !cm.display.shift && !doc.extend && doc.sel.somethingSelected();\n      doc.extendSelectionsBy(function(range) {\n        if (collapse)\n          return dir < 0 ? range.from() : range.to();\n        var headPos = cursorCoords(cm, range.head, \"div\");\n        if (range.goalColumn != null) headPos.left = range.goalColumn;\n        goals.push(headPos.left);\n        var pos = findPosV(cm, headPos, dir, unit);\n        if (unit == \"page\" && range == doc.sel.primary())\n          addToScrollPos(cm, null, charCoords(cm, pos, \"div\").top - headPos.top);\n        return pos;\n      }, sel_move);\n      if (goals.length) for (var i = 0; i < doc.sel.ranges.length; i++)\n        doc.sel.ranges[i].goalColumn = goals[i];\n    }),\n\n    // Find the word at the given position (as returned by coordsChar).\n    findWordAt: function(pos) {\n      var doc = this.doc, line = getLine(doc, pos.line).text;\n      var start = pos.ch, end = pos.ch;\n      if (line) {\n        var helper = this.getHelper(pos, \"wordChars\");\n        if ((pos.xRel < 0 || end == line.length) && start) --start; else ++end;\n        var startChar = line.charAt(start);\n        var check = isWordChar(startChar, helper)\n          ? function(ch) { return isWordChar(ch, helper); }\n          : /\\s/.test(startChar) ? function(ch) {return /\\s/.test(ch);}\n          : function(ch) {return !/\\s/.test(ch) && !isWordChar(ch);};\n        while (start > 0 && check(line.charAt(start - 1))) --start;\n        while (end < line.length && check(line.charAt(end))) ++end;\n      }\n      return new Range(Pos(pos.line, start), Pos(pos.line, end));\n    },\n\n    toggleOverwrite: function(value) {\n      if (value != null && value == this.state.overwrite) return;\n      if (this.state.overwrite = !this.state.overwrite)\n        addClass(this.display.cursorDiv, \"CodeMirror-overwrite\");\n      else\n        rmClass(this.display.cursorDiv, \"CodeMirror-overwrite\");\n\n      signal(this, \"overwriteToggle\", this, this.state.overwrite);\n    },\n    hasFocus: function() { return this.display.input.getField() == activeElt(); },\n\n    scrollTo: methodOp(function(x, y) {\n      if (x != null || y != null) resolveScrollToPos(this);\n      if (x != null) this.curOp.scrollLeft = x;\n      if (y != null) this.curOp.scrollTop = y;\n    }),\n    getScrollInfo: function() {\n      var scroller = this.display.scroller;\n      return {left: scroller.scrollLeft, top: scroller.scrollTop,\n              height: scroller.scrollHeight - scrollGap(this) - this.display.barHeight,\n              width: scroller.scrollWidth - scrollGap(this) - this.display.barWidth,\n              clientHeight: displayHeight(this), clientWidth: displayWidth(this)};\n    },\n\n    scrollIntoView: methodOp(function(range, margin) {\n      if (range == null) {\n        range = {from: this.doc.sel.primary().head, to: null};\n        if (margin == null) margin = this.options.cursorScrollMargin;\n      } else if (typeof range == \"number\") {\n        range = {from: Pos(range, 0), to: null};\n      } else if (range.from == null) {\n        range = {from: range, to: null};\n      }\n      if (!range.to) range.to = range.from;\n      range.margin = margin || 0;\n\n      if (range.from.line != null) {\n        resolveScrollToPos(this);\n        this.curOp.scrollToPos = range;\n      } else {\n        var sPos = calculateScrollPos(this, Math.min(range.from.left, range.to.left),\n                                      Math.min(range.from.top, range.to.top) - range.margin,\n                                      Math.max(range.from.right, range.to.right),\n                                      Math.max(range.from.bottom, range.to.bottom) + range.margin);\n        this.scrollTo(sPos.scrollLeft, sPos.scrollTop);\n      }\n    }),\n\n    setSize: methodOp(function(width, height) {\n      var cm = this;\n      function interpret(val) {\n        return typeof val == \"number\" || /^\\d+$/.test(String(val)) ? val + \"px\" : val;\n      }\n      if (width != null) cm.display.wrapper.style.width = interpret(width);\n      if (height != null) cm.display.wrapper.style.height = interpret(height);\n      if (cm.options.lineWrapping) clearLineMeasurementCache(this);\n      var lineNo = cm.display.viewFrom;\n      cm.doc.iter(lineNo, cm.display.viewTo, function(line) {\n        if (line.widgets) for (var i = 0; i < line.widgets.length; i++)\n          if (line.widgets[i].noHScroll) { regLineChange(cm, lineNo, \"widget\"); break; }\n        ++lineNo;\n      });\n      cm.curOp.forceUpdate = true;\n      signal(cm, \"refresh\", this);\n    }),\n\n    operation: function(f){return runInOp(this, f);},\n\n    refresh: methodOp(function() {\n      var oldHeight = this.display.cachedTextHeight;\n      regChange(this);\n      this.curOp.forceUpdate = true;\n      clearCaches(this);\n      this.scrollTo(this.doc.scrollLeft, this.doc.scrollTop);\n      updateGutterSpace(this);\n      if (oldHeight == null || Math.abs(oldHeight - textHeight(this.display)) > .5)\n        estimateLineHeights(this);\n      signal(this, \"refresh\", this);\n    }),\n\n    swapDoc: methodOp(function(doc) {\n      var old = this.doc;\n      old.cm = null;\n      attachDoc(this, doc);\n      clearCaches(this);\n      this.display.input.reset();\n      this.scrollTo(doc.scrollLeft, doc.scrollTop);\n      this.curOp.forceScroll = true;\n      signalLater(this, \"swapDoc\", this, old);\n      return old;\n    }),\n\n    getInputField: function(){return this.display.input.getField();},\n    getWrapperElement: function(){return this.display.wrapper;},\n    getScrollerElement: function(){return this.display.scroller;},\n    getGutterElement: function(){return this.display.gutters;}\n  };\n  eventMixin(CodeMirror);\n\n  // OPTION DEFAULTS\n\n  // The default configuration options.\n  var defaults = CodeMirror.defaults = {};\n  // Functions to run when options are changed.\n  var optionHandlers = CodeMirror.optionHandlers = {};\n\n  function option(name, deflt, handle, notOnInit) {\n    CodeMirror.defaults[name] = deflt;\n    if (handle) optionHandlers[name] =\n      notOnInit ? function(cm, val, old) {if (old != Init) handle(cm, val, old);} : handle;\n  }\n\n  // Passed to option handlers when there is no old value.\n  var Init = CodeMirror.Init = {toString: function(){return \"CodeMirror.Init\";}};\n\n  // These two are, on init, called from the constructor because they\n  // have to be initialized before the editor can start at all.\n  option(\"value\", \"\", function(cm, val) {\n    cm.setValue(val);\n  }, true);\n  option(\"mode\", null, function(cm, val) {\n    cm.doc.modeOption = val;\n    loadMode(cm);\n  }, true);\n\n  option(\"indentUnit\", 2, loadMode, true);\n  option(\"indentWithTabs\", false);\n  option(\"smartIndent\", true);\n  option(\"tabSize\", 4, function(cm) {\n    resetModeState(cm);\n    clearCaches(cm);\n    regChange(cm);\n  }, true);\n  option(\"specialChars\", /[\\t\\u0000-\\u0019\\u00ad\\u200b-\\u200f\\u2028\\u2029\\ufeff]/g, function(cm, val, old) {\n    cm.state.specialChars = new RegExp(val.source + (val.test(\"\\t\") ? \"\" : \"|\\t\"), \"g\");\n    if (old != CodeMirror.Init) cm.refresh();\n  });\n  option(\"specialCharPlaceholder\", defaultSpecialCharPlaceholder, function(cm) {cm.refresh();}, true);\n  option(\"electricChars\", true);\n  option(\"inputStyle\", mobile ? \"contenteditable\" : \"textarea\", function() {\n    throw new Error(\"inputStyle can not (yet) be changed in a running editor\"); // FIXME\n  }, true);\n  option(\"rtlMoveVisually\", !windows);\n  option(\"wholeLineUpdateBefore\", true);\n\n  option(\"theme\", \"default\", function(cm) {\n    themeChanged(cm);\n    guttersChanged(cm);\n  }, true);\n  option(\"keyMap\", \"default\", function(cm, val, old) {\n    var next = getKeyMap(val);\n    var prev = old != CodeMirror.Init && getKeyMap(old);\n    if (prev && prev.detach) prev.detach(cm, next);\n    if (next.attach) next.attach(cm, prev || null);\n  });\n  option(\"extraKeys\", null);\n\n  option(\"lineWrapping\", false, wrappingChanged, true);\n  option(\"gutters\", [], function(cm) {\n    setGuttersForLineNumbers(cm.options);\n    guttersChanged(cm);\n  }, true);\n  option(\"fixedGutter\", true, function(cm, val) {\n    cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + \"px\" : \"0\";\n    cm.refresh();\n  }, true);\n  option(\"coverGutterNextToScrollbar\", false, function(cm) {updateScrollbars(cm);}, true);\n  option(\"scrollbarStyle\", \"native\", function(cm) {\n    initScrollbars(cm);\n    updateScrollbars(cm);\n    cm.display.scrollbars.setScrollTop(cm.doc.scrollTop);\n    cm.display.scrollbars.setScrollLeft(cm.doc.scrollLeft);\n  }, true);\n  option(\"lineNumbers\", false, function(cm) {\n    setGuttersForLineNumbers(cm.options);\n    guttersChanged(cm);\n  }, true);\n  option(\"firstLineNumber\", 1, guttersChanged, true);\n  option(\"lineNumberFormatter\", function(integer) {return integer;}, guttersChanged, true);\n  option(\"showCursorWhenSelecting\", false, updateSelection, true);\n\n  option(\"resetSelectionOnContextMenu\", true);\n  option(\"lineWiseCopyCut\", true);\n\n  option(\"readOnly\", false, function(cm, val) {\n    if (val == \"nocursor\") {\n      onBlur(cm);\n      cm.display.input.blur();\n      cm.display.disabled = true;\n    } else {\n      cm.display.disabled = false;\n      if (!val) cm.display.input.reset();\n    }\n  });\n  option(\"disableInput\", false, function(cm, val) {if (!val) cm.display.input.reset();}, true);\n  option(\"dragDrop\", true, dragDropChanged);\n\n  option(\"cursorBlinkRate\", 530);\n  option(\"cursorScrollMargin\", 0);\n  option(\"cursorHeight\", 1, updateSelection, true);\n  option(\"singleCursorHeightPerLine\", true, updateSelection, true);\n  option(\"workTime\", 100);\n  option(\"workDelay\", 100);\n  option(\"flattenSpans\", true, resetModeState, true);\n  option(\"addModeClass\", false, resetModeState, true);\n  option(\"pollInterval\", 100);\n  option(\"undoDepth\", 200, function(cm, val){cm.doc.history.undoDepth = val;});\n  option(\"historyEventDelay\", 1250);\n  option(\"viewportMargin\", 10, function(cm){cm.refresh();}, true);\n  option(\"maxHighlightLength\", 10000, resetModeState, true);\n  option(\"moveInputWithCursor\", true, function(cm, val) {\n    if (!val) cm.display.input.resetPosition();\n  });\n\n  option(\"tabindex\", null, function(cm, val) {\n    cm.display.input.getField().tabIndex = val || \"\";\n  });\n  option(\"autofocus\", null);\n\n  // MODE DEFINITION AND QUERYING\n\n  // Known modes, by name and by MIME\n  var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {};\n\n  // Extra arguments are stored as the mode's dependencies, which is\n  // used by (legacy) mechanisms like loadmode.js to automatically\n  // load a mode. (Preferred mechanism is the require/define calls.)\n  CodeMirror.defineMode = function(name, mode) {\n    if (!CodeMirror.defaults.mode && name != \"null\") CodeMirror.defaults.mode = name;\n    if (arguments.length > 2)\n      mode.dependencies = Array.prototype.slice.call(arguments, 2);\n    modes[name] = mode;\n  };\n\n  CodeMirror.defineMIME = function(mime, spec) {\n    mimeModes[mime] = spec;\n  };\n\n  // Given a MIME type, a {name, ...options} config object, or a name\n  // string, return a mode config object.\n  CodeMirror.resolveMode = function(spec) {\n    if (typeof spec == \"string\" && mimeModes.hasOwnProperty(spec)) {\n      spec = mimeModes[spec];\n    } else if (spec && typeof spec.name == \"string\" && mimeModes.hasOwnProperty(spec.name)) {\n      var found = mimeModes[spec.name];\n      if (typeof found == \"string\") found = {name: found};\n      spec = createObj(found, spec);\n      spec.name = found.name;\n    } else if (typeof spec == \"string\" && /^[\\w\\-]+\\/[\\w\\-]+\\+xml$/.test(spec)) {\n      return CodeMirror.resolveMode(\"application/xml\");\n    }\n    if (typeof spec == \"string\") return {name: spec};\n    else return spec || {name: \"null\"};\n  };\n\n  // Given a mode spec (anything that resolveMode accepts), find and\n  // initialize an actual mode object.\n  CodeMirror.getMode = function(options, spec) {\n    var spec = CodeMirror.resolveMode(spec);\n    var mfactory = modes[spec.name];\n    if (!mfactory) return CodeMirror.getMode(options, \"text/plain\");\n    var modeObj = mfactory(options, spec);\n    if (modeExtensions.hasOwnProperty(spec.name)) {\n      var exts = modeExtensions[spec.name];\n      for (var prop in exts) {\n        if (!exts.hasOwnProperty(prop)) continue;\n        if (modeObj.hasOwnProperty(prop)) modeObj[\"_\" + prop] = modeObj[prop];\n        modeObj[prop] = exts[prop];\n      }\n    }\n    modeObj.name = spec.name;\n    if (spec.helperType) modeObj.helperType = spec.helperType;\n    if (spec.modeProps) for (var prop in spec.modeProps)\n      modeObj[prop] = spec.modeProps[prop];\n\n    return modeObj;\n  };\n\n  // Minimal default mode.\n  CodeMirror.defineMode(\"null\", function() {\n    return {token: function(stream) {stream.skipToEnd();}};\n  });\n  CodeMirror.defineMIME(\"text/plain\", \"null\");\n\n  // This can be used to attach properties to mode objects from\n  // outside the actual mode definition.\n  var modeExtensions = CodeMirror.modeExtensions = {};\n  CodeMirror.extendMode = function(mode, properties) {\n    var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {});\n    copyObj(properties, exts);\n  };\n\n  // EXTENSIONS\n\n  CodeMirror.defineExtension = function(name, func) {\n    CodeMirror.prototype[name] = func;\n  };\n  CodeMirror.defineDocExtension = function(name, func) {\n    Doc.prototype[name] = func;\n  };\n  CodeMirror.defineOption = option;\n\n  var initHooks = [];\n  CodeMirror.defineInitHook = function(f) {initHooks.push(f);};\n\n  var helpers = CodeMirror.helpers = {};\n  CodeMirror.registerHelper = function(type, name, value) {\n    if (!helpers.hasOwnProperty(type)) helpers[type] = CodeMirror[type] = {_global: []};\n    helpers[type][name] = value;\n  };\n  CodeMirror.registerGlobalHelper = function(type, name, predicate, value) {\n    CodeMirror.registerHelper(type, name, value);\n    helpers[type]._global.push({pred: predicate, val: value});\n  };\n\n  // MODE STATE HANDLING\n\n  // Utility functions for working with state. Exported because nested\n  // modes need to do this for their inner modes.\n\n  var copyState = CodeMirror.copyState = function(mode, state) {\n    if (state === true) return state;\n    if (mode.copyState) return mode.copyState(state);\n    var nstate = {};\n    for (var n in state) {\n      var val = state[n];\n      if (val instanceof Array) val = val.concat([]);\n      nstate[n] = val;\n    }\n    return nstate;\n  };\n\n  var startState = CodeMirror.startState = function(mode, a1, a2) {\n    return mode.startState ? mode.startState(a1, a2) : true;\n  };\n\n  // Given a mode and a state (for that mode), find the inner mode and\n  // state at the position that the state refers to.\n  CodeMirror.innerMode = function(mode, state) {\n    while (mode.innerMode) {\n      var info = mode.innerMode(state);\n      if (!info || info.mode == mode) break;\n      state = info.state;\n      mode = info.mode;\n    }\n    return info || {mode: mode, state: state};\n  };\n\n  // STANDARD COMMANDS\n\n  // Commands are parameter-less actions that can be performed on an\n  // editor, mostly used for keybindings.\n  var commands = CodeMirror.commands = {\n    selectAll: function(cm) {cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()), sel_dontScroll);},\n    singleSelection: function(cm) {\n      cm.setSelection(cm.getCursor(\"anchor\"), cm.getCursor(\"head\"), sel_dontScroll);\n    },\n    killLine: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        if (range.empty()) {\n          var len = getLine(cm.doc, range.head.line).text.length;\n          if (range.head.ch == len && range.head.line < cm.lastLine())\n            return {from: range.head, to: Pos(range.head.line + 1, 0)};\n          else\n            return {from: range.head, to: Pos(range.head.line, len)};\n        } else {\n          return {from: range.from(), to: range.to()};\n        }\n      });\n    },\n    deleteLine: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        return {from: Pos(range.from().line, 0),\n                to: clipPos(cm.doc, Pos(range.to().line + 1, 0))};\n      });\n    },\n    delLineLeft: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        return {from: Pos(range.from().line, 0), to: range.from()};\n      });\n    },\n    delWrappedLineLeft: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        var leftPos = cm.coordsChar({left: 0, top: top}, \"div\");\n        return {from: leftPos, to: range.from()};\n      });\n    },\n    delWrappedLineRight: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        var rightPos = cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, \"div\");\n        return {from: range.from(), to: rightPos };\n      });\n    },\n    undo: function(cm) {cm.undo();},\n    redo: function(cm) {cm.redo();},\n    undoSelection: function(cm) {cm.undoSelection();},\n    redoSelection: function(cm) {cm.redoSelection();},\n    goDocStart: function(cm) {cm.extendSelection(Pos(cm.firstLine(), 0));},\n    goDocEnd: function(cm) {cm.extendSelection(Pos(cm.lastLine()));},\n    goLineStart: function(cm) {\n      cm.extendSelectionsBy(function(range) { return lineStart(cm, range.head.line); },\n                            {origin: \"+move\", bias: 1});\n    },\n    goLineStartSmart: function(cm) {\n      cm.extendSelectionsBy(function(range) {\n        return lineStartSmart(cm, range.head);\n      }, {origin: \"+move\", bias: 1});\n    },\n    goLineEnd: function(cm) {\n      cm.extendSelectionsBy(function(range) { return lineEnd(cm, range.head.line); },\n                            {origin: \"+move\", bias: -1});\n    },\n    goLineRight: function(cm) {\n      cm.extendSelectionsBy(function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        return cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, \"div\");\n      }, sel_move);\n    },\n    goLineLeft: function(cm) {\n      cm.extendSelectionsBy(function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        return cm.coordsChar({left: 0, top: top}, \"div\");\n      }, sel_move);\n    },\n    goLineLeftSmart: function(cm) {\n      cm.extendSelectionsBy(function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        var pos = cm.coordsChar({left: 0, top: top}, \"div\");\n        if (pos.ch < cm.getLine(pos.line).search(/\\S/)) return lineStartSmart(cm, range.head);\n        return pos;\n      }, sel_move);\n    },\n    goLineUp: function(cm) {cm.moveV(-1, \"line\");},\n    goLineDown: function(cm) {cm.moveV(1, \"line\");},\n    goPageUp: function(cm) {cm.moveV(-1, \"page\");},\n    goPageDown: function(cm) {cm.moveV(1, \"page\");},\n    goCharLeft: function(cm) {cm.moveH(-1, \"char\");},\n    goCharRight: function(cm) {cm.moveH(1, \"char\");},\n    goColumnLeft: function(cm) {cm.moveH(-1, \"column\");},\n    goColumnRight: function(cm) {cm.moveH(1, \"column\");},\n    goWordLeft: function(cm) {cm.moveH(-1, \"word\");},\n    goGroupRight: function(cm) {cm.moveH(1, \"group\");},\n    goGroupLeft: function(cm) {cm.moveH(-1, \"group\");},\n    goWordRight: function(cm) {cm.moveH(1, \"word\");},\n    delCharBefore: function(cm) {cm.deleteH(-1, \"char\");},\n    delCharAfter: function(cm) {cm.deleteH(1, \"char\");},\n    delWordBefore: function(cm) {cm.deleteH(-1, \"word\");},\n    delWordAfter: function(cm) {cm.deleteH(1, \"word\");},\n    delGroupBefore: function(cm) {cm.deleteH(-1, \"group\");},\n    delGroupAfter: function(cm) {cm.deleteH(1, \"group\");},\n    indentAuto: function(cm) {cm.indentSelection(\"smart\");},\n    indentMore: function(cm) {cm.indentSelection(\"add\");},\n    indentLess: function(cm) {cm.indentSelection(\"subtract\");},\n    insertTab: function(cm) {cm.replaceSelection(\"\\t\");},\n    insertSoftTab: function(cm) {\n      var spaces = [], ranges = cm.listSelections(), tabSize = cm.options.tabSize;\n      for (var i = 0; i < ranges.length; i++) {\n        var pos = ranges[i].from();\n        var col = countColumn(cm.getLine(pos.line), pos.ch, tabSize);\n        spaces.push(new Array(tabSize - col % tabSize + 1).join(\" \"));\n      }\n      cm.replaceSelections(spaces);\n    },\n    defaultTab: function(cm) {\n      if (cm.somethingSelected()) cm.indentSelection(\"add\");\n      else cm.execCommand(\"insertTab\");\n    },\n    transposeChars: function(cm) {\n      runInOp(cm, function() {\n        var ranges = cm.listSelections(), newSel = [];\n        for (var i = 0; i < ranges.length; i++) {\n          var cur = ranges[i].head, line = getLine(cm.doc, cur.line).text;\n          if (line) {\n            if (cur.ch == line.length) cur = new Pos(cur.line, cur.ch - 1);\n            if (cur.ch > 0) {\n              cur = new Pos(cur.line, cur.ch + 1);\n              cm.replaceRange(line.charAt(cur.ch - 1) + line.charAt(cur.ch - 2),\n                              Pos(cur.line, cur.ch - 2), cur, \"+transpose\");\n            } else if (cur.line > cm.doc.first) {\n              var prev = getLine(cm.doc, cur.line - 1).text;\n              if (prev)\n                cm.replaceRange(line.charAt(0) + \"\\n\" + prev.charAt(prev.length - 1),\n                                Pos(cur.line - 1, prev.length - 1), Pos(cur.line, 1), \"+transpose\");\n            }\n          }\n          newSel.push(new Range(cur, cur));\n        }\n        cm.setSelections(newSel);\n      });\n    },\n    newlineAndIndent: function(cm) {\n      runInOp(cm, function() {\n        var len = cm.listSelections().length;\n        for (var i = 0; i < len; i++) {\n          var range = cm.listSelections()[i];\n          cm.replaceRange(\"\\n\", range.anchor, range.head, \"+input\");\n          cm.indentLine(range.from().line + 1, null, true);\n          ensureCursorVisible(cm);\n        }\n      });\n    },\n    toggleOverwrite: function(cm) {cm.toggleOverwrite();}\n  };\n\n\n  // STANDARD KEYMAPS\n\n  var keyMap = CodeMirror.keyMap = {};\n\n  keyMap.basic = {\n    \"Left\": \"goCharLeft\", \"Right\": \"goCharRight\", \"Up\": \"goLineUp\", \"Down\": \"goLineDown\",\n    \"End\": \"goLineEnd\", \"Home\": \"goLineStartSmart\", \"PageUp\": \"goPageUp\", \"PageDown\": \"goPageDown\",\n    \"Delete\": \"delCharAfter\", \"Backspace\": \"delCharBefore\", \"Shift-Backspace\": \"delCharBefore\",\n    \"Tab\": \"defaultTab\", \"Shift-Tab\": \"indentAuto\",\n    \"Enter\": \"newlineAndIndent\", \"Insert\": \"toggleOverwrite\",\n    \"Esc\": \"singleSelection\"\n  };\n  // Note that the save and find-related commands aren't defined by\n  // default. User code or addons can define them. Unknown commands\n  // are simply ignored.\n  keyMap.pcDefault = {\n    \"Ctrl-A\": \"selectAll\", \"Ctrl-D\": \"deleteLine\", \"Ctrl-Z\": \"undo\", \"Shift-Ctrl-Z\": \"redo\", \"Ctrl-Y\": \"redo\",\n    \"Ctrl-Home\": \"goDocStart\", \"Ctrl-End\": \"goDocEnd\", \"Ctrl-Up\": \"goLineUp\", \"Ctrl-Down\": \"goLineDown\",\n    \"Ctrl-Left\": \"goGroupLeft\", \"Ctrl-Right\": \"goGroupRight\", \"Alt-Left\": \"goLineStart\", \"Alt-Right\": \"goLineEnd\",\n    \"Ctrl-Backspace\": \"delGroupBefore\", \"Ctrl-Delete\": \"delGroupAfter\", \"Ctrl-S\": \"save\", \"Ctrl-F\": \"find\",\n    \"Ctrl-G\": \"findNext\", \"Shift-Ctrl-G\": \"findPrev\", \"Shift-Ctrl-F\": \"replace\", \"Shift-Ctrl-R\": \"replaceAll\",\n    \"Ctrl-[\": \"indentLess\", \"Ctrl-]\": \"indentMore\",\n    \"Ctrl-U\": \"undoSelection\", \"Shift-Ctrl-U\": \"redoSelection\", \"Alt-U\": \"redoSelection\",\n    fallthrough: \"basic\"\n  };\n  // Very basic readline/emacs-style bindings, which are standard on Mac.\n  keyMap.emacsy = {\n    \"Ctrl-F\": \"goCharRight\", \"Ctrl-B\": \"goCharLeft\", \"Ctrl-P\": \"goLineUp\", \"Ctrl-N\": \"goLineDown\",\n    \"Alt-F\": \"goWordRight\", \"Alt-B\": \"goWordLeft\", \"Ctrl-A\": \"goLineStart\", \"Ctrl-E\": \"goLineEnd\",\n    \"Ctrl-V\": \"goPageDown\", \"Shift-Ctrl-V\": \"goPageUp\", \"Ctrl-D\": \"delCharAfter\", \"Ctrl-H\": \"delCharBefore\",\n    \"Alt-D\": \"delWordAfter\", \"Alt-Backspace\": \"delWordBefore\", \"Ctrl-K\": \"killLine\", \"Ctrl-T\": \"transposeChars\"\n  };\n  keyMap.macDefault = {\n    \"Cmd-A\": \"selectAll\", \"Cmd-D\": \"deleteLine\", \"Cmd-Z\": \"undo\", \"Shift-Cmd-Z\": \"redo\", \"Cmd-Y\": \"redo\",\n    \"Cmd-Home\": \"goDocStart\", \"Cmd-Up\": \"goDocStart\", \"Cmd-End\": \"goDocEnd\", \"Cmd-Down\": \"goDocEnd\", \"Alt-Left\": \"goGroupLeft\",\n    \"Alt-Right\": \"goGroupRight\", \"Cmd-Left\": \"goLineLeft\", \"Cmd-Right\": \"goLineRight\", \"Alt-Backspace\": \"delGroupBefore\",\n    \"Ctrl-Alt-Backspace\": \"delGroupAfter\", \"Alt-Delete\": \"delGroupAfter\", \"Cmd-S\": \"save\", \"Cmd-F\": \"find\",\n    \"Cmd-G\": \"findNext\", \"Shift-Cmd-G\": \"findPrev\", \"Cmd-Alt-F\": \"replace\", \"Shift-Cmd-Alt-F\": \"replaceAll\",\n    \"Cmd-[\": \"indentLess\", \"Cmd-]\": \"indentMore\", \"Cmd-Backspace\": \"delWrappedLineLeft\", \"Cmd-Delete\": \"delWrappedLineRight\",\n    \"Cmd-U\": \"undoSelection\", \"Shift-Cmd-U\": \"redoSelection\", \"Ctrl-Up\": \"goDocStart\", \"Ctrl-Down\": \"goDocEnd\",\n    fallthrough: [\"basic\", \"emacsy\"]\n  };\n  keyMap[\"default\"] = mac ? keyMap.macDefault : keyMap.pcDefault;\n\n  // KEYMAP DISPATCH\n\n  function normalizeKeyName(name) {\n    var parts = name.split(/-(?!$)/), name = parts[parts.length - 1];\n    var alt, ctrl, shift, cmd;\n    for (var i = 0; i < parts.length - 1; i++) {\n      var mod = parts[i];\n      if (/^(cmd|meta|m)$/i.test(mod)) cmd = true;\n      else if (/^a(lt)?$/i.test(mod)) alt = true;\n      else if (/^(c|ctrl|control)$/i.test(mod)) ctrl = true;\n      else if (/^s(hift)$/i.test(mod)) shift = true;\n      else throw new Error(\"Unrecognized modifier name: \" + mod);\n    }\n    if (alt) name = \"Alt-\" + name;\n    if (ctrl) name = \"Ctrl-\" + name;\n    if (cmd) name = \"Cmd-\" + name;\n    if (shift) name = \"Shift-\" + name;\n    return name;\n  }\n\n  // This is a kludge to keep keymaps mostly working as raw objects\n  // (backwards compatibility) while at the same time support features\n  // like normalization and multi-stroke key bindings. It compiles a\n  // new normalized keymap, and then updates the old object to reflect\n  // this.\n  CodeMirror.normalizeKeyMap = function(keymap) {\n    var copy = {};\n    for (var keyname in keymap) if (keymap.hasOwnProperty(keyname)) {\n      var value = keymap[keyname];\n      if (/^(name|fallthrough|(de|at)tach)$/.test(keyname)) continue;\n      if (value == \"...\") { delete keymap[keyname]; continue; }\n\n      var keys = map(keyname.split(\" \"), normalizeKeyName);\n      for (var i = 0; i < keys.length; i++) {\n        var val, name;\n        if (i == keys.length - 1) {\n          name = keys.join(\" \");\n          val = value;\n        } else {\n          name = keys.slice(0, i + 1).join(\" \");\n          val = \"...\";\n        }\n        var prev = copy[name];\n        if (!prev) copy[name] = val;\n        else if (prev != val) throw new Error(\"Inconsistent bindings for \" + name);\n      }\n      delete keymap[keyname];\n    }\n    for (var prop in copy) keymap[prop] = copy[prop];\n    return keymap;\n  };\n\n  var lookupKey = CodeMirror.lookupKey = function(key, map, handle, context) {\n    map = getKeyMap(map);\n    var found = map.call ? map.call(key, context) : map[key];\n    if (found === false) return \"nothing\";\n    if (found === \"...\") return \"multi\";\n    if (found != null && handle(found)) return \"handled\";\n\n    if (map.fallthrough) {\n      if (Object.prototype.toString.call(map.fallthrough) != \"[object Array]\")\n        return lookupKey(key, map.fallthrough, handle, context);\n      for (var i = 0; i < map.fallthrough.length; i++) {\n        var result = lookupKey(key, map.fallthrough[i], handle, context);\n        if (result) return result;\n      }\n    }\n  };\n\n  // Modifier key presses don't count as 'real' key presses for the\n  // purpose of keymap fallthrough.\n  var isModifierKey = CodeMirror.isModifierKey = function(value) {\n    var name = typeof value == \"string\" ? value : keyNames[value.keyCode];\n    return name == \"Ctrl\" || name == \"Alt\" || name == \"Shift\" || name == \"Mod\";\n  };\n\n  // Look up the name of a key as indicated by an event object.\n  var keyName = CodeMirror.keyName = function(event, noShift) {\n    if (presto && event.keyCode == 34 && event[\"char\"]) return false;\n    var base = keyNames[event.keyCode], name = base;\n    if (name == null || event.altGraphKey) return false;\n    if (event.altKey && base != \"Alt\") name = \"Alt-\" + name;\n    if ((flipCtrlCmd ? event.metaKey : event.ctrlKey) && base != \"Ctrl\") name = \"Ctrl-\" + name;\n    if ((flipCtrlCmd ? event.ctrlKey : event.metaKey) && base != \"Cmd\") name = \"Cmd-\" + name;\n    if (!noShift && event.shiftKey && base != \"Shift\") name = \"Shift-\" + name;\n    return name;\n  };\n\n  function getKeyMap(val) {\n    return typeof val == \"string\" ? keyMap[val] : val;\n  }\n\n  // FROMTEXTAREA\n\n  CodeMirror.fromTextArea = function(textarea, options) {\n    options = options ? copyObj(options) : {};\n    options.value = textarea.value;\n    if (!options.tabindex && textarea.tabIndex)\n      options.tabindex = textarea.tabIndex;\n    if (!options.placeholder && textarea.placeholder)\n      options.placeholder = textarea.placeholder;\n    // Set autofocus to true if this textarea is focused, or if it has\n    // autofocus and no other element is focused.\n    if (options.autofocus == null) {\n      var hasFocus = activeElt();\n      options.autofocus = hasFocus == textarea ||\n        textarea.getAttribute(\"autofocus\") != null && hasFocus == document.body;\n    }\n\n    function save() {textarea.value = cm.getValue();}\n    if (textarea.form) {\n      on(textarea.form, \"submit\", save);\n      // Deplorable hack to make the submit method do the right thing.\n      if (!options.leaveSubmitMethodAlone) {\n        var form = textarea.form, realSubmit = form.submit;\n        try {\n          var wrappedSubmit = form.submit = function() {\n            save();\n            form.submit = realSubmit;\n            form.submit();\n            form.submit = wrappedSubmit;\n          };\n        } catch(e) {}\n      }\n    }\n\n    options.finishInit = function(cm) {\n      cm.save = save;\n      cm.getTextArea = function() { return textarea; };\n      cm.toTextArea = function() {\n        cm.toTextArea = isNaN; // Prevent this from being ran twice\n        save();\n        textarea.parentNode.removeChild(cm.getWrapperElement());\n        textarea.style.display = \"\";\n        if (textarea.form) {\n          off(textarea.form, \"submit\", save);\n          if (typeof textarea.form.submit == \"function\")\n            textarea.form.submit = realSubmit;\n        }\n      };\n    };\n\n    textarea.style.display = \"none\";\n    var cm = CodeMirror(function(node) {\n      textarea.parentNode.insertBefore(node, textarea.nextSibling);\n    }, options);\n    return cm;\n  };\n\n  // STRING STREAM\n\n  // Fed to the mode parsers, provides helper functions to make\n  // parsers more succinct.\n\n  var StringStream = CodeMirror.StringStream = function(string, tabSize) {\n    this.pos = this.start = 0;\n    this.string = string;\n    this.tabSize = tabSize || 8;\n    this.lastColumnPos = this.lastColumnValue = 0;\n    this.lineStart = 0;\n  };\n\n  StringStream.prototype = {\n    eol: function() {return this.pos >= this.string.length;},\n    sol: function() {return this.pos == this.lineStart;},\n    peek: function() {return this.string.charAt(this.pos) || undefined;},\n    next: function() {\n      if (this.pos < this.string.length)\n        return this.string.charAt(this.pos++);\n    },\n    eat: function(match) {\n      var ch = this.string.charAt(this.pos);\n      if (typeof match == \"string\") var ok = ch == match;\n      else var ok = ch && (match.test ? match.test(ch) : match(ch));\n      if (ok) {++this.pos; return ch;}\n    },\n    eatWhile: function(match) {\n      var start = this.pos;\n      while (this.eat(match)){}\n      return this.pos > start;\n    },\n    eatSpace: function() {\n      var start = this.pos;\n      while (/[\\s\\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos;\n      return this.pos > start;\n    },\n    skipToEnd: function() {this.pos = this.string.length;},\n    skipTo: function(ch) {\n      var found = this.string.indexOf(ch, this.pos);\n      if (found > -1) {this.pos = found; return true;}\n    },\n    backUp: function(n) {this.pos -= n;},\n    column: function() {\n      if (this.lastColumnPos < this.start) {\n        this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue);\n        this.lastColumnPos = this.start;\n      }\n      return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0);\n    },\n    indentation: function() {\n      return countColumn(this.string, null, this.tabSize) -\n        (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0);\n    },\n    match: function(pattern, consume, caseInsensitive) {\n      if (typeof pattern == \"string\") {\n        var cased = function(str) {return caseInsensitive ? str.toLowerCase() : str;};\n        var substr = this.string.substr(this.pos, pattern.length);\n        if (cased(substr) == cased(pattern)) {\n          if (consume !== false) this.pos += pattern.length;\n          return true;\n        }\n      } else {\n        var match = this.string.slice(this.pos).match(pattern);\n        if (match && match.index > 0) return null;\n        if (match && consume !== false) this.pos += match[0].length;\n        return match;\n      }\n    },\n    current: function(){return this.string.slice(this.start, this.pos);},\n    hideFirstChars: function(n, inner) {\n      this.lineStart += n;\n      try { return inner(); }\n      finally { this.lineStart -= n; }\n    }\n  };\n\n  // TEXTMARKERS\n\n  // Created with markText and setBookmark methods. A TextMarker is a\n  // handle that can be used to clear or find a marked position in the\n  // document. Line objects hold arrays (markedSpans) containing\n  // {from, to, marker} object pointing to such marker objects, and\n  // indicating that such a marker is present on that line. Multiple\n  // lines may point to the same marker when it spans across lines.\n  // The spans will have null for their from/to properties when the\n  // marker continues beyond the start/end of the line. Markers have\n  // links back to the lines they currently touch.\n\n  var nextMarkerId = 0;\n\n  var TextMarker = CodeMirror.TextMarker = function(doc, type) {\n    this.lines = [];\n    this.type = type;\n    this.doc = doc;\n    this.id = ++nextMarkerId;\n  };\n  eventMixin(TextMarker);\n\n  // Clear the marker.\n  TextMarker.prototype.clear = function() {\n    if (this.explicitlyCleared) return;\n    var cm = this.doc.cm, withOp = cm && !cm.curOp;\n    if (withOp) startOperation(cm);\n    if (hasHandler(this, \"clear\")) {\n      var found = this.find();\n      if (found) signalLater(this, \"clear\", found.from, found.to);\n    }\n    var min = null, max = null;\n    for (var i = 0; i < this.lines.length; ++i) {\n      var line = this.lines[i];\n      var span = getMarkedSpanFor(line.markedSpans, this);\n      if (cm && !this.collapsed) regLineChange(cm, lineNo(line), \"text\");\n      else if (cm) {\n        if (span.to != null) max = lineNo(line);\n        if (span.from != null) min = lineNo(line);\n      }\n      line.markedSpans = removeMarkedSpan(line.markedSpans, span);\n      if (span.from == null && this.collapsed && !lineIsHidden(this.doc, line) && cm)\n        updateLineHeight(line, textHeight(cm.display));\n    }\n    if (cm && this.collapsed && !cm.options.lineWrapping) for (var i = 0; i < this.lines.length; ++i) {\n      var visual = visualLine(this.lines[i]), len = lineLength(visual);\n      if (len > cm.display.maxLineLength) {\n        cm.display.maxLine = visual;\n        cm.display.maxLineLength = len;\n        cm.display.maxLineChanged = true;\n      }\n    }\n\n    if (min != null && cm && this.collapsed) regChange(cm, min, max + 1);\n    this.lines.length = 0;\n    this.explicitlyCleared = true;\n    if (this.atomic && this.doc.cantEdit) {\n      this.doc.cantEdit = false;\n      if (cm) reCheckSelection(cm.doc);\n    }\n    if (cm) signalLater(cm, \"markerCleared\", cm, this);\n    if (withOp) endOperation(cm);\n    if (this.parent) this.parent.clear();\n  };\n\n  // Find the position of the marker in the document. Returns a {from,\n  // to} object by default. Side can be passed to get a specific side\n  // -- 0 (both), -1 (left), or 1 (right). When lineObj is true, the\n  // Pos objects returned contain a line object, rather than a line\n  // number (used to prevent looking up the same line twice).\n  TextMarker.prototype.find = function(side, lineObj) {\n    if (side == null && this.type == \"bookmark\") side = 1;\n    var from, to;\n    for (var i = 0; i < this.lines.length; ++i) {\n      var line = this.lines[i];\n      var span = getMarkedSpanFor(line.markedSpans, this);\n      if (span.from != null) {\n        from = Pos(lineObj ? line : lineNo(line), span.from);\n        if (side == -1) return from;\n      }\n      if (span.to != null) {\n        to = Pos(lineObj ? line : lineNo(line), span.to);\n        if (side == 1) return to;\n      }\n    }\n    return from && {from: from, to: to};\n  };\n\n  // Signals that the marker's widget changed, and surrounding layout\n  // should be recomputed.\n  TextMarker.prototype.changed = function() {\n    var pos = this.find(-1, true), widget = this, cm = this.doc.cm;\n    if (!pos || !cm) return;\n    runInOp(cm, function() {\n      var line = pos.line, lineN = lineNo(pos.line);\n      var view = findViewForLine(cm, lineN);\n      if (view) {\n        clearLineMeasurementCacheFor(view);\n        cm.curOp.selectionChanged = cm.curOp.forceUpdate = true;\n      }\n      cm.curOp.updateMaxLine = true;\n      if (!lineIsHidden(widget.doc, line) && widget.height != null) {\n        var oldHeight = widget.height;\n        widget.height = null;\n        var dHeight = widgetHeight(widget) - oldHeight;\n        if (dHeight)\n          updateLineHeight(line, line.height + dHeight);\n      }\n    });\n  };\n\n  TextMarker.prototype.attachLine = function(line) {\n    if (!this.lines.length && this.doc.cm) {\n      var op = this.doc.cm.curOp;\n      if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1)\n        (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this);\n    }\n    this.lines.push(line);\n  };\n  TextMarker.prototype.detachLine = function(line) {\n    this.lines.splice(indexOf(this.lines, line), 1);\n    if (!this.lines.length && this.doc.cm) {\n      var op = this.doc.cm.curOp;\n      (op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this);\n    }\n  };\n\n  // Collapsed markers have unique ids, in order to be able to order\n  // them, which is needed for uniquely determining an outer marker\n  // when they overlap (they may nest, but not partially overlap).\n  var nextMarkerId = 0;\n\n  // Create a marker, wire it up to the right lines, and\n  function markText(doc, from, to, options, type) {\n    // Shared markers (across linked documents) are handled separately\n    // (markTextShared will call out to this again, once per\n    // document).\n    if (options && options.shared) return markTextShared(doc, from, to, options, type);\n    // Ensure we are in an operation.\n    if (doc.cm && !doc.cm.curOp) return operation(doc.cm, markText)(doc, from, to, options, type);\n\n    var marker = new TextMarker(doc, type), diff = cmp(from, to);\n    if (options) copyObj(options, marker, false);\n    // Don't connect empty markers unless clearWhenEmpty is false\n    if (diff > 0 || diff == 0 && marker.clearWhenEmpty !== false)\n      return marker;\n    if (marker.replacedWith) {\n      // Showing up as a widget implies collapsed (widget replaces text)\n      marker.collapsed = true;\n      marker.widgetNode = elt(\"span\", [marker.replacedWith], \"CodeMirror-widget\");\n      if (!options.handleMouseEvents) marker.widgetNode.setAttribute(\"cm-ignore-events\", \"true\");\n      if (options.insertLeft) marker.widgetNode.insertLeft = true;\n    }\n    if (marker.collapsed) {\n      if (conflictingCollapsedRange(doc, from.line, from, to, marker) ||\n          from.line != to.line && conflictingCollapsedRange(doc, to.line, from, to, marker))\n        throw new Error(\"Inserting collapsed marker partially overlapping an existing one\");\n      sawCollapsedSpans = true;\n    }\n\n    if (marker.addToHistory)\n      addChangeToHistory(doc, {from: from, to: to, origin: \"markText\"}, doc.sel, NaN);\n\n    var curLine = from.line, cm = doc.cm, updateMaxLine;\n    doc.iter(curLine, to.line + 1, function(line) {\n      if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(line) == cm.display.maxLine)\n        updateMaxLine = true;\n      if (marker.collapsed && curLine != from.line) updateLineHeight(line, 0);\n      addMarkedSpan(line, new MarkedSpan(marker,\n                                         curLine == from.line ? from.ch : null,\n                                         curLine == to.line ? to.ch : null));\n      ++curLine;\n    });\n    // lineIsHidden depends on the presence of the spans, so needs a second pass\n    if (marker.collapsed) doc.iter(from.line, to.line + 1, function(line) {\n      if (lineIsHidden(doc, line)) updateLineHeight(line, 0);\n    });\n\n    if (marker.clearOnEnter) on(marker, \"beforeCursorEnter\", function() { marker.clear(); });\n\n    if (marker.readOnly) {\n      sawReadOnlySpans = true;\n      if (doc.history.done.length || doc.history.undone.length)\n        doc.clearHistory();\n    }\n    if (marker.collapsed) {\n      marker.id = ++nextMarkerId;\n      marker.atomic = true;\n    }\n    if (cm) {\n      // Sync editor state\n      if (updateMaxLine) cm.curOp.updateMaxLine = true;\n      if (marker.collapsed)\n        regChange(cm, from.line, to.line + 1);\n      else if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.css)\n        for (var i = from.line; i <= to.line; i++) regLineChange(cm, i, \"text\");\n      if (marker.atomic) reCheckSelection(cm.doc);\n      signalLater(cm, \"markerAdded\", cm, marker);\n    }\n    return marker;\n  }\n\n  // SHARED TEXTMARKERS\n\n  // A shared marker spans multiple linked documents. It is\n  // implemented as a meta-marker-object controlling multiple normal\n  // markers.\n  var SharedTextMarker = CodeMirror.SharedTextMarker = function(markers, primary) {\n    this.markers = markers;\n    this.primary = primary;\n    for (var i = 0; i < markers.length; ++i)\n      markers[i].parent = this;\n  };\n  eventMixin(SharedTextMarker);\n\n  SharedTextMarker.prototype.clear = function() {\n    if (this.explicitlyCleared) return;\n    this.explicitlyCleared = true;\n    for (var i = 0; i < this.markers.length; ++i)\n      this.markers[i].clear();\n    signalLater(this, \"clear\");\n  };\n  SharedTextMarker.prototype.find = function(side, lineObj) {\n    return this.primary.find(side, lineObj);\n  };\n\n  function markTextShared(doc, from, to, options, type) {\n    options = copyObj(options);\n    options.shared = false;\n    var markers = [markText(doc, from, to, options, type)], primary = markers[0];\n    var widget = options.widgetNode;\n    linkedDocs(doc, function(doc) {\n      if (widget) options.widgetNode = widget.cloneNode(true);\n      markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type));\n      for (var i = 0; i < doc.linked.length; ++i)\n        if (doc.linked[i].isParent) return;\n      primary = lst(markers);\n    });\n    return new SharedTextMarker(markers, primary);\n  }\n\n  function findSharedMarkers(doc) {\n    return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())),\n                         function(m) { return m.parent; });\n  }\n\n  function copySharedMarkers(doc, markers) {\n    for (var i = 0; i < markers.length; i++) {\n      var marker = markers[i], pos = marker.find();\n      var mFrom = doc.clipPos(pos.from), mTo = doc.clipPos(pos.to);\n      if (cmp(mFrom, mTo)) {\n        var subMark = markText(doc, mFrom, mTo, marker.primary, marker.primary.type);\n        marker.markers.push(subMark);\n        subMark.parent = marker;\n      }\n    }\n  }\n\n  function detachSharedMarkers(markers) {\n    for (var i = 0; i < markers.length; i++) {\n      var marker = markers[i], linked = [marker.primary.doc];;\n      linkedDocs(marker.primary.doc, function(d) { linked.push(d); });\n      for (var j = 0; j < marker.markers.length; j++) {\n        var subMarker = marker.markers[j];\n        if (indexOf(linked, subMarker.doc) == -1) {\n          subMarker.parent = null;\n          marker.markers.splice(j--, 1);\n        }\n      }\n    }\n  }\n\n  // TEXTMARKER SPANS\n\n  function MarkedSpan(marker, from, to) {\n    this.marker = marker;\n    this.from = from; this.to = to;\n  }\n\n  // Search an array of spans for a span matching the given marker.\n  function getMarkedSpanFor(spans, marker) {\n    if (spans) for (var i = 0; i < spans.length; ++i) {\n      var span = spans[i];\n      if (span.marker == marker) return span;\n    }\n  }\n  // Remove a span from an array, returning undefined if no spans are\n  // left (we don't store arrays for lines without spans).\n  function removeMarkedSpan(spans, span) {\n    for (var r, i = 0; i < spans.length; ++i)\n      if (spans[i] != span) (r || (r = [])).push(spans[i]);\n    return r;\n  }\n  // Add a span to a line.\n  function addMarkedSpan(line, span) {\n    line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span];\n    span.marker.attachLine(line);\n  }\n\n  // Used for the algorithm that adjusts markers for a change in the\n  // document. These functions cut an array of spans at a given\n  // character position, returning an array of remaining chunks (or\n  // undefined if nothing remains).\n  function markedSpansBefore(old, startCh, isInsert) {\n    if (old) for (var i = 0, nw; i < old.length; ++i) {\n      var span = old[i], marker = span.marker;\n      var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh);\n      if (startsBefore || span.from == startCh && marker.type == \"bookmark\" && (!isInsert || !span.marker.insertLeft)) {\n        var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh);\n        (nw || (nw = [])).push(new MarkedSpan(marker, span.from, endsAfter ? null : span.to));\n      }\n    }\n    return nw;\n  }\n  function markedSpansAfter(old, endCh, isInsert) {\n    if (old) for (var i = 0, nw; i < old.length; ++i) {\n      var span = old[i], marker = span.marker;\n      var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh);\n      if (endsAfter || span.from == endCh && marker.type == \"bookmark\" && (!isInsert || span.marker.insertLeft)) {\n        var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh);\n        (nw || (nw = [])).push(new MarkedSpan(marker, startsBefore ? null : span.from - endCh,\n                                              span.to == null ? null : span.to - endCh));\n      }\n    }\n    return nw;\n  }\n\n  // Given a change object, compute the new set of marker spans that\n  // cover the line in which the change took place. Removes spans\n  // entirely within the change, reconnects spans belonging to the\n  // same marker that appear on both sides of the change, and cuts off\n  // spans partially within the change. Returns an array of span\n  // arrays with one element for each line in (after) the change.\n  function stretchSpansOverChange(doc, change) {\n    if (change.full) return null;\n    var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans;\n    var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans;\n    if (!oldFirst && !oldLast) return null;\n\n    var startCh = change.from.ch, endCh = change.to.ch, isInsert = cmp(change.from, change.to) == 0;\n    // Get the spans that 'stick out' on both sides\n    var first = markedSpansBefore(oldFirst, startCh, isInsert);\n    var last = markedSpansAfter(oldLast, endCh, isInsert);\n\n    // Next, merge those two ends\n    var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0);\n    if (first) {\n      // Fix up .to properties of first\n      for (var i = 0; i < first.length; ++i) {\n        var span = first[i];\n        if (span.to == null) {\n          var found = getMarkedSpanFor(last, span.marker);\n          if (!found) span.to = startCh;\n          else if (sameLine) span.to = found.to == null ? null : found.to + offset;\n        }\n      }\n    }\n    if (last) {\n      // Fix up .from in last (or move them into first in case of sameLine)\n      for (var i = 0; i < last.length; ++i) {\n        var span = last[i];\n        if (span.to != null) span.to += offset;\n        if (span.from == null) {\n          var found = getMarkedSpanFor(first, span.marker);\n          if (!found) {\n            span.from = offset;\n            if (sameLine) (first || (first = [])).push(span);\n          }\n        } else {\n          span.from += offset;\n          if (sameLine) (first || (first = [])).push(span);\n        }\n      }\n    }\n    // Make sure we didn't create any zero-length spans\n    if (first) first = clearEmptySpans(first);\n    if (last && last != first) last = clearEmptySpans(last);\n\n    var newMarkers = [first];\n    if (!sameLine) {\n      // Fill gap with whole-line-spans\n      var gap = change.text.length - 2, gapMarkers;\n      if (gap > 0 && first)\n        for (var i = 0; i < first.length; ++i)\n          if (first[i].to == null)\n            (gapMarkers || (gapMarkers = [])).push(new MarkedSpan(first[i].marker, null, null));\n      for (var i = 0; i < gap; ++i)\n        newMarkers.push(gapMarkers);\n      newMarkers.push(last);\n    }\n    return newMarkers;\n  }\n\n  // Remove spans that are empty and don't have a clearWhenEmpty\n  // option of false.\n  function clearEmptySpans(spans) {\n    for (var i = 0; i < spans.length; ++i) {\n      var span = spans[i];\n      if (span.from != null && span.from == span.to && span.marker.clearWhenEmpty !== false)\n        spans.splice(i--, 1);\n    }\n    if (!spans.length) return null;\n    return spans;\n  }\n\n  // Used for un/re-doing changes from the history. Combines the\n  // result of computing the existing spans with the set of spans that\n  // existed in the history (so that deleting around a span and then\n  // undoing brings back the span).\n  function mergeOldSpans(doc, change) {\n    var old = getOldSpans(doc, change);\n    var stretched = stretchSpansOverChange(doc, change);\n    if (!old) return stretched;\n    if (!stretched) return old;\n\n    for (var i = 0; i < old.length; ++i) {\n      var oldCur = old[i], stretchCur = stretched[i];\n      if (oldCur && stretchCur) {\n        spans: for (var j = 0; j < stretchCur.length; ++j) {\n          var span = stretchCur[j];\n          for (var k = 0; k < oldCur.length; ++k)\n            if (oldCur[k].marker == span.marker) continue spans;\n          oldCur.push(span);\n        }\n      } else if (stretchCur) {\n        old[i] = stretchCur;\n      }\n    }\n    return old;\n  }\n\n  // Used to 'clip' out readOnly ranges when making a change.\n  function removeReadOnlyRanges(doc, from, to) {\n    var markers = null;\n    doc.iter(from.line, to.line + 1, function(line) {\n      if (line.markedSpans) for (var i = 0; i < line.markedSpans.length; ++i) {\n        var mark = line.markedSpans[i].marker;\n        if (mark.readOnly && (!markers || indexOf(markers, mark) == -1))\n          (markers || (markers = [])).push(mark);\n      }\n    });\n    if (!markers) return null;\n    var parts = [{from: from, to: to}];\n    for (var i = 0; i < markers.length; ++i) {\n      var mk = markers[i], m = mk.find(0);\n      for (var j = 0; j < parts.length; ++j) {\n        var p = parts[j];\n        if (cmp(p.to, m.from) < 0 || cmp(p.from, m.to) > 0) continue;\n        var newParts = [j, 1], dfrom = cmp(p.from, m.from), dto = cmp(p.to, m.to);\n        if (dfrom < 0 || !mk.inclusiveLeft && !dfrom)\n          newParts.push({from: p.from, to: m.from});\n        if (dto > 0 || !mk.inclusiveRight && !dto)\n          newParts.push({from: m.to, to: p.to});\n        parts.splice.apply(parts, newParts);\n        j += newParts.length - 1;\n      }\n    }\n    return parts;\n  }\n\n  // Connect or disconnect spans from a line.\n  function detachMarkedSpans(line) {\n    var spans = line.markedSpans;\n    if (!spans) return;\n    for (var i = 0; i < spans.length; ++i)\n      spans[i].marker.detachLine(line);\n    line.markedSpans = null;\n  }\n  function attachMarkedSpans(line, spans) {\n    if (!spans) return;\n    for (var i = 0; i < spans.length; ++i)\n      spans[i].marker.attachLine(line);\n    line.markedSpans = spans;\n  }\n\n  // Helpers used when computing which overlapping collapsed span\n  // counts as the larger one.\n  function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0; }\n  function extraRight(marker) { return marker.inclusiveRight ? 1 : 0; }\n\n  // Returns a number indicating which of two overlapping collapsed\n  // spans is larger (and thus includes the other). Falls back to\n  // comparing ids when the spans cover exactly the same range.\n  function compareCollapsedMarkers(a, b) {\n    var lenDiff = a.lines.length - b.lines.length;\n    if (lenDiff != 0) return lenDiff;\n    var aPos = a.find(), bPos = b.find();\n    var fromCmp = cmp(aPos.from, bPos.from) || extraLeft(a) - extraLeft(b);\n    if (fromCmp) return -fromCmp;\n    var toCmp = cmp(aPos.to, bPos.to) || extraRight(a) - extraRight(b);\n    if (toCmp) return toCmp;\n    return b.id - a.id;\n  }\n\n  // Find out whether a line ends or starts in a collapsed span. If\n  // so, return the marker for that span.\n  function collapsedSpanAtSide(line, start) {\n    var sps = sawCollapsedSpans && line.markedSpans, found;\n    if (sps) for (var sp, i = 0; i < sps.length; ++i) {\n      sp = sps[i];\n      if (sp.marker.collapsed && (start ? sp.from : sp.to) == null &&\n          (!found || compareCollapsedMarkers(found, sp.marker) < 0))\n        found = sp.marker;\n    }\n    return found;\n  }\n  function collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, true); }\n  function collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, false); }\n\n  // Test whether there exists a collapsed span that partially\n  // overlaps (covers the start or end, but not both) of a new span.\n  // Such overlap is not allowed.\n  function conflictingCollapsedRange(doc, lineNo, from, to, marker) {\n    var line = getLine(doc, lineNo);\n    var sps = sawCollapsedSpans && line.markedSpans;\n    if (sps) for (var i = 0; i < sps.length; ++i) {\n      var sp = sps[i];\n      if (!sp.marker.collapsed) continue;\n      var found = sp.marker.find(0);\n      var fromCmp = cmp(found.from, from) || extraLeft(sp.marker) - extraLeft(marker);\n      var toCmp = cmp(found.to, to) || extraRight(sp.marker) - extraRight(marker);\n      if (fromCmp >= 0 && toCmp <= 0 || fromCmp <= 0 && toCmp >= 0) continue;\n      if (fromCmp <= 0 && (cmp(found.to, from) > 0 || (sp.marker.inclusiveRight && marker.inclusiveLeft)) ||\n          fromCmp >= 0 && (cmp(found.from, to) < 0 || (sp.marker.inclusiveLeft && marker.inclusiveRight)))\n        return true;\n    }\n  }\n\n  // A visual line is a line as drawn on the screen. Folding, for\n  // example, can cause multiple logical lines to appear on the same\n  // visual line. This finds the start of the visual line that the\n  // given line is part of (usually that is the line itself).\n  function visualLine(line) {\n    var merged;\n    while (merged = collapsedSpanAtStart(line))\n      line = merged.find(-1, true).line;\n    return line;\n  }\n\n  // Returns an array of logical lines that continue the visual line\n  // started by the argument, or undefined if there are no such lines.\n  function visualLineContinued(line) {\n    var merged, lines;\n    while (merged = collapsedSpanAtEnd(line)) {\n      line = merged.find(1, true).line;\n      (lines || (lines = [])).push(line);\n    }\n    return lines;\n  }\n\n  // Get the line number of the start of the visual line that the\n  // given line number is part of.\n  function visualLineNo(doc, lineN) {\n    var line = getLine(doc, lineN), vis = visualLine(line);\n    if (line == vis) return lineN;\n    return lineNo(vis);\n  }\n  // Get the line number of the start of the next visual line after\n  // the given line.\n  function visualLineEndNo(doc, lineN) {\n    if (lineN > doc.lastLine()) return lineN;\n    var line = getLine(doc, lineN), merged;\n    if (!lineIsHidden(doc, line)) return lineN;\n    while (merged = collapsedSpanAtEnd(line))\n      line = merged.find(1, true).line;\n    return lineNo(line) + 1;\n  }\n\n  // Compute whether a line is hidden. Lines count as hidden when they\n  // are part of a visual line that starts with another line, or when\n  // they are entirely covered by collapsed, non-widget span.\n  function lineIsHidden(doc, line) {\n    var sps = sawCollapsedSpans && line.markedSpans;\n    if (sps) for (var sp, i = 0; i < sps.length; ++i) {\n      sp = sps[i];\n      if (!sp.marker.collapsed) continue;\n      if (sp.from == null) return true;\n      if (sp.marker.widgetNode) continue;\n      if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp))\n        return true;\n    }\n  }\n  function lineIsHiddenInner(doc, line, span) {\n    if (span.to == null) {\n      var end = span.marker.find(1, true);\n      return lineIsHiddenInner(doc, end.line, getMarkedSpanFor(end.line.markedSpans, span.marker));\n    }\n    if (span.marker.inclusiveRight && span.to == line.text.length)\n      return true;\n    for (var sp, i = 0; i < line.markedSpans.length; ++i) {\n      sp = line.markedSpans[i];\n      if (sp.marker.collapsed && !sp.marker.widgetNode && sp.from == span.to &&\n          (sp.to == null || sp.to != span.from) &&\n          (sp.marker.inclusiveLeft || span.marker.inclusiveRight) &&\n          lineIsHiddenInner(doc, line, sp)) return true;\n    }\n  }\n\n  // LINE WIDGETS\n\n  // Line widgets are block elements displayed above or below a line.\n\n  var LineWidget = CodeMirror.LineWidget = function(doc, node, options) {\n    if (options) for (var opt in options) if (options.hasOwnProperty(opt))\n      this[opt] = options[opt];\n    this.doc = doc;\n    this.node = node;\n  };\n  eventMixin(LineWidget);\n\n  function adjustScrollWhenAboveVisible(cm, line, diff) {\n    if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop))\n      addToScrollPos(cm, null, diff);\n  }\n\n  LineWidget.prototype.clear = function() {\n    var cm = this.doc.cm, ws = this.line.widgets, line = this.line, no = lineNo(line);\n    if (no == null || !ws) return;\n    for (var i = 0; i < ws.length; ++i) if (ws[i] == this) ws.splice(i--, 1);\n    if (!ws.length) line.widgets = null;\n    var height = widgetHeight(this);\n    updateLineHeight(line, Math.max(0, line.height - height));\n    if (cm) runInOp(cm, function() {\n      adjustScrollWhenAboveVisible(cm, line, -height);\n      regLineChange(cm, no, \"widget\");\n    });\n  };\n  LineWidget.prototype.changed = function() {\n    var oldH = this.height, cm = this.doc.cm, line = this.line;\n    this.height = null;\n    var diff = widgetHeight(this) - oldH;\n    if (!diff) return;\n    updateLineHeight(line, line.height + diff);\n    if (cm) runInOp(cm, function() {\n      cm.curOp.forceUpdate = true;\n      adjustScrollWhenAboveVisible(cm, line, diff);\n    });\n  };\n\n  function widgetHeight(widget) {\n    if (widget.height != null) return widget.height;\n    var cm = widget.doc.cm;\n    if (!cm) return 0;\n    if (!contains(document.body, widget.node)) {\n      var parentStyle = \"position: relative;\";\n      if (widget.coverGutter)\n        parentStyle += \"margin-left: -\" + cm.display.gutters.offsetWidth + \"px;\";\n      if (widget.noHScroll)\n        parentStyle += \"width: \" + cm.display.wrapper.clientWidth + \"px;\";\n      removeChildrenAndAdd(cm.display.measure, elt(\"div\", [widget.node], null, parentStyle));\n    }\n    return widget.height = widget.node.offsetHeight;\n  }\n\n  function addLineWidget(doc, handle, node, options) {\n    var widget = new LineWidget(doc, node, options);\n    var cm = doc.cm;\n    if (cm && widget.noHScroll) cm.display.alignWidgets = true;\n    changeLine(doc, handle, \"widget\", function(line) {\n      var widgets = line.widgets || (line.widgets = []);\n      if (widget.insertAt == null) widgets.push(widget);\n      else widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget);\n      widget.line = line;\n      if (cm && !lineIsHidden(doc, line)) {\n        var aboveVisible = heightAtLine(line) < doc.scrollTop;\n        updateLineHeight(line, line.height + widgetHeight(widget));\n        if (aboveVisible) addToScrollPos(cm, null, widget.height);\n        cm.curOp.forceUpdate = true;\n      }\n      return true;\n    });\n    return widget;\n  }\n\n  // LINE DATA STRUCTURE\n\n  // Line objects. These hold state related to a line, including\n  // highlighting info (the styles array).\n  var Line = CodeMirror.Line = function(text, markedSpans, estimateHeight) {\n    this.text = text;\n    attachMarkedSpans(this, markedSpans);\n    this.height = estimateHeight ? estimateHeight(this) : 1;\n  };\n  eventMixin(Line);\n  Line.prototype.lineNo = function() { return lineNo(this); };\n\n  // Change the content (text, markers) of a line. Automatically\n  // invalidates cached information and tries to re-estimate the\n  // line's height.\n  function updateLine(line, text, markedSpans, estimateHeight) {\n    line.text = text;\n    if (line.stateAfter) line.stateAfter = null;\n    if (line.styles) line.styles = null;\n    if (line.order != null) line.order = null;\n    detachMarkedSpans(line);\n    attachMarkedSpans(line, markedSpans);\n    var estHeight = estimateHeight ? estimateHeight(line) : 1;\n    if (estHeight != line.height) updateLineHeight(line, estHeight);\n  }\n\n  // Detach a line from the document tree and its markers.\n  function cleanUpLine(line) {\n    line.parent = null;\n    detachMarkedSpans(line);\n  }\n\n  function extractLineClasses(type, output) {\n    if (type) for (;;) {\n      var lineClass = type.match(/(?:^|\\s+)line-(background-)?(\\S+)/);\n      if (!lineClass) break;\n      type = type.slice(0, lineClass.index) + type.slice(lineClass.index + lineClass[0].length);\n      var prop = lineClass[1] ? \"bgClass\" : \"textClass\";\n      if (output[prop] == null)\n        output[prop] = lineClass[2];\n      else if (!(new RegExp(\"(?:^|\\s)\" + lineClass[2] + \"(?:$|\\s)\")).test(output[prop]))\n        output[prop] += \" \" + lineClass[2];\n    }\n    return type;\n  }\n\n  function callBlankLine(mode, state) {\n    if (mode.blankLine) return mode.blankLine(state);\n    if (!mode.innerMode) return;\n    var inner = CodeMirror.innerMode(mode, state);\n    if (inner.mode.blankLine) return inner.mode.blankLine(inner.state);\n  }\n\n  function readToken(mode, stream, state, inner) {\n    for (var i = 0; i < 10; i++) {\n      if (inner) inner[0] = CodeMirror.innerMode(mode, state).mode;\n      var style = mode.token(stream, state);\n      if (stream.pos > stream.start) return style;\n    }\n    throw new Error(\"Mode \" + mode.name + \" failed to advance stream.\");\n  }\n\n  // Utility for getTokenAt and getLineTokens\n  function takeToken(cm, pos, precise, asArray) {\n    function getObj(copy) {\n      return {start: stream.start, end: stream.pos,\n              string: stream.current(),\n              type: style || null,\n              state: copy ? copyState(doc.mode, state) : state};\n    }\n\n    var doc = cm.doc, mode = doc.mode, style;\n    pos = clipPos(doc, pos);\n    var line = getLine(doc, pos.line), state = getStateBefore(cm, pos.line, precise);\n    var stream = new StringStream(line.text, cm.options.tabSize), tokens;\n    if (asArray) tokens = [];\n    while ((asArray || stream.pos < pos.ch) && !stream.eol()) {\n      stream.start = stream.pos;\n      style = readToken(mode, stream, state);\n      if (asArray) tokens.push(getObj(true));\n    }\n    return asArray ? tokens : getObj();\n  }\n\n  // Run the given mode's parser over a line, calling f for each token.\n  function runMode(cm, text, mode, state, f, lineClasses, forceToEnd) {\n    var flattenSpans = mode.flattenSpans;\n    if (flattenSpans == null) flattenSpans = cm.options.flattenSpans;\n    var curStart = 0, curStyle = null;\n    var stream = new StringStream(text, cm.options.tabSize), style;\n    var inner = cm.options.addModeClass && [null];\n    if (text == \"\") extractLineClasses(callBlankLine(mode, state), lineClasses);\n    while (!stream.eol()) {\n      if (stream.pos > cm.options.maxHighlightLength) {\n        flattenSpans = false;\n        if (forceToEnd) processLine(cm, text, state, stream.pos);\n        stream.pos = text.length;\n        style = null;\n      } else {\n        style = extractLineClasses(readToken(mode, stream, state, inner), lineClasses);\n      }\n      if (inner) {\n        var mName = inner[0].name;\n        if (mName) style = \"m-\" + (style ? mName + \" \" + style : mName);\n      }\n      if (!flattenSpans || curStyle != style) {\n        while (curStart < stream.start) {\n          curStart = Math.min(stream.start, curStart + 50000);\n          f(curStart, curStyle);\n        }\n        curStyle = style;\n      }\n      stream.start = stream.pos;\n    }\n    while (curStart < stream.pos) {\n      // Webkit seems to refuse to render text nodes longer than 57444 characters\n      var pos = Math.min(stream.pos, curStart + 50000);\n      f(pos, curStyle);\n      curStart = pos;\n    }\n  }\n\n  // Compute a style array (an array starting with a mode generation\n  // -- for invalidation -- followed by pairs of end positions and\n  // style strings), which is used to highlight the tokens on the\n  // line.\n  function highlightLine(cm, line, state, forceToEnd) {\n    // A styles array always starts with a number identifying the\n    // mode/overlays that it is based on (for easy invalidation).\n    var st = [cm.state.modeGen], lineClasses = {};\n    // Compute the base array of styles\n    runMode(cm, line.text, cm.doc.mode, state, function(end, style) {\n      st.push(end, style);\n    }, lineClasses, forceToEnd);\n\n    // Run overlays, adjust style array.\n    for (var o = 0; o < cm.state.overlays.length; ++o) {\n      var overlay = cm.state.overlays[o], i = 1, at = 0;\n      runMode(cm, line.text, overlay.mode, true, function(end, style) {\n        var start = i;\n        // Ensure there's a token end at the current position, and that i points at it\n        while (at < end) {\n          var i_end = st[i];\n          if (i_end > end)\n            st.splice(i, 1, end, st[i+1], i_end);\n          i += 2;\n          at = Math.min(end, i_end);\n        }\n        if (!style) return;\n        if (overlay.opaque) {\n          st.splice(start, i - start, end, \"cm-overlay \" + style);\n          i = start + 2;\n        } else {\n          for (; start < i; start += 2) {\n            var cur = st[start+1];\n            st[start+1] = (cur ? cur + \" \" : \"\") + \"cm-overlay \" + style;\n          }\n        }\n      }, lineClasses);\n    }\n\n    return {styles: st, classes: lineClasses.bgClass || lineClasses.textClass ? lineClasses : null};\n  }\n\n  function getLineStyles(cm, line, updateFrontier) {\n    if (!line.styles || line.styles[0] != cm.state.modeGen) {\n      var result = highlightLine(cm, line, line.stateAfter = getStateBefore(cm, lineNo(line)));\n      line.styles = result.styles;\n      if (result.classes) line.styleClasses = result.classes;\n      else if (line.styleClasses) line.styleClasses = null;\n      if (updateFrontier === cm.doc.frontier) cm.doc.frontier++;\n    }\n    return line.styles;\n  }\n\n  // Lightweight form of highlight -- proceed over this line and\n  // update state, but don't save a style array. Used for lines that\n  // aren't currently visible.\n  function processLine(cm, text, state, startAt) {\n    var mode = cm.doc.mode;\n    var stream = new StringStream(text, cm.options.tabSize);\n    stream.start = stream.pos = startAt || 0;\n    if (text == \"\") callBlankLine(mode, state);\n    while (!stream.eol() && stream.pos <= cm.options.maxHighlightLength) {\n      readToken(mode, stream, state);\n      stream.start = stream.pos;\n    }\n  }\n\n  // Convert a style as returned by a mode (either null, or a string\n  // containing one or more styles) to a CSS style. This is cached,\n  // and also looks for line-wide styles.\n  var styleToClassCache = {}, styleToClassCacheWithMode = {};\n  function interpretTokenStyle(style, options) {\n    if (!style || /^\\s*$/.test(style)) return null;\n    var cache = options.addModeClass ? styleToClassCacheWithMode : styleToClassCache;\n    return cache[style] ||\n      (cache[style] = style.replace(/\\S+/g, \"cm-$&\"));\n  }\n\n  // Render the DOM representation of the text of a line. Also builds\n  // up a 'line map', which points at the DOM nodes that represent\n  // specific stretches of text, and is used by the measuring code.\n  // The returned object contains the DOM node, this map, and\n  // information about line-wide styles that were set by the mode.\n  function buildLineContent(cm, lineView) {\n    // The padding-right forces the element to have a 'border', which\n    // is needed on Webkit to be able to get line-level bounding\n    // rectangles for it (in measureChar).\n    var content = elt(\"span\", null, null, webkit ? \"padding-right: .1px\" : null);\n    var builder = {pre: elt(\"pre\", [content]), content: content,\n                   col: 0, pos: 0, cm: cm,\n                   splitSpaces: (ie || webkit) && cm.getOption(\"lineWrapping\")};\n    lineView.measure = {};\n\n    // Iterate over the logical lines that make up this visual line.\n    for (var i = 0; i <= (lineView.rest ? lineView.rest.length : 0); i++) {\n      var line = i ? lineView.rest[i - 1] : lineView.line, order;\n      builder.pos = 0;\n      builder.addToken = buildToken;\n      // Optionally wire in some hacks into the token-rendering\n      // algorithm, to deal with browser quirks.\n      if (hasBadBidiRects(cm.display.measure) && (order = getOrder(line)))\n        builder.addToken = buildTokenBadBidi(builder.addToken, order);\n      builder.map = [];\n      var allowFrontierUpdate = lineView != cm.display.externalMeasured && lineNo(line);\n      insertLineContent(line, builder, getLineStyles(cm, line, allowFrontierUpdate));\n      if (line.styleClasses) {\n        if (line.styleClasses.bgClass)\n          builder.bgClass = joinClasses(line.styleClasses.bgClass, builder.bgClass || \"\");\n        if (line.styleClasses.textClass)\n          builder.textClass = joinClasses(line.styleClasses.textClass, builder.textClass || \"\");\n      }\n\n      // Ensure at least a single node is present, for measuring.\n      if (builder.map.length == 0)\n        builder.map.push(0, 0, builder.content.appendChild(zeroWidthElement(cm.display.measure)));\n\n      // Store the map and a cache object for the current logical line\n      if (i == 0) {\n        lineView.measure.map = builder.map;\n        lineView.measure.cache = {};\n      } else {\n        (lineView.measure.maps || (lineView.measure.maps = [])).push(builder.map);\n        (lineView.measure.caches || (lineView.measure.caches = [])).push({});\n      }\n    }\n\n    // See issue #2901\n    if (webkit && /\\bcm-tab\\b/.test(builder.content.lastChild.className))\n      builder.content.className = \"cm-tab-wrap-hack\";\n\n    signal(cm, \"renderLine\", cm, lineView.line, builder.pre);\n    if (builder.pre.className)\n      builder.textClass = joinClasses(builder.pre.className, builder.textClass || \"\");\n\n    return builder;\n  }\n\n  function defaultSpecialCharPlaceholder(ch) {\n    var token = elt(\"span\", \"\\u2022\", \"cm-invalidchar\");\n    token.title = \"\\\\u\" + ch.charCodeAt(0).toString(16);\n    token.setAttribute(\"aria-label\", token.title);\n    return token;\n  }\n\n  // Build up the DOM representation for a single token, and add it to\n  // the line map. Takes care to render special characters separately.\n  function buildToken(builder, text, style, startStyle, endStyle, title, css) {\n    if (!text) return;\n    var displayText = builder.splitSpaces ? text.replace(/ {3,}/g, splitSpaces) : text;\n    var special = builder.cm.state.specialChars, mustWrap = false;\n    if (!special.test(text)) {\n      builder.col += text.length;\n      var content = document.createTextNode(displayText);\n      builder.map.push(builder.pos, builder.pos + text.length, content);\n      if (ie && ie_version < 9) mustWrap = true;\n      builder.pos += text.length;\n    } else {\n      var content = document.createDocumentFragment(), pos = 0;\n      while (true) {\n        special.lastIndex = pos;\n        var m = special.exec(text);\n        var skipped = m ? m.index - pos : text.length - pos;\n        if (skipped) {\n          var txt = document.createTextNode(displayText.slice(pos, pos + skipped));\n          if (ie && ie_version < 9) content.appendChild(elt(\"span\", [txt]));\n          else content.appendChild(txt);\n          builder.map.push(builder.pos, builder.pos + skipped, txt);\n          builder.col += skipped;\n          builder.pos += skipped;\n        }\n        if (!m) break;\n        pos += skipped + 1;\n        if (m[0] == \"\\t\") {\n          var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize;\n          var txt = content.appendChild(elt(\"span\", spaceStr(tabWidth), \"cm-tab\"));\n          txt.setAttribute(\"role\", \"presentation\");\n          txt.setAttribute(\"cm-text\", \"\\t\");\n          builder.col += tabWidth;\n        } else {\n          var txt = builder.cm.options.specialCharPlaceholder(m[0]);\n          txt.setAttribute(\"cm-text\", m[0]);\n          if (ie && ie_version < 9) content.appendChild(elt(\"span\", [txt]));\n          else content.appendChild(txt);\n          builder.col += 1;\n        }\n        builder.map.push(builder.pos, builder.pos + 1, txt);\n        builder.pos++;\n      }\n    }\n    if (style || startStyle || endStyle || mustWrap || css) {\n      var fullStyle = style || \"\";\n      if (startStyle) fullStyle += startStyle;\n      if (endStyle) fullStyle += endStyle;\n      var token = elt(\"span\", [content], fullStyle, css);\n      if (title) token.title = title;\n      return builder.content.appendChild(token);\n    }\n    builder.content.appendChild(content);\n  }\n\n  function splitSpaces(old) {\n    var out = \" \";\n    for (var i = 0; i < old.length - 2; ++i) out += i % 2 ? \" \" : \"\\u00a0\";\n    out += \" \";\n    return out;\n  }\n\n  // Work around nonsense dimensions being reported for stretches of\n  // right-to-left text.\n  function buildTokenBadBidi(inner, order) {\n    return function(builder, text, style, startStyle, endStyle, title, css) {\n      style = style ? style + \" cm-force-border\" : \"cm-force-border\";\n      var start = builder.pos, end = start + text.length;\n      for (;;) {\n        // Find the part that overlaps with the start of this text\n        for (var i = 0; i < order.length; i++) {\n          var part = order[i];\n          if (part.to > start && part.from <= start) break;\n        }\n        if (part.to >= end) return inner(builder, text, style, startStyle, endStyle, title, css);\n        inner(builder, text.slice(0, part.to - start), style, startStyle, null, title, css);\n        startStyle = null;\n        text = text.slice(part.to - start);\n        start = part.to;\n      }\n    };\n  }\n\n  function buildCollapsedSpan(builder, size, marker, ignoreWidget) {\n    var widget = !ignoreWidget && marker.widgetNode;\n    if (widget) builder.map.push(builder.pos, builder.pos + size, widget);\n    if (!ignoreWidget && builder.cm.display.input.needsContentAttribute) {\n      if (!widget)\n        widget = builder.content.appendChild(document.createElement(\"span\"));\n      widget.setAttribute(\"cm-marker\", marker.id);\n    }\n    if (widget) {\n      builder.cm.display.input.setUneditable(widget);\n      builder.content.appendChild(widget);\n    }\n    builder.pos += size;\n  }\n\n  // Outputs a number of spans to make up a line, taking highlighting\n  // and marked text into account.\n  function insertLineContent(line, builder, styles) {\n    var spans = line.markedSpans, allText = line.text, at = 0;\n    if (!spans) {\n      for (var i = 1; i < styles.length; i+=2)\n        builder.addToken(builder, allText.slice(at, at = styles[i]), interpretTokenStyle(styles[i+1], builder.cm.options));\n      return;\n    }\n\n    var len = allText.length, pos = 0, i = 1, text = \"\", style, css;\n    var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed;\n    for (;;) {\n      if (nextChange == pos) { // Update current marker set\n        spanStyle = spanEndStyle = spanStartStyle = title = css = \"\";\n        collapsed = null; nextChange = Infinity;\n        var foundBookmarks = [];\n        for (var j = 0; j < spans.length; ++j) {\n          var sp = spans[j], m = sp.marker;\n          if (m.type == \"bookmark\" && sp.from == pos && m.widgetNode) {\n            foundBookmarks.push(m);\n          } else if (sp.from <= pos && (sp.to == null || sp.to > pos || m.collapsed && sp.to == pos && sp.from == pos)) {\n            if (sp.to != null && sp.to != pos && nextChange > sp.to) {\n              nextChange = sp.to;\n              spanEndStyle = \"\";\n            }\n            if (m.className) spanStyle += \" \" + m.className;\n            if (m.css) css = m.css;\n            if (m.startStyle && sp.from == pos) spanStartStyle += \" \" + m.startStyle;\n            if (m.endStyle && sp.to == nextChange) spanEndStyle += \" \" + m.endStyle;\n            if (m.title && !title) title = m.title;\n            if (m.collapsed && (!collapsed || compareCollapsedMarkers(collapsed.marker, m) < 0))\n              collapsed = sp;\n          } else if (sp.from > pos && nextChange > sp.from) {\n            nextChange = sp.from;\n          }\n        }\n        if (collapsed && (collapsed.from || 0) == pos) {\n          buildCollapsedSpan(builder, (collapsed.to == null ? len + 1 : collapsed.to) - pos,\n                             collapsed.marker, collapsed.from == null);\n          if (collapsed.to == null) return;\n          if (collapsed.to == pos) collapsed = false;\n        }\n        if (!collapsed && foundBookmarks.length) for (var j = 0; j < foundBookmarks.length; ++j)\n          buildCollapsedSpan(builder, 0, foundBookmarks[j]);\n      }\n      if (pos >= len) break;\n\n      var upto = Math.min(len, nextChange);\n      while (true) {\n        if (text) {\n          var end = pos + text.length;\n          if (!collapsed) {\n            var tokenText = end > upto ? text.slice(0, upto - pos) : text;\n            builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle,\n                             spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : \"\", title, css);\n          }\n          if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;}\n          pos = end;\n          spanStartStyle = \"\";\n        }\n        text = allText.slice(at, at = styles[i++]);\n        style = interpretTokenStyle(styles[i++], builder.cm.options);\n      }\n    }\n  }\n\n  // DOCUMENT DATA STRUCTURE\n\n  // By default, updates that start and end at the beginning of a line\n  // are treated specially, in order to make the association of line\n  // widgets and marker elements with the text behave more intuitive.\n  function isWholeLineUpdate(doc, change) {\n    return change.from.ch == 0 && change.to.ch == 0 && lst(change.text) == \"\" &&\n      (!doc.cm || doc.cm.options.wholeLineUpdateBefore);\n  }\n\n  // Perform a change on the document data structure.\n  function updateDoc(doc, change, markedSpans, estimateHeight) {\n    function spansFor(n) {return markedSpans ? markedSpans[n] : null;}\n    function update(line, text, spans) {\n      updateLine(line, text, spans, estimateHeight);\n      signalLater(line, \"change\", line, change);\n    }\n    function linesFor(start, end) {\n      for (var i = start, result = []; i < end; ++i)\n        result.push(new Line(text[i], spansFor(i), estimateHeight));\n      return result;\n    }\n\n    var from = change.from, to = change.to, text = change.text;\n    var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line);\n    var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line;\n\n    // Adjust the line structure\n    if (change.full) {\n      doc.insert(0, linesFor(0, text.length));\n      doc.remove(text.length, doc.size - text.length);\n    } else if (isWholeLineUpdate(doc, change)) {\n      // This is a whole-line replace. Treated specially to make\n      // sure line objects move the way they are supposed to.\n      var added = linesFor(0, text.length - 1);\n      update(lastLine, lastLine.text, lastSpans);\n      if (nlines) doc.remove(from.line, nlines);\n      if (added.length) doc.insert(from.line, added);\n    } else if (firstLine == lastLine) {\n      if (text.length == 1) {\n        update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans);\n      } else {\n        var added = linesFor(1, text.length - 1);\n        added.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight));\n        update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));\n        doc.insert(from.line + 1, added);\n      }\n    } else if (text.length == 1) {\n      update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0));\n      doc.remove(from.line + 1, nlines);\n    } else {\n      update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));\n      update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans);\n      var added = linesFor(1, text.length - 1);\n      if (nlines > 1) doc.remove(from.line + 1, nlines - 1);\n      doc.insert(from.line + 1, added);\n    }\n\n    signalLater(doc, \"change\", doc, change);\n  }\n\n  // The document is represented as a BTree consisting of leaves, with\n  // chunk of lines in them, and branches, with up to ten leaves or\n  // other branch nodes below them. The top node is always a branch\n  // node, and is the document object itself (meaning it has\n  // additional methods and properties).\n  //\n  // All nodes have parent links. The tree is used both to go from\n  // line numbers to line objects, and to go from objects to numbers.\n  // It also indexes by height, and is used to convert between height\n  // and line object, and to find the total height of the document.\n  //\n  // See also http://marijnhaverbeke.nl/blog/codemirror-line-tree.html\n\n  function LeafChunk(lines) {\n    this.lines = lines;\n    this.parent = null;\n    for (var i = 0, height = 0; i < lines.length; ++i) {\n      lines[i].parent = this;\n      height += lines[i].height;\n    }\n    this.height = height;\n  }\n\n  LeafChunk.prototype = {\n    chunkSize: function() { return this.lines.length; },\n    // Remove the n lines at offset 'at'.\n    removeInner: function(at, n) {\n      for (var i = at, e = at + n; i < e; ++i) {\n        var line = this.lines[i];\n        this.height -= line.height;\n        cleanUpLine(line);\n        signalLater(line, \"delete\");\n      }\n      this.lines.splice(at, n);\n    },\n    // Helper used to collapse a small branch into a single leaf.\n    collapse: function(lines) {\n      lines.push.apply(lines, this.lines);\n    },\n    // Insert the given array of lines at offset 'at', count them as\n    // having the given height.\n    insertInner: function(at, lines, height) {\n      this.height += height;\n      this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at));\n      for (var i = 0; i < lines.length; ++i) lines[i].parent = this;\n    },\n    // Used to iterate over a part of the tree.\n    iterN: function(at, n, op) {\n      for (var e = at + n; at < e; ++at)\n        if (op(this.lines[at])) return true;\n    }\n  };\n\n  function BranchChunk(children) {\n    this.children = children;\n    var size = 0, height = 0;\n    for (var i = 0; i < children.length; ++i) {\n      var ch = children[i];\n      size += ch.chunkSize(); height += ch.height;\n      ch.parent = this;\n    }\n    this.size = size;\n    this.height = height;\n    this.parent = null;\n  }\n\n  BranchChunk.prototype = {\n    chunkSize: function() { return this.size; },\n    removeInner: function(at, n) {\n      this.size -= n;\n      for (var i = 0; i < this.children.length; ++i) {\n        var child = this.children[i], sz = child.chunkSize();\n        if (at < sz) {\n          var rm = Math.min(n, sz - at), oldHeight = child.height;\n          child.removeInner(at, rm);\n          this.height -= oldHeight - child.height;\n          if (sz == rm) { this.children.splice(i--, 1); child.parent = null; }\n          if ((n -= rm) == 0) break;\n          at = 0;\n        } else at -= sz;\n      }\n      // If the result is smaller than 25 lines, ensure that it is a\n      // single leaf node.\n      if (this.size - n < 25 &&\n          (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) {\n        var lines = [];\n        this.collapse(lines);\n        this.children = [new LeafChunk(lines)];\n        this.children[0].parent = this;\n      }\n    },\n    collapse: function(lines) {\n      for (var i = 0; i < this.children.length; ++i) this.children[i].collapse(lines);\n    },\n    insertInner: function(at, lines, height) {\n      this.size += lines.length;\n      this.height += height;\n      for (var i = 0; i < this.children.length; ++i) {\n        var child = this.children[i], sz = child.chunkSize();\n        if (at <= sz) {\n          child.insertInner(at, lines, height);\n          if (child.lines && child.lines.length > 50) {\n            while (child.lines.length > 50) {\n              var spilled = child.lines.splice(child.lines.length - 25, 25);\n              var newleaf = new LeafChunk(spilled);\n              child.height -= newleaf.height;\n              this.children.splice(i + 1, 0, newleaf);\n              newleaf.parent = this;\n            }\n            this.maybeSpill();\n          }\n          break;\n        }\n        at -= sz;\n      }\n    },\n    // When a node has grown, check whether it should be split.\n    maybeSpill: function() {\n      if (this.children.length <= 10) return;\n      var me = this;\n      do {\n        var spilled = me.children.splice(me.children.length - 5, 5);\n        var sibling = new BranchChunk(spilled);\n        if (!me.parent) { // Become the parent node\n          var copy = new BranchChunk(me.children);\n          copy.parent = me;\n          me.children = [copy, sibling];\n          me = copy;\n        } else {\n          me.size -= sibling.size;\n          me.height -= sibling.height;\n          var myIndex = indexOf(me.parent.children, me);\n          me.parent.children.splice(myIndex + 1, 0, sibling);\n        }\n        sibling.parent = me.parent;\n      } while (me.children.length > 10);\n      me.parent.maybeSpill();\n    },\n    iterN: function(at, n, op) {\n      for (var i = 0; i < this.children.length; ++i) {\n        var child = this.children[i], sz = child.chunkSize();\n        if (at < sz) {\n          var used = Math.min(n, sz - at);\n          if (child.iterN(at, used, op)) return true;\n          if ((n -= used) == 0) break;\n          at = 0;\n        } else at -= sz;\n      }\n    }\n  };\n\n  var nextDocId = 0;\n  var Doc = CodeMirror.Doc = function(text, mode, firstLine) {\n    if (!(this instanceof Doc)) return new Doc(text, mode, firstLine);\n    if (firstLine == null) firstLine = 0;\n\n    BranchChunk.call(this, [new LeafChunk([new Line(\"\", null)])]);\n    this.first = firstLine;\n    this.scrollTop = this.scrollLeft = 0;\n    this.cantEdit = false;\n    this.cleanGeneration = 1;\n    this.frontier = firstLine;\n    var start = Pos(firstLine, 0);\n    this.sel = simpleSelection(start);\n    this.history = new History(null);\n    this.id = ++nextDocId;\n    this.modeOption = mode;\n\n    if (typeof text == \"string\") text = splitLines(text);\n    updateDoc(this, {from: start, to: start, text: text});\n    setSelection(this, simpleSelection(start), sel_dontScroll);\n  };\n\n  Doc.prototype = createObj(BranchChunk.prototype, {\n    constructor: Doc,\n    // Iterate over the document. Supports two forms -- with only one\n    // argument, it calls that for each line in the document. With\n    // three, it iterates over the range given by the first two (with\n    // the second being non-inclusive).\n    iter: function(from, to, op) {\n      if (op) this.iterN(from - this.first, to - from, op);\n      else this.iterN(this.first, this.first + this.size, from);\n    },\n\n    // Non-public interface for adding and removing lines.\n    insert: function(at, lines) {\n      var height = 0;\n      for (var i = 0; i < lines.length; ++i) height += lines[i].height;\n      this.insertInner(at - this.first, lines, height);\n    },\n    remove: function(at, n) { this.removeInner(at - this.first, n); },\n\n    // From here, the methods are part of the public interface. Most\n    // are also available from CodeMirror (editor) instances.\n\n    getValue: function(lineSep) {\n      var lines = getLines(this, this.first, this.first + this.size);\n      if (lineSep === false) return lines;\n      return lines.join(lineSep || \"\\n\");\n    },\n    setValue: docMethodOp(function(code) {\n      var top = Pos(this.first, 0), last = this.first + this.size - 1;\n      makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length),\n                        text: splitLines(code), origin: \"setValue\", full: true}, true);\n      setSelection(this, simpleSelection(top));\n    }),\n    replaceRange: function(code, from, to, origin) {\n      from = clipPos(this, from);\n      to = to ? clipPos(this, to) : from;\n      replaceRange(this, code, from, to, origin);\n    },\n    getRange: function(from, to, lineSep) {\n      var lines = getBetween(this, clipPos(this, from), clipPos(this, to));\n      if (lineSep === false) return lines;\n      return lines.join(lineSep || \"\\n\");\n    },\n\n    getLine: function(line) {var l = this.getLineHandle(line); return l && l.text;},\n\n    getLineHandle: function(line) {if (isLine(this, line)) return getLine(this, line);},\n    getLineNumber: function(line) {return lineNo(line);},\n\n    getLineHandleVisualStart: function(line) {\n      if (typeof line == \"number\") line = getLine(this, line);\n      return visualLine(line);\n    },\n\n    lineCount: function() {return this.size;},\n    firstLine: function() {return this.first;},\n    lastLine: function() {return this.first + this.size - 1;},\n\n    clipPos: function(pos) {return clipPos(this, pos);},\n\n    getCursor: function(start) {\n      var range = this.sel.primary(), pos;\n      if (start == null || start == \"head\") pos = range.head;\n      else if (start == \"anchor\") pos = range.anchor;\n      else if (start == \"end\" || start == \"to\" || start === false) pos = range.to();\n      else pos = range.from();\n      return pos;\n    },\n    listSelections: function() { return this.sel.ranges; },\n    somethingSelected: function() {return this.sel.somethingSelected();},\n\n    setCursor: docMethodOp(function(line, ch, options) {\n      setSimpleSelection(this, clipPos(this, typeof line == \"number\" ? Pos(line, ch || 0) : line), null, options);\n    }),\n    setSelection: docMethodOp(function(anchor, head, options) {\n      setSimpleSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), options);\n    }),\n    extendSelection: docMethodOp(function(head, other, options) {\n      extendSelection(this, clipPos(this, head), other && clipPos(this, other), options);\n    }),\n    extendSelections: docMethodOp(function(heads, options) {\n      extendSelections(this, clipPosArray(this, heads, options));\n    }),\n    extendSelectionsBy: docMethodOp(function(f, options) {\n      extendSelections(this, map(this.sel.ranges, f), options);\n    }),\n    setSelections: docMethodOp(function(ranges, primary, options) {\n      if (!ranges.length) return;\n      for (var i = 0, out = []; i < ranges.length; i++)\n        out[i] = new Range(clipPos(this, ranges[i].anchor),\n                           clipPos(this, ranges[i].head));\n      if (primary == null) primary = Math.min(ranges.length - 1, this.sel.primIndex);\n      setSelection(this, normalizeSelection(out, primary), options);\n    }),\n    addSelection: docMethodOp(function(anchor, head, options) {\n      var ranges = this.sel.ranges.slice(0);\n      ranges.push(new Range(clipPos(this, anchor), clipPos(this, head || anchor)));\n      setSelection(this, normalizeSelection(ranges, ranges.length - 1), options);\n    }),\n\n    getSelection: function(lineSep) {\n      var ranges = this.sel.ranges, lines;\n      for (var i = 0; i < ranges.length; i++) {\n        var sel = getBetween(this, ranges[i].from(), ranges[i].to());\n        lines = lines ? lines.concat(sel) : sel;\n      }\n      if (lineSep === false) return lines;\n      else return lines.join(lineSep || \"\\n\");\n    },\n    getSelections: function(lineSep) {\n      var parts = [], ranges = this.sel.ranges;\n      for (var i = 0; i < ranges.length; i++) {\n        var sel = getBetween(this, ranges[i].from(), ranges[i].to());\n        if (lineSep !== false) sel = sel.join(lineSep || \"\\n\");\n        parts[i] = sel;\n      }\n      return parts;\n    },\n    replaceSelection: function(code, collapse, origin) {\n      var dup = [];\n      for (var i = 0; i < this.sel.ranges.length; i++)\n        dup[i] = code;\n      this.replaceSelections(dup, collapse, origin || \"+input\");\n    },\n    replaceSelections: docMethodOp(function(code, collapse, origin) {\n      var changes = [], sel = this.sel;\n      for (var i = 0; i < sel.ranges.length; i++) {\n        var range = sel.ranges[i];\n        changes[i] = {from: range.from(), to: range.to(), text: splitLines(code[i]), origin: origin};\n      }\n      var newSel = collapse && collapse != \"end\" && computeReplacedSel(this, changes, collapse);\n      for (var i = changes.length - 1; i >= 0; i--)\n        makeChange(this, changes[i]);\n      if (newSel) setSelectionReplaceHistory(this, newSel);\n      else if (this.cm) ensureCursorVisible(this.cm);\n    }),\n    undo: docMethodOp(function() {makeChangeFromHistory(this, \"undo\");}),\n    redo: docMethodOp(function() {makeChangeFromHistory(this, \"redo\");}),\n    undoSelection: docMethodOp(function() {makeChangeFromHistory(this, \"undo\", true);}),\n    redoSelection: docMethodOp(function() {makeChangeFromHistory(this, \"redo\", true);}),\n\n    setExtending: function(val) {this.extend = val;},\n    getExtending: function() {return this.extend;},\n\n    historySize: function() {\n      var hist = this.history, done = 0, undone = 0;\n      for (var i = 0; i < hist.done.length; i++) if (!hist.done[i].ranges) ++done;\n      for (var i = 0; i < hist.undone.length; i++) if (!hist.undone[i].ranges) ++undone;\n      return {undo: done, redo: undone};\n    },\n    clearHistory: function() {this.history = new History(this.history.maxGeneration);},\n\n    markClean: function() {\n      this.cleanGeneration = this.changeGeneration(true);\n    },\n    changeGeneration: function(forceSplit) {\n      if (forceSplit)\n        this.history.lastOp = this.history.lastSelOp = this.history.lastOrigin = null;\n      return this.history.generation;\n    },\n    isClean: function (gen) {\n      return this.history.generation == (gen || this.cleanGeneration);\n    },\n\n    getHistory: function() {\n      return {done: copyHistoryArray(this.history.done),\n              undone: copyHistoryArray(this.history.undone)};\n    },\n    setHistory: function(histData) {\n      var hist = this.history = new History(this.history.maxGeneration);\n      hist.done = copyHistoryArray(histData.done.slice(0), null, true);\n      hist.undone = copyHistoryArray(histData.undone.slice(0), null, true);\n    },\n\n    addLineClass: docMethodOp(function(handle, where, cls) {\n      return changeLine(this, handle, where == \"gutter\" ? \"gutter\" : \"class\", function(line) {\n        var prop = where == \"text\" ? \"textClass\"\n                 : where == \"background\" ? \"bgClass\"\n                 : where == \"gutter\" ? \"gutterClass\" : \"wrapClass\";\n        if (!line[prop]) line[prop] = cls;\n        else if (classTest(cls).test(line[prop])) return false;\n        else line[prop] += \" \" + cls;\n        return true;\n      });\n    }),\n    removeLineClass: docMethodOp(function(handle, where, cls) {\n      return changeLine(this, handle, where == \"gutter\" ? \"gutter\" : \"class\", function(line) {\n        var prop = where == \"text\" ? \"textClass\"\n                 : where == \"background\" ? \"bgClass\"\n                 : where == \"gutter\" ? \"gutterClass\" : \"wrapClass\";\n        var cur = line[prop];\n        if (!cur) return false;\n        else if (cls == null) line[prop] = null;\n        else {\n          var found = cur.match(classTest(cls));\n          if (!found) return false;\n          var end = found.index + found[0].length;\n          line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? \"\" : \" \") + cur.slice(end) || null;\n        }\n        return true;\n      });\n    }),\n\n    addLineWidget: docMethodOp(function(handle, node, options) {\n      return addLineWidget(this, handle, node, options);\n    }),\n    removeLineWidget: function(widget) { widget.clear(); },\n\n    markText: function(from, to, options) {\n      return markText(this, clipPos(this, from), clipPos(this, to), options, \"range\");\n    },\n    setBookmark: function(pos, options) {\n      var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options),\n                      insertLeft: options && options.insertLeft,\n                      clearWhenEmpty: false, shared: options && options.shared,\n                      handleMouseEvents: options && options.handleMouseEvents};\n      pos = clipPos(this, pos);\n      return markText(this, pos, pos, realOpts, \"bookmark\");\n    },\n    findMarksAt: function(pos) {\n      pos = clipPos(this, pos);\n      var markers = [], spans = getLine(this, pos.line).markedSpans;\n      if (spans) for (var i = 0; i < spans.length; ++i) {\n        var span = spans[i];\n        if ((span.from == null || span.from <= pos.ch) &&\n            (span.to == null || span.to >= pos.ch))\n          markers.push(span.marker.parent || span.marker);\n      }\n      return markers;\n    },\n    findMarks: function(from, to, filter) {\n      from = clipPos(this, from); to = clipPos(this, to);\n      var found = [], lineNo = from.line;\n      this.iter(from.line, to.line + 1, function(line) {\n        var spans = line.markedSpans;\n        if (spans) for (var i = 0; i < spans.length; i++) {\n          var span = spans[i];\n          if (!(lineNo == from.line && from.ch > span.to ||\n                span.from == null && lineNo != from.line||\n                lineNo == to.line && span.from > to.ch) &&\n              (!filter || filter(span.marker)))\n            found.push(span.marker.parent || span.marker);\n        }\n        ++lineNo;\n      });\n      return found;\n    },\n    getAllMarks: function() {\n      var markers = [];\n      this.iter(function(line) {\n        var sps = line.markedSpans;\n        if (sps) for (var i = 0; i < sps.length; ++i)\n          if (sps[i].from != null) markers.push(sps[i].marker);\n      });\n      return markers;\n    },\n\n    posFromIndex: function(off) {\n      var ch, lineNo = this.first;\n      this.iter(function(line) {\n        var sz = line.text.length + 1;\n        if (sz > off) { ch = off; return true; }\n        off -= sz;\n        ++lineNo;\n      });\n      return clipPos(this, Pos(lineNo, ch));\n    },\n    indexFromPos: function (coords) {\n      coords = clipPos(this, coords);\n      var index = coords.ch;\n      if (coords.line < this.first || coords.ch < 0) return 0;\n      this.iter(this.first, coords.line, function (line) {\n        index += line.text.length + 1;\n      });\n      return index;\n    },\n\n    copy: function(copyHistory) {\n      var doc = new Doc(getLines(this, this.first, this.first + this.size), this.modeOption, this.first);\n      doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft;\n      doc.sel = this.sel;\n      doc.extend = false;\n      if (copyHistory) {\n        doc.history.undoDepth = this.history.undoDepth;\n        doc.setHistory(this.getHistory());\n      }\n      return doc;\n    },\n\n    linkedDoc: function(options) {\n      if (!options) options = {};\n      var from = this.first, to = this.first + this.size;\n      if (options.from != null && options.from > from) from = options.from;\n      if (options.to != null && options.to < to) to = options.to;\n      var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from);\n      if (options.sharedHist) copy.history = this.history;\n      (this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist});\n      copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}];\n      copySharedMarkers(copy, findSharedMarkers(this));\n      return copy;\n    },\n    unlinkDoc: function(other) {\n      if (other instanceof CodeMirror) other = other.doc;\n      if (this.linked) for (var i = 0; i < this.linked.length; ++i) {\n        var link = this.linked[i];\n        if (link.doc != other) continue;\n        this.linked.splice(i, 1);\n        other.unlinkDoc(this);\n        detachSharedMarkers(findSharedMarkers(this));\n        break;\n      }\n      // If the histories were shared, split them again\n      if (other.history == this.history) {\n        var splitIds = [other.id];\n        linkedDocs(other, function(doc) {splitIds.push(doc.id);}, true);\n        other.history = new History(null);\n        other.history.done = copyHistoryArray(this.history.done, splitIds);\n        other.history.undone = copyHistoryArray(this.history.undone, splitIds);\n      }\n    },\n    iterLinkedDocs: function(f) {linkedDocs(this, f);},\n\n    getMode: function() {return this.mode;},\n    getEditor: function() {return this.cm;}\n  });\n\n  // Public alias.\n  Doc.prototype.eachLine = Doc.prototype.iter;\n\n  // Set up methods on CodeMirror's prototype to redirect to the editor's document.\n  var dontDelegate = \"iter insert remove copy getEditor constructor\".split(\" \");\n  for (var prop in Doc.prototype) if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0)\n    CodeMirror.prototype[prop] = (function(method) {\n      return function() {return method.apply(this.doc, arguments);};\n    })(Doc.prototype[prop]);\n\n  eventMixin(Doc);\n\n  // Call f for all linked documents.\n  function linkedDocs(doc, f, sharedHistOnly) {\n    function propagate(doc, skip, sharedHist) {\n      if (doc.linked) for (var i = 0; i < doc.linked.length; ++i) {\n        var rel = doc.linked[i];\n        if (rel.doc == skip) continue;\n        var shared = sharedHist && rel.sharedHist;\n        if (sharedHistOnly && !shared) continue;\n        f(rel.doc, shared);\n        propagate(rel.doc, doc, shared);\n      }\n    }\n    propagate(doc, null, true);\n  }\n\n  // Attach a document to an editor.\n  function attachDoc(cm, doc) {\n    if (doc.cm) throw new Error(\"This document is already in use.\");\n    cm.doc = doc;\n    doc.cm = cm;\n    estimateLineHeights(cm);\n    loadMode(cm);\n    if (!cm.options.lineWrapping) findMaxLine(cm);\n    cm.options.mode = doc.modeOption;\n    regChange(cm);\n  }\n\n  // LINE UTILITIES\n\n  // Find the line object corresponding to the given line number.\n  function getLine(doc, n) {\n    n -= doc.first;\n    if (n < 0 || n >= doc.size) throw new Error(\"There is no line \" + (n + doc.first) + \" in the document.\");\n    for (var chunk = doc; !chunk.lines;) {\n      for (var i = 0;; ++i) {\n        var child = chunk.children[i], sz = child.chunkSize();\n        if (n < sz) { chunk = child; break; }\n        n -= sz;\n      }\n    }\n    return chunk.lines[n];\n  }\n\n  // Get the part of a document between two positions, as an array of\n  // strings.\n  function getBetween(doc, start, end) {\n    var out = [], n = start.line;\n    doc.iter(start.line, end.line + 1, function(line) {\n      var text = line.text;\n      if (n == end.line) text = text.slice(0, end.ch);\n      if (n == start.line) text = text.slice(start.ch);\n      out.push(text);\n      ++n;\n    });\n    return out;\n  }\n  // Get the lines between from and to, as array of strings.\n  function getLines(doc, from, to) {\n    var out = [];\n    doc.iter(from, to, function(line) { out.push(line.text); });\n    return out;\n  }\n\n  // Update the height of a line, propagating the height change\n  // upwards to parent nodes.\n  function updateLineHeight(line, height) {\n    var diff = height - line.height;\n    if (diff) for (var n = line; n; n = n.parent) n.height += diff;\n  }\n\n  // Given a line object, find its line number by walking up through\n  // its parent links.\n  function lineNo(line) {\n    if (line.parent == null) return null;\n    var cur = line.parent, no = indexOf(cur.lines, line);\n    for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {\n      for (var i = 0;; ++i) {\n        if (chunk.children[i] == cur) break;\n        no += chunk.children[i].chunkSize();\n      }\n    }\n    return no + cur.first;\n  }\n\n  // Find the line at the given vertical position, using the height\n  // information in the document tree.\n  function lineAtHeight(chunk, h) {\n    var n = chunk.first;\n    outer: do {\n      for (var i = 0; i < chunk.children.length; ++i) {\n        var child = chunk.children[i], ch = child.height;\n        if (h < ch) { chunk = child; continue outer; }\n        h -= ch;\n        n += child.chunkSize();\n      }\n      return n;\n    } while (!chunk.lines);\n    for (var i = 0; i < chunk.lines.length; ++i) {\n      var line = chunk.lines[i], lh = line.height;\n      if (h < lh) break;\n      h -= lh;\n    }\n    return n + i;\n  }\n\n\n  // Find the height above the given line.\n  function heightAtLine(lineObj) {\n    lineObj = visualLine(lineObj);\n\n    var h = 0, chunk = lineObj.parent;\n    for (var i = 0; i < chunk.lines.length; ++i) {\n      var line = chunk.lines[i];\n      if (line == lineObj) break;\n      else h += line.height;\n    }\n    for (var p = chunk.parent; p; chunk = p, p = chunk.parent) {\n      for (var i = 0; i < p.children.length; ++i) {\n        var cur = p.children[i];\n        if (cur == chunk) break;\n        else h += cur.height;\n      }\n    }\n    return h;\n  }\n\n  // Get the bidi ordering for the given line (and cache it). Returns\n  // false for lines that are fully left-to-right, and an array of\n  // BidiSpan objects otherwise.\n  function getOrder(line) {\n    var order = line.order;\n    if (order == null) order = line.order = bidiOrdering(line.text);\n    return order;\n  }\n\n  // HISTORY\n\n  function History(startGen) {\n    // Arrays of change events and selections. Doing something adds an\n    // event to done and clears undo. Undoing moves events from done\n    // to undone, redoing moves them in the other direction.\n    this.done = []; this.undone = [];\n    this.undoDepth = Infinity;\n    // Used to track when changes can be merged into a single undo\n    // event\n    this.lastModTime = this.lastSelTime = 0;\n    this.lastOp = this.lastSelOp = null;\n    this.lastOrigin = this.lastSelOrigin = null;\n    // Used by the isClean() method\n    this.generation = this.maxGeneration = startGen || 1;\n  }\n\n  // Create a history change event from an updateDoc-style change\n  // object.\n  function historyChangeFromChange(doc, change) {\n    var histChange = {from: copyPos(change.from), to: changeEnd(change), text: getBetween(doc, change.from, change.to)};\n    attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);\n    linkedDocs(doc, function(doc) {attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);}, true);\n    return histChange;\n  }\n\n  // Pop all selection events off the end of a history array. Stop at\n  // a change event.\n  function clearSelectionEvents(array) {\n    while (array.length) {\n      var last = lst(array);\n      if (last.ranges) array.pop();\n      else break;\n    }\n  }\n\n  // Find the top change event in the history. Pop off selection\n  // events that are in the way.\n  function lastChangeEvent(hist, force) {\n    if (force) {\n      clearSelectionEvents(hist.done);\n      return lst(hist.done);\n    } else if (hist.done.length && !lst(hist.done).ranges) {\n      return lst(hist.done);\n    } else if (hist.done.length > 1 && !hist.done[hist.done.length - 2].ranges) {\n      hist.done.pop();\n      return lst(hist.done);\n    }\n  }\n\n  // Register a change in the history. Merges changes that are within\n  // a single operation, ore are close together with an origin that\n  // allows merging (starting with \"+\") into a single event.\n  function addChangeToHistory(doc, change, selAfter, opId) {\n    var hist = doc.history;\n    hist.undone.length = 0;\n    var time = +new Date, cur;\n\n    if ((hist.lastOp == opId ||\n         hist.lastOrigin == change.origin && change.origin &&\n         ((change.origin.charAt(0) == \"+\" && doc.cm && hist.lastModTime > time - doc.cm.options.historyEventDelay) ||\n          change.origin.charAt(0) == \"*\")) &&\n        (cur = lastChangeEvent(hist, hist.lastOp == opId))) {\n      // Merge this change into the last event\n      var last = lst(cur.changes);\n      if (cmp(change.from, change.to) == 0 && cmp(change.from, last.to) == 0) {\n        // Optimized case for simple insertion -- don't want to add\n        // new changesets for every character typed\n        last.to = changeEnd(change);\n      } else {\n        // Add new sub-event\n        cur.changes.push(historyChangeFromChange(doc, change));\n      }\n    } else {\n      // Can not be merged, start a new event.\n      var before = lst(hist.done);\n      if (!before || !before.ranges)\n        pushSelectionToHistory(doc.sel, hist.done);\n      cur = {changes: [historyChangeFromChange(doc, change)],\n             generation: hist.generation};\n      hist.done.push(cur);\n      while (hist.done.length > hist.undoDepth) {\n        hist.done.shift();\n        if (!hist.done[0].ranges) hist.done.shift();\n      }\n    }\n    hist.done.push(selAfter);\n    hist.generation = ++hist.maxGeneration;\n    hist.lastModTime = hist.lastSelTime = time;\n    hist.lastOp = hist.lastSelOp = opId;\n    hist.lastOrigin = hist.lastSelOrigin = change.origin;\n\n    if (!last) signal(doc, \"historyAdded\");\n  }\n\n  function selectionEventCanBeMerged(doc, origin, prev, sel) {\n    var ch = origin.charAt(0);\n    return ch == \"*\" ||\n      ch == \"+\" &&\n      prev.ranges.length == sel.ranges.length &&\n      prev.somethingSelected() == sel.somethingSelected() &&\n      new Date - doc.history.lastSelTime <= (doc.cm ? doc.cm.options.historyEventDelay : 500);\n  }\n\n  // Called whenever the selection changes, sets the new selection as\n  // the pending selection in the history, and pushes the old pending\n  // selection into the 'done' array when it was significantly\n  // different (in number of selected ranges, emptiness, or time).\n  function addSelectionToHistory(doc, sel, opId, options) {\n    var hist = doc.history, origin = options && options.origin;\n\n    // A new event is started when the previous origin does not match\n    // the current, or the origins don't allow matching. Origins\n    // starting with * are always merged, those starting with + are\n    // merged when similar and close together in time.\n    if (opId == hist.lastSelOp ||\n        (origin && hist.lastSelOrigin == origin &&\n         (hist.lastModTime == hist.lastSelTime && hist.lastOrigin == origin ||\n          selectionEventCanBeMerged(doc, origin, lst(hist.done), sel))))\n      hist.done[hist.done.length - 1] = sel;\n    else\n      pushSelectionToHistory(sel, hist.done);\n\n    hist.lastSelTime = +new Date;\n    hist.lastSelOrigin = origin;\n    hist.lastSelOp = opId;\n    if (options && options.clearRedo !== false)\n      clearSelectionEvents(hist.undone);\n  }\n\n  function pushSelectionToHistory(sel, dest) {\n    var top = lst(dest);\n    if (!(top && top.ranges && top.equals(sel)))\n      dest.push(sel);\n  }\n\n  // Used to store marked span information in the history.\n  function attachLocalSpans(doc, change, from, to) {\n    var existing = change[\"spans_\" + doc.id], n = 0;\n    doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function(line) {\n      if (line.markedSpans)\n        (existing || (existing = change[\"spans_\" + doc.id] = {}))[n] = line.markedSpans;\n      ++n;\n    });\n  }\n\n  // When un/re-doing restores text containing marked spans, those\n  // that have been explicitly cleared should not be restored.\n  function removeClearedSpans(spans) {\n    if (!spans) return null;\n    for (var i = 0, out; i < spans.length; ++i) {\n      if (spans[i].marker.explicitlyCleared) { if (!out) out = spans.slice(0, i); }\n      else if (out) out.push(spans[i]);\n    }\n    return !out ? spans : out.length ? out : null;\n  }\n\n  // Retrieve and filter the old marked spans stored in a change event.\n  function getOldSpans(doc, change) {\n    var found = change[\"spans_\" + doc.id];\n    if (!found) return null;\n    for (var i = 0, nw = []; i < change.text.length; ++i)\n      nw.push(removeClearedSpans(found[i]));\n    return nw;\n  }\n\n  // Used both to provide a JSON-safe object in .getHistory, and, when\n  // detaching a document, to split the history in two\n  function copyHistoryArray(events, newGroup, instantiateSel) {\n    for (var i = 0, copy = []; i < events.length; ++i) {\n      var event = events[i];\n      if (event.ranges) {\n        copy.push(instantiateSel ? Selection.prototype.deepCopy.call(event) : event);\n        continue;\n      }\n      var changes = event.changes, newChanges = [];\n      copy.push({changes: newChanges});\n      for (var j = 0; j < changes.length; ++j) {\n        var change = changes[j], m;\n        newChanges.push({from: change.from, to: change.to, text: change.text});\n        if (newGroup) for (var prop in change) if (m = prop.match(/^spans_(\\d+)$/)) {\n          if (indexOf(newGroup, Number(m[1])) > -1) {\n            lst(newChanges)[prop] = change[prop];\n            delete change[prop];\n          }\n        }\n      }\n    }\n    return copy;\n  }\n\n  // Rebasing/resetting history to deal with externally-sourced changes\n\n  function rebaseHistSelSingle(pos, from, to, diff) {\n    if (to < pos.line) {\n      pos.line += diff;\n    } else if (from < pos.line) {\n      pos.line = from;\n      pos.ch = 0;\n    }\n  }\n\n  // Tries to rebase an array of history events given a change in the\n  // document. If the change touches the same lines as the event, the\n  // event, and everything 'behind' it, is discarded. If the change is\n  // before the event, the event's positions are updated. Uses a\n  // copy-on-write scheme for the positions, to avoid having to\n  // reallocate them all on every rebase, but also avoid problems with\n  // shared position objects being unsafely updated.\n  function rebaseHistArray(array, from, to, diff) {\n    for (var i = 0; i < array.length; ++i) {\n      var sub = array[i], ok = true;\n      if (sub.ranges) {\n        if (!sub.copied) { sub = array[i] = sub.deepCopy(); sub.copied = true; }\n        for (var j = 0; j < sub.ranges.length; j++) {\n          rebaseHistSelSingle(sub.ranges[j].anchor, from, to, diff);\n          rebaseHistSelSingle(sub.ranges[j].head, from, to, diff);\n        }\n        continue;\n      }\n      for (var j = 0; j < sub.changes.length; ++j) {\n        var cur = sub.changes[j];\n        if (to < cur.from.line) {\n          cur.from = Pos(cur.from.line + diff, cur.from.ch);\n          cur.to = Pos(cur.to.line + diff, cur.to.ch);\n        } else if (from <= cur.to.line) {\n          ok = false;\n          break;\n        }\n      }\n      if (!ok) {\n        array.splice(0, i + 1);\n        i = 0;\n      }\n    }\n  }\n\n  function rebaseHist(hist, change) {\n    var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1;\n    rebaseHistArray(hist.done, from, to, diff);\n    rebaseHistArray(hist.undone, from, to, diff);\n  }\n\n  // EVENT UTILITIES\n\n  // Due to the fact that we still support jurassic IE versions, some\n  // compatibility wrappers are needed.\n\n  var e_preventDefault = CodeMirror.e_preventDefault = function(e) {\n    if (e.preventDefault) e.preventDefault();\n    else e.returnValue = false;\n  };\n  var e_stopPropagation = CodeMirror.e_stopPropagation = function(e) {\n    if (e.stopPropagation) e.stopPropagation();\n    else e.cancelBubble = true;\n  };\n  function e_defaultPrevented(e) {\n    return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false;\n  }\n  var e_stop = CodeMirror.e_stop = function(e) {e_preventDefault(e); e_stopPropagation(e);};\n\n  function e_target(e) {return e.target || e.srcElement;}\n  function e_button(e) {\n    var b = e.which;\n    if (b == null) {\n      if (e.button & 1) b = 1;\n      else if (e.button & 2) b = 3;\n      else if (e.button & 4) b = 2;\n    }\n    if (mac && e.ctrlKey && b == 1) b = 3;\n    return b;\n  }\n\n  // EVENT HANDLING\n\n  // Lightweight event framework. on/off also work on DOM nodes,\n  // registering native DOM handlers.\n\n  var on = CodeMirror.on = function(emitter, type, f) {\n    if (emitter.addEventListener)\n      emitter.addEventListener(type, f, false);\n    else if (emitter.attachEvent)\n      emitter.attachEvent(\"on\" + type, f);\n    else {\n      var map = emitter._handlers || (emitter._handlers = {});\n      var arr = map[type] || (map[type] = []);\n      arr.push(f);\n    }\n  };\n\n  var off = CodeMirror.off = function(emitter, type, f) {\n    if (emitter.removeEventListener)\n      emitter.removeEventListener(type, f, false);\n    else if (emitter.detachEvent)\n      emitter.detachEvent(\"on\" + type, f);\n    else {\n      var arr = emitter._handlers && emitter._handlers[type];\n      if (!arr) return;\n      for (var i = 0; i < arr.length; ++i)\n        if (arr[i] == f) { arr.splice(i, 1); break; }\n    }\n  };\n\n  var signal = CodeMirror.signal = function(emitter, type /*, values...*/) {\n    var arr = emitter._handlers && emitter._handlers[type];\n    if (!arr) return;\n    var args = Array.prototype.slice.call(arguments, 2);\n    for (var i = 0; i < arr.length; ++i) arr[i].apply(null, args);\n  };\n\n  var orphanDelayedCallbacks = null;\n\n  // Often, we want to signal events at a point where we are in the\n  // middle of some work, but don't want the handler to start calling\n  // other methods on the editor, which might be in an inconsistent\n  // state or simply not expect any other events to happen.\n  // signalLater looks whether there are any handlers, and schedules\n  // them to be executed when the last operation ends, or, if no\n  // operation is active, when a timeout fires.\n  function signalLater(emitter, type /*, values...*/) {\n    var arr = emitter._handlers && emitter._handlers[type];\n    if (!arr) return;\n    var args = Array.prototype.slice.call(arguments, 2), list;\n    if (operationGroup) {\n      list = operationGroup.delayedCallbacks;\n    } else if (orphanDelayedCallbacks) {\n      list = orphanDelayedCallbacks;\n    } else {\n      list = orphanDelayedCallbacks = [];\n      setTimeout(fireOrphanDelayed, 0);\n    }\n    function bnd(f) {return function(){f.apply(null, args);};};\n    for (var i = 0; i < arr.length; ++i)\n      list.push(bnd(arr[i]));\n  }\n\n  function fireOrphanDelayed() {\n    var delayed = orphanDelayedCallbacks;\n    orphanDelayedCallbacks = null;\n    for (var i = 0; i < delayed.length; ++i) delayed[i]();\n  }\n\n  // The DOM events that CodeMirror handles can be overridden by\n  // registering a (non-DOM) handler on the editor for the event name,\n  // and preventDefault-ing the event in that handler.\n  function signalDOMEvent(cm, e, override) {\n    if (typeof e == \"string\")\n      e = {type: e, preventDefault: function() { this.defaultPrevented = true; }};\n    signal(cm, override || e.type, cm, e);\n    return e_defaultPrevented(e) || e.codemirrorIgnore;\n  }\n\n  function signalCursorActivity(cm) {\n    var arr = cm._handlers && cm._handlers.cursorActivity;\n    if (!arr) return;\n    var set = cm.curOp.cursorActivityHandlers || (cm.curOp.cursorActivityHandlers = []);\n    for (var i = 0; i < arr.length; ++i) if (indexOf(set, arr[i]) == -1)\n      set.push(arr[i]);\n  }\n\n  function hasHandler(emitter, type) {\n    var arr = emitter._handlers && emitter._handlers[type];\n    return arr && arr.length > 0;\n  }\n\n  // Add on and off methods to a constructor's prototype, to make\n  // registering events on such objects more convenient.\n  function eventMixin(ctor) {\n    ctor.prototype.on = function(type, f) {on(this, type, f);};\n    ctor.prototype.off = function(type, f) {off(this, type, f);};\n  }\n\n  // MISC UTILITIES\n\n  // Number of pixels added to scroller and sizer to hide scrollbar\n  var scrollerGap = 30;\n\n  // Returned or thrown by various protocols to signal 'I'm not\n  // handling this'.\n  var Pass = CodeMirror.Pass = {toString: function(){return \"CodeMirror.Pass\";}};\n\n  // Reused option objects for setSelection & friends\n  var sel_dontScroll = {scroll: false}, sel_mouse = {origin: \"*mouse\"}, sel_move = {origin: \"+move\"};\n\n  function Delayed() {this.id = null;}\n  Delayed.prototype.set = function(ms, f) {\n    clearTimeout(this.id);\n    this.id = setTimeout(f, ms);\n  };\n\n  // Counts the column offset in a string, taking tabs into account.\n  // Used mostly to find indentation.\n  var countColumn = CodeMirror.countColumn = function(string, end, tabSize, startIndex, startValue) {\n    if (end == null) {\n      end = string.search(/[^\\s\\u00a0]/);\n      if (end == -1) end = string.length;\n    }\n    for (var i = startIndex || 0, n = startValue || 0;;) {\n      var nextTab = string.indexOf(\"\\t\", i);\n      if (nextTab < 0 || nextTab >= end)\n        return n + (end - i);\n      n += nextTab - i;\n      n += tabSize - (n % tabSize);\n      i = nextTab + 1;\n    }\n  };\n\n  // The inverse of countColumn -- find the offset that corresponds to\n  // a particular column.\n  function findColumn(string, goal, tabSize) {\n    for (var pos = 0, col = 0;;) {\n      var nextTab = string.indexOf(\"\\t\", pos);\n      if (nextTab == -1) nextTab = string.length;\n      var skipped = nextTab - pos;\n      if (nextTab == string.length || col + skipped >= goal)\n        return pos + Math.min(skipped, goal - col);\n      col += nextTab - pos;\n      col += tabSize - (col % tabSize);\n      pos = nextTab + 1;\n      if (col >= goal) return pos;\n    }\n  }\n\n  var spaceStrs = [\"\"];\n  function spaceStr(n) {\n    while (spaceStrs.length <= n)\n      spaceStrs.push(lst(spaceStrs) + \" \");\n    return spaceStrs[n];\n  }\n\n  function lst(arr) { return arr[arr.length-1]; }\n\n  var selectInput = function(node) { node.select(); };\n  if (ios) // Mobile Safari apparently has a bug where select() is broken.\n    selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; };\n  else if (ie) // Suppress mysterious IE10 errors\n    selectInput = function(node) { try { node.select(); } catch(_e) {} };\n\n  function indexOf(array, elt) {\n    for (var i = 0; i < array.length; ++i)\n      if (array[i] == elt) return i;\n    return -1;\n  }\n  function map(array, f) {\n    var out = [];\n    for (var i = 0; i < array.length; i++) out[i] = f(array[i], i);\n    return out;\n  }\n\n  function nothing() {}\n\n  function createObj(base, props) {\n    var inst;\n    if (Object.create) {\n      inst = Object.create(base);\n    } else {\n      nothing.prototype = base;\n      inst = new nothing();\n    }\n    if (props) copyObj(props, inst);\n    return inst;\n  };\n\n  function copyObj(obj, target, overwrite) {\n    if (!target) target = {};\n    for (var prop in obj)\n      if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))\n        target[prop] = obj[prop];\n    return target;\n  }\n\n  function bind(f) {\n    var args = Array.prototype.slice.call(arguments, 1);\n    return function(){return f.apply(null, args);};\n  }\n\n  var nonASCIISingleCaseWordChar = /[\\u00df\\u0587\\u0590-\\u05f4\\u0600-\\u06ff\\u3040-\\u309f\\u30a0-\\u30ff\\u3400-\\u4db5\\u4e00-\\u9fcc\\uac00-\\ud7af]/;\n  var isWordCharBasic = CodeMirror.isWordChar = function(ch) {\n    return /\\w/.test(ch) || ch > \"\\x80\" &&\n      (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch));\n  };\n  function isWordChar(ch, helper) {\n    if (!helper) return isWordCharBasic(ch);\n    if (helper.source.indexOf(\"\\\\w\") > -1 && isWordCharBasic(ch)) return true;\n    return helper.test(ch);\n  }\n\n  function isEmpty(obj) {\n    for (var n in obj) if (obj.hasOwnProperty(n) && obj[n]) return false;\n    return true;\n  }\n\n  // Extending unicode characters. A series of a non-extending char +\n  // any number of extending chars is treated as a single unit as far\n  // as editing and measuring is concerned. This is not fully correct,\n  // since some scripts/fonts/browsers also treat other configurations\n  // of code points as a group.\n  var extendingChars = /[\\u0300-\\u036f\\u0483-\\u0489\\u0591-\\u05bd\\u05bf\\u05c1\\u05c2\\u05c4\\u05c5\\u05c7\\u0610-\\u061a\\u064b-\\u065e\\u0670\\u06d6-\\u06dc\\u06de-\\u06e4\\u06e7\\u06e8\\u06ea-\\u06ed\\u0711\\u0730-\\u074a\\u07a6-\\u07b0\\u07eb-\\u07f3\\u0816-\\u0819\\u081b-\\u0823\\u0825-\\u0827\\u0829-\\u082d\\u0900-\\u0902\\u093c\\u0941-\\u0948\\u094d\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09bc\\u09be\\u09c1-\\u09c4\\u09cd\\u09d7\\u09e2\\u09e3\\u0a01\\u0a02\\u0a3c\\u0a41\\u0a42\\u0a47\\u0a48\\u0a4b-\\u0a4d\\u0a51\\u0a70\\u0a71\\u0a75\\u0a81\\u0a82\\u0abc\\u0ac1-\\u0ac5\\u0ac7\\u0ac8\\u0acd\\u0ae2\\u0ae3\\u0b01\\u0b3c\\u0b3e\\u0b3f\\u0b41-\\u0b44\\u0b4d\\u0b56\\u0b57\\u0b62\\u0b63\\u0b82\\u0bbe\\u0bc0\\u0bcd\\u0bd7\\u0c3e-\\u0c40\\u0c46-\\u0c48\\u0c4a-\\u0c4d\\u0c55\\u0c56\\u0c62\\u0c63\\u0cbc\\u0cbf\\u0cc2\\u0cc6\\u0ccc\\u0ccd\\u0cd5\\u0cd6\\u0ce2\\u0ce3\\u0d3e\\u0d41-\\u0d44\\u0d4d\\u0d57\\u0d62\\u0d63\\u0dca\\u0dcf\\u0dd2-\\u0dd4\\u0dd6\\u0ddf\\u0e31\\u0e34-\\u0e3a\\u0e47-\\u0e4e\\u0eb1\\u0eb4-\\u0eb9\\u0ebb\\u0ebc\\u0ec8-\\u0ecd\\u0f18\\u0f19\\u0f35\\u0f37\\u0f39\\u0f71-\\u0f7e\\u0f80-\\u0f84\\u0f86\\u0f87\\u0f90-\\u0f97\\u0f99-\\u0fbc\\u0fc6\\u102d-\\u1030\\u1032-\\u1037\\u1039\\u103a\\u103d\\u103e\\u1058\\u1059\\u105e-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108d\\u109d\\u135f\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17b7-\\u17bd\\u17c6\\u17c9-\\u17d3\\u17dd\\u180b-\\u180d\\u18a9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193b\\u1a17\\u1a18\\u1a56\\u1a58-\\u1a5e\\u1a60\\u1a62\\u1a65-\\u1a6c\\u1a73-\\u1a7c\\u1a7f\\u1b00-\\u1b03\\u1b34\\u1b36-\\u1b3a\\u1b3c\\u1b42\\u1b6b-\\u1b73\\u1b80\\u1b81\\u1ba2-\\u1ba5\\u1ba8\\u1ba9\\u1c2c-\\u1c33\\u1c36\\u1c37\\u1cd0-\\u1cd2\\u1cd4-\\u1ce0\\u1ce2-\\u1ce8\\u1ced\\u1dc0-\\u1de6\\u1dfd-\\u1dff\\u200c\\u200d\\u20d0-\\u20f0\\u2cef-\\u2cf1\\u2de0-\\u2dff\\u302a-\\u302f\\u3099\\u309a\\ua66f-\\ua672\\ua67c\\ua67d\\ua6f0\\ua6f1\\ua802\\ua806\\ua80b\\ua825\\ua826\\ua8c4\\ua8e0-\\ua8f1\\ua926-\\ua92d\\ua947-\\ua951\\ua980-\\ua982\\ua9b3\\ua9b6-\\ua9b9\\ua9bc\\uaa29-\\uaa2e\\uaa31\\uaa32\\uaa35\\uaa36\\uaa43\\uaa4c\\uaab0\\uaab2-\\uaab4\\uaab7\\uaab8\\uaabe\\uaabf\\uaac1\\uabe5\\uabe8\\uabed\\udc00-\\udfff\\ufb1e\\ufe00-\\ufe0f\\ufe20-\\ufe26\\uff9e\\uff9f]/;\n  function isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendingChars.test(ch); }\n\n  // DOM UTILITIES\n\n  function elt(tag, content, className, style) {\n    var e = document.createElement(tag);\n    if (className) e.className = className;\n    if (style) e.style.cssText = style;\n    if (typeof content == \"string\") e.appendChild(document.createTextNode(content));\n    else if (content) for (var i = 0; i < content.length; ++i) e.appendChild(content[i]);\n    return e;\n  }\n\n  var range;\n  if (document.createRange) range = function(node, start, end, endNode) {\n    var r = document.createRange();\n    r.setEnd(endNode || node, end);\n    r.setStart(node, start);\n    return r;\n  };\n  else range = function(node, start, end) {\n    var r = document.body.createTextRange();\n    try { r.moveToElementText(node.parentNode); }\n    catch(e) { return r; }\n    r.collapse(true);\n    r.moveEnd(\"character\", end);\n    r.moveStart(\"character\", start);\n    return r;\n  };\n\n  function removeChildren(e) {\n    for (var count = e.childNodes.length; count > 0; --count)\n      e.removeChild(e.firstChild);\n    return e;\n  }\n\n  function removeChildrenAndAdd(parent, e) {\n    return removeChildren(parent).appendChild(e);\n  }\n\n  var contains = CodeMirror.contains = function(parent, child) {\n    if (child.nodeType == 3) // Android browser always returns false when child is a textnode\n      child = child.parentNode;\n    if (parent.contains)\n      return parent.contains(child);\n    do {\n      if (child.nodeType == 11) child = child.host;\n      if (child == parent) return true;\n    } while (child = child.parentNode);\n  };\n\n  function activeElt() { return document.activeElement; }\n  // Older versions of IE throws unspecified error when touching\n  // document.activeElement in some cases (during loading, in iframe)\n  if (ie && ie_version < 11) activeElt = function() {\n    try { return document.activeElement; }\n    catch(e) { return document.body; }\n  };\n\n  function classTest(cls) { return new RegExp(\"(^|\\\\s)\" + cls + \"(?:$|\\\\s)\\\\s*\"); }\n  var rmClass = CodeMirror.rmClass = function(node, cls) {\n    var current = node.className;\n    var match = classTest(cls).exec(current);\n    if (match) {\n      var after = current.slice(match.index + match[0].length);\n      node.className = current.slice(0, match.index) + (after ? match[1] + after : \"\");\n    }\n  };\n  var addClass = CodeMirror.addClass = function(node, cls) {\n    var current = node.className;\n    if (!classTest(cls).test(current)) node.className += (current ? \" \" : \"\") + cls;\n  };\n  function joinClasses(a, b) {\n    var as = a.split(\" \");\n    for (var i = 0; i < as.length; i++)\n      if (as[i] && !classTest(as[i]).test(b)) b += \" \" + as[i];\n    return b;\n  }\n\n  // WINDOW-WIDE EVENTS\n\n  // These must be handled carefully, because naively registering a\n  // handler for each editor will cause the editors to never be\n  // garbage collected.\n\n  function forEachCodeMirror(f) {\n    if (!document.body.getElementsByClassName) return;\n    var byClass = document.body.getElementsByClassName(\"CodeMirror\");\n    for (var i = 0; i < byClass.length; i++) {\n      var cm = byClass[i].CodeMirror;\n      if (cm) f(cm);\n    }\n  }\n\n  var globalsRegistered = false;\n  function ensureGlobalHandlers() {\n    if (globalsRegistered) return;\n    registerGlobalHandlers();\n    globalsRegistered = true;\n  }\n  function registerGlobalHandlers() {\n    // When the window resizes, we need to refresh active editors.\n    var resizeTimer;\n    on(window, \"resize\", function() {\n      if (resizeTimer == null) resizeTimer = setTimeout(function() {\n        resizeTimer = null;\n        forEachCodeMirror(onResize);\n      }, 100);\n    });\n    // When the window loses focus, we want to show the editor as blurred\n    on(window, \"blur\", function() {\n      forEachCodeMirror(onBlur);\n    });\n  }\n\n  // FEATURE DETECTION\n\n  // Detect drag-and-drop\n  var dragAndDrop = function() {\n    // There is *some* kind of drag-and-drop support in IE6-8, but I\n    // couldn't get it to work yet.\n    if (ie && ie_version < 9) return false;\n    var div = elt('div');\n    return \"draggable\" in div || \"dragDrop\" in div;\n  }();\n\n  var zwspSupported;\n  function zeroWidthElement(measure) {\n    if (zwspSupported == null) {\n      var test = elt(\"span\", \"\\u200b\");\n      removeChildrenAndAdd(measure, elt(\"span\", [test, document.createTextNode(\"x\")]));\n      if (measure.firstChild.offsetHeight != 0)\n        zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !(ie && ie_version < 8);\n    }\n    var node = zwspSupported ? elt(\"span\", \"\\u200b\") :\n      elt(\"span\", \"\\u00a0\", null, \"display: inline-block; width: 1px; margin-right: -1px\");\n    node.setAttribute(\"cm-text\", \"\");\n    return node;\n  }\n\n  // Feature-detect IE's crummy client rect reporting for bidi text\n  var badBidiRects;\n  function hasBadBidiRects(measure) {\n    if (badBidiRects != null) return badBidiRects;\n    var txt = removeChildrenAndAdd(measure, document.createTextNode(\"A\\u062eA\"));\n    var r0 = range(txt, 0, 1).getBoundingClientRect();\n    if (!r0 || r0.left == r0.right) return false; // Safari returns null in some cases (#2780)\n    var r1 = range(txt, 1, 2).getBoundingClientRect();\n    return badBidiRects = (r1.right - r0.right < 3);\n  }\n\n  // See if \"\".split is the broken IE version, if so, provide an\n  // alternative way to split lines.\n  var splitLines = CodeMirror.splitLines = \"\\n\\nb\".split(/\\n/).length != 3 ? function(string) {\n    var pos = 0, result = [], l = string.length;\n    while (pos <= l) {\n      var nl = string.indexOf(\"\\n\", pos);\n      if (nl == -1) nl = string.length;\n      var line = string.slice(pos, string.charAt(nl - 1) == \"\\r\" ? nl - 1 : nl);\n      var rt = line.indexOf(\"\\r\");\n      if (rt != -1) {\n        result.push(line.slice(0, rt));\n        pos += rt + 1;\n      } else {\n        result.push(line);\n        pos = nl + 1;\n      }\n    }\n    return result;\n  } : function(string){return string.split(/\\r\\n?|\\n/);};\n\n  var hasSelection = window.getSelection ? function(te) {\n    try { return te.selectionStart != te.selectionEnd; }\n    catch(e) { return false; }\n  } : function(te) {\n    try {var range = te.ownerDocument.selection.createRange();}\n    catch(e) {}\n    if (!range || range.parentElement() != te) return false;\n    return range.compareEndPoints(\"StartToEnd\", range) != 0;\n  };\n\n  var hasCopyEvent = (function() {\n    var e = elt(\"div\");\n    if (\"oncopy\" in e) return true;\n    e.setAttribute(\"oncopy\", \"return;\");\n    return typeof e.oncopy == \"function\";\n  })();\n\n  var badZoomedRects = null;\n  function hasBadZoomedRects(measure) {\n    if (badZoomedRects != null) return badZoomedRects;\n    var node = removeChildrenAndAdd(measure, elt(\"span\", \"x\"));\n    var normal = node.getBoundingClientRect();\n    var fromRange = range(node, 0, 1).getBoundingClientRect();\n    return badZoomedRects = Math.abs(normal.left - fromRange.left) > 1;\n  }\n\n  // KEY NAMES\n\n  var keyNames = {3: \"Enter\", 8: \"Backspace\", 9: \"Tab\", 13: \"Enter\", 16: \"Shift\", 17: \"Ctrl\", 18: \"Alt\",\n                  19: \"Pause\", 20: \"CapsLock\", 27: \"Esc\", 32: \"Space\", 33: \"PageUp\", 34: \"PageDown\", 35: \"End\",\n                  36: \"Home\", 37: \"Left\", 38: \"Up\", 39: \"Right\", 40: \"Down\", 44: \"PrintScrn\", 45: \"Insert\",\n                  46: \"Delete\", 59: \";\", 61: \"=\", 91: \"Mod\", 92: \"Mod\", 93: \"Mod\", 107: \"=\", 109: \"-\", 127: \"Delete\",\n                  173: \"-\", 186: \";\", 187: \"=\", 188: \",\", 189: \"-\", 190: \".\", 191: \"/\", 192: \"`\", 219: \"[\", 220: \"\\\\\",\n                  221: \"]\", 222: \"'\", 63232: \"Up\", 63233: \"Down\", 63234: \"Left\", 63235: \"Right\", 63272: \"Delete\",\n                  63273: \"Home\", 63275: \"End\", 63276: \"PageUp\", 63277: \"PageDown\", 63302: \"Insert\"};\n  CodeMirror.keyNames = keyNames;\n  (function() {\n    // Number keys\n    for (var i = 0; i < 10; i++) keyNames[i + 48] = keyNames[i + 96] = String(i);\n    // Alphabetic keys\n    for (var i = 65; i <= 90; i++) keyNames[i] = String.fromCharCode(i);\n    // Function keys\n    for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = \"F\" + i;\n  })();\n\n  // BIDI HELPERS\n\n  function iterateBidiSections(order, from, to, f) {\n    if (!order) return f(from, to, \"ltr\");\n    var found = false;\n    for (var i = 0; i < order.length; ++i) {\n      var part = order[i];\n      if (part.from < to && part.to > from || from == to && part.to == from) {\n        f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? \"rtl\" : \"ltr\");\n        found = true;\n      }\n    }\n    if (!found) f(from, to, \"ltr\");\n  }\n\n  function bidiLeft(part) { return part.level % 2 ? part.to : part.from; }\n  function bidiRight(part) { return part.level % 2 ? part.from : part.to; }\n\n  function lineLeft(line) { var order = getOrder(line); return order ? bidiLeft(order[0]) : 0; }\n  function lineRight(line) {\n    var order = getOrder(line);\n    if (!order) return line.text.length;\n    return bidiRight(lst(order));\n  }\n\n  function lineStart(cm, lineN) {\n    var line = getLine(cm.doc, lineN);\n    var visual = visualLine(line);\n    if (visual != line) lineN = lineNo(visual);\n    var order = getOrder(visual);\n    var ch = !order ? 0 : order[0].level % 2 ? lineRight(visual) : lineLeft(visual);\n    return Pos(lineN, ch);\n  }\n  function lineEnd(cm, lineN) {\n    var merged, line = getLine(cm.doc, lineN);\n    while (merged = collapsedSpanAtEnd(line)) {\n      line = merged.find(1, true).line;\n      lineN = null;\n    }\n    var order = getOrder(line);\n    var ch = !order ? line.text.length : order[0].level % 2 ? lineLeft(line) : lineRight(line);\n    return Pos(lineN == null ? lineNo(line) : lineN, ch);\n  }\n  function lineStartSmart(cm, pos) {\n    var start = lineStart(cm, pos.line);\n    var line = getLine(cm.doc, start.line);\n    var order = getOrder(line);\n    if (!order || order[0].level == 0) {\n      var firstNonWS = Math.max(0, line.text.search(/\\S/));\n      var inWS = pos.line == start.line && pos.ch <= firstNonWS && pos.ch;\n      return Pos(start.line, inWS ? 0 : firstNonWS);\n    }\n    return start;\n  }\n\n  function compareBidiLevel(order, a, b) {\n    var linedir = order[0].level;\n    if (a == linedir) return true;\n    if (b == linedir) return false;\n    return a < b;\n  }\n  var bidiOther;\n  function getBidiPartAt(order, pos) {\n    bidiOther = null;\n    for (var i = 0, found; i < order.length; ++i) {\n      var cur = order[i];\n      if (cur.from < pos && cur.to > pos) return i;\n      if ((cur.from == pos || cur.to == pos)) {\n        if (found == null) {\n          found = i;\n        } else if (compareBidiLevel(order, cur.level, order[found].level)) {\n          if (cur.from != cur.to) bidiOther = found;\n          return i;\n        } else {\n          if (cur.from != cur.to) bidiOther = i;\n          return found;\n        }\n      }\n    }\n    return found;\n  }\n\n  function moveInLine(line, pos, dir, byUnit) {\n    if (!byUnit) return pos + dir;\n    do pos += dir;\n    while (pos > 0 && isExtendingChar(line.text.charAt(pos)));\n    return pos;\n  }\n\n  // This is needed in order to move 'visually' through bi-directional\n  // text -- i.e., pressing left should make the cursor go left, even\n  // when in RTL text. The tricky part is the 'jumps', where RTL and\n  // LTR text touch each other. This often requires the cursor offset\n  // to move more than one unit, in order to visually move one unit.\n  function moveVisually(line, start, dir, byUnit) {\n    var bidi = getOrder(line);\n    if (!bidi) return moveLogically(line, start, dir, byUnit);\n    var pos = getBidiPartAt(bidi, start), part = bidi[pos];\n    var target = moveInLine(line, start, part.level % 2 ? -dir : dir, byUnit);\n\n    for (;;) {\n      if (target > part.from && target < part.to) return target;\n      if (target == part.from || target == part.to) {\n        if (getBidiPartAt(bidi, target) == pos) return target;\n        part = bidi[pos += dir];\n        return (dir > 0) == part.level % 2 ? part.to : part.from;\n      } else {\n        part = bidi[pos += dir];\n        if (!part) return null;\n        if ((dir > 0) == part.level % 2)\n          target = moveInLine(line, part.to, -1, byUnit);\n        else\n          target = moveInLine(line, part.from, 1, byUnit);\n      }\n    }\n  }\n\n  function moveLogically(line, start, dir, byUnit) {\n    var target = start + dir;\n    if (byUnit) while (target > 0 && isExtendingChar(line.text.charAt(target))) target += dir;\n    return target < 0 || target > line.text.length ? null : target;\n  }\n\n  // Bidirectional ordering algorithm\n  // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm\n  // that this (partially) implements.\n\n  // One-char codes used for character types:\n  // L (L):   Left-to-Right\n  // R (R):   Right-to-Left\n  // r (AL):  Right-to-Left Arabic\n  // 1 (EN):  European Number\n  // + (ES):  European Number Separator\n  // % (ET):  European Number Terminator\n  // n (AN):  Arabic Number\n  // , (CS):  Common Number Separator\n  // m (NSM): Non-Spacing Mark\n  // b (BN):  Boundary Neutral\n  // s (B):   Paragraph Separator\n  // t (S):   Segment Separator\n  // w (WS):  Whitespace\n  // N (ON):  Other Neutrals\n\n  // Returns null if characters are ordered as they appear\n  // (left-to-right), or an array of sections ({from, to, level}\n  // objects) in the order in which they occur visually.\n  var bidiOrdering = (function() {\n    // Character types for codepoints 0 to 0xff\n    var lowTypes = \"bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN\";\n    // Character types for codepoints 0x600 to 0x6ff\n    var arabicTypes = \"rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmm\";\n    function charType(code) {\n      if (code <= 0xf7) return lowTypes.charAt(code);\n      else if (0x590 <= code && code <= 0x5f4) return \"R\";\n      else if (0x600 <= code && code <= 0x6ed) return arabicTypes.charAt(code - 0x600);\n      else if (0x6ee <= code && code <= 0x8ac) return \"r\";\n      else if (0x2000 <= code && code <= 0x200b) return \"w\";\n      else if (code == 0x200c) return \"b\";\n      else return \"L\";\n    }\n\n    var bidiRE = /[\\u0590-\\u05f4\\u0600-\\u06ff\\u0700-\\u08ac]/;\n    var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/;\n    // Browsers seem to always treat the boundaries of block elements as being L.\n    var outerType = \"L\";\n\n    function BidiSpan(level, from, to) {\n      this.level = level;\n      this.from = from; this.to = to;\n    }\n\n    return function(str) {\n      if (!bidiRE.test(str)) return false;\n      var len = str.length, types = [];\n      for (var i = 0, type; i < len; ++i)\n        types.push(type = charType(str.charCodeAt(i)));\n\n      // W1. Examine each non-spacing mark (NSM) in the level run, and\n      // change the type of the NSM to the type of the previous\n      // character. If the NSM is at the start of the level run, it will\n      // get the type of sor.\n      for (var i = 0, prev = outerType; i < len; ++i) {\n        var type = types[i];\n        if (type == \"m\") types[i] = prev;\n        else prev = type;\n      }\n\n      // W2. Search backwards from each instance of a European number\n      // until the first strong type (R, L, AL, or sor) is found. If an\n      // AL is found, change the type of the European number to Arabic\n      // number.\n      // W3. Change all ALs to R.\n      for (var i = 0, cur = outerType; i < len; ++i) {\n        var type = types[i];\n        if (type == \"1\" && cur == \"r\") types[i] = \"n\";\n        else if (isStrong.test(type)) { cur = type; if (type == \"r\") types[i] = \"R\"; }\n      }\n\n      // W4. A single European separator between two European numbers\n      // changes to a European number. A single common separator between\n      // two numbers of the same type changes to that type.\n      for (var i = 1, prev = types[0]; i < len - 1; ++i) {\n        var type = types[i];\n        if (type == \"+\" && prev == \"1\" && types[i+1] == \"1\") types[i] = \"1\";\n        else if (type == \",\" && prev == types[i+1] &&\n                 (prev == \"1\" || prev == \"n\")) types[i] = prev;\n        prev = type;\n      }\n\n      // W5. A sequence of European terminators adjacent to European\n      // numbers changes to all European numbers.\n      // W6. Otherwise, separators and terminators change to Other\n      // Neutral.\n      for (var i = 0; i < len; ++i) {\n        var type = types[i];\n        if (type == \",\") types[i] = \"N\";\n        else if (type == \"%\") {\n          for (var end = i + 1; end < len && types[end] == \"%\"; ++end) {}\n          var replace = (i && types[i-1] == \"!\") || (end < len && types[end] == \"1\") ? \"1\" : \"N\";\n          for (var j = i; j < end; ++j) types[j] = replace;\n          i = end - 1;\n        }\n      }\n\n      // W7. Search backwards from each instance of a European number\n      // until the first strong type (R, L, or sor) is found. If an L is\n      // found, then change the type of the European number to L.\n      for (var i = 0, cur = outerType; i < len; ++i) {\n        var type = types[i];\n        if (cur == \"L\" && type == \"1\") types[i] = \"L\";\n        else if (isStrong.test(type)) cur = type;\n      }\n\n      // N1. A sequence of neutrals takes the direction of the\n      // surrounding strong text if the text on both sides has the same\n      // direction. European and Arabic numbers act as if they were R in\n      // terms of their influence on neutrals. Start-of-level-run (sor)\n      // and end-of-level-run (eor) are used at level run boundaries.\n      // N2. Any remaining neutrals take the embedding direction.\n      for (var i = 0; i < len; ++i) {\n        if (isNeutral.test(types[i])) {\n          for (var end = i + 1; end < len && isNeutral.test(types[end]); ++end) {}\n          var before = (i ? types[i-1] : outerType) == \"L\";\n          var after = (end < len ? types[end] : outerType) == \"L\";\n          var replace = before || after ? \"L\" : \"R\";\n          for (var j = i; j < end; ++j) types[j] = replace;\n          i = end - 1;\n        }\n      }\n\n      // Here we depart from the documented algorithm, in order to avoid\n      // building up an actual levels array. Since there are only three\n      // levels (0, 1, 2) in an implementation that doesn't take\n      // explicit embedding into account, we can build up the order on\n      // the fly, without following the level-based algorithm.\n      var order = [], m;\n      for (var i = 0; i < len;) {\n        if (countsAsLeft.test(types[i])) {\n          var start = i;\n          for (++i; i < len && countsAsLeft.test(types[i]); ++i) {}\n          order.push(new BidiSpan(0, start, i));\n        } else {\n          var pos = i, at = order.length;\n          for (++i; i < len && types[i] != \"L\"; ++i) {}\n          for (var j = pos; j < i;) {\n            if (countsAsNum.test(types[j])) {\n              if (pos < j) order.splice(at, 0, new BidiSpan(1, pos, j));\n              var nstart = j;\n              for (++j; j < i && countsAsNum.test(types[j]); ++j) {}\n              order.splice(at, 0, new BidiSpan(2, nstart, j));\n              pos = j;\n            } else ++j;\n          }\n          if (pos < i) order.splice(at, 0, new BidiSpan(1, pos, i));\n        }\n      }\n      if (order[0].level == 1 && (m = str.match(/^\\s+/))) {\n        order[0].from = m[0].length;\n        order.unshift(new BidiSpan(0, 0, m[0].length));\n      }\n      if (lst(order).level == 1 && (m = str.match(/\\s+$/))) {\n        lst(order).to -= m[0].length;\n        order.push(new BidiSpan(0, len - m[0].length, len));\n      }\n      if (order[0].level == 2)\n        order.unshift(new BidiSpan(1, order[0].to, order[0].to));\n      if (order[0].level != lst(order).level)\n        order.push(new BidiSpan(order[0].level, len, len));\n\n      return order;\n    };\n  })();\n\n  // THE END\n\n  CodeMirror.version = \"5.4.0\";\n\n  return CodeMirror;\n});\n"
  },
  {
    "path": "doc/themes/boost-experimental/js/cpp.js",
    "content": "var cpp_code = Array();\nvar cpp_output = Array();\nvar gid = 0;\n\nfunction get_cpp_file(file) {\n     var cpp_file = new XMLHttpRequest();\n     cpp_file.open(\"GET\", file, false);\n     cpp_file.send();\n     return cpp_file.responseText;\n}\n\n$.fn.toHtml=function(){\n   return $(this).html($(this).text())\n}\n\nfunction toggle(id, file, text) {\n    document.getElementById(\"run_it_btn_\" + id).firstChild.data = text;\n    document.getElementById(\"run_it_btn_\" + id).removeChild;\n    document.getElementById(\"run_it_btn_\" + id).onclick = function() { cpp(id, file, text); };\n    document.getElementById(\"code_listing_\" + id).style.display = 'block';\n    cpp_code[id].toTextArea();\n    document.getElementById(\"code_\" + id).style.display = 'none';\n    cpp_output[id].toTextArea();\n    document.getElementById(\"output_\" + id).style.display = 'none';\n    document.getElementById(\"compile_and_run_\" + id).remove();\n}\n\nfunction cpp(id, file, text) {\n    document.getElementById('run_it_btn_' + id).firstChild.data = 'Exit';\n    document.getElementById(\"run_it_btn_\" + id).onclick = function() { toggle(id, file, text); };\n    document.getElementById(\"code_listing_\" + id).style.display = 'none';\n\n    var compile_btn = document.createElement(\"BUTTON\");\n    var compile_txt = document.createTextNode(\"Compile & Run (Ctrl+Enter)\");\n    compile_btn.setAttribute(\"id\", \"compile_and_run_\" + id);\n    compile_btn.setAttribute(\"class\", \"btn btn-neutral float-right\");\n    compile_btn.setAttribute(\"style\", \"position: relative; top: 60px; right: 20px; z-index: 10;\");\n    compile_btn.appendChild(compile_txt);\n    compile_btn.onclick = function() { compile_and_run(id) };\n\n    document.getElementById(\"run_it_btn_\" + id).parentNode.insertBefore(compile_btn, document.getElementById(\"run_it_btn_\" + id).nextSibling);\n\n    get_example(id, file);\n    compile_and_run(id);\n}\n\nfunction compile_and_run(id) {\n    document.getElementById(\"compile_and_run_\" + id).firstChild.data = \"Compiling...\";\n    cpp_output[id].setValue(\"Compiling...\");\n    var http = new XMLHttpRequest();\n    http.open(\"POST\", \"http://melpon.org/wandbox/api/compile.json\", true);\n    http.onreadystatechange = function(){\n        if (http.readyState == 4 && http.status == 200) {\n            var output_json = JSON.parse(http.response);\n            if ('status' in output_json && output_json.status == \"0\") {\n                cpp_output[id].setValue(\"Running... [OK]\");\n                if ('program_message' in output_json) {\n                    cpp_output[id].setValue(cpp_output[id].getValue() + \"\\n\" + output_json.program_message);\n                }\n            } else if ('compiler_error' in output_json) {\n                cpp_output[id].setValue(\"Compiling... [FAIL]\\n\" + output_json.compiler_error);\n            } else if ('signal' in output_json) {\n                if ('program_message' in output_json) {\n                    cpp_output[id].setValue(\"Running... [FAIL]\\n\" + output_json.program_message);\n                }\n            }\n            document.getElementById(\"compile_and_run_\" + id).firstChild.data = \"Compile & Run (Ctrl+Enter)\";\n        }\n    }\n\n    http.send(\n        JSON.stringify({\n          \"code\" : cpp_code[id].getValue()\n        , \"codes\" : [{\n              \"file\" : \"boost/di.hpp\"\n            , \"code\" : get_cpp_file(\"https://raw.githubusercontent.com/boost-experimental/di/cpp14/include/boost/di.hpp\")\n           }]\n         , \"options\": \"warning,cpp-pedantic-errors,optimize,boost-1.60,c++1y\"\n         , \"compiler\" : \"clang-head\"\n         , \"compiler-option-raw\": \"-I.\" + \"\\n\" + \"-fno-color-diagnostics\"\n    }));\n}\n\nfunction get_example(id, file) {\n    cpp_code[id] = CodeMirror.fromTextArea(document.getElementById(\"code_\" + id), {\n        lineNumbers: true,\n        matchBrackets: true,\n        styleActiveLine: true,\n        mode: \"text/x-c++src\"\n      });\n\n    cpp_code[id].setSize(930, 500);\n    cpp_code[id].addKeyMap({\"Ctrl-Enter\": function(cm){ compile_and_run(id); }});\n\n    cpp_output[id] = CodeMirror.fromTextArea(document.getElementById(\"output_\" + id), {\n        lineNumbers: true,\n        matchBrackets: true,\n        styleActiveLine: true,\n        readOnly : true,\n        mode: \"text/x-c++src\"\n      });\n\n    cpp_output[id].setSize(930, 150);\n    cpp_output[id].setOption(\"theme\", 'mdn-like');\n\n    cpp_code[id].setValue(get_cpp_file(file));\n    cpp_code[id].setCursor(Math.floor(cpp_code[id].lineCount() - (cpp_code[id].lineCount() / 3)) , 0);\n}\n\nElement.prototype.remove = function() {\n    this.parentElement.removeChild(this);\n}\n\nNodeList.prototype.remove = HTMLCollection.prototype.remove = function() {\n    for(var i = 0, len = this.length; i < len; i++) {\n        if(this[i] && this[i].parentElement) {\n            this[i].parentElement.removeChild(this[i]);\n        }\n    }\n}\n\nfunction cleanup(str) {\n  text = str.replace(/[\\n]{3,}/g, \"\\n\").slice(0, -1);\n  var lines = text.split('\\n');\n  var result = '';\n  for(var i = 0; i < lines.length; i++) {\n    if (!i && !lines[i].length) {\n        continue;\n    }\n    result += lines[i] + \"\\n\";\n  }\n  return result;\n}\n\n$(document).ready(function () {\n    $('img[alt=\"CPP\"]').each(function () {\n      var file = $(this).attr('src');\n      var basename = $(this).attr('src').split('/')[$(this).attr('src').split('/').length - 1];\n      var begin = \"//<-\";\n      var end = \"//->\";\n      var example = get_cpp_file(file);\n      var lines = example.split('\\n');\n      var example_result = '';\n      var ignored = false;\n      var tmp_ignored = false;\n      for(var i = 0; i < lines.length; ++i){\n        var line = lines[i];\n        if (line.indexOf(begin) != -1) {\n          ignored = true;\n          tmp_ignored = true;\n        } else if (line.indexOf(end) != -1) {\n          tmp_ignored = false;\n        }\n        if (!ignored && line.trim().indexOf(\"//\") != 0) {\n          example_result += line + '\\n';\n        }\n        ignored = tmp_ignored;\n      }\n      var id = gid++;\n      var compile = \"\\/\\/ $CXX -std=c++14 \" + basename;\n      example = $('<div/>').text(example_result.replace(/[\\n]{3,}/g, \"\\n\")).html();\n      $(this).replaceWith('<button style=\"position: relative; top: 60px; right: 20px; z-index: 10;\" class=\"btn btn-neutral float-right\" id=\"run_it_btn_' + id + '\" onclick=\"cpp(' + id + ', \\'' + file + '\\', \\'Run this code!\\')\">Run this code!</button><textarea style=\"display: none\" id=\"code_' + id + '\"></textarea><br /><textarea style=\"display: none\" id=\"output_' + id + '\"></textarea><div id=\"code_listing_' + id + '\"><pre><code style=\"line-height: 12px; width: 100%\" class=\"cpp hljs\">' + compile + '\\n' + example + '</code></pre></div>');\n    });\n\n    $('img[alt=\"CPP*\"]').each(function () {\n      var file = $(this).attr('src');\n      var basename = $(this).attr('src').split('/')[$(this).attr('src').split('/').length - 1];\n      var example = get_cpp_file(file);\n      var id = gid++;\n      var compile = \"\\/\\/ $CXX -std=c++14 \" + basename;\n      example = $('<div/>').text(example).html();\n      $(this).replaceWith('<button style=\"position: relative; top: 60px; right: 20px; z-index: 10;\" class=\"btn btn-neutral float-right\" id=\"run_it_btn_' + id + '\" onclick=\"cpp(' + id + ', \\'' + file + '\\', \\'Run this code!\\')\">Run this code!</button><textarea style=\"display: none\" id=\"code_' + id + '\"></textarea><br /><textarea style=\"display: none\" id=\"output_' + id + '\"></textarea><div id=\"code_listing_' + id + '\"><pre><code style=\"line-height: 12px; width: 100%\" class=\"cpp hljs\">' + compile + '\\n' + example + '</code></pre></div>');\n      cpp(id, file, 'Run this code!');\n    });\n\n    $('img[alt=\"CPP(SHOW)\"]').each(function () {\n      var file = $(this).attr('src');\n      var basename = $(this).attr('src').split('/')[$(this).attr('src').split('/').length - 1];\n      var begin = \"//<-\";\n      var end = \"//->\";\n      var example = get_cpp_file(file);\n      var lines = example.split('\\n');\n      var example_result = '';\n      var ignored = false;\n      var tmp_ignored = false;\n      for(var i = 0; i < lines.length; ++i){\n        var line = lines[i];\n        if (line.indexOf(begin) != -1) {\n          ignored = true;\n          tmp_ignored = true;\n        } else if (line.indexOf(end) != -1) {\n          tmp_ignored = false;\n        }\n        if (!ignored && line.trim().indexOf(\"//\") != 0) {\n          example_result += line + '\\n';\n        }\n        ignored = tmp_ignored;\n      }\n      var id = gid++;\n      example = $('<div/>').text(example_result.replace(/[\\n]{3,}/g, \"\\n\")).html();\n      $(this).replaceWith('<pre><code style=\"line-height: 12px; font-size: 90%; width: 100%\" class=\"cpp hljs\">' + example + '</code></pre>');\n    });\n\n    $('img[alt=\"CPP(BTN)\"]').each(function () {\n      var text = $(this).attr('src');\n      var name = text.split(\"|\")[0].replace(/_/g, ' ').replace(/\\//g, '').replace(/\\./g, '');\n      var file = text.split(\"|\")[1];\n      var basename = $(this).attr('src').split('/')[$(this).attr('src').split('/').length - 1];\n      var regex = \"#include.*\";\n      var example = get_cpp_file(file);\n      var i = example.lastIndexOf(\"#include\")\n      var n = example.substring(i).indexOf('\\n');\n      var id = gid++;\n      var compile = \"\\/\\/ $CXX -std=c++14 \" + basename;\n      example = $('<div/>').text(example.substring(i + n + 2)).html();\n      $(this).replaceWith('<table class=\"float-left\"><tr><td><button class=\"btn\" id=\"run_it_btn_' + id + '\" onclick=\"cpp(' + id + ', \\'' + file + '\\', \\'' + name + '\\')\">' + name + '</button><textarea style=\"display: none\" id=\"code_' + id + '\"></textarea><br /><textarea style=\"display: none\" id=\"output_' + id + '\"></textarea><div style=\"\"id=\"code_listing_' + id + '\"></div></td></tr></table>');\n    });\n\n    $('img[alt=\"CPP(SPLIT)\"]').each(function () {\n      var file = $(this).attr('src');\n      var basename = $(this).attr('src').split('/')[$(this).attr('src').split('/').length - 1];\n      var name = basename.replace(\".cpp\", \"\").replace(/_/g, \" \");\n      name = name.charAt(0).toUpperCase() + name.substring(1);\n      var begin = \"//<-\";\n      var end = \"//->\";\n      var example = get_cpp_file(file);\n      var lines = example.split('\\n');\n      var example_result = '';\n      var test_result = '';\n      var ignored = 0;\n      var tmp_ignored = 0;\n      for(var i = 0; i < lines.length; i++){\n        var line = lines[i];\n        if (line.indexOf(begin) != -1) {\n          ignored = 1;\n          tmp_ignored = 1;\n        } else if (line.indexOf(end) != -1) {\n          tmp_ignored = 0;\n        }\n\n        if (!ignored && line.indexOf(\"/**\") == 0) {\n            test_result += line + '\\n';\n            tmp_ignored = 2;\n            ignored = 1;\n        }\n        else if (!ignored && line.indexOf(\"int main()\") == 0) {\n          if (example_result.replace(/\\n/g, \"\") == \"\") {\n            tmp_ignored = 3;\n          } else {\n            tmp_ignored = 2;\n          }\n          ignored = 1;\n        } else if (ignored == 3 && !line.length) {\n          tmp_ignored = 2;\n          ignored = 1;\n        }\n        if (line.trim().indexOf(\"//\") != 0) {\n          if (!ignored) {\n            example_result += line + '\\n';\n          } else if (ignored == 2 && line.indexOf(\"}\") != 0) {\n            test_result += line + '\\n';\n          } else if (ignored == 3) {\n            example_result += line + '\\n';\n          }\n        }\n        ignored = tmp_ignored;\n      }\n      var id = gid++;\n      var ex = cleanup(example_result);\n      var ts = cleanup(test_result);\n      var height = Math.max(ex.split(\"\\n\").length, ts.split(\"\\n\").length) * 13;\n      example = $('<div/>').text(ex).html();\n      test = $('<div/>').text(ts).html();\n      $(this).replaceWith('<table style=\"table-layout: fixed; border-collapse:collapse; padding:0; height: 30px; width: 100%; border: 1px;\"><thead><tr><th>' + name + '</th><th><button class=\"btn btn-neutral\" id=\"run_it_btn_' + id + '\" onclick=\"cpp(' + id + ', \\'' + file + '\\', \\'Test this code!\\')\">Test this code!</button><div id=\"code_listing_' + id + '\"></th></tr></thead><tbody><tr><td><pre><code class=\"cpp hljs\" style=\"line-height: 12px; height: ' + height + 'px;\">' + example + '</code></pre></td><td><pre><code class=\"cpp hljs\" style=\"line-height: 12px; height: ' + height + 'px;\">' + test + '</code></pre></td></tr></tbody></table><textarea style=\"display: none\" id=\"code_' + id + '\"></textarea><br /><textarea style=\"display: none\" id=\"output_' + id + '\"></textarea></div>');\n    });\n});\n"
  },
  {
    "path": "doc/themes/boost-experimental/js/gitter.js",
    "content": "((window.gitter = {}).chat = {}).options = {\n  room: 'boost-experimental/di'\n};\n$.getScript('https://sidecar.gitter.im/dist/sidecar.v1.js', function() { });\n"
  },
  {
    "path": "doc/themes/boost-experimental/js/highlight.pack.js",
    "content": "!function(e){\"undefined\"!=typeof exports?e(exports):(window.hljs=e({}),\"function\"==typeof define&&define.amd&&define([],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){var n=(e.className+\" \"+(e.parentNode?e.parentNode.className:\"\")).split(/\\s+/);return n=n.map(function(e){return e.replace(/^lang(uage)?-/,\"\")}),n.filter(function(e){return N(e)||/no(-?)highlight|plain|text/.test(e)})[0]}function i(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function o(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function u(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+Array.prototype.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"==e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else\"start\"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function c(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,o){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\b\\w+\\b/,!0),o&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&o.tE&&(a.tE+=(a.e?\"|\":\"\")+o.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(i(e,n))}):s.push(\"self\"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,o);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function s(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function f(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=E.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function p(e,n,t,r){var a=r?\"\":x.classPrefix,i='<span class=\"'+a,o=t?\"\":\"</span>\";return i+=e+'\">',i+n+o}function d(){if(!L.k)return n(y);var e=\"\",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(y);r;){e+=n(y.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=p(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(y)}return e+n(y.substr(t))}function h(){if(L.sL&&!w[L.sL])return n(y);var e=L.sL?s(L.sL,y,!0,M[L.sL]):l(y);return L.r>0&&(B+=e.r),\"continuous\"==L.subLanguageMode&&(M[L.sL]=e.top),p(e.language,e.value,!1,!0)}function b(){return void 0!==L.sL?h():d()}function v(e,t){var r=e.cN?p(e.cN,\"\",!0):\"\";e.rB?(k+=r,y=\"\"):e.eB?(k+=n(t)+r,y=\"\"):(k+=r,y=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(y+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(y+=t),k+=b();do L.cN&&(k+=\"</span>\"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),y=\"\",a.starts&&v(a.starts,\"\"),i.rE?0:t.length}if(f(t,L))throw new Error('Illegal lexeme \"'+t+'\" for mode \"'+(L.cN||\"<unnamed>\")+'\"');return y+=t,t.length||1}var E=N(e);if(!E)throw new Error('Unknown language: \"'+e+'\"');c(E);var R,L=i||E,M={},k=\"\";for(R=L;R!=E;R=R.parent)R.cN&&(k=p(R.cN,\"\",!0)+k);var y=\"\",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+=\"</span>\");return{r:B,value:k,language:e,top:L}}catch(S){if(-1!=S.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw S}}function l(e,t){t=t||x.languages||Object.keys(w);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(N(n)){var t=s(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function f(e){return x.tabReplace&&(e=e.replace(/^((<[^>]+>|\\t)+)/gm,function(e,n){return n.replace(/\\t/g,x.tabReplace)})),x.useBR&&(e=e.replace(/\\n/g,\"<br>\")),e}function g(e,n,t){var r=n?E[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n=a(e);if(!/no(-?)highlight|plain|text/.test(n)){var t;x.useBR?(t=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),t.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):t=e;var r=t.textContent,i=n?s(n,r,!0):l(r),c=o(t);if(c.length){var p=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\");p.innerHTML=i.value,i.value=u(c,o(p),r)}i.value=f(i.value),e.innerHTML=i.value,e.className=g(e.className,n,i.language),e.result={language:i.language,re:i.r},i.second_best&&(e.second_best={language:i.second_best.language,re:i.second_best.r})}}function d(e){x=i(x,e)}function h(){if(!h.called){h.called=!0;var e=document.querySelectorAll(\"pre code\");Array.prototype.forEach.call(e,p)}}function b(){addEventListener(\"DOMContentLoaded\",h,!1),addEventListener(\"load\",h,!1)}function v(n,t){var r=w[n]=t(e);r.aliases&&r.aliases.forEach(function(e){E[e]=n})}function m(){return Object.keys(w)}function N(e){return w[e]||w[E[e]]}var x={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},w={},E={};return e.highlight=s,e.highlightAuto=l,e.fixMarkup=f,e.highlightBlock=p,e.configure=d,e.initHighlighting=h,e.initHighlightingOnLoad=b,e.registerLanguage=v,e.listLanguages=m,e.getLanguage=N,e.inherit=i,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"\\\\b(0[xX][a-fA-F0-9]+|(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\\\w+\"},i={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n=\"@interface @class @protocol @implementation\";return{aliases:[\"m\",\"mm\",\"objc\",\"obj-c\"],k:i,l:o,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"preprocessor\",b:\"#\",e:\"$\",c:[{cN:\"title\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+n.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:n,l:o,c:[e.UTM]},{cN:\"variable\",b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>]/,c:[{cN:\"operator\",bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate savepoint release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke\",e:/;/,eW:!0,k:{keyword:\"abs absolute acos action add adddate addtime aes_decrypt aes_encrypt after aggregate all allocate alter analyze and any are as asc ascii asin assertion at atan atan2 atn2 authorization authors avg backup before begin benchmark between bin binlog bit_and bit_count bit_length bit_or bit_xor both by cache call cascade cascaded case cast catalog ceil ceiling chain change changed char_length character_length charindex charset check checksum checksum_agg choose close coalesce coercibility collate collation collationproperty column columns columns_updated commit compress concat concat_ws concurrent connect connection connection_id consistent constraint constraints continue contributors conv convert convert_tz corresponding cos cot count count_big crc32 create cross cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime data database databases datalength date_add date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts datetimeoffsetfromparts day dayname dayofmonth dayofweek dayofyear deallocate declare decode default deferrable deferred degrees delayed delete des_decrypt des_encrypt des_key_file desc describe descriptor diagnostics difference disconnect distinct distinctrow div do domain double drop dumpfile each else elt enclosed encode encrypt end end-exec engine engines eomonth errors escape escaped event eventdata events except exception exec execute exists exp explain export_set extended external extract fast fetch field fields find_in_set first first_value floor flush for force foreign format found found_rows from from_base64 from_days from_unixtime full function get get_format get_lock getdate getutcdate global go goto grant grants greatest group group_concat grouping grouping_id gtid_subset gtid_subtract handler having help hex high_priority hosts hour ident_current ident_incr ident_seed identified identity if ifnull ignore iif ilike immediate in index indicator inet6_aton inet6_ntoa inet_aton inet_ntoa infile initially inner innodb input insert install instr intersect into is is_free_lock is_ipv4 is_ipv4_compat is_ipv4_mapped is_not is_not_null is_used_lock isdate isnull isolation join key kill language last last_day last_insert_id last_value lcase lead leading least leaves left len lenght level like limit lines ln load load_file local localtime localtimestamp locate lock log log10 log2 logfile logs low_priority lower lpad ltrim make_set makedate maketime master master_pos_wait match matched max md5 medium merge microsecond mid min minute mod mode module month monthname mutex name_const names national natural nchar next no no_write_to_binlog not now nullif nvarchar oct octet_length of old_password on only open optimize option optionally or ord order outer outfile output pad parse partial partition password patindex percent_rank percentile_cont percentile_disc period_add period_diff pi plugin position pow power pragma precision prepare preserve primary prior privileges procedure procedure_analyze processlist profile profiles public publishingservername purge quarter query quick quote quotename radians rand read references regexp relative relaylog release release_lock rename repair repeat replace replicate reset restore restrict return returns reverse revoke right rlike rollback rollup round row row_count rows rpad rtrim savepoint schema scroll sec_to_time second section select serializable server session session_user set sha sha1 sha2 share show sign sin size slave sleep smalldatetimefromparts snapshot some soname soundex sounds_like space sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sql_variant_property sqlstate sqrt square start starting status std stddev stddev_pop stddev_samp stdev stdevp stop str str_to_date straight_join strcmp string stuff subdate substr substring subtime subtring_index sum switchoffset sysdate sysdatetime sysdatetimeoffset system_user sysutcdatetime table tables tablespace tan temporary terminated tertiary_weights then time time_format time_to_sec timediff timefromparts timestamp timestampadd timestampdiff timezone_hour timezone_minute to to_base64 to_days to_seconds todatetimeoffset trailing transaction translation trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse ucase uncompress uncompressed_length unhex unicode uninstall union unique unix_timestamp unknown unlock update upgrade upped upper usage use user user_resources using utc_date utc_time utc_timestamp uuid uuid_short validate_password_strength value values var var_pop var_samp variables variance varp version view warnings week weekday weekofyear weight_string when whenever where with work write xml xor year yearweek zon\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int integer interval number numeric real serial smallint varchar varying int8 serial8 text\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"javascript\",function(e){return{aliases:[\"js\"],k:{keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as await\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},c:[{cN:\"pi\",r:10,v:[{b:/^\\s*('|\")use strict('|\")/},{b:/^\\s*('|\")use asm('|\")/}]},e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,{cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\"}]},e.CLCM,e.CBCM,{cN:\"number\",b:\"\\\\b(0[xXbBoO][a-fA-F0-9]+|(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\\s*[);\\]]/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0},{bK:\"import\",e:\"[;$]\",k:\"import from as\",c:[e.ASM,e.QSM]},{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]}]}});hljs.registerLanguage(\"scss\",function(e){{var t=\"[a-zA-Z-][a-zA-Z0-9_-]*\",i={cN:\"variable\",b:\"(\\\\$\"+t+\")\\\\b\"},r={cN:\"function\",b:t+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},o={cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"};({cN:\"attribute\",b:\"[A-Z\\\\_\\\\.\\\\-]+\",e:\":\",eE:!0,i:\"[^\\\\s]\",starts:{cN:\"value\",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"important\",b:\"!important\"}]}})}return{cI:!0,i:\"[=/|']\",c:[e.CLCM,e.CBCM,r,{cN:\"id\",b:\"\\\\#[A-Za-z0-9_-]+\",r:0},{cN:\"class\",b:\"\\\\.[A-Za-z0-9_-]+\",r:0},{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\",i:\"$\"},{cN:\"tag\",b:\"\\\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\\\b\",r:0},{cN:\"pseudo\",b:\":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)\"},{cN:\"pseudo\",b:\"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)\"},i,{cN:\"attribute\",b:\"\\\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\\\b\",i:\"[^\\\\s]\"},{cN:\"value\",b:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{cN:\"value\",b:\":\",e:\";\",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:\"important\",b:\"!important\"}]},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",k:\"mixin include extend for if else each while charset import debug media page content font-face namespace warn\",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:\"preprocessor\",b:\"\\\\s[A-Za-z0-9_.-]+\",r:0}]}]}});hljs.registerLanguage(\"mel\",function(e){return{k:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",i:\"</\",c:[e.CNM,e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},{cN:\"variable\",v:[{b:\"\\\\$\\\\d\"},{b:\"[\\\\$\\\\%\\\\@](\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\"},{b:\"\\\\*(\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\",r:0}]},e.CLCM,e.CBCM]}});hljs.registerLanguage(\"d\",function(e){var r={keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},t=\"(0|[1-9][\\\\d_]*)\",a=\"(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)\",i=\"0[bB][01_]+\",n=\"([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\",c=\"0[xX]\"+n,_=\"([eE][+-]?\"+a+\")\",d=\"(\"+a+\"(\\\\.\\\\d*|\"+_+\")|\\\\d+\\\\.\"+a+a+\"|\\\\.\"+t+_+\"?)\",o=\"(0[xX](\"+n+\"\\\\.\"+n+\"|\\\\.?\"+n+\")[pP][+-]?\"+a+\")\",s=\"(\"+t+\"|\"+i+\"|\"+c+\")\",l=\"(\"+o+\"|\"+d+\")\",u=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",b={cN:\"number\",b:\"\\\\b\"+s+\"(L|u|U|Lu|LU|uL|UL)?\",r:0},f={cN:\"number\",b:\"\\\\b(\"+l+\"([fF]|L|i|[fF]i|Li)?|\"+s+\"(i|[fF]i|Li))\",r:0},g={cN:\"string\",b:\"'(\"+u+\"|.)\",e:\"'\",i:\".\"},h={b:u,r:0},p={cN:\"string\",b:'\"',c:[h],e:'\"[cwd]?'},w={cN:\"string\",b:'[rq]\"',e:'\"[cwd]?',r:5},N={cN:\"string\",b:\"`\",e:\"`[cwd]?\"},A={cN:\"string\",b:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',r:10},F={cN:\"string\",b:'q\"\\\\{',e:'\\\\}\"'},m={cN:\"shebang\",b:\"^#!\",e:\"$\",r:5},y={cN:\"preprocessor\",b:\"#(line)\",e:\"$\",r:5},L={cN:\"keyword\",b:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"},v=e.C(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{c:[\"self\"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage(\"ruleslanguage\",function(T){return{k:{keyword:\"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING\",built_in:\"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME\"},c:[T.CLCM,T.CBCM,T.ASM,T.QSM,T.CNM,{cN:\"array\",b:\"#[a-zA-Z .]+\"}]}});hljs.registerLanguage(\"actionscript\",function(e){var a=\"[a-zA-Z_$][a-zA-Z0-9_$]*\",c=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\",t={cN:\"rest_arg\",b:\"[.]{3}\",e:a,r:10};return{aliases:[\"as\"],k:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"package\",bK:\"package\",e:\"{\",c:[e.TM]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",bK:\"import include\",e:\";\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:\"type\",b:\":\",e:c,r:10}]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",reserved:\"case default function var void with const let enum export import native __hasProp __extends __slice __bind __indexOf\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",t={cN:\"subst\",b:/#\\{/,e:/}/,k:c},r=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,t]},{b:/\"/,e:/\"/,c:[e.BE,t]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[t,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];t.c=r;var i=e.inherit(e.TM,{b:n}),s=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(r)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:r.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+s,e:\"[-=]>\",rB:!0,c:[i,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:s,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"tex\",function(c){var e={cN:\"command\",b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]?\"},m={cN:\"command\",b:\"\\\\\\\\[^a-zA-Zа-яА-я0-9]\"},r={cN:\"special\",b:\"[{}\\\\[\\\\]\\\\&#~]\",r:0};return{c:[{b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]? *= *-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",rB:!0,c:[e,m,{cN:\"number\",b:\" *=\",e:\"-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",eB:!0}],r:10},e,m,r,{cN:\"formula\",b:\"\\\\$\\\\$\",e:\"\\\\$\\\\$\",c:[e,m,r],r:0},{cN:\"formula\",b:\"\\\\$\",e:\"\\\\$\",c:[e,m,r],r:0},c.C(\"%\",\"$\",{r:0})]}});hljs.registerLanguage(\"go\",function(e){var t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer\",constant:\"true false iota nil\",typename:\"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{aliases:[\"golang\"],k:t,i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\"},{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"number\",b:e.CNR+\"[dflsi]?\",r:0},e.CNM]}});hljs.registerLanguage(\"vbscript-html\",function(s){return{sL:\"xml\",subLanguageMode:\"continuous\",c:[{b:\"<%\",e:\"%>\",sL:\"vbscript\"}]}});hljs.registerLanguage(\"haskell\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],a={cN:\"pragma\",b:\"{-#\",e:\"#-}\"},i={cN:\"preprocessor\",b:\"^#\",e:\"$\"},n={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},t={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[a,i,{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TM,{b:\"[_a-z][\\\\w']*\"})].concat(c)},l={cN:\"container\",b:\"{\",e:\"}\",c:t.c};return{aliases:[\"hs\"],k:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 qualified as hiding\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"class\",b:\"^(\\\\s*)?(class|instance)\\\\b\",e:\"where\",k:\"class family instance where\",c:[n,t].concat(c)},{cN:\"typedef\",b:\"\\\\b(data|(new)?type)\\\\b\",e:\"$\",k:\"data family type newtype deriving\",c:[a,n,t,l].concat(c)},{cN:\"default\",bK:\"default\",e:\"$\",c:[n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bforeign\\\\b\",e:\"$\",k:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",c:[n,e.QSM].concat(c)},{cN:\"shebang\",b:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",e:\"$\"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"scilab\",function(e){var n=[e.CNM,{cN:\"string\",b:\"'|\\\"\",e:\"'|\\\"\",c:[e.BE,{b:\"''\"}]}];return{aliases:[\"sci\"],k:{keyword:\"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix\"},i:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function endfunction\",e:\"$\",k:\"function endfunction|10\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]},{cN:\"transposed_variable\",b:\"[a-zA-Z_][a-zA-Z_0-9]*('+[\\\\.']*|[\\\\.']+)\",e:\"\",r:0},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]'*[\\\\.']*\",r:0,c:n},e.C(\"//\",\"$\")].concat(n)}});hljs.registerLanguage(\"profile\",function(e){return{c:[e.CNM,{cN:\"built_in\",b:\"{\",e:\"}$\",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:\"filename\",b:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",e:\":\",eE:!0},{cN:\"header\",b:\"(ncalls|tottime|cumtime)\",e:\"$\",k:\"ncalls tottime|10 cumtime|10 filename\",r:10},{cN:\"summary\",b:\"function calls\",e:\"$\",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:\"function\",b:\"\\\\(\",e:\"\\\\)$\",c:[e.UTM],r:0}]}});hljs.registerLanguage(\"thrift\",function(e){var t=\"bool byte i16 i32 i64 double string binary\";return{k:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:\"class\",bK:\"struct enum service exception\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:\"\\\\b(set|list|map)\\\\s*<\",e:\">\",k:t,c:[\"self\"]}]}});hljs.registerLanguage(\"matlab\",function(e){var a=[e.CNM,{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]}],s={r:0,c:[{cN:\"operator\",b:/'['\\.]*/}]};return{k:{keyword:\"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson\"},i:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function\",e:\"$\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},{cN:\"params\",b:\"\\\\[\",e:\"\\\\]\"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]\",c:a,r:0,starts:s},{cN:\"cell\",b:\"\\\\{\",e:/}/,c:a,r:0,starts:s},{b:/\\)/,r:0,starts:s},e.C(\"^\\\\s*\\\\%\\\\{\\\\s*$\",\"^\\\\s*\\\\%\\\\}\\\\s*$\"),e.C(\"\\\\%\",\"$\")].concat(a)}});hljs.registerLanguage(\"vbscript\",function(e){return{aliases:[\"vbs\"],cI:!0,k:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err\",literal:\"true false null nothing empty\"},i:\"//\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage(\"capnproto\",function(t){return{aliases:[\"capnp\"],k:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},c:[t.QSM,t.NM,t.HCM,{cN:\"shebang\",b:/@0x[\\w\\d]{16};/,i:/\\n/},{cN:\"number\",b:/@\\d+\\b/},{cN:\"class\",bK:\"struct enum\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"class\",bK:\"interface\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage(\"xl\",function(e){var t=\"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\",o={keyword:\"if then else do while until for loop import with is as where when by data constant\",literal:\"true false nil\",type:\"integer real text name boolean symbol infix prefix postfix block tree\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at\",module:t,id:\"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons\"},a={cN:\"constant\",b:\"[A-Z][A-Z_0-9]+\",r:0},r={cN:\"variable\",b:\"([A-Z][a-z_0-9]+)+\",r:0},i={cN:\"id\",b:\"[a-z][a-z_0-9]+\",r:0},l={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"},n={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\"},s={cN:\"string\",b:\"<<\",e:\">>\"},c={cN:\"number\",b:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\",r:10},_={cN:\"import\",bK:\"import\",e:\"$\",k:{keyword:\"import\",module:t},r:0,c:[l]},d={cN:\"function\",b:\"[a-z].*->\"};return{aliases:[\"tao\"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage(\"scala\",function(e){var t={cN:\"annotation\",b:\"@[A-Za-z]+\"},a={cN:\"string\",b:'u?r?\"\"\"',e:'\"\"\"',r:10},r={cN:\"symbol\",b:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},c={cN:\"type\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},i={cN:\"title\",b:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,r:0},l={cN:\"class\",bK:\"class object trait type\",e:/[:={\\[(\\n;]/,c:[{cN:\"keyword\",bK:\"extends with\",r:10},i]},n={cN:\"function\",bK:\"def val\",e:/[:={\\[(\\n;]/,c:[i]};return{k:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},c:[e.CLCM,e.CBCM,a,e.QSM,r,c,n,l,e.CNM,t]}});hljs.registerLanguage(\"elixir\",function(e){var n=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\",r=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",b=\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote\",c={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:n,k:b},a={cN:\"string\",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},i={cN:\"function\",bK:\"def defp defmacro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:\"class\",bK:\"defmodule defrecord\",e:/\\bdo\\b|$|;/}),l=[a,e.HCM,s,i,{cN:\"constant\",b:\"(\\\\b[A-Z_]\\\\w*(.)?)+\",r:0},{cN:\"symbol\",b:\":\",c:[a,{b:r}],r:0},{cN:\"symbol\",b:n+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"->\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[e.HCM,{cN:\"regexp\",i:\"\\\\n\",c:[e.BE,c],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage(\"sml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"tag\",b:\"</?\",e:\">\"},{cN:\"keyword\",b:/\\w+/,r:0,k:{common:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"sqbracket\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"cbracket\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"dockerfile\",function(n){return{aliases:[\"docker\"],cI:!0,k:{built_ins:\"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env\"},c:[n.HCM,{k:{built_in:\"run cmd entrypoint volume add copy workdir onbuild\"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir) +/,starts:{e:/[^\\\\]\\n/,sL:\"bash\",subLanguageMode:\"continuous\"}},{k:{built_in:\"from maintainer expose env user onbuild\"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\\\]\\n/,c:[n.ASM,n.QSM,n.NM,n.HCM]}]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"header\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"blockquote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{cN:\"horizontal_rule\",b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link_url\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"link_reference\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:\"^\\\\[.+\\\\]:\",rB:!0,c:[{cN:\"link_reference\",b:\"\\\\[\",e:\"\\\\]:\",eB:!0,eE:!0,starts:{cN:\"link_url\",e:\"$\"}}]}]}});hljs.registerLanguage(\"haml\",function(s){return{cI:!0,c:[{cN:\"doctype\",b:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",r:10},s.C(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{r:0}),{b:\"^\\\\s*(-|=|!=)(?!#)\",starts:{e:\"\\\\n\",sL:\"ruby\"}},{cN:\"tag\",b:\"^\\\\s*%\",c:[{cN:\"title\",b:\"\\\\w+\"},{cN:\"value\",b:\"[#\\\\.]\\\\w+\"},{b:\"{\\\\s*\",e:\"\\\\s*}\",eE:!0,c:[{b:\":\\\\w+\\\\s*=>\",e:\",\\\\s+\",rB:!0,eW:!0,c:[{cN:\"symbol\",b:\":\\\\w+\"},{cN:\"string\",b:'\"',e:'\"'},{cN:\"string\",b:\"'\",e:\"'\"},{b:\"\\\\w+\",r:0}]}]},{b:\"\\\\(\\\\s*\",e:\"\\\\s*\\\\)\",eE:!0,c:[{b:\"\\\\w+\\\\s*=\",e:\"\\\\s+\",rB:!0,eW:!0,c:[{cN:\"attribute\",b:\"\\\\w+\",r:0},{cN:\"string\",b:'\"',e:'\"'},{cN:\"string\",b:\"'\",e:\"'\"},{b:\"\\\\w+\",r:0}]}]}]},{cN:\"bullet\",b:\"^\\\\s*[=~]\\\\s*\",r:0},{b:\"#{\",starts:{e:\"}\",sL:\"ruby\"}}]}});hljs.registerLanguage(\"fortran\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image\"};return{cI:!0,aliases:[\"f90\",\"f95\"],k:n,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"smali\",function(r){var t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"],n=[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"],s=[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"];return{aliases:[\"smali\"],c:[{cN:\"string\",b:'\"',e:'\"',r:0},r.C(\"#\",\"$\",{r:0}),{cN:\"keyword\",b:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\",r:1},{cN:\"keyword\",b:\"^[ ]*\\\\.[a-zA-Z]*\",r:0},{cN:\"keyword\",b:\"\\\\s:[a-zA-Z_0-9]*\",r:0},{cN:\"keyword\",b:\"\\\\s(\"+s.join(\"|\")+\")\",r:1},{cN:\"keyword\",b:\"\\\\[\",r:0},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\",r:1},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)+\\\\s\",r:10},{cN:\"instruction\",b:\"\\\\s(\"+n.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)*\\\\s\",r:10},{cN:\"class\",b:\"L[^(;:\\n]*;\",r:0},{cN:\"function\",b:'( |->)[^(\\n ;\"]*\\\\(',r:0},{cN:\"function\",b:\"\\\\)\",r:0},{cN:\"variable\",b:\"[vp][0-9]+\",r:0}]}});hljs.registerLanguage(\"julia\",function(r){var e={keyword:\"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while\",literal:\"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e eu eulergamma golden im nothing pi γ π φ\",built_in:\"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip\"},t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",o={l:t,k:e},n={cN:\"type-annotation\",b:/::/},a={cN:\"subtype\",b:/<:/},i={cN:\"number\",b:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,r:0},l={cN:\"char\",b:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},c={cN:\"subst\",b:/\\$\\(/,e:/\\)/,k:e},u={cN:\"variable\",b:\"\\\\$\"+t},d={cN:\"string\",c:[r.BE,c,u],v:[{b:/\\w*\"/,e:/\"\\w*/},{b:/\\w*\"\"\"/,e:/\"\"\"\\w*/}]},g={cN:\"string\",c:[r.BE,c,u],b:\"`\",e:\"`\"},s={cN:\"macrocall\",b:\"@\"+t},S={cN:\"comment\",v:[{b:\"#=\",e:\"=#\",r:10},{b:\"#\",e:\"$\"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage(\"delphi\",function(e){var r=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure\",t=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],i={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:\"string\",b:/(#\\d+)+/},o={b:e.IR+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",rB:!0,c:[e.TM]},n={cN:\"function\",bK:\"function constructor destructor procedure\",e:/[:;]/,k:\"function constructor|10 destructor|10 procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage(\"brainfuck\",function(r){var n={cN:\"literal\",b:\"[\\\\+\\\\-]\",r:0};return{aliases:[\"bf\"],c:[r.C(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{rE:!0,r:0}),{cN:\"title\",b:\"[\\\\[\\\\]]\",r:0},{cN:\"string\",b:\"[\\\\.,]\",r:0},{b:/\\+\\+|\\-\\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage(\"ini\",function(e){return{cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),{cN:\"title\",b:\"^\\\\[\",e:\"\\\\]\"},{cN:\"setting\",b:\"^[a-z0-9\\\\[\\\\]_-]+[ \\\\t]*=[ \\\\t]*\",e:\"$\",c:[{cN:\"value\",eW:!0,k:\"on off true false yes no\",c:[e.QSM,e.NM],r:0}]}]}});hljs.registerLanguage(\"json\",function(e){var t={literal:\"true false null\"},i=[e.QSM,e.CNM],l={cN:\"value\",e:\",\",eW:!0,eE:!0,c:i,k:t},c={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:!0,eE:!0,c:[e.BE],i:\"\\\\n\",starts:l}],i:\"\\\\S\"},n={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(l,{cN:null})],i:\"\\\\S\"};return i.splice(i.length,0,c,n),{c:i,k:t,i:\"\\\\S\"}});hljs.registerLanguage(\"powershell\",function(e){var t={b:\"`[\\\\s\\\\S]\",r:0},r={cN:\"variable\",v:[{b:/\\$[\\w\\d][\\w\\d_:]*/}]},o={cN:\"string\",b:/\"/,e:/\"/,c:[t,r,{cN:\"variable\",b:/\\$[A-z]/,e:/[^A-z]/}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"ps\"],l:/-?[A-z\\.\\-]+/,cI:!0,k:{keyword:\"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch\",literal:\"$null $true $false\",built_in:\"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning\",operator:\"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace\"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage(\"gradle\",function(e){return{cI:!0,k:{keyword:\"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage(\"erb\",function(e){return{sL:\"xml\",subLanguageMode:\"continuous\",c:[e.C(\"<%#\",\"%>\"),{b:\"<%[%=-]?\",e:\"[%-]?%>\",sL:\"ruby\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"swift\",function(e){var i={keyword:\"class deinit enum extension func import init let protocol static struct subscript typealias var break case continue default do else fallthrough if in for return switch where while as dynamicType is new super self Self Type __COLUMN__ __FILE__ __FUNCTION__ __LINE__ associativity didSet get infix inout left mutating none nonmutating operator override postfix precedence prefix right set unowned unowned safe unsafe weak willSet\",literal:\"true false nil\",built_in:\"abs advance alignof alignofValue assert bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal false filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced join lexicographicalCompare map max maxElement min minElement nil numericCast partition posix print println quickSort reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith strideof strideofValue swap swift toString transcode true underestimateCount unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafePointers withVaList\"},t={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n=e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),r={cN:\"subst\",b:/\\\\\\(/,e:\"\\\\)\",k:i,c:[]},s={cN:\"number\",b:\"\\\\b([\\\\d_]+(\\\\.[\\\\deE_]+)?|0x[a-fA-F0-9_]+(\\\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\\\b\",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[s],{k:i,c:[o,e.CLCM,n,t,s,{cN:\"func\",bK:\"func\",e:\"{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\\(/}),{cN:\"generics\",b:/</,e:/>/,i:/>/},{cN:\"params\",b:/\\(/,e:/\\)/,endsParent:!0,k:i,c:[\"self\",s,o,e.CBCM,{b:\":\"}],i:/[\"']/}],i:/\\[|%/},{cN:\"class\",bK:\"struct protocol class extension enum\",k:i,e:\"\\\\{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:\"preprocessor\",b:\"(@assignment|@class_protocol|@exported|@final|@lazy|@noreturn|@NSCopying|@NSManaged|@objc|@optional|@required|@auto_closure|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix)\"}]}});hljs.registerLanguage(\"lisp\",function(b){var e=\"[a-zA-Z_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#][a-zA-Z0-9_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#!]*\",c=\"\\\\|[^]*?\\\\|\",r=\"(\\\\-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|\\\\-)?\\\\d+)?\",a={cN:\"shebang\",b:\"^#!\",e:\"$\"},i={cN:\"literal\",b:\"\\\\b(t{1}|nil)\\\\b\"},l={cN:\"number\",v:[{b:r,r:0},{b:\"#(b|B)[0-1]+(/[0-1]+)?\"},{b:\"#(o|O)[0-7]+(/[0-7]+)?\"},{b:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{b:\"#(c|C)\\\\(\"+r+\" +\"+r,e:\"\\\\)\"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(\";\",\"$\",{r:0}),n={cN:\"variable\",b:\"\\\\*\",e:\"\\\\*\"},u={cN:\"keyword\",b:\"[:&]\"+e},N={b:e,r:0},o={b:c},s={b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,t,l,N]},v={cN:\"quoted\",c:[l,t,n,u,s,N],v:[{b:\"['`]\\\\(\",e:\"\\\\)\"},{b:\"\\\\(quote \",e:\"\\\\)\",k:\"quote\"},{b:\"'\"+c}]},f={cN:\"quoted\",v:[{b:\"'\"+e},{b:\"#'\"+e+\"(::\"+e+\")*\"}]},g={cN:\"list\",b:\"\\\\(\\\\s*\",e:\"\\\\)\"},q={eW:!0,r:0};return g.c=[{cN:\"keyword\",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage(\"rsl\",function(e){return{k:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"shader\",bK:\"surface displacement light volume imager\",e:\"\\\\(\"},{cN:\"shading\",bK:\"illuminate illuminance gather\",e:\"\\\\(\"}]}});hljs.registerLanguage(\"scheme\",function(e){var t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",r=\"(\\\\-|\\\\+)?\\\\d+([./]\\\\d+)?\",i=r+\"[+\\\\-]\"+r+\"i\",a={built_in:\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},n={cN:\"shebang\",b:\"^#!\",e:\"$\"},c={cN:\"literal\",b:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},l={cN:\"number\",v:[{b:r,r:0},{b:i,r:0},{b:\"#b[0-1]+(/[0-1]+)?\"},{b:\"#o[0-7]+(/[0-7]+)?\"},{b:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QSM,o=[e.C(\";\",\"$\",{r:0}),e.C(\"#\\\\|\",\"\\\\|#\")],u={b:t,r:0},p={cN:\"variable\",b:\"'\"+t},d={eW:!0,r:0},g={cN:\"list\",v:[{b:\"\\\\(\",e:\"\\\\)\"},{b:\"\\\\[\",e:\"\\\\]\"}],c:[{cN:\"keyword\",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage(\"stata\",function(e){return{aliases:[\"do\",\"ado\"],cI:!0,k:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",c:[{cN:\"label\",v:[{b:\"\\\\$\\\\{?[a-zA-Z0-9_]+\\\\}?\"},{b:\"`[a-zA-Z0-9_]+'\"}]},{cN:\"string\",v:[{b:'`\"[^\\r\\n]*?\"\\''},{b:'\"[^\\r\\n\"]*\"'}]},{cN:\"literal\",v:[{b:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\(|$)\"}]},e.C(\"^[ \t]*\\\\*.*$\",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage(\"asciidoc\",function(e){return{aliases:[\"adoc\"],c:[e.C(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{r:10}),e.C(\"^//\",\"$\",{r:0}),{cN:\"title\",b:\"^\\\\.\\\\w.*$\"},{b:\"^[=\\\\*]{4,}\\\\n\",e:\"\\\\n^[=\\\\*]{4,}$\",r:10},{cN:\"header\",b:\"^(={1,5}) .+?( \\\\1)?$\",r:10},{cN:\"header\",b:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\",r:10},{cN:\"attribute\",b:\"^:.+?:\",e:\"\\\\s\",eE:!0,r:10},{cN:\"attribute\",b:\"^\\\\[.+?\\\\]$\",r:0},{cN:\"blockquote\",b:\"^_{4,}\\\\n\",e:\"\\\\n_{4,}$\",r:10},{cN:\"code\",b:\"^[\\\\-\\\\.]{4,}\\\\n\",e:\"\\\\n[\\\\-\\\\.]{4,}$\",r:10},{b:\"^\\\\+{4,}\\\\n\",e:\"\\\\n\\\\+{4,}$\",c:[{b:\"<\",e:\">\",sL:\"xml\",r:0}],r:10},{cN:\"bullet\",b:\"^(\\\\*+|\\\\-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"},{cN:\"label\",b:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",r:10},{cN:\"strong\",b:\"\\\\B\\\\*(?![\\\\*\\\\s])\",e:\"(\\\\n{2}|\\\\*)\",c:[{b:\"\\\\\\\\*\\\\w\",r:0}]},{cN:\"emphasis\",b:\"\\\\B'(?!['\\\\s])\",e:\"(\\\\n{2}|')\",c:[{b:\"\\\\\\\\'\\\\w\",r:0}],r:0},{cN:\"emphasis\",b:\"_(?![_\\\\s])\",e:\"(\\\\n{2}|_)\",r:0},{cN:\"smartquote\",v:[{b:\"``.+?''\"},{b:\"`.+?'\"}]},{cN:\"code\",b:\"(`.+?`|\\\\+.+?\\\\+)\",r:0},{cN:\"code\",b:\"^[ \\\\t]\",e:\"$\",r:0},{cN:\"horizontal_rule\",b:\"^'{3,}[ \\\\t]*$\",r:10},{b:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+\\\\[.*?\\\\]\",rB:!0,c:[{b:\"(link|image:?):\",r:0},{cN:\"link_url\",b:\"\\\\w\",e:\"[^\\\\[]+\",r:0},{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage(\"php\",function(e){var c={cN:\"variable\",b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},i={cN:\"preprocessor\",b:/<\\?(php)?|\\?>/},a={cN:\"string\",c:[e.BE,i],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"phpdoc\",b:\"\\\\s@[A-Za-z]+\"},i]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[e.BE]},i,c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,a,n]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},a,n]}});hljs.registerLanguage(\"java\",function(e){var a=e.UIR+\"(<\"+e.UIR+\">)?\",t=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",c=\"(\\\\b(0b[01_]+)|\\\\b0[xX][a-fA-F0-9_]+|(\\\\b[\\\\d_]+(\\\\.[\\\\d_]*)?|\\\\.[\\\\d_]+)([eE][-+]?\\\\d+)?)[lLfF]?\",r={cN:\"number\",b:c,r:0};return{aliases:[\"jsp\"],k:t,i:/<\\//,c:[{cN:\"javadoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*/\",r:0,c:[{cN:\"javadoctag\",b:\"(^|\\\\s)@[A-Za-z]+\"}]},e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return\",r:0},{cN:\"function\",b:\"(\"+a+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"glsl\",function(e){return{k:{keyword:\"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly\",built_in:\"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse\",literal:\"true false\"},i:'\"',c:[e.CLCM,e.CBCM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"}]}});hljs.registerLanguage(\"lua\",function(e){var t=\"\\\\[=*\\\\[\",a=\"\\\\]=*\\\\]\",r={b:t,e:a,c:[\"self\"]},n=[e.C(\"--(?!\"+t+\")\",\"$\"),e.C(\"--\"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:\"and break do else elseif end false for if in local nil not or repeat return then true until while\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},c:n.concat([{cN:\"function\",bK:\"function\",e:\"\\\\)\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{cN:\"params\",b:\"\\\\(\",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:\"string\",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage(\"protobuf\",function(e){return{k:{keyword:\"package import option optional required repeated group\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,{cN:\"class\",bK:\"message enum service\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"function\",bK:\"rpc\",e:/;/,eE:!0,k:\"rpc returns\"},{cN:\"constant\",b:/^\\s*[A-Z_]+/,e:/\\s*=/,eE:!0}]}});hljs.registerLanguage(\"gcode\",function(e){var N=\"[A-Z_][A-Z0-9_.]*\",i=\"\\\\%\",c={literal:\"\",built_in:\"\",keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},r={cN:\"preprocessor\",b:\"([O])([0-9]+)\"},l=[e.CLCM,e.CBCM,e.C(/\\(/,/\\)/),e.inherit(e.CNM,{b:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))|\"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"keyword\",b:\"([G])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"([M])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"(VC|VS|#)\",e:\"(\\\\d+)\"},{cN:\"title\",b:\"(VZOFX|VZOFY|VZOFZ)\"},{cN:\"built_in\",b:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",e:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))(\\\\])\"},{cN:\"label\",v:[{b:\"N\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"nc\"],cI:!0,l:N,k:c,c:[{cN:\"preprocessor\",b:i},r].concat(l)}});hljs.registerLanguage(\"vim\",function(e){return{l:/[!#@\\w]+/,k:{keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor\"},i:/[{:]/,c:[e.NM,e.ASM,{cN:\"string\",b:/\"((\\\\\")|[^\"\\n])*(\"|\\n)/},{cN:\"variable\",b:/[bwtglsav]:[\\w\\d_]*/},{cN:\"function\",bK:\"function function!\",e:\"$\",r:0,c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]}]}});hljs.registerLanguage(\"processing\",function(e){return{k:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",constant:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",variable:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width\",title:\"setup draw\",built_in:\"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage(\"mizar\",function(e){return{k:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",c:[e.C(\"::\",\"$\")]}});hljs.registerLanguage(\"vbnet\",function(e){return{aliases:[\"vb\"],cI:!0,k:{keyword:\"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor\",built_in:\"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort\",literal:\"true false nothing\"},i:\"//|{|}|endif|gosub|variant|wend\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(\"'\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",b:\"'''|<!--|-->\",c:[e.PWM]},{cN:\"xmlDocTag\",b:\"</?\",e:\">\",c:[e.PWM]}]}),e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end region externalsource\"}]}});hljs.registerLanguage(\"q\",function(e){var s={keyword:\"do while select delete by update from\",constant:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",typename:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"};return{aliases:[\"k\",\"kdb\"],k:s,l:/\\b(`?)[A-Za-z0-9_]+\\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage(\"livescript\",function(e){var t={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf\",literal:\"true false null undefined yes no on off it that void\",built_in:\"npm require console print module global window document\"},s=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",i=e.inherit(e.TM,{b:s}),n={cN:\"subst\",b:/#\\{/,e:/}/,k:t},r={cN:\"subst\",b:/#[A-Za-z$_]/,e:/(?:\\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:\"number\",b:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",r:0,starts:{e:\"(\\\\s*/)?\",r:0}},{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,n,r]},{b:/\"/,e:/\"/,c:[e.BE,n,r]},{b:/\\\\/,e:/(\\s|$)/,eE:!0}]},{cN:\"pi\",v:[{b:\"//\",e:\"//[gim]*\",c:[n,e.HCM]},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+s},{b:\"``\",e:\"``\",eB:!0,eE:!0,sL:\"javascript\"}];n.c=c;var a={cN:\"params\",b:\"\\\\(\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:t,c:[\"self\"].concat(c)}]};return{aliases:[\"ls\"],k:t,i:/\\/\\*/,c:c.concat([e.C(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HCM,{cN:\"function\",c:[i,a],rB:!0,v:[{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B\\\\->\\\\*?\",e:\"\\\\->\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\))?\\\\s*\\\\B[-~]{1,2}>\\\\*?\",e:\"[-~]{1,2}>\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B!?[-~]{1,2}>\\\\*?\",e:\"!?[-~]{1,2}>\\\\*?\"}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:s+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"haxe\",function(e){var r=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\";return{aliases:[\"hx\"],k:{keyword:\"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while\",literal:\"true false null\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end error\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:\"type\",b:\":\",e:r,r:10}]}]}});hljs.registerLanguage(\"monkey\",function(e){var n={cN:\"number\",r:0,v:[{b:\"[$][a-fA-F0-9]+\"},e.NM]};return{cI:!0,k:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},c:[e.C(\"#rem\",\"#end\"),e.C(\"'\",\"$\",{r:0}),{cN:\"function\",bK:\"function method\",e:\"[(=:]|$\",i:/\\n/,c:[e.UTM]},{cN:\"class\",bK:\"class interface\",e:\"$\",c:[{bK:\"extends implements\"},e.UTM]},{cN:\"variable\",b:\"\\\\b(self|super)\\\\b\"},{cN:\"preprocessor\",bK:\"import\",e:\"$\"},{cN:\"preprocessor\",b:\"\\\\s*#\",e:\"$\",k:\"if else elseif endif end then\"},{cN:\"pi\",b:\"^\\\\s*strict\\\\b\"},{bK:\"alias\",e:\"=\",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\.]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",operator:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"shebang\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage(\"erlang\",function(e){var r=\"[a-z'][a-zA-Z0-9_']*\",c=\"(\"+r+\":\"+r+\"|\"+r+\")\",a={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},n=e.C(\"%\",\"$\"),i={cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},b={b:\"fun\\\\s+\"+r+\"/\\\\d+\"},d={b:c+\"\\\\(\",e:\"\\\\)\",rB:!0,r:0,c:[{cN:\"function_name\",b:c,r:0},{b:\"\\\\(\",e:\"\\\\)\",eW:!0,rE:!0,r:0}]},o={cN:\"tuple\",b:\"{\",e:\"}\",r:0},t={cN:\"variable\",b:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",r:0},l={cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_]*\",r:0},f={b:\"#\"+e.UIR,r:0,rB:!0,c:[{cN:\"record_name\",b:\"#\"+e.UIR,r:0},{b:\"{\",e:\"}\",r:0}]},s={bK:\"fun receive if try case\",e:\"end\",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:\"\"}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:u};return{aliases:[\"erl\"],k:a,i:\"(</|\\\\*=|\\\\+=|-=|/\\\\*|\\\\*/|\\\\(\\\\*|\\\\*\\\\))\",c:[{cN:\"function\",b:\"^\"+r+\"\\\\s*\\\\(\",e:\"->\",rB:!0,i:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",c:[v,e.inherit(e.TM,{b:r})],starts:{e:\";|\\\\.\",k:a,c:u}},n,{cN:\"pp\",b:\"^-\",e:\"\\\\.\",r:0,eE:!0,rB:!0,l:\"-\"+e.IR,k:\"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec\",c:[v]},i,e.QSM,f,t,l,o,{b:/\\.$/}]}});hljs.registerLanguage(\"kotlin\",function(e){var a=\"val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native\";return{k:{typename:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\",keyword:a},c:[e.CLCM,{cN:\"javadoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*//*\",r:0,c:[{cN:\"javadoctag\",b:\"(^|\\\\s)@[A-Za-z]+\"}]},e.CBCM,{cN:\"type\",b:/</,e:/>/,rB:!0,eE:!1,r:0},{cN:\"function\",bK:\"fun\",e:\"[(]|$\",rB:!0,eE:!0,k:a,i:/fun\\s+(<.*>)?[^\\s\\(]+(\\s+[^\\s\\(]+)\\s*=/,r:5,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"type\",b:/</,e:/>/,k:\"reified\",r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:a,r:0,i:/\\([^\\(,\\s:]+,/,c:[{cN:\"typename\",b:/:\\s*/,e:/\\s*[=\\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:\"class\",bK:\"class trait\",e:/[:\\{(]|$/,eE:!0,i:\"extends implements\",c:[e.UTM,{cN:\"type\",b:/</,e:/>/,eB:!0,eE:!0,r:0},{cN:\"typename\",b:/[,:]\\s*/,e:/[<\\(,]|$/,eB:!0,rE:!0}]},{cN:\"variable\",bK:\"var val\",e:/\\s*[=:$]/,eE:!0},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.CNM]}});hljs.registerLanguage(\"stylus\",function(t){var e={cN:\"variable\",b:\"\\\\$\"+t.IR},o={cN:\"hexcolor\",b:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\",r:10},i=[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"],r=[\"after\",\"before\",\"first-letter\",\"first-line\",\"active\",\"first-child\",\"focus\",\"hover\",\"lang\",\"link\",\"visited\"],n=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],a=\"[\\\\.\\\\s\\\\n\\\\[\\\\:,]\",l=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"],d=[\"\\\\{\",\"\\\\}\",\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"];return{aliases:[\"styl\"],cI:!1,i:\"(\"+d.join(\"|\")+\")\",k:\"if else for in\",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"class\",b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"id\",b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\b(\"+n.join(\"|\")+\")\"+a,rB:!0,c:[{cN:\"tag\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"}]},{cN:\"pseudo\",b:\"&?:?:\\\\b(\"+r.join(\"|\")+\")\"+a},{cN:\"at_rule\",b:\"@(\"+i.join(\"|\")+\")\\\\b\"},e,t.CSSNM,t.NM,{cN:\"function\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",i:\"[\\\\n]\",rB:!0,c:[{cN:\"title\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{cN:\"params\",b:/\\(/,e:/\\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:\"attribute\",b:\"\\\\b(\"+l.reverse().join(\"|\")+\")\\\\b\"}]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",a={cN:\"function\",b:c+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},r={cN:\"rule\",b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{cN:\"value\",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"},{cN:\"important\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|']/,c:[e.CBCM,r,{cN:\"id\",b:/\\#[A-Za-z0-9_-]+/},{cN:\"class\",b:/\\.[A-Za-z0-9_-]+/,r:0},{cN:\"attr_selector\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"']+/},{cN:\"at_rule\",b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",c:[{cN:\"keyword\",b:/\\S+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:\"tag\",b:c,r:0},{cN:\"rules\",b:\"{\",e:\"}\",i:/\\S/,r:0,c:[e.CBCM,r]}]}});hljs.registerLanguage(\"puppet\",function(e){var s=\"augeas computer cron exec file filebucket host interface k5login macauthorization mailalias maillist mcx mount nagios_command nagios_contact nagios_contactgroup nagios_host nagios_hostdependency nagios_hostescalation nagios_hostextinfo nagios_hostgroup nagios_service firewall nagios_servicedependency nagios_serviceescalation nagios_serviceextinfo nagios_servicegroup nagios_timeperiod notify package resources router schedule scheduled_task selboolean selmodule service ssh_authorized_key sshkey stage tidy user vlan yumrepo zfs zone zpool\",r=\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",a={keyword:\"and case class default define else elsif false if in import enherits node or true undef unless main settings $string \"+s,literal:r,built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},i=e.C(\"#\",\"$\"),o={cN:\"string\",c:[e.BE],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},n=[o,i,{cN:\"keyword\",bK:\"class\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"(::)?[A-Za-z_]\\\\w*(::\\\\w+)*\"}),i,o]},{cN:\"keyword\",b:\"([a-zA-Z_(::)]+ *\\\\{)\",c:[o,i],r:0},{cN:\"keyword\",b:\"(\\\\}|\\\\{)\",r:0},{cN:\"function\",b:\"[a-zA-Z_]+\\\\s*=>\"},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z][a-z_]*(::)?)+\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0}];return{aliases:[\"pp\"],k:a,c:n}});hljs.registerLanguage(\"nimrod\",function(t){return{aliases:[\"nim\"],k:{keyword:\"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template|10 try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield\",literal:\"shared guarded stdin stdout stderr result|10 true false\"},c:[{cN:\"decorator\",b:/{\\./,e:/\\.}/,r:10},{cN:\"string\",b:/[a-zA-Z]\\w*\"/,e:/\"/,c:[{b:/\"\"/}]},{cN:\"string\",b:/([a-zA-Z]\\w*)?\"\"\"/,e:/\"\"\"/},t.QSM,{cN:\"type\",b:/\\b[A-Z]\\w+\\b/,r:0},{cN:\"type\",b:/\\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\\b/},{cN:\"number\",b:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage(\"smalltalk\",function(a){var r=\"[a-z][a-zA-Z0-9_]*\",s={cN:\"char\",b:\"\\\\$.{1}\"},c={cN:\"symbol\",b:\"#\"+a.UIR};return{aliases:[\"st\"],k:\"self super nil true false thisContext\",c:[a.C('\"','\"'),a.ASM,{cN:\"class\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},{cN:\"method\",b:r+\":\",r:0},a.CNM,c,s,{cN:\"localvars\",b:\"\\\\|[ ]*\"+r+\"([ ]+\"+r+\")*[ ]*\\\\|\",rB:!0,e:/\\|/,i:/\\S/,c:[{b:\"(\\\\|[ ]*)?\"+r}]},{cN:\"array\",b:\"\\\\#\\\\(\",e:\"\\\\)\",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage(\"x86asm\",function(s){return{cI:!0,l:\"\\\\.?\"+s.IR,k:{keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",literal:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0  xmm1  xmm2  xmm3  xmm4  xmm5  xmm6  xmm7  xmm8  xmm9 xmm10  xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0  ymm1  ymm2  ymm3  ymm4  ymm5  ymm6  ymm7  ymm8  ymm9 ymm10  ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0  zmm1  zmm2  zmm3  zmm4  zmm5  zmm6  zmm7  zmm8  zmm9 zmm10  zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l\",pseudo:\"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times\",preprocessor:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__  __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__  __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public \",built_in:\"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},c:[s.C(\";\",\"$\",{r:0}),{cN:\"number\",b:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",r:0},{cN:\"number\",b:\"\\\\$[0-9][0-9A-Fa-f]*\",r:0},{cN:\"number\",b:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[HhXx]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{cN:\"number\",b:\"\\\\b(?:0[HhXx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"},s.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",r:0},{cN:\"string\",b:\"`\",e:\"[^\\\\\\\\]`\",r:0},{cN:\"string\",b:\"\\\\.[A-Za-z0-9]+\",r:0},{cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0},{cN:\"label\",b:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\",r:0},{cN:\"argument\",b:\"%[0-9]+\",r:0},{cN:\"built_in\",b:\"%!S+\",r:0}]}});hljs.registerLanguage(\"roboconf\",function(e){var n=\"[a-zA-Z-_][^\\n{\\r\\n]+\\\\{\";return{aliases:[\"graph\",\"instances\"],cI:!0,k:\"import\",c:[{cN:\"facet\",b:\"^facet \"+n,e:\"}\",k:\"facet installer exports children extends\",c:[e.HCM]},{cN:\"instance-of\",b:\"^instance of \"+n,e:\"}\",k:\"name count channels instance-data instance-state instance of\",c:[{cN:\"keyword\",b:\"[a-zA-Z-_]+( |\t)*:\"},e.HCM]},{cN:\"component\",b:\"^\"+n,e:\"}\",l:\"\\\\(?[a-zA-Z]+\\\\)?\",k:\"installer exports children extends imports facets alias (optional)\",c:[{cN:\"string\",b:\"\\\\.[a-zA-Z-_]+\",e:\"\\\\s|,|;\",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage(\"ruby\",function(e){var c=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r=\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",b={cN:\"yardoctag\",b:\"@[A-Za-z]+\"},a={cN:\"value\",b:\"#<\",e:\">\"},n=[e.C(\"#\",\"$\",{c:[b]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[b],r:10}),e.C(\"^__END__\",\"\\\\n$\")],s={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(n)},{cN:\"function\",bK:\"def\",e:\" |$|;\",r:0,c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[t,{b:c}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,s],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o=\"[>?]>\",l=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",N=[{b:/^\\s*=>/,cN:\"status\",starts:{e:\"$\",c:d}},{cN:\"prompt\",b:\"^(\"+o+\"|\"+l+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,c:n.concat(N).concat(d)}});hljs.registerLanguage(\"typescript\",function(e){return{aliases:[\"ts\"],k:{keyword:\"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private get set super interface extendsstatic constructor implements enum export import declare type protected\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void\"},c:[{cN:\"pi\",b:/^\\s*('|\")use strict('|\")/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>;/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/,r:0},{cN:\"constructor\",bK:\"constructor\",e:/\\{/,eE:!0,r:10},{cN:\"module\",bK:\"module\",e:/\\{/,eE:!0},{cN:\"interface\",bK:\"interface\",e:/\\{/,eE:!0},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0}]}});hljs.registerLanguage(\"handlebars\",function(e){var a=\"each in with if else unless bindattr action collection debugger log outlet template unbound view yield\";return{aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\"],cI:!0,sL:\"xml\",subLanguageMode:\"continuous\",c:[{cN:\"expression\",b:\"{{\",e:\"}}\",c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a}]}]}});hljs.registerLanguage(\"mercury\",function(e){var i={keyword:\"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure\",pragma:\"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses\",preprocessor:\"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing\",built_in:\"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure\"},r={cN:\"label\",b:\"XXX\",e:\"$\",eW:!0,r:0},t=e.inherit(e.CLCM,{b:\"%\"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:\"number\",b:\"0'.\\\\|0[box][0-9a-fA-F]*\"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:\"constant\",b:\"\\\\\\\\[abfnrtv]\\\\|\\\\\\\\x[0-9a-fA-F]*\\\\\\\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]\",r:0};o.c.push(l);var s={cN:\"built_in\",v:[{b:\"<=>\"},{b:\"<=\",r:0},{b:\"=>\",r:0},{b:\"/\\\\\\\\\"},{b:\"\\\\\\\\/\"}]},c={cN:\"built_in\",v:[{b:\":-\\\\|-->\"},{b:\"=\",r:0}]};return{aliases:[\"m\",\"moo\"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage(\"fix\",function(u){return{c:[{b:/[^\\u2401\\u0001]+/,e:/[\\u2401\\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\\u2401\\u0001=]+)/,e:/=([^\\u2401\\u0001=]+)/,rE:!0,rB:!1,cN:\"attribute\"},{b:/=/,e:/([\\u2401\\u0001])/,eE:!0,eB:!0,cN:\"string\"}]}],cI:!0}});hljs.registerLanguage(\"clojure\",function(e){var t={built_in:\"def cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},r=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+r+\"][\"+r+\"0-9/;:]*\",a=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",o={b:n,r:0},s={cN:\"number\",b:a,r:0},i=e.inherit(e.QSM,{i:null}),c=e.C(\";\",\"$\",{r:0}),d={cN:\"literal\",b:/\\b(true|false|nil)\\b/},l={cN:\"collection\",b:\"[\\\\[\\\\{]\",e:\"[\\\\]\\\\}]\"},m={cN:\"comment\",b:\"\\\\^\"+n},p=e.C(\"\\\\^\\\\{\",\"\\\\}\"),u={cN:\"attribute\",b:\"[:]\"+n},f={cN:\"list\",b:\"\\\\(\",e:\"\\\\)\"},h={eW:!0,r:0},y={k:t,l:n,cN:\"keyword\",b:n,starts:h},b=[f,i,m,p,c,u,l,s,d,o];return f.c=[e.C(\"comment\",\"\"),y,h],h.c=b,l.c=b,{aliases:[\"clj\"],i:/\\S/,c:[f,i,m,p,c,u,l,s,d]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={cN:\"variable\",v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},i=e.C(\"^(__END__|__DATA__)\",\"\\\\n$\",{r:5}),o=[e.BE,r,n],a=[n,e.HCM,i,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:o,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,i,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"sub\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",r:5},{cN:\"operator\",b:\"-\\\\w\\\\b\",r:0}];return r.c=a,s.c=a,{aliases:[\"pl\"],k:t,c:a}});hljs.registerLanguage(\"twig\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},a=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",r={cN:\"function\",bK:a,r:0,c:[t]},c={cN:\"filter\",b:/\\|[A-Za-z_]+:?/,k:\"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode\",c:[r]},n=\"autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim\";return n=n+\" \"+n.split(\" \").map(function(e){return\"end\"+e}).join(\" \"),{aliases:[\"craftcms\"],cI:!0,sL:\"xml\",subLanguageMode:\"continuous\",c:[e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:n,c:[c,r]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage(\"livecodeserver\",function(e){var r={cN:\"variable\",b:\"\\\\b[gtps][A-Z]+[A-Za-z0-9_\\\\-]*\\\\b|\\\\$_[A-Z]+\",r:0},t=[e.CBCM,e.HCM,e.C(\"--\",\"$\"),e.C(\"[^:]//\",\"$\")],a=e.inherit(e.TM,{v:[{b:\"\\\\b_*rig[A-Z]+[A-Za-z0-9_\\\\-]*\"},{b:\"\\\\b_[a-z0-9\\\\-]+\"}]}),o=e.inherit(e.TM,{b:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{cI:!1,k:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if\",constant:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",operator:\"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write\"},c:[r,{cN:\"keyword\",b:\"\\\\bend\\\\sif\\\\b\"},{cN:\"function\",bK:\"function\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"function\",bK:\"end\",e:\"$\",c:[o,a]},{cN:\"command\",bK:\"command on\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"command\",bK:\"end\",e:\"$\",c:[o,a]},{cN:\"preprocessor\",b:\"<\\\\?rev|<\\\\?lc|<\\\\?livecode\",r:10},{cN:\"preprocessor\",b:\"<\\\\?\"},{cN:\"preprocessor\",b:\"\\\\?>\"},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:\";$|^\\\\[|^=\"}});hljs.registerLanguage(\"step21\",function(e){var r=\"[A-Z_][A-Z0-9_.]*\",i=\"END-ISO-10303-21;\",l={literal:\"\",built_in:\"\",keyword:\"HEADER ENDSEC DATA\"},s={cN:\"preprocessor\",b:\"ISO-10303-21;\",r:10},t=[e.CLCM,e.CBCM,e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"label\",v:[{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"p21\",\"step\",\"stp\"],cI:!0,l:r,k:l,c:[{cN:\"preprocessor\",b:i,r:10},s].concat(t)}});hljs.registerLanguage(\"cpp\",function(t){var i={keyword:\"false int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using true class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue wchar_t inline delete alignof char16_t char32_t constexpr decltype noexcept nullptr static_assert thread_local restrict _Bool complex _Complex _Imaginary intmax_t uintmax_t int8_t uint8_t int16_t uint16_t int32_t uint32_t  int64_t uint64_t int_least8_t uint_least8_t int_least16_t uint_least16_t int_least32_t uint_least32_t int_least64_t uint_least64_t int_fast8_t uint_fast8_t int_fast16_t uint_fast16_t int_fast32_t uint_fast32_t int_fast64_t uint_fast64_t intptr_t uintptr_t atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong atomic_wchar_t atomic_char16_t atomic_char32_t atomic_intmax_t atomic_uintmax_t atomic_intptr_t atomic_uintptr_t atomic_size_t atomic_ptrdiff_t atomic_int_least8_t atomic_int_least16_t atomic_int_least32_t atomic_int_least64_t atomic_uint_least8_t atomic_uint_least16_t atomic_uint_least32_t atomic_uint_least64_t atomic_int_fast8_t atomic_int_fast16_t atomic_int_fast32_t atomic_int_fast64_t atomic_uint_fast8_t atomic_uint_fast16_t atomic_uint_fast32_t atomic_uint_fast64_t\",built_in:\"std string cin cout cerr clog stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf\"};return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:i,i:\"</\",c:[t.CLCM,t.CBCM,t.QSM,{cN:\"string\",b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"},{cN:\"number\",b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},t.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma\",c:[{b:/\\\\\\n/,r:0},{b:'include\\\\s*[<\"]',e:'[>\"]',k:\"include\",i:\"\\\\n\"},t.CLCM]},{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:i,c:[\"self\"]},{b:t.IR+\"::\",k:i},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t.IR+\"\\\\s+)+\"+t.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:i,c:[{b:t.IR+\"\\\\s*\\\\(\",rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:i,r:0,c:[t.CBCM]},t.CLCM,t.CBCM]}]}});hljs.registerLanguage(\"vala\",function(e){return{k:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object\",literal:\"false true null\"},c:[{cN:\"class\",bK:\"class interface delegate namespace\",e:\"{\",eE:!0,i:\"[^,:\\\\n\\\\s\\\\.]\",c:[e.UTM]},e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:5},e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"^#\",e:\"$\",r:2},{cN:\"constant\",b:\" [A-Z_]+ \",r:0}]}});hljs.registerLanguage(\"http\",function(t){return{aliases:[\"https\"],i:\"\\\\S\",c:[{cN:\"status\",b:\"^HTTP/[0-9\\\\.]+\",e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{cN:\"request\",b:\"^[A-Z]+ (.*?) HTTP/[0-9\\\\.]+$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{cN:\"string\",e:\"$\"}},{b:\"\\\\n\\\\n\",starts:{sL:\"\",eW:!0}}]}});hljs.registerLanguage(\"avrasm\",function(r){return{cI:!0,l:\"\\\\.?\"+r.IR,k:{keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",preprocessor:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},c:[r.CBCM,r.C(\";\",\"$\",{r:0}),r.CNM,r.BNM,{cN:\"number\",b:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},r.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"},{cN:\"label\",b:\"^[A-Za-z0-9_.$]+:\"},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"localvars\",b:\"@[0-9]+\"}]}});hljs.registerLanguage(\"aspectj\",function(e){var t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",i=\"get set args call\";return{k:t,i:/<\\//,c:[{cN:\"javadoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*/\",r:0,c:[{cN:\"javadoctag\",b:\"(^|\\\\s)@[A-Za-z]+\"}]},e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"aspect\",bK:\"aspect\",e:/[{;=]/,eE:!0,i:/[:;\"\\[\\]]/,c:[{bK:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UTM,{b:/\\([^\\)]*/,e:/[)]+/,k:t+\" \"+i,eE:!1}]},{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,r:0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"pointcut after before around throwing returning\",e:/[)]/,eE:!1,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",k:t+\" \"+i},e.QSM]},{bK:\"new throw\",r:0},{cN:\"function\",b:/\\w+ +\\w+(\\.)?\\w+\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"rib\",function(e){return{k:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",i:\"</\",c:[e.HCM,e.CNM,e.ASM,e.QSM]}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"prompt\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},l={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},c={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,l,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,l,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,c]},{cN:\"decorator\",b:/@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"axapta\",function(e){return{k:\"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod\",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:\":\",c:[{bK:\"extends implements\"},e.UTM]}]}});hljs.registerLanguage(\"nix\",function(e){var t={keyword:\"rec with let in inherit assert if else then\",constant:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},i={cN:\"subst\",b:/\\$\\{/,e:/}/,k:t},r={cN:\"variable\",b:/[a-zA-Z0-9-_]+(\\s*=)/},n={cN:\"string\",b:\"''\",e:\"''\",c:[i]},s={cN:\"string\",b:'\"',e:'\"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:[\"nixos\"],k:t,c:a}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"chunk\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"header\",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\\-\\-\\-/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+\\+\\+/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"parser3\",function(r){var e=r.C(\"{\",\"}\",{c:[\"self\"]});return{sL:\"xml\",r:0,c:[r.C(\"^#\",\"$\"),r.C(\"\\\\^rem{\",\"}\",{r:10,c:[e]}),{cN:\"preprocessor\",b:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",r:10},{cN:\"title\",b:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{cN:\"variable\",b:\"\\\\$\\\\{?[\\\\w\\\\-\\\\.\\\\:]+\\\\}?\"},{cN:\"keyword\",b:\"\\\\^[\\\\w\\\\-\\\\.\\\\:]+\"},{cN:\"number\",b:\"\\\\^#[0-9a-fA-F]+\"},r.CNM]}});hljs.registerLanguage(\"django\",function(e){var t={cN:\"filter\",b:/\\|[A-Za-z]+:?/,k:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\",c:[{cN:\"argument\",b:/\"/,e:/\"/},{cN:\"argument\",b:/'/,e:/'/}]};return{aliases:[\"jinja\"],cI:!0,sL:\"xml\",subLanguageMode:\"continuous\",c:[e.C(/\\{%\\s*comment\\s*%}/,/\\{%\\s*endcomment\\s*%}/),e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\",c:[t]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage(\"rust\",function(e){var t=e.inherit(e.CBCM);return t.c.push(\"self\"),{aliases:[\"rs\"],k:{keyword:\"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self sizeof static struct super trait true type typeof unsafe unsized use virtual while yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool\",built_in:\"assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!\"},l:e.IR+\"!?\",i:\"</\",c:[e.CLCM,t,e.inherit(e.QSM,{i:null}),{cN:\"string\",b:/r(#*)\".*?\"\\1(?!#)/},{cN:\"string\",b:/'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/},{cN:\"number\",b:/\\b(0[xbo][A-Fa-f0-9_]+|\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)([uif](8|16|32|64|size))?/,r:0},{cN:\"function\",bK:\"fn\",e:\"(\\\\(|<)\",eE:!0,c:[e.UTM]},{cN:\"preprocessor\",b:\"#\\\\!?\\\\[\",e:\"\\\\]\"},{bK:\"type\",e:\"(=|<)\",c:[e.UTM],i:\"\\\\S\"},{bK:\"trait enum\",e:\"({|<)\",c:[e.UTM],i:\"\\\\S\"},{b:e.IR+\"::\"},{b:\"->\"}]}});hljs.registerLanguage(\"vhdl\",function(e){var t=\"\\\\d(_|\\\\d)*\",r=\"[eE][-+]?\"+t,n=t+\"(\\\\.\"+t+\")?(\"+r+\")?\",o=\"\\\\w+\",i=t+\"#\"+o+\"(\\\\.\"+o+\")?#(\"+r+\")?\",a=\"\\\\b(\"+i+\"|\"+n+\")\";return{cI:!0,k:{keyword:\"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor\",typename:\"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector\"},i:\"{\",c:[e.CBCM,e.C(\"--\",\"$\"),e.QSM,{cN:\"number\",b:a,r:0},{cN:\"literal\",b:\"'(U|X|0|1|Z|W|L|H|-)'\",c:[e.BE]},{cN:\"attribute\",b:\"'[A-Za-z](_?[A-Za-z0-9])*\",c:[e.BE]}]}});hljs.registerLanguage(\"ocaml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"cmake\",function(e){return{aliases:[\"cmake.in\"],cI:!0,k:{keyword:\"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or\",operator:\"equal less greater strless strgreater strequal matches\"},c:[{cN:\"envvar\",b:\"\\\\${\",e:\"}\"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage(\"1c\",function(c){var e=\"[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*\",r=\"возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт\",t=\"ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку  стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон\",i={cN:\"dquote\",b:'\"\"'},n={cN:\"string\",b:'\"',e:'\"|$',c:[i]},a={cN:\"string\",b:\"\\\\|\",e:'\"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:\"function\",b:\"(процедура|функция)\",e:\"$\",l:e,k:\"процедура функция\",c:[c.inherit(c.TM,{b:e}),{cN:\"tail\",eW:!0,c:[{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:e,k:\"знач\",c:[n,a]},{cN:\"export\",b:\"экспорт\",eW:!0,l:e,k:\"экспорт\",c:[c.CLCM]}]},c.CLCM]},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"date\",b:\"'\\\\d{2}\\\\.\\\\d{2}\\\\.(\\\\d{2}|\\\\d{4})'\"}]}});hljs.registerLanguage(\"tcl\",function(e){return{aliases:[\"tk\"],k:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",c:[e.C(\";[ \\\\t]*#\",\"$\"),e.C(\"^[ \\\\t]*#\",\"$\"),{bK:\"proc\",e:\"[\\\\{]\",eE:!0,c:[{cN:\"symbol\",b:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"[ \\\\t\\\\n\\\\r]\",eW:!0,eE:!0}]},{cN:\"variable\",eE:!0,v:[{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\\\(([a-zA-Z0-9_])*\\\\)\",e:\"[^a-zA-Z0-9_\\\\}\\\\$]\"},{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"(\\\\))?[^a-zA-Z0-9_\\\\}\\\\$]\"}]},{cN:\"string\",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:\"number\",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage(\"groovy\",function(e){return{k:{typename:\"byte short char int long boolean float double void\",literal:\"true false null\",keyword:\"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},c:[e.CLCM,{cN:\"javadoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*//*\",r:0,c:[{cN:\"javadoctag\",b:\"(^|\\\\s)@[A-Za-z]+\"}]},e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},{cN:\"string\",b:\"'''\",e:\"'''\"},{cN:\"string\",b:\"\\\\$/\",e:\"/\\\\$\",r:10},e.ASM,{cN:\"regexp\",b:/~?\\/[^\\/\\n]+\\//,c:[e.BE]},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.BNM,{cN:\"class\",bK:\"class interface trait enum\",e:\"{\",i:\":\",c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{cN:\"string\",b:/[^\\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\\?/,e:/\\:/},{cN:\"label\",b:\"^\\\\s*[A-Za-z0-9_$]+:\",r:0}]}});hljs.registerLanguage(\"erlang-repl\",function(r){return{k:{special_functions:\"spawn spawn_link self\",reserved:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},c:[{cN:\"prompt\",b:\"^[0-9]+> \",r:10},r.C(\"%\",\"$\"),{cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},r.ASM,r.QSM,{cN:\"constant\",b:\"\\\\?(::)?([A-Z]\\\\w*(::)?)+\"},{cN:\"arrow\",b:\"->\"},{cN:\"ok\",b:\"ok\"},{cN:\"exclamation_mark\",b:\"!\"},{cN:\"function_or_atom\",b:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",r:0},{cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_']*\",r:0}]}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{built_in:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{cN:\"url\",b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"title\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"mathematica\",function(e){return{aliases:[\"mma\"],l:\"(\\\\$|\\\\b)\"+e.IR+\"\\\\b\",k:\"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber\",\nc:[{cN:\"comment\",b:/\\(\\*/,e:/\\*\\)/},e.ASM,e.QSM,e.CNM,{cN:\"list\",b:/\\{/,e:/\\}/,i:/:/}]}});hljs.registerLanguage(\"fsharp\",function(e){var t={b:\"<\",e:\">\",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:[\"fs\"],k:\"yield! return! let! do!abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",c:[{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),{cN:\"class\",bK:\"type\",e:\"\\\\(|=|$\",eE:!0,c:[e.UTM,t]},{cN:\"annotation\",b:\"\\\\[<\",e:\">\\\\]\",r:10},{cN:\"attribute\",b:\"\\\\B('[A-Za-z])\\\\b\",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});hljs.registerLanguage(\"verilog\",function(e){return{aliases:[\"v\"],cI:!0,k:{keyword:\"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor\",typename:\"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor\"},c:[e.CBCM,e.CLCM,e.QSM,{cN:\"number\",b:\"\\\\b(\\\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+\",c:[e.BE],r:0},{cN:\"typename\",b:\"\\\\.\\\\w+\",r:0},{cN:\"value\",b:\"#\\\\((?!parameter).+\\\\)\"},{cN:\"keyword\",b:\"\\\\+|-|\\\\*|/|%|<|>|=|#|`|\\\\!|&|\\\\||@|:|\\\\^|~|\\\\{|\\\\}\",r:0}]}});hljs.registerLanguage(\"dos\",function(e){var r=e.C(/@?rem\\b/,/$/,{r:10}),t={cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0};return{aliases:[\"bat\",\"cmd\"],cI:!0,k:{flow:\"if else goto for in do call exit not exist errorlevel defined\",operator:\"equ neq lss leq gtr geq\",keyword:\"shift cd dir echo setlocal endlocal set pause copy\",stream:\"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux\",winutils:\"ping net ipconfig taskkill xcopy ren del\",built_in:\"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol\"},c:[{cN:\"envvar\",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:\"function\",b:t.b,e:\"goto:eof\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),r]},{cN:\"number\",b:\"\\\\b\\\\d+\",r:0},r]}});hljs.registerLanguage(\"gherkin\",function(e){return{aliases:[\"feature\"],k:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",c:[{cN:\"keyword\",b:\"\\\\*\"},e.C(\"@[^@\\r\\n\t ]+\",\"$\"),{cN:\"string\",b:\"\\\\|\",e:\"\\\\$\"},{cN:\"variable\",b:\"<\",e:\">\"},e.HCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.QSM]}});hljs.registerLanguage(\"xml\",function(t){var e=\"[A-Za-z0-9\\\\._:-]+\",s={b:/<\\?(php)?(?!\\w)/,e:/\\?>/,sL:\"php\",subLanguageMode:\"continuous\"},c={eW:!0,i:/</,r:0,c:[s,{cN:\"attribute\",b:e,r:0},{b:\"=\",r:0,c:[{cN:\"value\",c:[s],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\\/>]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},t.C(\"<!--\",\"-->\",{r:10}),{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[c],starts:{e:\"</style>\",rE:!0,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[c],starts:{e:\"</script>\",rE:!0,sL:\"\"}},s,{cN:\"pi\",b:/<\\?\\w+/,e:/\\?>/,r:10},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:/[^ \\/><\\n\\t]+/,r:0},c]}]}});hljs.registerLanguage(\"autohotkey\",function(e){var r={cN:\"escape\",b:\"`[\\\\s\\\\S]\"},c=e.C(\";\",\"$\",{r:0}),n=[{cN:\"built_in\",b:\"A_[a-zA-Z0-9]+\"},{cN:\"built_in\",bK:\"ComSpec Clipboard ClipboardAll ErrorLevel\"}];return{cI:!0,k:{keyword:\"Break Continue Else Gosub If Loop Return While\",literal:\"A true false NOT AND OR\"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:\"number\",b:e.NR,r:0},{cN:\"var_expand\",b:\"%\",e:\"%\",i:\"\\\\n\",c:[r]},{cN:\"label\",c:[r],v:[{b:'^[^\\\\n\";]+::(?!=)'},{b:'^[^\\\\n\";]+:(?!=)',r:0}]},{b:\",\\\\s*,\",r:10}])}});hljs.registerLanguage(\"r\",function(e){var r=\"([a-zA-Z]|\\\\.[a-zA-Z.])[a-zA-Z0-9._]*\";return{c:[e.HCM,{b:r,l:r,k:{keyword:\"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...\",literal:\"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{b:\"`\",e:\"`\",r:0},{cN:\"string\",c:[e.BE],v:[{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]}]}});hljs.registerLanguage(\"cs\",function(e){var r=\"abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield\",t=e.IR+\"(<\"+e.IR+\">)?\";return{aliases:[\"csharp\"],k:r,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line region endregion pragma checksum\"},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},e.ASM,e.QSM,e.CNM,{bK:\"class namespace interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage(\"nsis\",function(e){var t={cN:\"symbol\",b:\"\\\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)\"},n={cN:\"constant\",b:\"\\\\$+{[a-zA-Z0-9_]+}\"},i={cN:\"variable\",b:\"\\\\$+[a-zA-Z0-9_]+\",i:\"\\\\(\\\\){}\"},r={cN:\"constant\",b:\"\\\\$+\\\\([a-zA-Z0-9_]+\\\\)\"},o={cN:\"params\",b:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},l={cN:\"constant\",b:\"\\\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)\"};return{cI:!1,k:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user \"},c:[e.HCM,e.CBCM,{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[{cN:\"symbol\",b:\"\\\\$(\\\\\\\\(n|r|t)|\\\\$)\"},t,n,i,r]},e.C(\";\",\"$\",{r:0}),{cN:\"function\",bK:\"Function PageEx Section SectionGroup SubSection\",e:\"$\"},l,n,i,r,o,e.NM,{cN:\"literal\",b:e.IR+\"::\"+e.IR}]}});hljs.registerLanguage(\"less\",function(e){var r=\"[\\\\w-]+\",t=\"(\"+r+\"|@{\"+r+\"})\",a=[],c=[],n=function(e){return{cN:\"string\",b:\"~?\"+e+\".*?\"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+\"\\\\(\",e:\"\\\\(\",rB:!0,eE:!0,r:0},a)},b={b:\"\\\\(\",e:\"\\\\)\",c:c,r:0};c.push(e.CLCM,e.CBCM,n(\"'\"),n('\"'),e.CSSNM,i(\"hexcolor\",\"#[0-9A-Fa-f]+\\\\b\"),s(\"function\",\"(url|data-uri)\",{starts:{cN:\"string\",e:\"[\\\\)\\\\n]\",eE:!0}}),s(\"function\",r),b,i(\"variable\",\"@@?\"+r,10),i(\"variable\",\"@{\"+r+\"}\"),i(\"built_in\",\"~?`[^`]*?`\"),{cN:\"attribute\",b:r+\"\\\\s*:\",e:\":\",rB:!0,eE:!0});var o=c.concat({b:\"{\",e:\"}\",c:a}),u={bK:\"when\",eW:!0,c:[{bK:\"and not\"}].concat(c)},C={cN:\"attribute\",b:t,e:\":\",eE:!0,c:[e.CLCM,e.CBCM],i:/\\S/,starts:{e:\"[;}]\",rE:!0,c:c,i:\"[<=$]\"}},l={cN:\"at_rule\",b:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{e:\"[;{}]\",rE:!0,c:c,r:0}},d={cN:\"variable\",v:[{b:\"@\"+r+\"\\\\s*:\",r:15},{b:\"@\"+r}],starts:{e:\"[;}]\",rE:!0,c:o}},p={v:[{b:\"[\\\\.#:&\\\\[]\",e:\"[;{}]\"},{b:t+\"[^;]*{\",e:\"{\"}],rB:!0,rE:!0,i:\"[<='$\\\"]\",c:[e.CLCM,e.CBCM,u,i(\"keyword\",\"all\\\\b\"),i(\"variable\",\"@{\"+r+\"}\"),i(\"tag\",t+\"%?\",0),i(\"id\",\"#\"+t),i(\"class\",\"\\\\.\"+t,0),i(\"keyword\",\"&\",0),s(\"pseudo\",\":not\"),s(\"keyword\",\":extend\"),i(\"pseudo\",\"::?\"+t),{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\"},{b:\"\\\\(\",e:\"\\\\)\",c:o},{b:\"!important\"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:\"[=>'/<($\\\"]\",c:a}});hljs.registerLanguage(\"pf\",function(t){var o={cN:\"variable\",b:/\\$[\\w\\d#@][\\w\\d_]*/},e={cN:\"variable\",b:/</,e:/>/};return{aliases:[\"pf.conf\"],l:/[a-z0-9_<>-]+/,k:{built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage(\"lasso\",function(e){var r=\"[a-zA-Z_][a-zA-Z0-9_.]*\",a=\"<\\\\?(lasso(script)?|=)\",t=\"\\\\]|\\\\?>\",s={literal:\"true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited\",keyword:\"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},n=e.C(\"<!--\",\"-->\",{r:0}),o={cN:\"preprocessor\",b:\"\\\\[noprocess\\\\]\",starts:{cN:\"markup\",e:\"\\\\[/noprocess\\\\]\",rE:!0,c:[n]}},i={cN:\"preprocessor\",b:\"\\\\[/noprocess|\"+a},l={cN:\"variable\",b:\"'\"+r+\"'\"},c=[e.CLCM,{cN:\"javadoc\",b:\"/\\\\*\\\\*!\",e:\"\\\\*/\",c:[e.PWM]},e.CBCM,e.inherit(e.CNM,{b:e.CNR+\"|(-?infinity|nan)\\\\b\"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"variable\",v:[{b:\"[#$]\"+r},{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]},{cN:\"tag\",b:\"::\\\\s*\",e:r,i:\"\\\\W\"},{cN:\"attribute\",v:[{b:\"-\"+e.UIR,r:0},{b:\"(\\\\.\\\\.\\\\.)\"}]},{cN:\"subst\",v:[{b:\"->\\\\s*\",c:[l]},{b:\":=|/(?!\\\\w)=?|[-+*%=<>&|!?\\\\\\\\]+\",r:0}]},{cN:\"built_in\",b:\"\\\\.\\\\.?\\\\s*\",r:0,c:[l]},{cN:\"class\",bK:\"define\",rE:!0,e:\"\\\\(|=>\",c:[e.inherit(e.TM,{b:e.UIR+\"(=(?!>))?\"})]}];return{aliases:[\"ls\",\"lassoscript\"],cI:!0,l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[|\"+a,rE:!0,r:0,c:[n]}},o,i,{cN:\"preprocessor\",b:\"\\\\[no_square_brackets\",starts:{e:\"\\\\[/no_square_brackets\\\\]\",l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[noprocess\\\\]|\"+a,rE:!0,c:[n]}},o,i].concat(c)}},{cN:\"preprocessor\",b:\"\\\\[\",r:0},{cN:\"shebang\",b:\"^#!.+lasso9\\\\b\",r:10}].concat(c)}});hljs.registerLanguage(\"prolog\",function(c){var r={cN:\"atom\",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:\"name\",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\\(/,e:/\\)/,r:0},e={b:/\\[/,e:/\\]/},n={cN:\"comment\",b:/%/,e:/$/,c:[c.PWM]},t={cN:\"string\",b:/`/,e:/`/,c:[c.BE]},g={cN:\"string\",b:/0\\'(\\\\\\'|.)/},N={cN:\"string\",b:/0\\'\\\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\\.$/}])}});hljs.registerLanguage(\"oxygene\",function(e){var r=\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\",t=e.C(\"{\",\"}\",{r:0}),a=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{r:10}),n={cN:\"string\",b:\"'\",e:\"'\",c:[{b:\"''\"}]},o={cN:\"string\",b:\"(#\\\\d+)+\"},i={cN:\"function\",bK:\"function constructor destructor procedure method\",e:\"[:;]\",k:\"function constructor|10 destructor|10 procedure|10 method|10\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*|</|=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:\"class\",b:\"=\\\\bclass\\\\b\",e:\"end;\",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage(\"applescript\",function(e){var t=e.inherit(e.QSM,{i:\"\"}),r={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CNM,t]},o=e.C(\"--\",\"$\"),n=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\",o]}),a=[o,n,e.HCM];return{aliases:[\"osascript\"],k:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",constant:\"AppleScript false linefeed return pi quote result space tab true\",type:\"alias application boolean class constant date file integer list number real record string text\",command:\"activate beep count delay launch log offset read round run say summarize write\",property:\"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},c:[t,e.CNM,{cN:\"type\",b:\"\\\\bPOSIX file\\\\b\"},{cN:\"command\",b:\"\\\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\\\b|^\\\\s*return\\\\b\"},{cN:\"constant\",b:\"\\\\b(text item delimiters|current application|missing value)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\\\b\"},{cN:\"property\",b:\"\\\\b(POSIX path|(date|time) string|quoted form)\\\\b\"},{cN:\"function_start\",bK:\"on\",i:\"[${=;\\\\n]\",c:[e.UTM,r]}].concat(a),i:\"//|->|=>\"}});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{cN:\"constant\",e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"title\",b:/^[\\w]+:\\s*$/},{cN:\"phony\",b:/^\\.PHONY:/,e:/$/,k:\".PHONY\",l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"dust\",function(e){var a=\"if eq ne lt lte gt gte select default math sep\";return{aliases:[\"dst\"],cI:!0,sL:\"xml\",subLanguageMode:\"continuous\",c:[{cN:\"expression\",b:\"{\",e:\"}\",r:0,c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a,r:0}]}]}});hljs.registerLanguage(\"clojure-repl\",function(e){return{c:[{cN:\"prompt\",b:/^([\\w.-]+|\\s*#_)=>/,starts:{e:/$/,sL:\"clojure\",subLanguageMode:\"continuous\"}}]}});hljs.registerLanguage(\"dart\",function(e){var t={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"}\",k:\"true false null this is new super\"},r={cN:\"string\",v:[{b:\"r'''\",e:\"'''\"},{b:'r\"\"\"',e:'\"\"\"'},{b:\"r'\",e:\"'\",i:\"\\\\n\"},{b:'r\"',e:'\"',i:\"\\\\n\"},{b:\"'''\",e:\"'''\",c:[e.BE,t]},{b:'\"\"\"',e:'\"\"\"',c:[e.BE,t]},{b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE,t]},{b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:\"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with\",literal:\"abstract as dynamic export external factory get implements import library operator part set static typedef\",built_in:\"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList\"};return{k:n,c:[r,{cN:\"dartdoc\",b:\"/\\\\*\\\\*\",e:\"\\\\*/\",sL:\"markdown\",subLanguageMode:\"continuous\"},{cN:\"dartdoc\",b:\"///\",e:\"$\",sL:\"markdown\",subLanguageMode:\"continuous\"},e.CLCM,e.CBCM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{b:\"=>\"}]}});"
  },
  {
    "path": "doc/themes/boost-experimental/js/theme.js",
    "content": "$( document ).ready(function() {\n\n    // Shift nav in mobile when clicking the menu.\n    $(document).on('click', \"[data-toggle='wy-nav-top']\", function() {\n      $(\"[data-toggle='wy-nav-shift']\").toggleClass(\"shift\");\n      $(\"[data-toggle='rst-versions']\").toggleClass(\"shift\");\n    });\n\n    // Close menu when you click a link.\n    $(document).on('click', \".wy-menu-vertical .current ul li a\", function() {\n      $(\"[data-toggle='wy-nav-shift']\").removeClass(\"shift\");\n      $(\"[data-toggle='rst-versions']\").toggleClass(\"shift\");\n    });\n\n    $(document).on('click', \"[data-toggle='rst-current-version']\", function() {\n      $(\"[data-toggle='rst-versions']\").toggleClass(\"shift-up\");\n    });\n\n    // Make tables responsive\n    $(\"table.docutils:not(.field-list)\").wrap(\"<div class='wy-table-responsive'></div>\");\n\n    hljs.initHighlightingOnLoad();\n\n    $('table').addClass('docutils');\n});\n\nwindow.SphinxRtdTheme = (function (jquery) {\n    var stickyNav = (function () {\n        var navBar,\n            win,\n            stickyNavCssClass = 'stickynav',\n            applyStickNav = function () {\n                if (navBar.height() <= win.height()) {\n                    navBar.addClass(stickyNavCssClass);\n                } else {\n                    navBar.removeClass(stickyNavCssClass);\n                }\n            },\n            enable = function () {\n                applyStickNav();\n                win.on('resize', applyStickNav);\n            },\n            init = function () {\n                navBar = jquery('nav.wy-nav-side:first');\n                win    = jquery(window);\n            };\n        jquery(init);\n        return {\n            enable : enable\n        };\n    }());\n    return {\n        StickyNav : stickyNav\n    };\n}($));\n"
  },
  {
    "path": "doc/themes/boost-experimental/js/utility.js",
    "content": "$(document).ready(function () {\n    $('img[alt=\"IFRAME\"]').each(function () {\n      var id = $(this).attr('src');\n      var html = '<iframe style=\"width: 100%;height: 850px;\" src=\"' + id + '\" frameborder=\"0\" allowfullscreen></iframe>';\n      $(this).replaceWith(html);\n    });\n});\n$(document).ready(function () {\n    $('img[alt=\"YOUTUBE\"]').each(function () {\n        var id = $(this).attr('src').split('/')[$(this).attr('src').split('/').length - 1];\n        var video = '<iframe style=\"width: 100%;height: 450px;\" src=\"https://www.youtube.com/embed/' + id + '?rel=0&amp;showinfo=0\" frameborder=\"0\" allowfullscreen></iframe>';\n        $(this).replaceWith(video);\n    });\n});\n"
  },
  {
    "path": "doc/themes/boost-experimental/license/highlight.js/LICENSE",
    "content": "Copyright (c) 2006, Ivan Sagalaev\nAll rights reserved.\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n    * Redistributions of source code must retain the above copyright\n      notice, this list of conditions and the following disclaimer.\n    * Redistributions in binary form must reproduce the above copyright\n      notice, this list of conditions and the following disclaimer in the\n      documentation and/or other materials provided with the distribution.\n    * Neither the name of highlight.js nor the names of its contributors \n      may be used to endorse or promote products derived from this software \n      without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "doc/themes/boost-experimental/search.html",
    "content": "{% extends \"base.html\" %}\n\n{% block extrahead %}\n  <script>var base_url = '{{ base_url }}';</script>\n  <script data-main=\"{{ base_url }}/mkdocs/js/search.js\" src=\"{{ base_url }}/mkdocs/js/require.js\"></script>\n{% endblock %}\n\n{% block content %}\n\n  <h1 id=\"search\">Search Results</h1>\n\n  <form id=\"content_search\" action=\"search.html\">\n    <span role=\"status\" aria-live=\"polite\" class=\"ui-helper-hidden-accessible\"></span>\n    <input name=\"q\" id=\"mkdocs-search-query\" type=\"text\" class=\"search_input search-query ui-autocomplete-input\" placeholder=\"Search the Docs\" autocomplete=\"off\" autofocus>\n  </form>\n\n  <div id=\"mkdocs-search-results\">\n    Sorry, page not found.\n  </div>\n\n{% endblock %}\n"
  },
  {
    "path": "doc/themes/boost-experimental/searchbox.html",
    "content": "<div role=\"search\">\n  <form id =\"rtd-search-form\" class=\"wy-form\" action=\"{{ base_url }}/search.html\" method=\"get\">\n    <input type=\"text\" name=\"q\" placeholder=\"Search docs\" />\n  </form>\n</div>\n"
  },
  {
    "path": "doc/themes/boost-experimental/toc.html",
    "content": "{% if nav_item.children %}\n    <ul class=\"subnav\">\n    <li><span>{{ nav_item.title }}</span></li>\n\n        {% for nav_item in nav_item.children %}\n            {% include 'toc.html' %}\n        {% endfor %}\n    </ul>\n{% else %}\n    <li class=\"toctree-l1 {% if nav_item.active%}current{%endif%}\">\n        <a class=\"{% if nav_item.active%}current{%endif%}\" href=\"{{ nav_item.url }}\">{{ nav_item.title }}</a>\n        {% if nav_item == current_page %}\n            <ul>\n            {% for toc_item in toc %}\n                <li class=\"toctree-l3\"><a href=\"{{ toc_item.url }}\">{{ toc_item.title }}</a></li>\n                {% for toc_item in toc_item.children %}\n                    <li><a class=\"toctree-l4\" href=\"{{ toc_item.url }}\">{{ toc_item.title }}</a></li>\n                {% endfor %}\n            {% endfor %}\n            </ul>\n        {% endif %}\n    </li>\n{% endif %}\n"
  },
  {
    "path": "doc/themes/boost-experimental/versions.html",
    "content": "<div class=\"rst-versions\" role=\"note\" style=\"cursor: pointer\">\n    <span class=\"rst-current-version\" data-toggle=\"rst-current-version\">\n      {% if repo_name == 'GitHub' %}\n          <a href=\"{{ repo_url }}\" class=\"icon icon-github\" style=\"float: left; color: #fcfcfc\"> GitHub</a>\n      {% elif repo_name == 'Bitbucket' %}\n          <a href=\"{{ repo_url }}\" class=\"icon icon-bitbucket\" style=\"float: left; color: #fcfcfc\"> BitBucket</a>\n      {% endif %}\n      {% if previous_page %}\n        <span><a href=\"{{ previous_page.url }}\" style=\"color: #fcfcfc;\">&laquo; Previous</a></span>\n      {% endif %}\n      {% if next_page %}\n        <span style=\"margin-left: 15px\"><a href=\"{{ next_page.url }}\" style=\"color: #fcfcfc\">Next &raquo;</a></span>\n      {% endif %}\n    </span>\n</div>\n"
  },
  {
    "path": "doc/try_it.md",
    "content": "![CPP*](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/try_it.cpp)\n"
  },
  {
    "path": "doc/tutorial.md",
    "content": "###0. [Pre] Refactor towards DI\n\nIf you write a new application you can skip this step and go directly to [step 1](#1-basic-create-objects-tree).\nHowever, if you have a lot code which is not using DI and you wonder what can it be refactored,\nthen you are in the right place.\n\nBasically, there is a only one (big) step to get all benefits of Dependency Injection.\nYou have to separate creation logic from business logic, which means that your code\nshould be free of object creation inside other objects...\n\n```cpp\nclass controller {\npublic:\n  controller(config c) \n    : model_(std::make_unique<model>(c))\n  { }\n\n  void run();\n\nprivate:\n  std::unique_ptr<model> model_;\n};\n\nint main() {\n  controller controller_;\n  controller_.run();\n}\n```\n\nInstead, DI approach would look like that...\n\n```cpp\nclass controller {\npublic:\n  explicit controller(model& m) : model_(m) {}\n  void run();\n\nprivate:\n  model& model_;\n};\n\nint main() {\n  model model_;\n  controller controller_{model_};\n  controller_.run();\n}\n```\n\nSo, what happened here? We just took the responsibility of creation `model` out from the `controller`. In other words,\nwe have split the creation logic and the business logic.\n\nThat's basically everything you have to remember in order to create applications using DI.\nNevertheless, please, be careful and don't 'carry out' your dependencies. What is meant by that,\nis NOT to pass an object into constructor if it won't be stored ([Law of Demeter]).\n\n```cpp\nclass app {\npublic:\n  explicit app(model& m) : controller_(m) {} // BAD\n  explicit app(controller& c) : controller_(c) {} // GOOD\n\nprivate:\n  controller controller_;\n};\nclass controller {\npublic:\n  explicit controller(model&);\n};\n\nint main() {\n  model model_;\n  app app_{model_};\n}\n```\n\nAdditionally, you can consider using `strong typedefs` which will make your constructor interface cleaner/stronger.\n\n```cpp\nclass button {\npublic:\n  button(int, int); // weak constructor interface (cpp file has to checked in order to figure out the meaning of int's)\n};\n```\n\n`button` constructor is not clear because `int's` are ambiguous and both present just a number.\nIt can be seen more clearly in the following example.\n\n```cpp\nbutton{10, 15}; // OK, but what's 10? what's 15? Can I swap them?\nbutton{15, 10}; // Hmm, potenial missue of the constructor\n```\n\nA better approach would be to introduce a strong typedefs for both numbers\nin order to avoid potential misuse of the constructor, especially when used by other/external teams.\n\n```cpp\nstruct width {\n  int value;\n  constexpr operator int() const { return value; }\n};\nstruct height {\n  int value;\n  constexpr operator int() const { return value; }\n};\nclass button {\npublic:\n  button(width, height); // strong constructor interface\n};\n```\n\nRight now, `button` constructor is much easier to follow (no need to check cpp file) because\nit expresses the intention.\n\n```cpp\nbutton{width{10}, height{15}}; // OK, declartive approach\nbutton{height{10}, with{15}}; // Compile Error\nbutton{10, 15}; // Compile Error\n```\n\nSimilar mechanism is used by [Boost].DI to achieve [named] parameters which and it will be presented in this tutorial later on.\n\n###1. [Basic] Create objects tree\n\nBefore we will get into creating objects tree, let's first create a 'dummy' example.\nIn order to do so, firstly, we have to include (one and only) [boost/di.hpp](https://raw.githubusercontent.com/boost-experimental/di/cpp14/include/boost/di.hpp) header\n\n```sh\nwget https://raw.githubusercontent.com/boost-experimental/di/cpp14/include/boost/di.hpp\n```\n\nand declare a convenient `di` namespace alias.\n\n```cpp\n#include <boost/di.hpp>\nnamespace di = boost::di;\n```\n\nThat is enough to try out `[Boost].DI`!\n\nTo have a first complete and working example we just have to add `main` function as usual.\n\n```cpp\nint main() {}\n```\n\nand compile our code using compiler supporting C++14 standard (Clang-3.4/GCC-5/MSVC-2015).\n\n```\n$CXX -std=c++14 example.cpp\n```\n\nCongrats, you are now ready to check out `[Boost].DI` features!\n\n---\n\nLet's move on to creating objects tree. Applications, usually, consists of a number of objects\nwhich have to be instantiated. For example, let's consider a simplified Model View Controller code...\n\n[![Create objects tree](images/tutorial_create_objects_tree.png)](images/tutorial_create_objects_tree.png)\n\nThe usual approach to create `app` would be following...\n\n```cpp\nrenderer renderer_;\nview view_{\"\", renderer_};\nmodel model_;\ncontroller controller_{model_, view_};\nuser user_;\napp app_{controller_, user_};\n```\n\nWhich is alright for a really small applications. However, it's really tedious to maintain.\nJust imagine, that we have to change something here. For instance, `view` may need a new object `window`\nor, even worse, we refactored the code and dependencies order has changed - yea **ORDER** of above is important!\n**ANY** change in these classes constructors require developer input to maintain above boilerplate code!\nNot fun, not fun at all :(\n\nRight now imagine that your maintain effort will be minimized almost to none. How does it sound?\nWell, that might be simply achieved with `[Boost].DI`!\n\nThe same result might be achieved with [Boost].DI. All, non-ambiguous, dependencies will be automatically\nresolved and injected properly. It doesn't matter how big the hierarchy will be and/or if the order of constructor parameters will be changed in the future.\nWe just have to create [injector] using [make_injector], create the `app` and DI will take care of injecting proper types for us.\n\n```cpp\nauto app_ = make_injector().create<app>(); // It will create an `app` on stack and call its copy constructor\n```\n\nHow is that possible? [Boost].DI is able to figure out what parameters are required for the constructor of type T.\nAlso, [Boost].DI is able to do it recursively for all required types by the constructor T. Hence, NO information\nabout constructors parameters is required to be registered.\n\nMoreover, changes in the constructor of created objects will be handled automatically, so in our case\nwhen we add a `window` to `view` or change `view&` to `std::shared_ptr<view>` required effort will be\nexactly '0'. `[Boost].DI` will take care of everything for us!\n\n| Type `T` | Is allowed? | Note |\n| -------- | ----------- | ---- |\n| `T` | ✔ | - |\n| `T*` | ✔ | Ownership transfer! |\n| `const T*` | ✔ | Ownership transfer! |\n| `T&` | ✔ | - |\n| `const T&` | ✔ | Reference with [singleton] / Temporary with [unique] |\n| `T&&` | ✔ | - |\n| `std::unique_ptr<T>` | ✔ | - |\n| `std::shared_ptr<T>` | ✔ | - |\n| `std::weak_ptr<T>` | ✔ | - |\n| `boost_shared_ptr<T>` | ✔ | - |\n\nFurthermore, there is no performance penalty for using `[Boost].DI` (see [Performance](overview.md#performance))!\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\n[Boost].DI can [inject] dependencies using direct initialization `T(...)` or uniform initialization `T{...}` for aggregate types.\n</span>\n\nAnd full example!\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_create_objects_tree.cpp)\n\nCheck out also other examples. Please, notice that the diagram was also generated using `[Boost].DI` but we will get into that a bit later.\n\n![CPP(BTN)](Run_Hello_World_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/hello_world.cpp)\n![CPP(BTN)](Run_Automatic_Injection_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/automatic_injection.cpp)\n![CPP(BTN)](Run_UML_Dumper_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/uml_dumper.cpp)\n\n<br /><hr />\n\n###2. [Basic] First steps with bindings\n\nBut objects tree is not everything. A lot of classes uses interfaces or required a value to be passed.\n`[Boost].DI` solution for this are [bindings].\n\nFor purpose of this tutorial, let's change `view` class into interface `iview` in order to support `text_view` and `gui_view`.\n\n```cpp\nclass iview {\npublic:\n  virtual ~iview() noexcept = default;\n  virtual void update() =0;\n};\n\nclass gui_view: public iview {\npublic:\n  gui_view(std::string title, const renderer&) {}\n  void update() override {}\n};\n\nclass text_view: public iview {\npublic:\n  void update() override {}\n};\n```\n\nPlease, notice that `text_view` doesn't require any constructor parameters, whilst `gui_view` does.\n\nSo, what will happen right now, when we try to create an `app`?\n\n```cpp\nauto app = make_injector().create<app>();\n```\n\nCOMPILE error! (See also: [Error Messages](overview.md#error-messages))\n\n```cpp\nwarning: 'create<app>' is deprecated: creatable constraint not satisfied\n  injector.create<app>();\n           ^\nboost/di.hpp:870:2: error: 'boost::di::v1_0_0::concepts::abstract_type<iview>::is_not_bound::error'\n  error(_ = \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\");\n```\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nYou can get more info about error by increasing [BOOST_DI_CFG_DIAGNOSTICS_LEVEL] [0-2] value (default=1).\n</span>\n\nAh, okay, we haven't bound `iview` which means that `BOOST.DI` can't figure out whether we want `text_view` or `gui_view`?\nWell, it's really simple to fix it, we just follow suggestion provided.\n\n```cpp\nconst auto injector = di::make_injector(\n  di::bind<iview>.to<gui_view>()\n);\n```\n\nLet's try again. Yay! It's compiling.\n\nBut what about `render.device` value? So far, it was value initialized by default(=0).\nWhat, if you we want to initialize it with a user defined value instead?\nWe've already seen how to bind interface to implementation.\nThe same approach might be used in order to bind a type to a value.\n\n```cpp\ndi::bind<T>.to(value) // bind type T to given value\n```\n\nMoving back to our `render.device`...\n\n```cpp\nstruct renderer {\n  int device;\n};\n```\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nIf you want change the default behaviour and be sure that all required dependencies are bound and not value initialized\ntake a look at [constructible] policy.\n</span>\n\n```cpp\nconst auto injector = di::make_injector(\n  di::bind<iview>.to<gui_view>()\n, di::bind<int>.to(42) // renderer.device | [Boost].DI can also deduce 'int' type for you -> 'di::bind<>.to(42)'\n);\n```\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\n[Boost].DI is a compile time beast which means that it guarantees that if your code compiles, all dependencies will be resolved\ncorrectly. No runtime exceptions or runtime asserts, EVER!\n</span>\n\nAnd full example!\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_first_steps_with_bindings.cpp)\n\nThat's nice but I don't want to be using a dynamic (virtual) dispatch. What about concepts/templates?\nGood news, `[Boost].DI` can inject concepts/templates too!\n\n```cpp\ntemplate <class T = class Greater>\nstruct example { \n  using type = T;\n};\n\nstruct hello {};\n\nint main() {\n  const auto injector = di::make_injector(\n    di::bind<class Greater>.to<hello>()\n  );\n\n  auto object = injector.create<example>();\n  static_assert(std::is_same<hello, decltype(object)::type>{});\n}\n```\n\nAnd full example!\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_first_steps_with_template_bindings.cpp)\n\nGreat, but my code is more dynamic than that! I mean that I want to choose `gui_view` or `text_view` at runtime.\n`[Boost].DI` can handle that too!\n\n```cpp\nauto use_gui_view = true/false;\n\nconst auto injector = di::make_injector(\n  di::bind<iview>.to([&](const auto& injector) -> iview& {\n    if (use_gui_view)\n      return injector.template create<gui_view&>();\n    else\n      return injector.template create<text_view&>();\n  })\n, di::bind<>.to(42) // renderer device\n);\n```\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nIt is safe to throw exceptions from lambda. It will be passed through.\n</span>\n\nNotice, that [injector] was passed to lambda expression in order to create `gui_view` / `text_view`.\nThis way `[Boost].DI` can inject appropriate dependencies into chosen types. See [bindings] for more details.\n\nAnd full example!\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_first_steps_with_dynamic_bindings.cpp)\n\nOkay, so what about the input. We have `user`, however, in the real life, we will have more clients.\n`[Boost].DI` allows multiple bindings to the same type for `array/vector/set`. Let's do it then!\n\n```cpp\nclass iclient {\n public:\n   virtual ~iclient() noexcept = default;\n   virtual void process() = 0;\n};\n\nclass user : public iclient {\n public:\n   void process() override {};\n};\n\nclass timer : public iclient {\n public:\n   void process() override {};\n};\n\nclass app {\n public:\n  app(controller&, std::vector<std::unique_ptr<iclient>>);\n};\n```\n\nAnd our bindings...\n\n```cpp\ndi::bind<iclient*[]>.to<user, client>()\n```\n\nAnd full example!\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_first_steps_with_multiple_bindings.cpp)\n\nThe last but not least, sometimes, it's really useful to override some bindings. For example, for testing purposes.\nWith `[Boost].DI` you can easily do that with [override] specifier (Implemented using `operator[](override)`).\n\n```cpp\nconst auto injector = di::make_injector(\n  di::bind<int>.to(42) // renderer device\n, di::bind<int>.to(123) [di::override] // override renderer device\n);\n```\n\nWithout the `di::override` following compilation error will occur...\n\n```cpp\nboost/di.hpp:281:3: error: static_assert failed \"constraint not satisfied\"\nboost/di.hpp:2683:80: type<int>::is_bound_more_than_once\n  inline auto make_injector(TDeps... args) noexcept\n```\n\nAnd full example!\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_first_steps_with_bindings_override.cpp)\n\nCheck out also.\n\n![CPP(BTN)](Run_Bindings_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/bindings.cpp)\n![CPP(BTN)](Run_Forward_Bindings_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/fwd_bindings.cpp)\n![CPP(BTN)](Run_Dynamic_Bindings_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/dynamic_bindings.cpp)\n![CPP(BTN)](Run_Multiple_Bindings_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/multiple_bindings.cpp)\n![CPP(BTN)](Run_Constructor_Bindings_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/bindings/constructor_bindings.cpp)\n\n<br /><br /><br /><hr />\n\n###3. [Basic] Decide the life times\n\nSo far so good but where are these objects stored?\nWell, `[Boost].DI` supports [scopes] which are response for maintaining the life time of created objects.\nBy default there are 4 scopes\n\n* [deduce] scope (default)\n* [instance] scope (bind<>.to(value) where value is maintained by the user)\n* [unique] scope (one instance per request)\n* [singleton] scope (shared instance)\n\nBy default [deduce] scope is used which means that scope is deduced based on a constructor parameter.\nFor instance, reference, shared_ptr will be deduced as [singleton] scope and pointer, unique_ptr will be deduced as [unique] scope.\n\n| Type | Scope |\n|------|-------|\n| T | [unique] |\n| T& | [singleton] |\n| const T& | [unique] (temporary) / [singleton] |\n| T* | [unique] (ownership transfer) |\n| const T* | [unique] (ownership transfer) |\n| T&& | [unique] |\n| std::unique_ptr<T> | [unique] |\n| std::shared_ptr<T> | [singleton] |\n| boost::shared_ptr<T> | [singleton] |\n| std::weak_ptr<T> | [singleton] |\n\n\nExample\n```cpp\nclass scopes_deduction {\n  scopes_deduction(const int& /*singleton scope*/,\n                   std::shared_ptr<int> /*singleton scope*/,\n                   std::unique_ptr<int> /*unique scope*/,\n                   int /*unique scope*/)\n  { }\n};\n\ndi::make_injector().create<example>(); // scopes will be deduced based on constructor parameter types\n```\n\n\nComing back to our example, we got quite a few `singletons` there as we just needed one instance per application life time.\nAlthough scope deduction is very useful, it's not always what we need and therefore `[Boost].DI` allows changing the scope for a given type.\n\n```cpp\nconst auto injector = di::make_injector(\n  di::bind<iview>.to<gui_view>().in(di::singleton) // explicitly specify singleton scope\n);\n```\n\nWhat if I want to change `gui_view` to be a different instance per each request. Let's change the scope to [unique] then.\n\n```cpp\nconst auto injector = di::make_injector(\n  di::bind<iview>.to<gui_view>().in(di::unique)\n);\n```\n\nWe will get a COMPILATION TIME ERROR because a unique scope can't be converted to a reference.\nIn other words, having a reference to a copy is forbidden and it won't compile!\n\n```cpp\nwarning: 'create<app>' is deprecated: creatable constraint not satisfied\n  injector.create<app>();\n           ^\nboost/di.hpp:897:2: error: 'scoped<scopes::unique, gui_view>::is_not_convertible_to<iview &>::error'\n  error(_ = \"scoped object is not convertible to the requested type, did you mistake the scope: 'di::bind<T>.in(scope)'?\");\n```\n\nAh, reference doesn't make much sense with [unique] scope because it would mean that it has to be stored somewhere.\nIt would be better to use `std::unique_ptr<iview>` instead.\n\n| Type/Scope | [unique] | [singleton] | [instance] |\n|------------|----------|-------------|------------|\n| T | ✔ | - | ✔ |\n| T& | - | ✔  | ✔ |\n| const T& | ✔ (temporary) | ✔ | ✔ |\n| T* (transfer ownership) | ✔ | - | - |\n| const T* | ✔ | - | - |\n| T&& | ✔ | - | ✔ |\n| std::unique_ptr<T> | ✔ | - | - |\n| std::shared_ptr<T> | ✔ | ✔ | ✔ |\n| boost::shared_ptr<T> | ✔ | ✔ | - / ✔ converted to |\n| std::weak_ptr<T> | - | ✔ |  - / ✔ converted to |\n\nHmm, let's try something else then. We have list of unique clients, we can share objects just by changing the list to\nuse `std::shared_ptr` instead.\n\n```cpp\nclass app {\n public:\n  app(controller&, std::vector<std::shared_ptr<iclient>>);\n};\n```\n\nBut, it would be better if `timer` was always created per request, although it's a `shared_ptr`.\nTo do so, we just need add scope when binding it, like this...\n\n```cpp\nconst auto injector = di::make_injector(\n  di::bind<timer>.in(di::unique) // different per request\n);\n```\n\nCheck out the full example here.\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_decide_the_life_times.cpp)\n\nSee also.\n\n![CPP(BTN)](Run_Deduce_Scope_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/deduce_scope.cpp)\n![CPP(BTN)](Run_Scopes_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/scopes.cpp)\n![CPP(BTN)](Run_Eager_Singletons_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/eager_singletons.cpp)\n\n<br /><br /><hr />\n\n###4. [Basic] Annotations to the rescue\n\nAbove example are fine and dandy, nonetheless, they don't cover one important thing.\nHow `[Boost].DI` knows which constructor to choose and what if they are ambiguous?\n\nWell, the algorithm is very simple. The longest (most parameters), unique constructor will be chosen.\nOtherwise, `[Boost].DI` will give up with a compile time error. However, which constructor should\nbe chosen is configurable by [BOOST_DI_INJECT].\n\nTo illustrate this, let's modify `model` constructor.\n\n```cpp\nclass model {\n public:\n   model(int size, double precision) { }\n   model(int rows, int cols) { }\n};\n```\n\nRight now, as expected, we get a compile time error!\n\n```cpp\nwarning: 'create<app>' is deprecated: creatable constraint not satisfied\n  injector.create<app>();\n           ^\nboost/di.hpp:942:4: error: 'type<model>::has_ambiguous_number_of_constructor_parameters::error'\n  error(_ = \"verify BOOST_DI_INJECT_TRAITS or di::ctor_traits\");\n```\n\nLet's fix it using [BOOST_DI_INJECT] then!\n\n```cpp\nclass model {\n public:\n   model(int size, double precision) { }\n   BOOST_DI_INJECT(model, int rows, int cols) { } // this constructor will be injected\n};\n```\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nWe can also write `model(int rows, int cols, ...)` to get the same result.\nBy adding `...` as the last parameter of the constructor it's guaranteed by [Boost].DI\nthat it will be used for injection as it will have the highest number of constructor parameters (infinite number).\n</span>\n\nOkay, right now it compiles but, wait a minute, `123` (renderer device) was injected for both `rows` and `cols`!\nWell, it wasn't even close to what we wanted, but we can fix it easily using [named] annotations.\n\nFirstly, we have to create names. That's easy as names are just unique objects.\n\n```cpp\nauto Rows = []{};\nauto Cols = []{};\n```\n\nSecondly, we have to tell `model` constructor about it.\n\n```cpp\nclass model {\n public:\n   model(int size, double precision) { }\n   BOOST_DI_INJECT(model, (named = Rows) int rows, (named = Cols) int cols); // this constructor will be injected\n};\n\nmodel::model(int rows, int cols) {}\n```\n\nPlease, notice that we have separated `model` constructor definition and declaration to show that definition doesn't\nrequire named annotations.\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nIf you happen to use clang/gcc compiler you can use string literals instead of creating objects,\nfor example `(named = \"Rows\"_s)`.\n</span>\n\nFinally, we have to bind our values.\n\n```cpp\nconst auto injector = di::make_injector(\n  di::bind<int>.named(Rows).to(6)\n, di::bind<int>.named(Cols).to(8)\n);\n```\n\nThat's all.\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nThe same result might be accomplished with having different types for rows and cols.\n</span>\n\nFull example here.\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_annotations_to_the_rescue.cpp)\n\nCheck out also...\n\n![CPP(BTN)](Run_Constructor_Injection_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/constructor_injection.cpp)\n![CPP(BTN)](Run_Constructor_Signature_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/constructor_signature.cpp)\n![CPP(BTN)](Run_Annotations_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/annotations.cpp)\n\n<br /><br /><hr />\n\n###5. [Basic] Split your configuration\n\nBut my project has hundreds of interfaces and I would like to split my bindings into separate components.\nThis is simple to do with [Boost.DI] as an [injector] can be extended by other injectors.\n\nLet's split our configuration then and keep our `model` bindings separately from `app` bindings.\n\n```cpp\nauto model_module = [] {\n  return di::make_injector(\n    di::bind<int>.named(Rows).to(6)\n  , di::bind<int>.named(Cols).to(8)\n  );\n};\n\nauto app_module = [](const bool& use_gui_view) {\n  return di::make_injector(\n    di::bind<iview>.to([&](const auto& injector) -> iview& {\n      if (use_gui_view)\n        return injector.template create<gui_view&>();\n      else\n        return injector.template create<text_view&>();\n    })\n  , di::bind<timer>.in(di::unique) // different per request\n  , di::bind<iclient*[]>().to<user, timer>() // bind many clients\n  );\n};\n```\n\nAnd glue them into one injector the same way...\n\n```cpp\n  const auto injector = di::make_injector(\n    model_module()\n  , app_module(use_gui_view)\n  );\n```\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nGluing many [injector]s into one is order independent.\n</span>\n\nAnd full example!\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_split_your_configuration.cpp)\n\nBut I would like to have a module in `cpp` file, how can I do that?\nSuch design might be achieved with `[Boost].DI` using [injector] and exposing given types.\n\n* Expose all types (default)\n```cpp\nconst const auto injector = // auto exposes all types\n  di::make_injector(\n    di::bind<int>.to(42)\n  , di::bind<double>.to(87.0)\n  );\n\ninjector.create<int>(); OK\ninjector.create<double>(); // OK\n```\n\n* Expose only specific types\n```cpp\nconst di::injector<int> injector = // only int is exposed\n  di::make_injector(\n    di::bind<int>.to(42)\n  , di::bind<double>.to(87.0)\n  );\n\ninjector.create<int>(); OK\ninjector.create<double>(); // COMPILE TIME ERROR, double is not exposed by the injector\n```\n\nWhen exposing all types using `auto` modules have to be implemented in a header file.\nWith `di::injector<T...>` a definition might be put in a cpp file as it’s just a regular type.\n\nSuch approach has a few benefits:\n* It’s useful for encapsulation (ex. Another team provides a module but they don't want to expose an ability to create implementation details)\n* May also speed compilation times in case of extend usage of cpp files\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nThere is no performance (compile-time, run-time) overhead between exposing all types or just a specific ones.\n</span>\n\nMoving back to our example. Let's refactor it then.\n\n```cpp\ndi::injector<model&> model_module() {\n  return di::make_injector(\n    di::bind<int>.named(Rows).to(6)\n  , di::bind<int>.named(Cols).to(8)\n  );\n}\n\ndi::injector<app> app_module(const bool& use_gui_view) {\n  return di::make_injector(\n    di::bind<iview>.to([&](const auto& injector) -> iview& {\n      if (use_gui_view)\n        return injector.template create<gui_view&>();\n      else\n        return injector.template create<text_view&>();\n    })\n  , di::bind<timer>.in(di::unique) // different per request\n  , di::bind<iclient*[]>.to<user, timer>() // bind many clients\n  , model_module()\n  );\n}\n```\n\nRight now you can easily separate definition and declaration between `hpp` and `cpp` files.\n\nCheck the full example here!\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_split_your_configuration_expose.cpp)\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nYou can also expose named parameters using `di::injector<BOOST_DI_EXPOSE((named = Rows) int)>`.\nDifferent variations of the same type have to be exposed explicitly using `di::injector<model&, std::unique_ptr<model>>`.\nType erasure is used under the hood when types are exposed explicitly (`di::injector<T…>`).\n\nCheck out more examples here!\n\n![CPP(BTN)](Run_Modules_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/modules.cpp)\n![CPP(BTN)](Run_Exposed_Annotated_Type_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/module_exposed_annotated_type.cpp)\n![CPP(BTN)](Run_Exposed_Complex_Types_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/module_exposed_complex_types.cpp)\n\n<br /><br />\n\nCongrats! You have finished the basic part of the tutorial.\nHopefully, you have noticed potential of DI and `[Boost].DI` but if are still not convinced check out the [Advanced](#6-advanced-dumplimit-your-types) part.\n\n###6. [Advanced] Dump/Limit your types\n\nIt's often a case that we would like to generate object diagram of our application in order to see code dependencies\nmore clear. Usually, it's a really hard task as creation of objects may happen anywhere in the code. However,\nif the responsibility for creation  objects will be given to `[Boost].DI` we get such functionality for free.\nThe only thing we have to do is to implement how to dump our objects.\n\nLet's dump our dependencies using [Plant UML](http://plantuml.com) format.\n\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/uml_dumper.cpp)\n[![UML Dumper](images/uml_dumper.png)](images/uml_dumper.png)\n\nSee also.  <br /><br />\n![CPP(BTN)](Run_Custom_Policy_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_policy.cpp)\n![CPP(BTN)](Run_Types_Dumper_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/types_dumper.cpp)\n\n<br />\n\nOn the other hand, it would be great to be able to limit types which might be constructed. For example, we just want to allow\nsmart pointers and disallow raw pointers too. We may want to have a `view` only with const parameters being passed, etc.\n`[Boost].DI` allows you to do so by using [constructible] policy or writing a custom [policy].\n\n![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/policies_constructible_global.cpp)\n\nSee also.\n\n![CPP(BTN)](Run_Constructible_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/policies_constructible_local.cpp)\n\n<br /><hr />\n\n###7. [Advanced] Customize it\n\n`[Boost].DI` was design having extensibility in mind. You can easily customize\n\n* [scopes] - to have custom life time of an object\n* [providers] - to have custom way of creating objects, for example by using preallocated memory\n* [policies] - to have custom way of dumping types at run-time or limiting them at compile-time\n\n![CPP(BTN)](Run_Custom_Policy_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_policy.cpp)\n![CPP(BTN)](Run_Custom_Provider_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_provider.cpp)\n![CPP(BTN)](Run_Pool_Provider_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/pool_provider.cpp)\n\n<br /><hr />\n\n###8. [Advanced] Extend it\n\nAs mentioned before, `[Boost].DI` is quite easy to extend and therefore a lot of extensions exists already.\nPlease check them out and write your own!\n\n* [Constructor Bindings](extensions.md#constructor-bindings)\n* [Assisted Injection](extensions.md#assisted-injection)\n* [Concepts](extensions.md#concepts)\n* [Lazy](extensions.md#lazy)\n* [Named Parameters](extensions.md#named-parameters)\n* [XML Injection](extensions.md#xml-injection)\n* [Types Dumper](extensions.md#types-dumper)\n* [UML Dumper](extensions.md#uml-dumper)\n* [Mocks Provider](extensions.md#mocks-provider)\n* [Scoped Scope](extensions.md#scoped-scope)\n* [Session Scope](extensions.md#session-scope)\n* [Shared Scope](extensions.md#shared-scope)\n\n[bindings]: user_guide.md#bindings\n[injector]: user_guide.md#di_make_injector\n[make_injector]: user_guide.md#make_injector\n[BOOST_DI_INJECT]: user_guide.md#BOOST_DI_INJECT\n[override]: user_guide.md#di_bind\n[inject]: user_guide.md#di_automatic\n[named]: user_guide.md#di_named\n[scopes]: user_guide.md#scopes\n[deduce]: user_guide.md#di_deduce\n[instance]: user_guide.md#di_instance\n[unique]: user_guide.md#di_unique\n[singleton]: user_guide.md#di_singleton\n[providers]: user_guide.md#providers\n[policy]: user_guide.md#policies\n[policies]: user_guide.md#policies\n[constructible]: user_guide.md#di_constructible\n[Law of Demeter]: https://en.wikipedia.org/wiki/Law_of_Demeter\n[BOOST_DI_CFG_CTOR_LIMIT_SIZE]: overview.md#configuration\n[BOOST_DI_CFG_DIAGNOSTICS_LEVEL]: overview.md#configuration\n"
  },
  {
    "path": "doc/uml/coffee_maker.uml",
    "content": "'\n' Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n'\n' Distributed under the Boost Software License, Version 1.0.\n' (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n'\n@startuml coffee_maker.png\n\n\"coffee_maker\" ..> \"electric_heater\"\n\"coffee_maker\" ..> \"heat_pump\"\n\n\"iheater\" <|.. \"electric_heater\"\n\"iheater\" : on() : void\n\"iheater\" : off() : void\n\"iheater\" : is_on() : boolean\n\n\"electric_heater\" : on() : void\n\"electric_heater\" : off() : void\n\"electric_heater\" : is_on() : boolean\n\n\"ipump\" : pump() : void\n\n\"heat_pump\" ..> \"electric_heater\"\n\"heat_pump\" : pump() : void\n\n\"heat_pump\" ..|> \"ipump\"\n\n@enduml\n"
  },
  {
    "path": "doc/uml/di.uml",
    "content": "'\n' Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n'\n' Distributed under the Boost Software License, Version 1.0.\n' (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n'\n@startuml di.png\n\npackage Boost.DI {\n\n    package core <<Rect>> {\n        class any_type {\n            operator T()\n        }\n        class binder {\n            resolve(Deps)\n        }\n        class dependency {\n            in(Scope)\n            named(Name)\n            to(T)\n        }\n        class injector {\n            injector(TArgs...)\n            T create()\n        }\n    }\n\n    package scopes <<Rect>> {\n        class deduce {\n            create(...)\n        }\n        class instance {\n            create(...)\n        }\n        class singleton {\n            create(...)\n        }\n        class unique {\n            create(...)\n        }\n    }\n\n    package policies <<Rect>> {\n        class constructible {\n            operator()(T)\n        }\n    }\n\n    package providers <<Rect>> {\n        class heap {\n            get()\n        }\n\n        class stack_over_heap {\n            get()\n        }\n    }\n\n    package wrappers <<Rect>> {\n        class wrappers.shared {\n            operator T&()\n            operator const T&()\n            operator shared_ptr<T>()\n        }\n        class wrappers.unique {\n            operator T()\n            operator T*()\n            operator T&&()\n            operator unique_ptr<T>()\n            operator shared_ptr<T>()\n        }\n    }\n\n    class bind {\n    }\n\n    class make_injector {\n    }\n\n    class config {\n        policies(...)\n        provider(...)\n    }\n\n    dependency <|-- bind\n    scopes - bind\n    make_injector - bind\n\n    make_injector - injector\n    make_injector - config\n    config - policies\n    config - providers\n    scopes - wrappers\n    binder - dependency\n\n    injector --* binder\n    injector --* any_type\n}\n\n@enduml\n"
  },
  {
    "path": "doc/user_guide.md",
    "content": "* [Injector](#injector)\n    * [di::make_injector](#di_make_injector)\n* [Bindings](#bindings)\n    * [di::bind](#di_bind)\n* [Injections](#injections)\n    * [automatic (default)](#di_automatic)\n    * [BOOST_DI_INJECT](#BOOST_DI_INJECT)\n    * [BOOST_DI_INJECT_TRAITS](#BOOST_DI_INJECT_TRAITS)\n    * [di::inject](#di_inject)\n    * [di::ctor_traits](#di_ctor_traits)\n* [Annotations](#annotations)\n    * [(named = name)](#di_named)\n* [Scopes](#scopes)\n    * [di::deduce (default)](#di_deduce)\n    * [di::instance (di::bind<>.to(value))](#di_instance)\n    * [di::singleton](#di_singleton)\n    * [di::unique](#di_unique)\n* [Modules](#modules)\n    * [BOOST_DI_EXPOSE](#BOOST_DI_EXPOSE)\n* [Providers](#providers)\n    * [di::providers::stack_over_heap (default)](#di_stack_over_heap)\n    * [di::providers::heap](#di_heap)\n* [Policies](#policies)\n    * [di::policies::constructible](#di_constructible)\n* [Concepts](#concepts)\n    * [di::concepts::boundable](#di_boundable)\n    * [di::concepts::callable](#di_callable)\n    * [di::concepts::configurable](#di_configurable)\n    * [di::concepts::creatable](#di_creatable)\n    * [di::concepts::providable](#di_providable)\n    * [di::concepts::scopable](#di_scopable)\n* [Configuration](#configuration)\n    * [di::config](#di_config)\n* [Implementation details](#implementation_details)\n\n---\n\n[![Design](images/di.png)](images/di.png)\n\n| Component  | Description |\n| ---------- | ----------- |\n| [Bindings](#bindings)     | DSL to create dependencies representation which will be used by core to resolve types |\n| [Scopes](#scopes)         | Responsible for maintain objects life time |\n| [Providers](#providers)   | Responsible for providing object instance |\n| [Policies](#policies)     | Compile-time limitations for types / Run-time types vistor |\n| [Config](#di_config)      | Configuration for [Policies] and [Providers] |\n| Core                      | Responsible for resolving requested types (implementation detail) |\n| Wrappers                  | Responsible for conversion to required type (implementation detail) |\n\n---\n\nLet's assume all examples below include `boost/di.hpp` header and define a convenient `di`\nnamespace alias as well as some basic interfaces and types.\n```cpp\n#include <boost/di.hpp>\nnamespace di = boost::di;\n\nstruct i1 { virtual ~i1() = default; virtual void dummy1() = 0; };\nstruct i2 { virtual ~i2() = default; virtual void dummy2() = 0; };\nstruct impl1 : i1 { void dummy1() override { } };\nstruct impl2 : i2 { void dummy2() override { } };\nstruct impl : i1, i2 { void dummy1() override { } void dummy2() override { } };\n```\n\n###Injector\n\n<a id=\"di_make_injector\"></a>\n\nInjector is a core component providing types creation functionality using [bindings].\n\n--- ***di::make_injector*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nCreates [injector] type.\n\n***Semantics***\n\n    template<class... TDeps> requires boundable<TDeps...>\n    class injector {\n    public:\n      using deps; // list of dependencies\n      using config; // configuration\n\n      injector(injector&&) = default;\n      template <class... Ts> // no requirements\n      injector(core::injector<Ts...>&&) noexcept;\n      explicit injector(const TDeps&...) noexcept;\n\n      template<class T> requires creatable<T>\n      T create() const;\n    };\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `TDeps...` | [boundable]<TDeps...\\> | [Bindings] to be used as configuration | - |\n| `create<T>()` | [creatable]<T\\> | Creates type `T` | `T` |\n\n| Type `T` | Is allowed? | Note |\n| -------- | ----------- | ---- |\n| `T` | ✔ | - |\n| `T*` | ✔ | Ownership transfer! |\n| `const T*` | ✔ | Ownership transfer! |\n| `T&` | ✔ | - |\n| `const T&` | ✔ | Reference with [singleton] / Temporary with [unique] |\n| `T&&` | ✔ | - |\n| `std::unique_ptr<T>` | ✔ | - |\n| `std::shared_ptr<T>` | ✔ | - |\n| `std::weak_ptr<T>` | ✔ | - |\n| `boost_shared_ptr<T>` | ✔ | - |\n\n    template<\n      class TConfig = di::config\n    , class... TBindings\n    > requires configurable<TConfig> && boundable<TBindings...>\n    auto make_injector(const TBindings&...) noexcept;\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `TConfig` | [configurable]<TConfig\\> | [Configuration] per [injector] | - |\n| `make_injector(const TBindings&...)` | [boundable]<TBindings...\\> | Creates [injector] with given [Bindings] | [injector] |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/injector_empty.cpp)\n***Example***\n\n![CPP(BTN)](Run_Hello_World_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/hello_world.cpp)\n![CPP(BTN)](Run_Create_Objects_Tree_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/tutorial/basic_create_objects_tree.cpp)\n\n<br /><hr />\n\n**Injection in a nutshell** (implementation detail)\n\nThe main interface of the injector is a `create` method. \nWhen `create` method is called for type `T` the magic happens.\nFirstly, policies are verified (for example, whether the type `T` is allowed to be created).\nThen, the constructor traits are deduced (`ctor_traits` ) for type `T` and dependencies of the constructor\nparameters are resolved (`binder`). `wrapper` is used to convert internal representation\nof the dependency into a required type (ex. `shared_ptr<T>`). Whole process is repeated\nrecursively for all required parameters of `T` constructor.\n\n```cpp\nstruct direct; // T(...)\nstruct uniform; // T{...}\n\ntemplate<class T, class... TArgs> is_braces_constructible; // type T is constructible using T{...}\ntemplate<class T, class... TArgs> is_constructible; // Type T is constructible using T(...)\n\ntemplate<class T> is_injectable; // Type T uses BOOST_DI_INJECT or BOOST_DI_INJECT_TRAITS\n\ntemplate<class TConfig, class... TBindings> // For Example, TBindings = { di::bind<Interface>.to<Implementation> }\nstruct core::injector : TBindings... {\n  using config = TConfig;\n  using deps = TBindings...;\n\n  template<class T> // For example, T = Interface\n  auto create() const noexcept {\n    TConfig::policies<T>()...; // verify policies\n    using Type = core::binder<TBindings...>().resolve<T>(*this); // Type = Implementation\n    return core::wrapper<T>{dependency.create(provider<TInjector>{*this}.get<Type>())};\n  }\n};\n\ntemplate<class TInjector, class TConfig>\nstruct provider {\n  template<class T> auto get() const noexcept {\n    using pair<TInitialization, TCtor...> = decltype(ctor_traits<TInjector, T>());\n    return TConfig::provider().get(TInitialization{}, TCtor...);\n  }\n  const TInjector& injector;\n};\n\ntemplate<class TInjector>\nstruct any_type {\n  template<class T>\n  operator T() const {\n    return injector.templte create<T>();\n  }\n  const TInjector& injector;\n};\n\ntemplate<class TInjector, class T>\nauto ctor_traits() {\n  if (is_injectable<T>() {\n    return pair<direct, typename T::boost_di_inject__>{}; // BOOST_DI_INJECT(T, args...) -> T(args...)\n  }\n\n  for (auto i = BOOST_DI_CFG_CTOR_LIMIT_SIZE; i >= 0; --i) {\n    if (is_constructible<T, any_type<TInjector>...>()) { // ... -> i times\n      return pair<direct, any_type<TInjector>...>{}; // T(any_type...)\n    }\n  }\n\n  for (auto i = BOOST_DI_CFG_CTOR_LIMIT_SIZE; i >= 0; --i) {\n    if (is_braces_constructible<T, any_type<TInjector>...>()) { // ... -> i times\n      return pair<uniform, any_type<TInjector>...>{}; // T{any_type...}\n    }\n  }\n\n  return error(...);\n};\n```\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\n[Automatic injection](user_guide.md#di_automatic) depends on template implicit conversion operator and therefore\nconversion constructors `template<class I> T(I)` are not supported and have to be injected using [BOOST_DI_INJECT], [BOOST_DI_INJECT_TRAITS], [di::inject] or [di::ctor_traits].\n</span>\n\n---\n\n###Bindings\n\nBindings define dependencies configuration describing what types will be created\nand what values will be passed into them.\n\n<a id=\"di_bind\"></a>\n--- ***di::bind*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nAllows to bind interface to implementation and associate value with it.\n\n***Semantics***\n\n    struct override; // overrides given configuration\n\n    namespace detail {\n      template<class I, class... Is/*any_of*/> requires boundable<I, Is...>\n      struct bind {\n        bind(bind&&) noexcept = default;\n\n        template <class T> requires !is_array<I> && boundable<I, T>\n        auto to() noexcept;\n\n        template <class... Ts> requires is_array<I> && boundable<Ts...>\n        auto to() noexcept;\n\n        template<class T> requires boundable<I, T>\n        auto to(T&&) noexcept;\n\n        template<class TScope> requires scopable<TScope>\n        auto in(const TScope& = di::deduce) noexcept;\n\n        template<class TName> // no requirements\n        auto named(const TName& = {}) noexcept;\n\n        auto operator[](const override&) noexcept;\n      };\n    } // detail\n\n    template<class... Ts> requires boundable<Ts...>\n    detail::bind<Ts...> bind{};\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `I`, `Is...` | [boundable]<I, Is...\\> | 'Interface' types | - |\n| `to<T>` | [boundable]<T\\> | Binds `I, Is...` to `T` type | [boundable] |\n| `to<Ts...>` | [boundable]<Ts...\\> | Binds `I, Is...` to `Ts...` type | [boundable] |\n| `to(T&&)` | [boundable]<T\\> | Binds `I, Is...` to `T` object | [boundable] |\n| `in(const TScope&)` | [scopable]<TScope\\> | Binds `I, Is...` in TScope` | [boundable] |\n| `named(const TName&)` | - | Binds `I, Is...` using [named] annotation | [boundable] |\n| `operator[](const override&)` | - | Overrides given binding | [boundable] |\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nCheck out also [instance] scope to read more about binding to values: `di::bind<>.to(value)`.\n</span>\n\n| Expression | Description |\n| ---------- | ----------- |\n| **Multiple Interfaces** | |\n| `di::bind<Interface1, Interface2, ...>.to<Implementation>()` | Binds `Interface1, Interface2, ...` to `Implementation` using one object |\n| **Multiple Bindings** (std::array, std::vector, std::set) | |\n| `di::bind<int[]>.to({1, 2, ...})` | Binds `int` to values `1, 2, ...` |\n| `di::bind<Interface*[]>.to<Implementation1, Implementation2, ...>()` | Binds `Interface` to `Implementation1, Implementation2, ...` |\n| **Dynamic Bindings** | |\n| `di::bind<Interface>.to([](const auto& injector)`<br />`  { return injector.template create<Implementation>()})` | Allows to bind `Interface` depending on a run-time condition |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_interface_to_implementation.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_type_to_value.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_deduce_type_to_value.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_type_to_compile_time_value.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_multiple_interfaces.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_dynamic_bindings.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_multiple_bindings.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_multiple_bindings_initializer_list.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_type_override.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/bind_cross_platform.cpp)\n***Example***\n\n![CPP(BTN)](Run_Bindings_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/bindings.cpp)\n![CPP(BTN)](Run_Forward_Bindings_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/fwd_bindings.cpp)\n![CPP(BTN)](Run_Dynamic_Bindings_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/dynamic_bindings.cpp)\n![CPP(BTN)](Run_Multiple_Bindings_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/multiple_bindings.cpp)\n![CPP(BTN)](Run_Constructor_Bindings_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/bindings/constructor_bindings.cpp)\n\n<br /><br /><br /><hr />\n\n###Injections\n\n*Constructor Injection* is the most powerful of available injections.\nIt guarantees initialized state of data members. [Boost].DI constructor injection is achieved without any additional work from the user.\n\n<a id=\"di_automatic\"></a>\n--- ***automatic (default)*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\n[Boost].DI will deduce the best available constructor to be used for injection - unique constructor with the longest parameter list.\nIf the default behavior should be changed constructor has to be explicitly marked with\n[BOOST_DI_INJECT] or [BOOST_DI_INJECT_TRAITS] or di::ctor_traits] or [di::inject].\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nAutomatic constructor parameters deduction is limited to [BOOST_DI_CFG_CTOR_LIMIT_SIZE], which by default is set to 10.\n</span>\n\n***Semantics***\n\n    class T {\n    public:\n      T(auto parameter1, auto parameter2, ..., auto parameterN);\n    };\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `parameter1-parameterN` | - | `N` constructor parameter | - |\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\n[Boost].DI is not able to automatically distinguish between ambiguous constructors with the same (longest) number of parameters.\nUse [BOOST_DI_INJECT] or [BOOST_DI_INJECT_TRAITS] or [di::ctor_traits] or [di::inject] to explicitly mark constructor to be injected.\n</span>\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_direct.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_aggregate.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_multiple_constructors.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_ambiguous_constructors_via_vaargs.cpp)\n***Example***\n\n![CPP(BTN)](Run_Automatic_Injection_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/automatic_injection.cpp)\n![CPP(BTN)](Run_Constructor_Signature_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/constructor_signature.cpp)\n![CPP(BTN)](Run_Lazy_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/lazy.cpp)\n![CPP(BTN)](Run_XML_Injection_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/xml_injection.cpp)\n\n<br /><br /><br /><hr />\n\n<a id=\"BOOST_DI_INJECT\"></a>\n--- ***BOOST_DI_INJECT*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nBOOST_DI_INJECT is a macro definition used to explicitly say [Boost].DI which constructor should be used as well as to annotate types - see [annotations] for further reding.\nWhen class has more than one constructor [Boost].DI will by default choose the one with the longest parameter list.\nIn case of constructors ambiguity, [Boost].DI is not able to choose the best one.\nThen BOOST_DI_INJECT becomes handy to point which constructor should be used.\n\n***Semantics***\n\n    struct T {\n        BOOST_DI_INJECT(T, ...) { }\n    };\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `T` | - | Class/Struct name | - |\n| `...` | - | `T` constructor parameters | - |\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nBOOST_DI_INJECT constructor parameters is limited to [BOOST_DI_CFG_CTOR_LIMIT_SIZE], which by default is set to 10.\n</span>\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_ambiguous_constructors_via_BOOST_DI_INJECT.cpp)\n***Example***\n\n![CPP(BTN)](Run_Constructor_Injection_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/constructor_injection.cpp)\n![CPP(BTN)](Run_Concepts_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/concepts.cpp)\n\n<br /><hr />\n\n<a id=\"BOOST_DI_INJECT_TRAITS\"></a>\n--- ***BOOST_DI_INJECT_TRAITS*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nBOOST_DI_INJECT_TRAITS is a macro definition used to define constructor traits.\n\n***Semantics***\n\n    struct T {\n      BOOST_DI_INJECT_TRAITS(...) { }\n      T(...) { }\n    };\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `...` | - | `T` constructor parameters | - |\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nBOOST_DI_INJECT_TRAITS constructor parameters is limited to [BOOST_DI_CFG_CTOR_LIMIT_SIZE], which by default is set to 10.\n</span>\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_ambiguous_constructors_via_BOOST_DI_INJECT_TRAITS.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_default_values.cpp)\n***Example***\n\n![CPP(BTN)](Run_Constructor_Injection_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/constructor_injection.cpp)\n\n<br /><hr />\n\n<a id=\"di_inject\"></a>\n--- ***di::inject*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\n`di::inject` informs [Boost].DI about constructor parameters.\nIt's useful for generated/generic classes as it doesn't have constructor parameters size limitations.\n\n***Semantics***\n\n    struct T {\n      using boost_di_inject__ = di::inject<...>;\n      T(...) {}\n    };\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `...` | - | `T` constructor parameters | - |\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\n`di::inject` has no limitations if it comes to constructor parameters, however, [named] parameters are not allowed.\nMoreover, you can replace `di::inject` with any variadic type list type to remove dependency to [Boost].DI.\nFor example, `template<class...> struct type_list{};` `using boost_di_inject__ = type_list<...>;`\n</span>\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_ambiguous_constructors_via_inject.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_long_parameter_list.cpp)\n***Example***\n\n![CPP(BTN)](Run_Constructor_Injection_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/constructor_injection.cpp)\n\n<br /><hr />\n\n<a id=\"di_ctor_traits\"></a>\n--- ***di::ctor_traits*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\n`di::ctor_traits` is a trait in which constructor parameters for type `T` might be specified.\nIt's useful for third party classes you don't have access to and which can't be created using [automatic] injection.\n\n***Semantics***\n\n    namespace boost {\n    namespace di {\n      template <>\n      struct ctor_traits<T> {\n        BOOST_DI_INJECT_TRAITS(...); // or using type = di::inject<...>;\n      };\n    }}\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/constructor_injection_ambiguous_constructors_via_ctor_traits.cpp)\n***Example***\n\n![CPP(BTN)](Run_Constructor_Injection_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/constructor_injection.cpp)\n\n<br /><hr />\n\n###Annotations\n\nAnnotations are type properties specified in order to refer to a type by the name instead of the type it self.\nThey are useful when constructor has more than one parameter of the same type.\nFor example, `T(int, int)`.\n\n<a id=\"di_named\"></a>\n--- ***(named = name)*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nNamed parameters are handy to distinguish different constructor parameters of the same type.\n\n```cpp\n  T(int value1, int value2);\n```\n\nIn order to inject proper values into `value1` and `value2` they have to be differentiate somehow.\n[Boost].DI solution for this problem are annotations.\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nAnnotations might be set only when constructor is marked using [BOOST_DI_INJECT] or [BOOST_DI_INJECT_TRAITS].\n</span>\n\n***Semantics***\n\n    auto Name = []{}; // just an object\n\n    struct T {\n      BOOST_DI_INJECT(T, (named = Name) type type_name [= default_value], ...);\n    };\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `Name` | - | Object representing named type | - |\n\n***Example***\n\n    BOOST_DI_INJECT(T, (named = value_1) int value1, (named = value_2) int value2);\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nImplementation of constructor doesn't require annotations, only constructor definition requires them.\n</span>\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/annotated_constructor_injection.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/annotated_constructor_injection_with_constructor_definition.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/annotated_constructor_injection_with_ctor_traits.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/annotated_constructor_injection_with_the_same_names.cpp)\n***Example***\n\n![CPP(BTN)](Run_Annotations_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/annotations.cpp)\n![CPP(BTN)](Run_Named_Parameters_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/named_parameters.cpp)\n![CPP(BTN)](Run_Assisted_Injection_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/injections/assisted_injection.cpp)\n\n<br /><hr />\n\n###Scopes\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nScopes are responsible for creating and maintaining life time of dependencies.\nIf no scope will be given, [deduce] scope will be assumed.\n\n***Semantics***\n\n    template <class TExpected, class TGiven>\n    struct scope {\n      template <class T>\n      using is_referable;\n\n      template <class T, class TName, class TProvider>\n      static auto try_create(const TProvider&);\n\n      template <class T, class TName, class TProvider>\n      auto create(const TProvider&);\n    };\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `TExpected` | - | 'Interface' type | - |\n| `TGiven` | - | 'Implementation' type | - |\n| `is_referable<T>` | - | Verifies whether scope value might be converted to a reference | true_type/false_type |\n| `try_create<T, TName, TProvider>` | [providable]<TProvider\\> | Verifies whether type `T` might be created | true_type/false_type |\n| `create<T, TName, TProvider>` | [providable]<TProvider\\> | Creates type `T` | `T` |\n\n| Type/Scope | [unique] | [singleton] | [instance] |\n|------------|----------|-------------|------------|\n| T | ✔ | - | ✔ |\n| T& | - | ✔  | ✔ |\n| const T& | ✔ (temporary) | ✔ | ✔ |\n| T* (transfer ownership) | ✔ | - | - |\n| const T* | ✔ | - | - |\n| T&& | ✔ | - | ✔ |\n| std::unique_ptr<T> | ✔ | - | - |\n| std::shared_ptr<T> | ✔ | ✔ | ✔ |\n| boost::shared_ptr<T> | ✔ | ✔ | - / ✔ converted to |\n| std::weak_ptr<T> | - | ✔ |  - / ✔ converted to |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/scopes_custom.cpp)\n***Example***\n\n![CPP(BTN)](Run_Custom_Scope_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_scope.cpp)\n![CPP(BTN)](Run_Scoped_Scope_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/scopes/scoped_scope.cpp)\n![CPP(BTN)](Run_Session_Scope_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/scopes/session_scope.cpp)\n![CPP(BTN)](Run_Shared_Scope_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/scopes/shared_scope.cpp)\n\n<br /><br /><br /><hr />\n\n<a id=\"di_deduce\"></a>\n--- ***di::deduce (default)*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nDefault scope which will be converted to one of the scopes depending on the type.\n\n| Type | Scope |\n|------|-------|\n| T | [unique] |\n| T& | [singleton] |\n| const T& | [unique] (temporary) / [singleton] |\n| T* | [unique] (ownership transfer) |\n| const T* | [unique] (ownership transfer) |\n| T&& | [unique] |\n| std::unique_ptr<T> | [unique] |\n| std::shared_ptr<T> | [singleton] |\n| boost::shared_ptr<T> | [singleton] |\n| std::weak_ptr<T> | [singleton] |\n\n***Semantics***\n\n    namespace scopes {\n      struct deduce {\n        template <class TExpected, class TGiven>\n        struct scope {\n          template <class T>\n          using is_referable;\n\n          template <class T, class TName, class TProvider>\n          static auto try_create(const TProvider&);\n\n          template <class T, class TName, class TProvider>\n          auto create(const TProvider&);\n        };\n      };\n    }\n\n    scopes::deduce deduce;\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `TExpected` | - | 'Interface' type | - |\n| `TGiven` | - | 'Implementation' type | - |\n| `is_referable<T>` | - | Verifies whether scope value might be converted to a reference | true_type/false_type |\n| `try_create<T, TName, TProvider>` | [providable]<TProvider\\> | Verifies whether type `T` might be created | true_type/false_type |\n| `create<T, TName, TProvider>` | [providable]<TProvider\\> | Creates type `T` | `T` |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/scopes_deduce_default.cpp)\n***Example***\n\n![CPP(BTN)](Run_Deduce_Scope_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/deduce_scope.cpp)\n![CPP(BTN)](Run_Scopes_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/scopes.cpp)\n\n<br /><hr />\n\n<a id=\"di_instance\"></a>\n--- ***di::instance (di::bind<>.to(value))*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nScope representing values - passed externally. The life time of the object depends on the user.\n[Boost].DI is not maintaining the life time of these objects, however, values and strings will be copied and managed by the library.\n\n| Type | instance[in] (`bind<>.to(in)`) | instance[out] (`injector.create<out>()`) |\n| ---- | ------------ | ------------- |\n| T | ✔ | ✔ |\n| T& | ✔ | ✔ |\n| const T& | ✔ | ✔ |\n| T* | - | - |\n| const T* | - | - |\n| T&& | ✔ | ✔ |\n| std::unique_ptr<T> | - | - |\n| std::shared_ptr<T> | ✔ | ✔ |\n| boost::shared_ptr<T> | - | ✔ |\n| std::weak_ptr<T> | - | ✔ |\n\n***Semantics***\n\n    namespace scopes {\n      struct instance {\n        template <class TExpected, class TGiven>\n        struct scope {\n          template <class T>\n          using is_referable;\n\n          template <class T, class TName, class TProvider>\n          static auto try_create(const TProvider&);\n\n          template <class T, class TName, class TProvider>\n          auto create(const TProvider&);\n        };\n      };\n    }\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `TExpected` | - | 'Interface' type | - |\n| `TGiven` | - | 'Implementation' type | - |\n| `is_referable<T>` | - | Verifies whether scope value might be converted to a reference | true_type/false_type |\n| `try_create<T, TName, TProvider>` | [providable]<TProvider\\> | Verifies whether type `T` might be created | true_type/false_type |\n| `create<T, TName, TProvider>` | [providable]<TProvider\\> | Creates type `T` | `T` |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/scopes_instance.cpp)\n***Example***\n\n![CPP(BTN)](Run_Scopes_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/scopes.cpp)\n![CPP(BTN)](Run_Bindings_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/bindings.cpp)\n\n<br /><hr />\n\n<a id=\"di_singleton\"></a>\n--- ***di::singleton*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nScope representing shared value between all instances as well as threads.\nSingleton scope will be deduced in case of reference, `std::shared_ptr`, `boost::shared_ptr` or `std::weak_ptr`.\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nSingleton scope will convert automatically between `std::shared_ptr` and `boost::shared_ptr` if required.\n</span>\n\n| Type | singleton |\n| ---- | --------- |\n| T | - |\n| T& | ✔ |\n| const T& | ✔ |\n| T* | - |\n| const T* | - |\n| T&& | - |\n| std::unique_ptr<T> | - |\n| std::shared_ptr<T> | ✔ |\n| boost::shared_ptr<T> | ✔ |\n| std::weak_ptr<T> | ✔ |\n\n***Semantics***\n\n    namespace scopes {\n      struct singleton {\n        template <class TExpected, class TGiven>\n        struct scope {\n          template <class T>\n          using is_referable;\n\n          template <class T, class TName, class TProvider>\n          static auto try_create(const TProvider&);\n\n          template <class T, class TName, class TProvider>\n          auto create(const TProvider&);\n        };\n      };\n    }\n\n    scopes::singleton singleton;\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `TExpected` | - | 'Interface' type | - |\n| `TGiven` | - | 'Implementation' type | - |\n| `is_referable<T>` | - | Verifies whether scope value might be converted to a reference | true_type/false_type |\n| `try_create<T, TName, TProvider>` | [providable]<TProvider\\> | Verifies whether type `T` might be created | true_type/false_type |\n| `create<T, TName, TProvider>` | [providable]<TProvider\\> | Creates type `T` | `T` |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/scopes_singleton.cpp)\n***Example***\n\n![CPP(BTN)](Run_Scopes_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/scopes.cpp)\n![CPP(BTN)](Run_Eager_Singletons_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/eager_singletons.cpp)\n\n<br /><hr />\n\n<a id=\"di_unique\"></a>\n--- ***di::unique*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nScope representing unique/per request value. A new instance will be provided each time type will be requested.\n\n| Type | unique |\n| ---- | ------ |\n| T | ✔ |\n| T& | - |\n| const T& | ✔ (temporary) |\n| T* | ✔ (ownership transfer) |\n| const T* | ✔ (ownership transfer) |\n| T&& | ✔ |\n| std::unique_ptr<T> | ✔ |\n| std::shared_ptr<T> | ✔ |\n| boost::shared_ptr<T> | ✔ |\n| std::weak_ptr<T> | - |\n\n***Semantics***\n\n    namespace scopes {\n      struct unique {\n        template <class TExpected, class TGiven>\n        struct scope {\n          template <class T>\n          using is_referable;\n\n          template <class T, class TName, class TProvider>\n          static auto try_create(const TProvider&);\n\n          template <class T, class TName, class TProvider>\n          auto create(const TProvider&);\n        };\n      };\n    }\n\n    scopes::unique unique;\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `TExpected` | - | 'Interface' type | - |\n| `TGiven` | - | 'Implementation' type | - |\n| `is_referable<T>` | - | Verifies whether scope value might be converted to a reference | true_type/false_type |\n| `try_create<T, TName, TProvider>` | [providable]<TProvider\\> | Verifies whether type `T` might be created | true_type/false_type |\n| `create<T, TName, TProvider>` | [providable]<TProvider\\> | Creates type `T` | `T` |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/scopes_unique.cpp)\n***Example***\n\n![CPP(BTN)](Run_Scopes_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/scopes.cpp)\n\n<br /><hr />\n\n###Modules\n\n<a id=\"di_module\"></a>\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nModules allow to split [bindings] configuration into smaller [injectors](#injector).\nModule might be installed by passing it into [make_injector].\n\n***Semantics***\n\n    auto module = di::make_injector(...);\n    di::injector<Ts...> module = di::make_injector(...);\n\n| Expression | Description | Note |\n| ---------- | ----------- | ---- |\n| `auto module = di::make_injector(...)` | All types are exposed from `module` | `module.create<T>()` is allowed for any `T` |\n| `di::injector<Ts...> module = di::make_injector(...)` | Only `Ts...` types are exposed from `module` | `module.create<T>()` is allowed only for `T` <= `Ts...` |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/module.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/module_exposed_type.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/module_exposed_many_types.cpp)\n***Example***\n\n![CPP(BTN)](Run_Modules_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/modules.cpp)\n\n<br /><hr />\n\n<a id=\"BOOST_DI_EXPOSE\"></a>\n--- ***BOOST_DI_EXPOSE*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nBOOST_DI_EXPOSE is a macro definition allowing to expose [named] parameters via module/[injector].\n\n***Semantics***\n\n    di::injector<BOOST_DI_EXPOSE((named = Name) T), ...>;\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `Name` | - | Named object | - |\n| `...` | - | More types to be exposed | - |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/module_exposed_annotated_type.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/module_exposed_complex_types.cpp)\n***Example***\n\n![CPP(BTN)](Run_Modules_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/modules.cpp)\n\n<br /><hr />\n\n\n###Providers\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nProviders are responsible for creating objects using given [Configuration].\n\n***Semantics***\n\n    namespace type_traits {\n      struct direct; // T(...)\n      struct uniform; // T{...}\n      struct heap; // new T\n      struct stack; // T\n    }\n\n    namespace providers {\n      class provider {\n        public:\n          template <class T, class... TArgs>\n          struct is_creatable;\n\n          template <\n            class T\n          , class TInit // type_traits::direct/type_traits::uniform\n          , class TMemory // type_traits::heap/type_traits::stack\n          , class... TArgs\n          > auto get(const TInit&, const TMemory&, TArgs&&... args) const;\n      };\n    }\n\n    struct config : di::config {\n      template<class TInjector>\n      static auto provider(const TInjector&) noexcept { return providers::stack_over_heap{}; }\n    };\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `TInjector` | - | [injector] | - |\n| `is_creatable<T, TArgs...>` | [creatable]<TArgs...\\> | Verify whether `T` is creatable with `TArgs...` | true_type/false_type |\n| `get(const TInit&, const TMemory&, TArgs&&...)` | `TInit` -> direct/uniform, `TMemory` -> heap/stack | Creates type `T` with `TArgs...` | `T` |\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nProvider used by [injector] might changed locally via [make_injector] or globally via [BOOST_DI_CFG].\n</span>\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/providers_heap_no_throw.cpp)\n***Example***\n\n![CPP(BTN)](Run_Custom_Provider_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_provider.cpp)\n![CPP(BTN)](Run_Pool_Provider_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/pool_provider.cpp)\n\n<br /><hr />\n\n<a id=\"di_stack_over_heap\"></a>\n--- ***di::providers::stack_over_heap (default)*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nCreates objects on the stack whenever possible, otherwise on the heap.\n\n***Semantics***\n\n    namespace providers {\n      class stack_over_heap {\n        public:\n          template <class T, class... TArgs>\n          struct is_creatable;\n\n          template <\n            class T\n          , class TInit // type_traits::direct/type_traits::uniform\n          , class TMemory // type_traits::heap/type_traits::stack\n          , class... TArgs\n          > auto get(const TInit&, const TMemory&, TArgs&&... args) const;\n      };\n    }\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `is_creatable<T, TArgs...>` | [creatable]<TArgs...\\> | Verify whether `T` is creatable with `TArgs...` | true_type/false_type |\n| `get(const TInit&, const TMemory&, TArgs&&...)` | `TInit` -> direct/uniform, `TMemory` -> heap/stack | Creates type `T` with `TArgs...` | `T` |\n\n| Type | `TMemory` |\n|------|-------|\n| T | stack |\n| T& | stack |\n| const T& | stack |\n| T&& | stack |\n| T* | heap |\n| const T* | heap |\n| std::unique\\_ptr<T> | heap |\n| std::shared\\_ptr<T> | heap |\n| std::weak\\_ptr<T> | heap |\n| boost::shared\\_ptr<T> | heap |\n| `is_polymorphic<T>` | heap |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/providers_stack_over_heap.cpp)\n***Example***\n\n![CPP(BTN)](Run_Custom_Provider_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_provider.cpp)\n![CPP(BTN)](Run_Pool_Provider_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/pool_provider.cpp)\n\n<br /><hr />\n\n<a id=\"di_heap\"></a>\n--- ***di::providers::heap*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nBasic provider creates objects on the heap (always).\n\n***Semantics***\n\n    namespace providers {\n      class heap {\n        public:\n          template <class T, class... TArgs>\n          struct is_creatable;\n\n          template <\n            class T\n          , class TInit // type_traits::direct/type_traits::uniform\n          , class TMemory // type_traits::heap/type_traits::stack\n          , class... TArgs\n          > auto get(const TInit&, const TMemory&, TArgs&&... args) const;\n      };\n    }\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `is_creatable<T, TArgs...>` | [creatable]<TArgs...\\> | Verify whether `T` is creatable with `TArgs...` | true_type/false_type |\n| `get(const TInit&, const TMemory&, TArgs&&...)` | `TInit` -> direct/uniform, `TMemory` -> heap/stack | Creates type `T` with `TArgs...` | `T` |\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/providers_heap.cpp)\n***Example***\n\n![CPP(BTN)](Run_Custom_Provider_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_provider.cpp)\n![CPP(BTN)](Run_Pool_Provider_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/pool_provider.cpp)\n![CPP(BTN)](Run_Mocks_Provider_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/providers/mocks_provider.cpp)\n\n<br /><br /><br /><hr />\n\n###Policies\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nPolicies operates on dependencies in order to limit allowed behaviour or visit created types during run-time.\nPolicies are set up via [Configuration].\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nBy default [Boost].DI has NO policies enabled.\n</span>\n\n***Semantics***\n\n    template <class... TPolicies> requires callable<TPolicies...>\n    auto make_policies(TPolicies...) noexcept;\n\n    struct config : di::config {\n      template<class TInjector>\n      static auto policies(const TInjector&) noexcept { return make_policies(...); }\n    };                                                                        |\n                                                                              |\n    // policy                                                                 /\n    template<class T>   <-----------------------------------------------------\n    void operator()(const T&);\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `TInjector` | - | [injector] | - |\n| `make_policies<TPolicies...>` | [callable]<TPolicies...\\> | Creates policies | [callable] list |\n\n| `T` | Description | Example |\n| --- | ----------- | ------- |\n| `T::type` | Type to be created | `std::shared_ptr<int>` |\n| `T::expected` | Decayed 'Interface' type | `interface` |\n| `T::given` | Decayed 'Given' type | `implementatoin` |\n| `T::name` | Annotation name | `my_name` |\n| `T::arity` | Number of constructor arguments | `integral_constant<int, 3>` |\n| `T::scope` | [scope](#scopes) | [singleton] |\n| `T::is_root` | Is the root object (a type `create` was called with) | `true_type`/`false_type` |\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nIn order for injector to verify policies they have to be created using [config] and passed via `TConfig` in [make_injector]\nor set it globally via [BOOST_DI_CFG].\n</span>\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/policies_print_types.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/policies_print_type_extended.cpp)\n***Example***\n\n![CPP(BTN)](Run_Custom_Policy_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_policy.cpp)\n![CPP(BTN)](Run_Types_Dumper_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/types_dumper.cpp)\n![CPP(BTN)](Run_UML_Dumper_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/uml_dumper.cpp)\n\n<br /><br /><br /><hr />\n\n<a id=\"di_constructible\"></a>\n--- ***di::policies::constructible*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nConstructible policy limits constructor parameters to explicitly allowed.\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nBy default constructible policy disables creation of any constructor parameters.\n</span>\n\n***Semantics***\n\n    namespace policies {\n      struct _ { }; // placeholder\n\n      template<class T>\n      struct is_bound; // true when type is bound with 'di::bind<T>'\n\n      template <class T>\n      struct is_injected; // true when type is injected using 'BOOST_DI_INJECT' or is 'fundamental'\n\n      template<class T>\n      auto constructible(const T&) noexcept;\n    }\n\n    namespace operators {\n      template<class X>\n      inline auto operator!(const X&)\n\n      template<class X, class Y>\n      inline auto operator&&(const X&, const Y&);\n\n      template<class X, class Y>\n      inline auto operator||(const X&, const Y&);\n    }\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `is_bound<T>` | - | Verify whether type `T` is bound | true_type/false_type |\n| `is_injected<T>` | - | Verify whether type `T` is injected via [BOOST_DI_INJECT] | true_type/false_type |\n\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nIn order to allow logic operators using namespace `boost::di::policies::operators` has to be used.\n</span>\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/policies_constructible_local.cpp)\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/policies_constructible_global.cpp)\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nSTL type traits are supported and might be combined with [Boost].DI traits in order to limit constructor types\nFor example, `std::is_same<_, int>{} || std::is_constructible<_, int, int>{} || std::is_base_of<int, _>{}`, etc...\n</span>\n\n***Example***\n\n![CPP(BTN)](Run_Custom_Policy_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_policy.cpp)\n![CPP(BTN)](Run_Types_Dumper_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/types_dumper.cpp)\n![CPP(BTN)](Run_UML_Dumper_Extension|https://raw.githubusercontent.com/boost-experimental/di/cpp14/extension/policies/uml_dumper.cpp)\n\n<br /><br /><br /><hr />\n\n###Concepts\n\nConcepts are types constraints which ensure that only given types which are satisfied by the constraint will be allowed.\nIf type doesn't satisfy the concept short and descriptive error message is provided.\n\n<a id=\"di_boundable\"></a>\n--- ***di::concepts::boundable*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\n[Bindings] type requirement.\n\n***Synopsis***\n\n    template <class TExpected, class TGiven>\n    concept bool boundable() {\n      return is_complete<TExpected>()\n          && is_complete<TGiven>()\n          && (is_base_of<TExpected, TGiven>() || is_convertible<TGiven, TExpected>());\n    }\n\n    template <class... Ts>\n    concept bool boundable() {\n      return is_supported<Ts>()...\n          && is_movable<Ts>()...\n          && (is_base_of<injector, Ts>()... || is_base_of<dependency, Ts>()...);\n    }\n\n***Semantics***\n\n    boundable<T>\n    boundable<Ts...>\n\n| Expression | Description | Returns |\n| ---------- | ----------- | ------- |\n| `Ts...` | Bindings to be verified | true_type if constraint is satisfied, `Error` otherwise |\n\n***Example***\n\n| Error | `type<T>::has_disallowed_qualifiers` |\n| ---------- | ----------- |\n| Description | type `T` has disallowed qualifiers |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/boundable_type_has_disallowed_qualifiers.cpp) |\n\n| Error | `type<T>::is_abstract` |\n| ---------- | ----------- |\n| Description | type `T` is abstract |\n| `BOOST_DI_CFG_DIAGNOSTICS_LEVEL` | 0, 1 -> no additional info, 2 -> info about why type `T` is abstract |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/boundable_type_is_abstract.cpp) |\n\n| Error | `type<T>::is_not_related_to` |\n| ---------- | ----------- |\n| Description | type `T` is not related to type `U` |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/boundable_type_is_not_related_to.cpp) |\n\n| Error | `type<T>::is_bound_more_than_once` |\n| ---------- | ----------- |\n| Description | type `T` is bound more than once |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/boundable_type_is_bound_more_than_once.cpp) |\n\n| Error | `type<T>::is_neither_a_dependency_nor_an_injector` |\n| ---------- | ----------- |\n| Description | type `T` is neither a dependency nor an injector |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/boundable_type_is_neither_a_dependency_nor_an_injector.cpp) |\n\n---\n\n<a id=\"di_callable\"></a>\n--- ***di::concepts::callable*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\n[Policy] type requirement.\n\n***Synopsis***\n\n    template <class T>\n    concept bool callable() {\n      return requires(T object) {\n        { object(...) };\n      }\n    }\n\n***Semantics***\n\n    callable<T>\n\n***Example***\n\n| Error | `policy<TPolicy>::requires_<call_operator>` |\n| ---------- | ----------- |\n| Description | policy `TPolicy` requires a call operator |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/callable_requires_call_operator.cpp) |\n\n---\n\n<a id=\"di_configurable\"></a>\n--- ***di::concepts::configurable*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\n[Configuration] type requirement.\n\n***Synopsis***\n\n    template <class T>\n    concept bool configurable() {\n      return requires(T object) {\n        return providable<decltype(T::provider(...))> && callable<decltype(T::policies(...))>();\n      }\n    }\n\n***Semantics***\n\n    configurable<T>\n\n***Example***\n\n| Error | `config<TConfig>::requires_<provider<providable_type (...)>>` |\n| ---------- | ----------- |\n| Description | config `T` requires only providable and callable types |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/configurable_requires_callable_and_providable.cpp) |\n\n---\n\n<a id=\"di_creatable\"></a>\n--- ***di::concepts::creatable*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\nRequirement for type `T` which is going to be created via [injector]`.create<T>()`\n\n***Synopsis***\n\n    namespace type_traits {\n      template<class T>\n      using ctor_traits; // returns list of constructor parameters\n    }\n\n    template <class T, class... TArgs>\n    concept bool creatable() {\n      return is_constructible<T, TArgs...>() &&\n             is_constructible<TArgs, type_traits::ctor_traits<TArgs>...>();\n    }\n\n***Semantics***\n\n    creatable<T, TArgs...>\n\n***Example***\n\n| Error | `abstract_type<T>::is_not_bound` |\n| ---------- | ----------- |\n| Description | abstract type `T` is not bound |\n| `BOOST_DI_CFG_DIAGNOSTICS_LEVEL` | 0 -> 'constraint not satisfied', 1 -> (0) + abstract type is not bound, 2 -> (1) + creation tree |\n| Suggestion  | 'type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?' |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/creatable_abstract_type_is_not_bound.cpp) |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/creatable_expose_abstract_type_is_not_bound.cpp) |\n\n| Error | `type<T>::has_ambiguous_number_of_constructor_parameters::given<Given>::expected<Expected>` |\n| ---------- | ----------- |\n| Description | type `T` has ambiguous number of constructor parameters where `Given` were provided but `Expected` were expected |\n| `BOOST_DI_CFG_DIAGNOSTICS_LEVEL` | 0 -> 'constraint not satisfied', 1 -> (0) + abstract type is not bound, 2 -> (1) + creation tree |\n| Suggestion  | 'verify BOOST_DI_INJECT_TRAITS or di::ctor_traits' |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/creatable_type_has_ambiguous_number_of_constructor_parameters.cpp) |\n\n| Error | `type<T>::has_to_many_constructor_parameters::max<Max>` |\n| ---------- | ----------- |\n| Description | type `T` has to many constructor parameter where maximum number is `Max` |\n| `BOOST_DI_CFG_DIAGNOSTICS_LEVEL` | 0 -> 'constraint not satisfied', 1 -> (0) + abstract type is not bound, 2 -> (1) + creation tree |\n| Suggestion  | 'increase BOOST_DI_CFG_CTOR_LIMIT_SIZE value or reduce number of constructor parameters' |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/creatable_type_has_to_many_constructor_parameters.cpp) |\n\n| Error | `scoped<TScope>::is_not_convertible_to<T>` |\n| ---------- | ----------- |\n| Description | scope `TScope` is not convertible to type `T` |\n| `BOOST_DI_CFG_DIAGNOSTICS_LEVEL` | 0 -> 'constraint not satisfied', 1 -> (0) + abstract type is not bound, 2 -> (1) + creation tree |\n| Suggestion  | 'scoped object is not convertible to the requested type, did you mistake the scope: 'di::bind<T>.in(scope)'?' |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/creatable_scoped_is_not_convertible_to.cpp) |\n\n| Error | `scoped<instance>::is_not_convertible_to<T>` |\n| ---------- | ----------- |\n| Description | instance is not convertible to type `T` |\n| `BOOST_DI_CFG_DIAGNOSTICS_LEVEL` | 0 -> 'constraint not satisfied', 1 -> (0) + abstract type is not bound, 2 -> (1) + creation tree |\n| Suggestion  | 'instance is not convertible to the requested type, verify binding: 'di::bind<T>.to(value)'?' |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/creatable_instance_is_not_convertible_to.cpp) |\n\n<span class=\"fa fa-eye wy-text-neutral warning\"> **Note**<br/><br/>\nSuggestions are not supported/displayed by MSVC-2015.\n</span>\n\n---\n\n<a id=\"di_providable\"></a>\n--- ***di::concepts::providable*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\n[Provider] type requirement.\n\n***Synopsis***\n\n    namespace type_traits {\n      struct direct;\n      struct uniform;\n      struct stack;\n      struct heap;\n    }\n\n    template <class T>\n    concept bool providable() {\n      return requires(T object) {\n        { object.template get<_>(type_traits::direct/type_traits::uniform{}, type_traits::stack/type_traits::heap{}, ...) };\n        { object.template is_creatable<_>(type_traits::direct/type_traits::uniform{}, type_traits::stack/type_traits::heap{}, ...) };\n      }\n    }\n\n***Semantics***\n\n    providable<T>\n\n***Example***\n\n| Error | `provider<TProvider>::requires_<get>` |\n| ---------- | ----------- |\n| Description | provider `TProvider` requires `get` method |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/providable_requires_get.cpp) |\n\n---\n\n<a id=\"di_scopable\"></a>\n--- ***di::concepts::scopable*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\n[Scope] type requirement.\n\n***Synopsis***\n\n    struct _ {}; // any type\n\n    template <class T>\n    concept bool scopable() {\n      return requires(T) {\n        typename scope<_, _>::is_referable;\n        { T::scope<_, _>{}.try_create() };\n        { T::scope<_, _>{}.create() };\n      }\n    }\n\n***Semantics***\n\n    scopable<T>\n\n***Example***\n\n| Error | `scope<TScope>::requires_<create>` |\n| ---------- | ----------- |\n| Description | scope `TScope` requires `create` method |\n| Expression  | ![CPP](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/errors/scopable_requires_create.cpp) |\n\n---\n\n###Configuration\n\n<a id=\"di_config\"></a>\n--- ***di::config*** ---\n\n***Header***\n\n    #include <boost/di.hpp>\n\n***Description***\n\n[Injector] configuration.\n\n***Synopsis***\n\n    struct config {\n      static auto provider(...) noexcept;\n      static auto policies(...) noexcept;\n    };\n\n| Expression | Requirement | Description | Returns |\n| ---------- | ----------- | ----------- | ------- |\n| `provider()` | [providable] | Creates provider | [providable] |\n| `policies()` | [callable] | Creates policies | [callable] |\n\n| Expression | Description |\n| ---------- | ----------- |\n| `BOOST_DI_CFG` | Global configuration allows to customize provider and policies |\n\n***Semantics***\n\n    di::make_injector<config>(...)\n    // or\n    #define BOOST_DI_CFG config // change default\n    di::make_injector(...)\n\n***Test***\n![CPP(SPLIT)](https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/user_guide/policies_constructible_global.cpp)\n***Example***\n\n![CPP(BTN)](Run_Configuration_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/configuration.cpp)\n![CPP(BTN)](Run_Custom_Policy_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_policy.cpp)\n![CPP(BTN)](Run_Custom_Provider_Example|https://raw.githubusercontent.com/boost-experimental/di/cpp14/example/custom_provider.cpp)\n\n<br /><hr />\n\n[Bindings]: #bindings\n[bindings]: #bindings\n[annotations]: #annotations\n[boundable]: #di_boundable\n[callable]: #di_callable\n[configurable]: #di_configurable\n[creatable]: #di_creatable\n[providable]: #di_providable\n[scopable]: #di_scopable\n[automatic]: #di_automatic\n[di::inject]: #di_inject\n[di::ctor_traits]: #di_ctor_traits\n[injector]: #di_make_injector\n[Injector]: #di_make_injector\n[make_injector]: #di_make_injector\n[Configuration]: #di_config\n[Policy]: #policies\n[Provider]: #providers\n[Scope]: #scopes\n[deduce]: #di_deduce\n[instance]: #di_instance\n[singleton]: #di_singleton\n[unique]: #di_unique\n[named]: #di_named\n[config]: #di_config\n[BOOST_DI_CFG]: #di_config\n[BOOST_DI_INJECT]: #BOOST_DI_INJECT\n[BOOST_DI_INJECT_TRAITS]: #BOOST_DI_INJECT_TRAITS\n[BOOST_DI_CFG_CTOR_LIMIT_SIZE]: overview.md#configuration\n[BOOST_DI_CFG_DIAGNOSTICS_LEVEL]: overview.md#configuration\n\n[di::inject]: #di_inject\n[di::ctor_traits]: #di_ctor_traits\n[BOOST_DI_INJECT]: #BOOST_DI_INJECT\n[BOOST_DI_INJECT_TRAITS]: #BOOST_DI_INJECT_TRAITS\n"
  },
  {
    "path": "example/CMakeLists.txt",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nfunction(example example)\n    string(REPLACE \"/\" \"_\" tmp ${example})\n    add_executable(example.${tmp} ${CMAKE_CURRENT_LIST_DIR}/${example}.cpp)\n    add_test(example.${tmp} example.${tmp})\nendfunction()\n\nexample(annotations)\nexample(automatic_injection)\nexample(bind_non_owning_ptr)\nexample(bindings)\nexample(configuration)\nexample(constructor_injection)\nexample(constructor_signature)\nexample(custom_policy)\nexample(custom_provider)\nexample(custom_scope)\nexample(deduce_scope)\nexample(dynamic_bindings)\nexample(eager_singletons)\nexample(example)\nexample(fwd_bindings)\nexample(modules)\nexample(motivation)\nexample(multiple_bindings)\nexample(multiple_interfaces)\nexample(pool_provider)\nexample(scopes)\nexample(try_it)\n\nexample(performance/create_bound_interface)\nexample(performance/create_bound_interface_via_exposed_module)\nexample(performance/create_bound_interface_via_module)\nexample(performance/create_named_type)\nexample(performance/create_type_with_bound_instance)\nexample(performance/create_type_without_bindings)\n\nexample(tutorial/basic_annotations_to_the_rescue)\nexample(tutorial/basic_create_objects_tree)\nexample(tutorial/basic_decide_the_life_times)\nexample(tutorial/basic_first_steps_with_bindings)\nexample(tutorial/basic_first_steps_with_bindings_override)\nexample(tutorial/basic_first_steps_with_dynamic_bindings)\nexample(tutorial/basic_first_steps_with_multiple_bindings)\nexample(tutorial/basic_first_steps_with_template_bindings)\nexample(tutorial/basic_split_your_configuration)\nexample(tutorial/basic_split_your_configuration_expose)\n\nexample(user_guide/annotated_constructor_injection)\nexample(user_guide/annotated_constructor_injection_with_constructor_definition)\nexample(user_guide/annotated_constructor_injection_with_ctor_traits)\nexample(user_guide/annotated_constructor_injection_with_the_same_names)\nexample(user_guide/bind_cross_platform)\nexample(user_guide/bind_deduce_type_to_value)\nexample(user_guide/bind_dynamic_bindings)\nexample(user_guide/bind_interface_to_implementation)\nexample(user_guide/bind_multiple_bindings)\nexample(user_guide/bind_multiple_bindings_initializer_list)\nexample(user_guide/bind_multiple_interfaces)\nexample(user_guide/bind_type_override)\nexample(user_guide/bind_type_to_compile_time_value)\nexample(user_guide/bind_type_to_value)\nexample(user_guide/constructor_injection_aggregate)\nexample(user_guide/constructor_injection_ambiguous_constructors_via_BOOST_DI_INJECT)\nexample(user_guide/constructor_injection_ambiguous_constructors_via_BOOST_DI_INJECT_TRAITS)\nexample(user_guide/constructor_injection_ambiguous_constructors_via_ctor_traits)\nexample(user_guide/constructor_injection_ambiguous_constructors_via_inject)\nexample(user_guide/constructor_injection_ambiguous_constructors_via_vaargs)\nexample(user_guide/constructor_injection_default_values)\nexample(user_guide/constructor_injection_direct)\nexample(user_guide/constructor_injection_long_parameter_list)\nexample(user_guide/constructor_injection_multiple_constructors)\nexample(user_guide/injector_empty)\nexample(user_guide/module)\nexample(user_guide/module_exposed_annotated_type)\nexample(user_guide/module_exposed_complex_types)\nexample(user_guide/module_exposed_many_types)\nexample(user_guide/module_exposed_type)\nexample(user_guide/policies_constructible_global)\nexample(user_guide/policies_constructible_local)\nexample(user_guide/policies_print_type_extended)\nexample(user_guide/policies_print_types)\nexample(user_guide/providers_heap)\nexample(user_guide/providers_heap_no_throw)\nexample(user_guide/providers_stack_over_heap)\nexample(user_guide/scopes_custom)\nexample(user_guide/scopes_deduce_default)\nexample(user_guide/scopes_instance)\nexample(user_guide/scopes_singleton)\nexample(user_guide/scopes_unique)\n"
  },
  {
    "path": "example/Jamfile.v2",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nimport testing ;\nimport feature : extend-feature compose ;\n\n.argv = [ modules.peek : ARGV ] ;\n\nproject boost.di :\n    requirements\n        <include>../include\n        <include>.\n;\n\nrule example ( src + : cxxflags * : property * ) {\n    cxx_flags = \"\" ;\n    if $(cxxflags) {\n        cxx_flags = \"$(cxxflags)\" ;\n    }\n\n    toolset =\n        <toolset>gcc:<cxxflags>\"-std=c++1y -fno-exceptions -Wall -Wextra -Werror $(cxx_flags)\"\n        <toolset>gcc-6.0.0:<cxxflags>\"-std=c++1z\"\n        <toolset>clang:<cxxflags>\"-std=c++1y -Wno-dollar-in-identifier-extension -fno-exceptions -pedantic -pedantic-errors -Wall -Wextra -Werror $(cxx_flags)\"\n        <toolset>darwin:<cxxflags>\"-std=c++1y -fno-exceptions -pedantic -pedantic-errors -Wall -Wextra -Werror $(cxx_flags)\"\n        <toolset>msvc:<cxxflags>\"/W3 $(cxx_flags)\"\n    ;\n\n    local memcheck = [ MATCH --memcheck=(.*) : $(.argv) ] ;\n\n    if ${memcheck} {\n        toolset += <testing.launcher>$(memcheck) ;\n    }\n\n    run $(src) : : : $(toolset) : $(property) ;\n}\n\ntest-suite example :\n    [ example modules/model.cpp\n\t\t\t  modules/module_model.cpp\n\t\t\t  modules/view.cpp\n\t\t\t  modules/module_view.cpp\n\t\t\t  modules/controller.cpp\n\t\t\t  modules/main.cpp\n\t  : -Imodules -DBOOST_DI_CFG_FWD=\"\\\"class config;\\\"\" -DBOOST_DI_CFG=config\n\t]\n    [ example annotations.cpp ]\n    [ example automatic_injection.cpp ]\n    [ example bind_non_owning_ptr.cpp ]\n    [ example bindings.cpp ]\n    [ example configuration.cpp ]\n    [ example constructor_injection.cpp ]\n    [ example constructor_signature.cpp ]\n    [ example custom_policy.cpp ]\n    [ example custom_provider.cpp ]\n    [ example custom_scope.cpp ]\n    [ example deduce_scope.cpp ]\n    [ example dynamic_bindings.cpp ]\n    [ example eager_singletons.cpp ]\n    [ example example.cpp ]\n    [ example fwd_bindings.cpp ]\n    [ example modules.cpp ]\n    [ example motivation.cpp ]\n    [ example multiple_bindings.cpp ]\n    [ example multiple_interfaces.cpp ]\n    [ example pool_provider.cpp ]\n    [ example scopes.cpp ]\n    [ example try_it.cpp ]\n;\n\ntest-suite performance :\n    [ example performance/create_bound_interface.cpp ]\n    [ example performance/create_bound_interface_via_exposed_module.cpp ]\n    [ example performance/create_bound_interface_via_module.cpp ]\n    [ example performance/create_named_type.cpp ]\n    [ example performance/create_type_with_bound_instance.cpp ]\n    [ example performance/create_type_without_bindings.cpp ]\n;\n\ntest-suite tutorial :\n    [ example tutorial/basic_annotations_to_the_rescue.cpp ]\n    [ example tutorial/basic_create_objects_tree.cpp ]\n    [ example tutorial/basic_decide_the_life_times.cpp ]\n    [ example tutorial/basic_first_steps_with_bindings.cpp ]\n    [ example tutorial/basic_first_steps_with_bindings_override.cpp ]\n    [ example tutorial/basic_first_steps_with_dynamic_bindings.cpp ]\n    [ example tutorial/basic_first_steps_with_multiple_bindings.cpp ]\n    [ example tutorial/basic_first_steps_with_template_bindings.cpp ]\n    [ example tutorial/basic_split_your_configuration.cpp ]\n    [ example tutorial/basic_split_your_configuration_expose.cpp ]\n;\n\ntest-suite user_guide :\n    [ example user_guide/annotated_constructor_injection.cpp ]\n    [ example user_guide/annotated_constructor_injection_with_constructor_definition.cpp ]\n    [ example user_guide/annotated_constructor_injection_with_ctor_traits.cpp ]\n    [ example user_guide/annotated_constructor_injection_with_the_same_names.cpp ]\n    [ example user_guide/bind_cross_platform.cpp ]\n    [ example user_guide/bind_deduce_type_to_value.cpp ]\n    [ example user_guide/bind_dynamic_bindings.cpp ]\n    [ example user_guide/bind_interface_to_implementation.cpp ]\n    [ example user_guide/bind_multiple_bindings.cpp ]\n    [ example user_guide/bind_multiple_bindings_initializer_list.cpp ]\n    [ example user_guide/bind_multiple_interfaces.cpp ]\n    [ example user_guide/bind_type_override.cpp ]\n    [ example user_guide/bind_type_to_compile_time_value.cpp ]\n    [ example user_guide/bind_type_to_value.cpp ]\n    [ example user_guide/constructor_injection_aggregate.cpp ]\n    [ example user_guide/constructor_injection_ambiguous_constructors_via_BOOST_DI_INJECT.cpp ]\n    [ example user_guide/constructor_injection_ambiguous_constructors_via_BOOST_DI_INJECT_TRAITS.cpp ]\n    [ example user_guide/constructor_injection_ambiguous_constructors_via_ctor_traits.cpp ]\n    [ example user_guide/constructor_injection_ambiguous_constructors_via_inject.cpp ]\n    [ example user_guide/constructor_injection_ambiguous_constructors_via_vaargs.cpp ]\n    [ example user_guide/constructor_injection_default_values.cpp ]\n    [ example user_guide/constructor_injection_direct.cpp ]\n    [ example user_guide/constructor_injection_long_parameter_list.cpp ]\n    [ example user_guide/constructor_injection_multiple_constructors.cpp ]\n    [ example user_guide/injector_empty.cpp ]\n    [ example user_guide/module.cpp ]\n    [ example user_guide/module_exposed_annotated_type.cpp ]\n    [ example user_guide/module_exposed_complex_types.cpp ]\n    [ example user_guide/module_exposed_many_types.cpp ]\n    [ example user_guide/module_exposed_type.cpp ]\n    [ example user_guide/policies_constructible_global.cpp ]\n    [ example user_guide/policies_constructible_local.cpp ]\n    [ example user_guide/policies_print_type_extended.cpp ]\n    [ example user_guide/policies_print_types.cpp ]\n    [ example user_guide/providers_heap.cpp ]\n    [ example user_guide/providers_heap_no_throw.cpp ]\n    [ example user_guide/providers_stack_over_heap.cpp ]\n    [ example user_guide/scopes_custom.cpp ]\n    [ example user_guide/scopes_deduce_default.cpp ]\n    [ example user_guide/scopes_instance.cpp ]\n    [ example user_guide/scopes_singleton.cpp ]\n    [ example user_guide/scopes_unique.cpp ]\n;\n\n"
  },
  {
    "path": "example/annotations.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto int_1 = [] {};\nstruct int_2_t {\n} int_2;\n\nclass annotations1 {\n public:\n  /*<<Constructor with named parameters of the same `int` type>>*/\n  BOOST_DI_INJECT(annotations1, (named = int_1) int i1, (named = int_2) int i2, int i3) : i1(i1), i2(i2), i3(i3) {\n    assert(i1 == 42);\n    assert(i2 == 87);\n    assert(i3 == 123);\n  }\n\n private:\n  int i1 = 0;\n  int i2 = 0;\n  int i3 = 0;\n};\n\nclass annotations2 {\n public:\n  /*<<Constructor with named parameters of the same `int` type>>*/\n  BOOST_DI_INJECT(annotations2, (named = int_1) int i1, (named = int_2) int i2, int i3);\n\n private:\n  int i1 = 0;\n  int i2 = 0;\n  int i3 = 0;\n};\n\nannotations2::annotations2(int i1, int i2, int i3) {\n  assert(i1 == 42);\n  assert(i2 == 87);\n  assert(i3 == 123);\n}\n\n//<-\n#if !defined(__MSVC__)\n#if defined(__CLANG__)\n#pragma clang diagnostic ignored \"-Wgnu-string-literal-operator-template\"\n#endif\n\ntemplate <char...>\nstruct string {};\n\ntemplate <class T, T... Chars>\nconstexpr auto operator\"\"_s() {\n  return string<Chars...>{};\n}\n#endif\n//->\n\n//<-\n#if !defined(__MSVC__)\n//->\nclass annotations3 {\n public:\n  /*<<Constructor with named parameters of the same `int` type>>*/\n  BOOST_DI_INJECT(annotations3, (named = \"int1\"_s) int i1, (named = \"int2\"_s) int i2, int i3) : i1(i1), i2(i2), i3(i3) {\n    assert(i1 == 42);\n    assert(i2 == 87);\n    assert(i3 == 123);\n  }\n\n private:\n  int i1 = 0;\n  int i2 = 0;\n  int i3 = 0;\n};\n//<-\n#endif\n//->\n\nint main() {\n  {\n    /*<<make injector and bind named parameters>>*/\n    // clang-format off\n    auto injector = di::make_injector(\n      di::bind<int>().named(int_1).to(42)\n    , di::bind<int>().named(int_2).to(87)\n    , di::bind<int>().to(123)\n    );\n    // clang-format on\n\n    /*<<create `annotations`>>*/\n    injector.create<annotations1>();\n    injector.create<annotations2>();\n  }\n\n//<-\n#if !defined(__MSVC__)\n  //->\n  {\n    /*<<make injector and bind named parameters>>*/\n    // clang-format off\n    auto injector = di::make_injector(\n      di::bind<int>().named(\"int1\"_s).to(42)\n    , di::bind<int>().named(\"int2\"_s).to(87)\n    , di::bind<int>().to(123)\n    );\n    // clang-format on\n\n    /*<<create `annotations`>>*/\n    injector.create<annotations3>();\n  }\n//<-\n#endif\n  //->\n}\n"
  },
  {
    "path": "example/automatic_injection.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n/*<<ambiguous constructor with 2 parameters>>*/\nstruct example1 {\n  /*<<ambiguous `example1` constructor taking 2 parameters>>*/\n  example1(double, int) { assert(false); }\n\n  /*<<ambiguous `example1` constructor taking 2 parameters - marked to be injected by `...`>>*/\n  example1(int i, double d, ...) {\n    assert(i == 42);\n    assert(d == 87.0);\n  }\n};\n\nstruct example2 {\n  /*<<constructor with 1 parameter marked to be injected by `...`>>*/\n  explicit example2(int i, ...) { assert(i == 42); }\n\n  /*<<constructor with 3 parameters, but still constructor with 1 and `...` will be chosen>>*/\n  example2(int, double, float) { assert(false); }\n};\n\nint main() {\n  /*<<make injector and bind named parameters>>*/\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n\n  /*<<create `example1`>>*/\n  injector.create<example1>();\n\n  /*<<create `example2`>>*/\n  injector.create<example2>();\n}\n"
  },
  {
    "path": "example/bind_non_owning_ptr.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nusing Pointer = int;\n\nauto module(Pointer* ptr) { return di::bind<Pointer>().to(*ptr); }\n\nstruct app {\n  app(Pointer& ptr) { assert(42 == ptr); }\n};\n\nint main() {\n  di::aux::owner<Pointer*> ptr{new Pointer{42}};\n\n  auto injector = di::make_injector(module(ptr));\n  injector.create<app>();\n\n  delete ptr;\n}\n"
  },
  {
    "path": "example/bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <functional>\n#include <memory>\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface1 {\n  virtual ~interface1() noexcept = default;\n};\nstruct interface2 {\n  virtual ~interface2() noexcept = default;\n};\nstruct implementation1 : interface1 {};\nstruct implementation1_2 : interface1 {};\nstruct implementation2 : interface2 {};\nauto some_name = [] {};\nauto int_name = [] {};\n//->\n\nstruct service {\n  BOOST_DI_INJECT(service, const std::shared_ptr<interface1>& sp, bool b, int i, std::function<int()> f,\n                  (named = int_name) const int ni)\n      : sp(sp) {\n    assert(dynamic_cast<implementation1_2*>(sp.get()));  // overridden\n    assert(!b);                                          // default initialization\n    assert(i == 42);\n    assert(f() == 87);\n    assert(ni == 123);\n  }\n\n  std::shared_ptr<interface1> sp;\n};\n\nstruct app {\n  BOOST_DI_INJECT(app, service copy, std::shared_ptr<interface1> sp, std::unique_ptr<interface2> ap, int i,\n                  (named = some_name) const std::string& s, float& f, const double& d)\n      : str(s), f(f), d(d) {\n    assert(dynamic_cast<implementation2*>(ap.get()));\n    assert(dynamic_cast<implementation1_2*>(sp.get()));  // overridden\n    assert(copy.sp.get() == sp.get());\n    assert(i == 42);\n    assert(str == \"my_text\");\n    assert(f == 0.f);\n    assert(d == 0.f);\n  }\n\n  app& operator=(const app&) = delete;\n\n  std::string str;\n  float& f;\n  const double& d;\n};\n\nint main() {\n  float f = 0.f;\n  double d = 0.0;\n\n  /*<<create injector with `interface` binding to `implementation1`>>*/\n  auto config = [] { return di::make_injector(di::bind<interface1>().to<implementation1>()); };\n\n  /*<<create injector with configuration>>*/\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<interface2>().to<implementation2>()\n  , di::bind<int>().to(42)\n  , di::bind<std::string>().named(some_name).to(\"my_text\")\n  , di::bind<>().to(f)\n  , di::bind<>().to(d)\n  , di::bind<std::function<int()>>().to([] { return 87; })\n  , di::bind<>().named(int_name).to(123)\n  , config()\n  , di::bind<interface1>().to(std::make_shared<implementation1_2>())[di::override]\n  );\n  // clang-format on\n\n  /*<<create `service_app`>>*/\n  auto service_app = injector.create<app>();\n\n  /*<<verify parameter `f` affection by `service_app`>>*/\n  service_app.f = 42.f;\n  assert(f == 42.f);\n\n  d = 42.f;\n  assert(service_app.d == 42.f);\n}\n"
  },
  {
    "path": "example/configuration.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <iostream>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n#if (BOOST_DI_VERSION >= 1'0'0)\n  std::cout << \"stable\";\n#else\n  std::cout << \"unstable\";\n#endif\n  std::cout << \" version of boost.di [\" << BOOST_DI_VERSION << \"]\" << std::endl;\n}\n"
  },
  {
    "path": "example/constructor_injection.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto name = [] {};\n\nstruct ctor_inject {\n  /*<<constructor with intrusive named parameter explicitly selected>>*/\n  BOOST_DI_INJECT(ctor_inject, int i1, (named = name) int i2) {\n    assert(i1 == 0);\n    assert(i2 == 42);\n  }\n};\n\nstruct ctor_inject_traits {\n  /*<<constructor with less intrusive named parameter using traits>>*/\n  BOOST_DI_INJECT_TRAITS(int, (named = name) int);\n  explicit ctor_inject_traits(int i1, int i2 = 0) {\n    assert(i1 == 0);\n    assert(i2 == 42);\n  }\n};\n\nstruct ctor_di_traits {\n  /*<<class without any changes>>*/\n  explicit ctor_di_traits(int i1, int i2 = 0) {\n    assert(i1 == 0);\n    assert(i2 == 42);\n  }\n};\n\nnamespace boost {\nnamespace di {\n\ntemplate <>\nstruct ctor_traits<ctor_di_traits> {\n  /*<<no intrusive way of defining named parameters>>*/\n  BOOST_DI_INJECT_TRAITS(int, (named = name) int);\n};\n\n}  // namespace di\n}  // namespace boost\n\nstruct ctor_inject_traits_no_limits {\n  /*<<constructor with 20 parameters>>*/\n  using boost_di_inject__ =\n      di::inject<int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int>;\n\n  ctor_inject_traits_no_limits(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int,\n                               int) {}\n};\n\nint main() {\n  /*<<make injector>>*/\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().named(name).to(42)\n  );\n  // clang-format on\n\n  /*<<create dependencies>>*/\n  injector.create<ctor_inject>();\n  injector.create<ctor_inject_traits>();\n  injector.create<ctor_di_traits>();\n\n  injector.create<ctor_inject_traits_no_limits>();\n}\n"
  },
  {
    "path": "example/constructor_signature.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface1 {\n  virtual ~interface1() noexcept = default;\n};\nstruct interface2 {\n  virtual ~interface2() noexcept = default;\n};\nstruct implementation1 : interface1 {};\nstruct implementation2 : interface2 {};\n//->\n\n/*<define `example` class as usual>*/\nclass example {\n public:\n  example(std::unique_ptr<interface1> up, std::shared_ptr<interface2> sp, int i) {\n    assert(dynamic_cast<implementation1*>(up.get()));\n    assert(dynamic_cast<implementation2*>(sp.get()));\n    assert(42 == i);\n  }\n};\n\n/*<define `example` class with different parameters order - won't require any changes in injector configuration>*/\nclass example_with_different_parameters_order {\n public:\n  example_with_different_parameters_order(std::shared_ptr<interface2> sp, int i, std::unique_ptr<interface1> up) {\n    assert(dynamic_cast<implementation1*>(up.get()));\n    assert(dynamic_cast<implementation2*>(sp.get()));\n    assert(42 == i);\n  }\n};\n\n/*<define `example` class with different parameters order and different types - won't require any changes in injector\n * configuration>*/\nclass example_with_different_parameters_order_and_types {\n public:\n  example_with_different_parameters_order_and_types(std::unique_ptr<interface2> sp, const int& i, interface1* up) : up_(up) {\n    assert(dynamic_cast<implementation1*>(up));\n    assert(dynamic_cast<implementation2*>(sp.get()));\n    assert(42 == i);\n  }\n\n  // in order to delete pointer - Boost.DI always transfer ownership to user in case of pointers\n  std::shared_ptr<interface1> up_;\n};\n\nint main() {\n  /*<<make injector>>*/\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<interface1>().to<implementation1>()\n  , di::bind<interface2>().to<implementation2>()\n  , di::bind<int>().to(42)\n  );\n  // clang-format on\n\n  /*<create different examples using the same injector configuration>*/\n  injector.create<example>();\n  injector.create<example_with_different_parameters_order>();\n  injector.create<example_with_different_parameters_order_and_types>();\n}\n"
  },
  {
    "path": "example/custom_policy.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <memory>\n//->\nclass custom_policy;\n#define BOOST_DI_CFG custom_policy\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nclass custom_policy : public di::config {\n public:\n  static auto policies(...) noexcept {\n    using namespace di::policies;\n    using namespace di::policies::operators;\n    return di::make_policies(constructible(is_bound<di::_>{}));\n  }\n};\n\nstruct example {\n  example(int, double) {}\n};\n\nint main() {\n  /*<<create shared_ptr `example` with per injector policy setting>>*/\n  {\n    // clang-format off\n    auto injector = di::make_injector<custom_policy>(\n      di::bind<int>().to(42)\n    , di::bind<double>().to(87.0)\n    );\n    // clang-format on\n\n    injector.create<example>();\n  }\n\n  /*<<create shared_ptr `example` with global policy setting>>*/\n  {\n    // clang-format off\n    auto injector = di::make_injector(\n      di::bind<int>().to(42)\n    , di::bind<double>().to(87.0)\n    );\n    // clang-format on\n\n    injector.create<example>();\n  }\n}\n"
  },
  {
    "path": "example/custom_provider.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n};\nstruct implementation : interface {};\n//->\n\n/*<define `example` class as usual>*/\nstruct example {\n  explicit example(int i, std::unique_ptr<interface> up) {\n    assert(i == 42);\n    assert(dynamic_cast<implementation*>(up.get()));\n  }\n};\n\n/*<define `custom provider`>*/\nstruct custom_provider {\n  template <class...>\n  struct is_creatable {\n    static constexpr auto value = true;\n  };\n\n  template <class T, class TMemory, class... TArgs>\n  auto get(const di::type_traits::direct&, const TMemory&  // stack/heap\n           ,\n           TArgs&&... args) const {\n    return new T(std::forward<TArgs>(args)...);\n  }\n\n  template <class T, class TMemory, class... TArgs>\n  auto get(const di::type_traits::uniform&, const TMemory&  // stack/heap\n           ,\n           TArgs&&... args) const {\n    return new T{std::forward<TArgs>(args)...};\n  }\n};\n\n/*<override `di` provider configuration>*/\nclass config : public di::config {\n public:\n  static auto provider(...) noexcept { return custom_provider{}; }\n};\n\nint main() {\n  /*<<make injector with simple configuration>>*/\n  // clang-format off\n  auto injector = di::make_injector<config>(\n    di::bind<int>().to(42)\n  , di::bind<interface>().to<implementation>()\n  );\n  // clang-format on\n\n  /*<<create `example` using `custom_provider`>>*/\n  injector.create<example>();\n}\n"
  },
  {
    "path": "example/custom_scope.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n/*<define scope class>*/\nclass custom_scope {\n public:\n  /*<define `entry`, `exit` actions>*/\n  class entry {};\n  class exit {};\n\n  template <class T, class>\n  class scope {\n    /*<define wrapper for shared_ptr conversion>*/\n    class custom_wrapper {\n     public:\n      custom_wrapper(const std::shared_ptr<T>& object)  // non explicit\n          : object_(object) {}\n\n      /*<<conversion operator to shared_ptr>>*/\n      inline operator std::shared_ptr<T>() const noexcept { return object_; }\n\n      std::shared_ptr<T> object_;\n    };\n\n   public:\n    template <class>\n    using is_referable = std::false_type;\n\n    template <class, class, class TProvider>\n    static custom_wrapper try_create(const TProvider&);\n\n    /*<<create shared_ptr when in scope out of provider pointer>>*/\n    template <class, class, class TProvider>\n    custom_wrapper create(const TProvider& provider) const noexcept {\n      return std::shared_ptr<T>{provider.get()};\n    }\n  };\n};\n\nstruct example {\n  explicit example(const std::shared_ptr<int>& sp) : sp_(sp) {}\n  std::shared_ptr<int> sp_;\n};\n\nint main() {\n  /*<<create injector with `int` in `custom scope`>>*/\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().in(custom_scope{})\n  );\n  // clang-format on\n\n  assert(injector.create<example>().sp_);\n}\n"
  },
  {
    "path": "example/deduce_scope.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : interface {\n  void dummy() override {}\n};\n//->\n\nstruct dependency1 {\n  dependency1(std::shared_ptr<interface> spi /*shared*/\n              ,\n              const std::shared_ptr<interface>& spi_ /*shared*/)\n      : spi_(spi), spi__(spi_) {\n    assert(spi.get() == spi_.get());\n  }\n\n  std::shared_ptr<interface> spi_;\n  std::shared_ptr<interface> spi__;\n};\n\nstruct dependency2 {\n  dependency2(std::shared_ptr<interface> spi /*shared*/, int i /*unique*/) : spi_(spi) { assert(i == 0); }\n\n  std::shared_ptr<interface> spi_;\n};\n\nstruct example {\n  example(std::unique_ptr<dependency1> dependency1_ /*unique*/\n          ,\n          const dependency2& dependency2_ /*unique temporary*/) {\n    assert(dependency2_.spi_.get() == dependency1_->spi_.get());\n    assert(dependency2_.spi_.get() == dependency1_->spi__.get());\n  }\n};\n\nint main() {\n  /*<<create injector with deduced `interface`>>*/\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<interface>().to<implementation>()  // => di::bind<interface>().to<implementation>().in(di::deduce)\n  );\n  // clang-format on\n\n  /*<<create `example`>>*/\n  injector.create<example>();\n}\n"
  },
  {
    "path": "example/dynamic_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nenum eid { e1 = 1, e2 = 2 };\nstruct interface {\n  virtual ~interface() noexcept = default;\n};\nstruct implementation1 : interface {};\nstruct implementation2 : interface {};\n//->\n\n/*<<module configuration>>*/\nauto dynamic_bindings = [](eid& id) {\n  return di::make_injector(\n      /*<<bind `interface` to lazy lambda expression>>*/\n      di::bind<interface>().to([&](const auto& injector) -> std::shared_ptr<interface> {\n        switch (id) {\n          default:\n            return nullptr;\n          case e1:\n            return injector.template create<std::shared_ptr<implementation1>>();\n          case e2:\n            return injector.template create<std::shared_ptr<implementation2>>();\n        }\n\n        return nullptr;\n      }));\n};\n\nint main() {\n  auto id = e1;\n\n  /*<<create interface with `id = e1`>>*/\n  auto injector = di::make_injector(dynamic_bindings(id));\n  assert(dynamic_cast<implementation1*>(injector.create<std::shared_ptr<interface>>().get()));\n\n  id = e2;\n  /*<<create interface with `id = e2`>>*/\n  assert(dynamic_cast<implementation2*>(injector.create<std::shared_ptr<interface>>().get()));\n  (void)id;\n}\n"
  },
  {
    "path": "example/eager_singletons.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <type_traits>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nclass interface {\n public:\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\n\nclass implementation : public interface {\n public:\n  implementation() { ++ctor_calls(); }\n  void dummy() override {}\n\n  static int& ctor_calls() {\n    static auto calls = 0;\n    return calls;\n  }\n};\n\ntemplate <class TDependency, class TInjector,\n          std::enable_if_t<std::is_same<typename TDependency::scope, di::scopes::singleton>::value, int> = 0>\nvoid create_singletons_eagerly_impl(const di::aux::type<TDependency>&, const TInjector& injector) {\n  injector.template create<std::shared_ptr<typename TDependency::expected>>();\n}\n\ntemplate <class TDependency, class TInjector,\n          std::enable_if_t<!std::is_same<typename TDependency::scope, di::scopes::singleton>::value, int> = 0>\nvoid create_singletons_eagerly_impl(const di::aux::type<TDependency>&, const TInjector&) {}\n\ntemplate <class... TDeps, class TInjector>\nvoid create_singletons_eagerly(const di::aux::type_list<TDeps...>&, const TInjector& injector) {\n  [](...) {}((create_singletons_eagerly_impl(di::aux::type<TDeps>{}, injector), 0)...);\n}\n\ntemplate <class TInjector>\nvoid eager_singletons(const TInjector& injector) {\n  create_singletons_eagerly(typename TInjector::deps{}, injector);\n}\n//->\n\nauto configuration = [] {\n  // clang-format off\n  return di::make_injector(\n    di::bind<interface>().to<implementation>().in(di::singleton)\n  , di::bind<int>().to(42)\n  );\n  // clang-format on\n};\n\nstruct example {\n  example(int i, std::shared_ptr<interface> object) {\n    assert(42 == i);\n    assert(dynamic_cast<implementation*>(object.get()));\n  }\n};\n\nint main() {\n  /*<<make injector configuration>>*/\n  auto injector = di::make_injector(configuration());\n  assert(0 == implementation::ctor_calls());\n\n  /*<<eagerly initialize singletons>>*/\n  eager_singletons(injector);\n  assert(1 == implementation::ctor_calls());\n\n  /*<<create `example` with already initialized singletons>>*/\n  injector.create<example>();\n  assert(1 == implementation::ctor_calls());\n}\n"
  },
  {
    "path": "example/errors/boundable_type_has_disallowed_qualifiers.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  // clang-format off\n  di::make_injector(\n    di::bind<int*>().to(42) /** type<int*>::has_disallowed_qualifiers **/\n  );\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/boundable_type_is_abstract.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#define BOOST_DI_CFG_DIAGNOSTICS_LEVEL 2\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nstruct i {\n  virtual ~i() noexcept = default;\n  virtual void dummy() = 0;\n};\n\nstruct impl : i {};\n\nint main() {\n  // clang-format off\n  di::make_injector(\n    di::bind<i>().to<impl>() /** type<impl>::is_abstract **/\n    /** unimplemented pure virtual method 'dummy' in 'impl' **/\n  );\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/boundable_type_is_bound_more_than_once.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  // clang-format off\n  di::make_injector(\n    di::bind<int>.to(42) /** type<int>::is_bound_more_than_once **/\n  , di::bind<int>.to(87) // [di::override]\n  );\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/boundable_type_is_neither_a_dependency_nor_an_injector.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  struct dummy {};\n  // clang-format off\n  di::make_injector(\n    dummy{} /** type<dummy>::is_neither_a_dependency_nor_an_injector **/\n  );\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/boundable_type_is_not_related_to.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  // clang-format off\n  di::make_injector(\n    di::bind<int>().to<double>() /** type<double>::is_not_related_to<int> **/\n  );\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/callable_requires_call_operator.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  struct test_config : di::config {\n    struct dummy {};\n    static auto policies(...) { return di::make_policies(dummy{}); }\n  };\n\n  // clang-format off\n  di::make_injector<test_config>();\n  /** policy<test_config::dummy>::requires_<call_operator> **/\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/configurable_requires_callable_and_providable.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  struct test_config /*: di::config*/ {\n    static auto policies(...) { return di::make_policies(); }\n  };\n\n  // clang-format off\n  di::make_injector<test_config>();\n  /** config<test_config>::requires_<provider<providable_type (...)>> **/\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/constructible_must_be_bound.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nclass must_be_bound : public di::config {\n public:\n  static auto policies(...) {\n    using namespace di::policies;\n    return di::make_policies(constructible(is_bound<di::_>{}));\n  }\n};\n\nstruct example {\n  example(int, double, float) {}\n};\n\nint main() {\n  auto injector = di::make_injector<must_be_bound>(di::bind<int>().to(42));\n  injector.create<example>(); /** creatable constraint not satisfied **/\n                              /** type<float>::not_allowed_by<is_bound<_>>\n                               *  type<double>::not_allowed_by<is_bound<_>>\n                               *  type disabled by constructible policy, added by BOOST_DI_CFG or make_injector<CONFIG>!\n                               */\n}\n"
  },
  {
    "path": "example/errors/creatable_abstract_type_is_not_bound.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <memory>\n//->\n#define BOOST_DI_CFG_DIAGNOSTICS_LEVEL 1\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\n\nstruct example {\n  explicit example(std::unique_ptr<interface>) {}\n};\n\nint main() {\n  // clang-format off\n  di::make_injector().create<example>(); /** creatable constraint not satisfied **/\n  /** abstract_type<interface>::is_not_bound\n   *  type is not bound, did you forget to add: \n   *   'di::bind<interface>.to<implementation>()'?\n   */\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/creatable_expose_abstract_type_is_not_bound.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <memory>\n//->\n#define BOOST_DI_CFG_DIAGNOSTICS_LEVEL 1\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\n\nstruct example {\n  explicit example(std::unique_ptr<interface>) {}\n};\n\nint main() {\n  // clang-format off\n  di::injector<example> injector = di::make_injector(); /** creatable constraint not satisfied **/\n  /** abstract_type<interface>::is_not_bound\n   *  type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\n   */\n  (void)injector;\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/creatable_instance_is_not_convertible_to.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  struct T {\n    T(int&) {}\n  };\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<>().to(42)\n  );\n\n  injector.create<T>(); /** creatable constraint not satisfied **/\n  /** scoped<instance>::is_not_convertible_to<int &>\n   *  instance is not convertible to the requested type,\n   *    verify binding: 'di::bind<T>.to(value)'?\n   */\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/creatable_scoped_is_not_convertible_to.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  struct T {\n    T(int*) {}\n  };\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().in(di::singleton)\n  );\n\n  injector.create<T>(); /** creatable constraint not satisfied **/\n  /** scoped<singleton>::is_not_convertible_to<int *>\n   *  scoped object is not convertible to the requested type,\n   *    did you mistake the scope: 'di::bind<T>.in(scope)'?\n   */\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/creatable_type_has_ambiguous_number_of_constructor_parameters.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  struct T {\n    BOOST_DI_INJECT_TRAITS(int, int);  // 2 parameters\n    T(int, int, int, int) {}           // 4 parameters\n  };\n\n  // clang-format off\n  auto injector = di::make_injector();\n  injector.create<T>(); /** creatable constraint not satisfied **/\n  /** type<T>::has_ambiguous_number_of_constructor_parameters::given<2>::expected<4>\n   * verify BOOST_DI_INJECT_TRAITS or di::ctor_traits\n   */\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/creatable_type_has_to_many_constructor_parameters.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#define BOOST_DI_CFG_CTOR_LIMIT_SIZE 2  // specify max number of constructor parameters\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  struct T {\n    T(int, int, int) {}  // 3 parameters\n  };\n\n  // clang-format off\n  auto injector = di::make_injector();\n  injector.create<T>(); /** creatable constraint not satisfied **/\n  /** type<T>::has_to_many_constructor_parameters::max<2>\n   *  increase BOOST_DI_CFG_CTOR_LIMIT_SIZE value or reduce number of constructor parameters\n   */\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/providable_requires_get.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  struct test_config : di::config {\n    struct dummy {};\n    static auto provider(...) { return dummy{}; }\n  };\n  // clang-format off\n  di::make_injector<test_config>(); /** provider<test_config::dummy>::requires_<get> **/\n  // clang-format on\n}\n"
  },
  {
    "path": "example/errors/scopable_requires_create.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nint main() {\n  struct dummy {};\n  // clang-format off\n  di::make_injector(\n    di::bind<int>().in(dummy{})); /** scope<dummy>::requires_<create> **/\n  );\n  // clang-format on\n}\n"
  },
  {
    "path": "example/example.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n// clang-format off\n//<-\n#if defined(BOOST_DI_EXAMPLE)\n//->\n+---------------------------------------------------+\n|$CXX -std=c++14 -fno-exceptions -O2 example.cpp    |\n|#Compiles in 0.4s!                                 |\n+-----------------------------+---------------------+\n                              |\n                              \\\n                                  #include <boost/di.hpp> +-----------+\n +-----------------------------+                                      |\n |                             |  namespace di = boost::di;     +-----+--------------------------------+\n |                             +-+                              |One header (3k lines, no dependencies)|\n |  +-----------------------+    +struct uniform {              +--------------------------------------+\n |  |Automatic conversion   |       bool &b;\n |  |between std::shared_ptr+------+boost::shared_ptr<interface> sp;\n |  |and boost::shared_ptr  |     };\n |  +-----------------------+\n |                             +-+class direct {\n |                          +--+   public:                                 +---------------------------+\n |                          |       direct(const uniform &uniform          |ASM x86-64 == `make_unique`|\n |               +----------+            , std::shared_ptr<interface> sp)  +---------------------------+\n |               |                    : uniform_(uniform)                  |push   %rax                |\n |               |                  , sp_(sp)                              |mov    $0x8,%edi           |\n |               |                  {}                                     |callq  0x4007b0 <_Znwm@plt>|\n |               |                                                         |movq   $0x400a10,(%rax)    |\n | +-------------+----------+       const uniform &uniform_;               |mov    $0x8,%esi           |\n | |Inject  dependencies    |       std::shared_ptr<interface> sp_;        |mov    %rax,%rdi           |\n | |using T{...} or T(...)  |     };                                       |callq  0x400960 <_ZdlPvm>  |\n +-+without REFLECTION or   |                                +-------------+mov    $0x1,%eax           |\n   |any changes/registration+-----+class example {           |             |pop    %rdx                |\n   |in the code!            |      public:                   +             |retq                       |\n   +------------------------+       example(std::unique_ptr<direct> d      +-------------------------+-+\n                                   +--------+ , interface &ref                                       |\n                                   |          , int i)+-------------------------------------------+  +-+\n                                   |  : i_(i) {                                                   |    |\n                                   |  assert(false == d->uniform_.b);                             |    |\n                     +-------------+  assert(d->sp_.get() == d->uniform_.sp.get());               |    |\n                     |                assert(&ref == d->sp_.get());     +                         |    |\n    +----------------+---------+    }                         +         |                         |    |\n    |Deduce scope based on     |                              |         |                         |    |\n    |constructor parameter type|    auto run() const {        +---------+ +--------------------+  |    |\n    |T -> unique               |      return i_ == 42;                  +-+The same shared_ptr,|  |    |\n    |T& -> singleton           |    }                                     |reference provided  |  |    |\n    |shared_ptr -> singleton   |                                          +--------------------+  |    |\n    |unique_ptr |> unique      |   private:                                                       |    |\n    +--------------------------+    int i_ = 0;                                                +--+    |\n                                  };                                                           |       |\n                                                                                               |       |\n                                  int main() {                          +----------------------+--+    |\n                                    auto runtime_value = false;         |ASM x86-64 == 'return 42'|    |\n                                                                        +-------------------------+    |\n                    +-------------+ auto module = [&] {                 |mov $0x2a,%eax           |    |\n            +-------+-----------+     return di::make_injector(         |retq                     |    |\n            |Split configuration|       di::bind<>().to(runtime_value)  +----+--------------------+    |\n            |into modules       |     );                                     |                         |\n            +-------+-----------+   };                                       |                         |\n                    |         +----------------------------------------------+                         |\n                    |         |     auto injector = di::make_injector(                                 |\n                    |         |       di::bind<interface>().to<implementation>()+----------------------+\n                    |         +---+ , di::bind<>().to(42)\n                    +--------------+, module()                                     +---------------------+\n                                    );                                  +----------+Compile time creation|\n                                                                        +          |guarantee!           |\n                                    auto object = injector.create<example>();      +---------------------+\n                                    assert(object.run());  +\n                                  }                        |\n                                                           |  +----------------------------------------+\n                                                           +--+Short compile time error messages!      |\n                                                              |For example:                            |\n                                                              |`abstract_type<interface>::is_not_bound`|\n                                                              +----------------------------------------+\n//<-\n#endif\n\n#include <memory>\n#include <cassert>\n#if __has_include(<boost/shared_ptr.hpp>)\n#include <boost/shared_ptr.hpp>\n#endif\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : interface {\n  void dummy() override { }\n};\n\n// clang-format on\n\nstruct uniform {\n  bool &b;\n#if __has_include(<boost / shared_ptr.hpp>)\n  boost::shared_ptr<interface> sp;\n#else\n  std::shared_ptr<interface> sp;\n#endif\n};\n\nclass direct {\n public:\n  direct(const uniform &uniform, std::shared_ptr<interface> sp) : uniform_(uniform), sp_(sp) {}\n\n  const uniform &uniform_;\n  std::shared_ptr<interface> sp_;\n};\n\nclass example {\n public:\n  example(std::unique_ptr<direct> d, interface &ref, int i) : i_(i) {\n    assert(false == d->uniform_.b);\n    assert(d->sp_.get() == d->uniform_.sp.get());\n    assert(&ref == d->sp_.get());\n  }\n\n  auto run() const { return i_ == 42; }\n\n private:\n  int i_ = 0;\n};\n\nint main() {\n  auto runtime_value = false;\n\n  // clang-format off\n  auto module = [&] {\n    return di::make_injector(\n      di::bind<>().to(runtime_value)\n    );\n  };\n\n  auto injector = di::make_injector(\n    di::bind<interface>().to<implementation>()\n  , di::bind<>().to(42)\n  , module()\n  );\n  // clang-format on\n\n  auto object = injector.create<example>();\n  assert(object.run());\n}\n//->\n"
  },
  {
    "path": "example/fwd_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nclass interface;\nclass implementation;\n\nauto configuration = [] {\n  // clang-format off\n  return di::make_injector(\n    /*<<binding using fwd declarations, no checking whether types are related*/\n    di::bind<interface>().to<implementation>()\n  );\n  // clang-format on\n};\n\n/*<<binding using fwd declarations, no checking whether types are related*/\nclass interface {\n public:\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nclass implementation : public interface {\n public:\n  void dummy() override {}\n};\n\nint main() {\n  /*<<make injector configuration>>*/\n  auto injector = configuration();\n  assert(dynamic_cast<implementation*>(injector.create<std::unique_ptr<interface>>().get()));\n}\n"
  },
  {
    "path": "example/modules/common.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#ifndef COMMON_HPP\n#define COMMON_HPP\n//->\n\nstruct ibutton {\n  virtual ~ibutton() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct button : ibutton {\n  void dummy() override{};\n};\nstruct iwindow {\n  virtual ~iwindow() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct window : iwindow {\n  void dummy() override{};\n};\nstruct iboard {\n  virtual ~iboard() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct board : iboard {\n  void dummy() override{};\n};\n\n//<-\n#endif\n//->\n"
  },
  {
    "path": "example/modules/config.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#ifndef CONFIG_HPP\n#define CONFIG_HPP\n\n#include <iostream>\n//->\n#include <boost/di.hpp>\n\nclass config : public di::config {\n public:\n  static auto policies(...) noexcept {\n    return di::make_policies([](auto type) { std::cout << typeid(typename decltype(type)::type).name() << std::endl; });\n  }\n};\n\n//<-\n#endif\n//->\n"
  },
  {
    "path": "example/modules/controller.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include \"controller.hpp\"\n//->\n\nint controller::run() {\n  model_.update();\n  view_.render();\n  return 0;\n}\n"
  },
  {
    "path": "example/modules/controller.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#ifndef CONTROLLER_HPP\n#define CONTROLLER_HPP\n\n#include <memory>\n#include \"model.hpp\"\n#include \"view.hpp\"\n//->\n\nstruct controller {\n  controller(view& view, model& model) : view_(view), model_(model) {}\n  int run();\n\n private:\n  view& view_;\n  model& model_;\n};\n\n//<-\n#endif\n//->\n"
  },
  {
    "path": "example/modules/main.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include \"config.hpp\"\n#include \"controller.hpp\"\n#include \"module_model.hpp\"\n#include \"module_view.hpp\"\n//->\n\nnamespace di = boost::di;\n\nint main() {\n  auto injector = di::make_injector(module_view(), module_model());\n  return injector.create<controller>().run();\n}\n"
  },
  {
    "path": "example/modules/model.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include \"model.hpp\"\n#include <boost/di.hpp>\n#include <cassert>\n//->\n\nmodel::model(int rows, int colls, std::unique_ptr<iboard> b) {\n  assert(rows == 42);\n  assert(colls == 42);\n  assert(b.get());\n}\n"
  },
  {
    "path": "example/modules/model.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#ifndef MODEL_HPP\n#define MODEL_HPP\n\n#include <boost/di.hpp>\n#include <memory>\n#include \"common.hpp\"\n//->\n\nnamespace di = boost::di;\n\nstatic auto rows = [] {};\nstatic auto colls = [] {};\n\nclass model {\n public:\n  BOOST_DI_INJECT(model, (named = rows) int, (named = colls) int, std::unique_ptr<iboard>);\n  void update() {}\n};\n\n//<-\n#endif\n//->\n"
  },
  {
    "path": "example/modules/module_model.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n\n//<-\n#include \"module_model.hpp\"\n#include <boost/di.hpp>\n#include \"common.hpp\"\n#include \"config.hpp\"\n#include \"model.hpp\"\n//->\n\nnamespace di = boost::di;\n\ndi::injector<model&> module_model() noexcept {\n  // clang-format off\n  return di::make_injector(\n    di::bind<iboard>().to<board>()\n  , di::bind<int>().named(rows).to(42)\n  , di::bind<int>().named(colls).to(42)\n  );\n  // clang-format on\n}\n"
  },
  {
    "path": "example/modules/module_model.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#ifndef MODULE_MODEL_HPP\n#define MODULE_MODEL_HPP\n//->\n\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nclass model;\n\ndi::injector<model&> module_model() noexcept;\n\n//<-\n#endif\n//->\n"
  },
  {
    "path": "example/modules/module_view.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include \"module_view.hpp\"\n#include <boost/di.hpp>\n#include \"common.hpp\"\n#include \"config.hpp\"\n#include \"view.hpp\"\n//->\n\nnamespace di = boost::di;\n\ndi::injector<view&> module_view() noexcept {\n  // clang-format off\n  return di::make_injector(\n    di::bind<ibutton>().to<button>()\n  , di::bind<iwindow>().to<window>()\n  );\n  // clang-format on\n}\n"
  },
  {
    "path": "example/modules/module_view.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#ifndef MODULE_VIEW_HPP\n#define MODULE_VIEW_HPP\n//->\n\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nclass view;\n\ndi::injector<view&> module_view() noexcept;\n\n//<-\n#endif\n//->\n"
  },
  {
    "path": "example/modules/view.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include \"view.hpp\"\n#include <cassert>\n//->\n\nview::view(std::unique_ptr<iwindow> w, std::shared_ptr<ibutton> b) {\n  assert(w.get());\n  assert(b.get());\n}\n"
  },
  {
    "path": "example/modules/view.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#ifndef VIEW_HPP\n#define VIEW_HPP\n\n#include <memory>\n#include \"common.hpp\"\n//->\n\nclass view {\n public:\n  view(std::unique_ptr<iwindow>, std::shared_ptr<ibutton>);\n  void render() {}\n};\n\n//<-\n#endif\n//->\n"
  },
  {
    "path": "example/modules.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <utility>\n//->\n\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation1 : interface {\n  void dummy() override {}\n};\nstruct implementation2 : interface {\n  void dummy() override {}\n};\n//->\n\nstruct data {\n  std::shared_ptr<interface> sp;\n};\n\nstruct app {\n  app(std::unique_ptr<interface> up, int i, double d, const data& data) {\n    assert(dynamic_cast<implementation1*>(up.get()));\n    assert(i == 42);\n    assert(d == 87.0);\n    assert(dynamic_cast<implementation2*>(data.sp.get()));\n  }\n};\n\n/*<<`module1` configuration>>*/\nauto module1 = [] {\n  // clang-format off\n  return di::make_injector(\n    di::bind<interface>().to<implementation1>()\n  );\n  // clang-format on\n};\n\n/*<<`module2` configuration>>*/\nauto module2(const int& i) {\n  // clang-format off\n  return di::make_injector(\n    di::bind<int>().to(i)\n  );\n}\n// clang-format on\n\n/*<<module configuration with exposed `data`>>*/\nauto exposed_module = []() -> di::injector<const data&> {\n  // clang-format off\n  return di::make_injector(\n    di::bind<interface>().to<implementation2>()\n  );\n  // clang-format on\n};\n\nint main() {\n  constexpr auto i = 42;\n  constexpr auto d = 87.0;\n\n  /*<<module configuration with movable injector>>*/\n  // clang-format off\n  auto movable_injector = di::make_injector(\n    di::bind<double>().to(d)\n  );\n  // clang-format on\n\n  /*<<create injector and pass `module1`, `module2` and `exposed_module`>>*/\n  // clang-format off\n  auto injector = di::make_injector(\n    module1()\n  , module2(i)\n  , exposed_module()\n  , std::move(movable_injector)\n  );\n  // clang-format on\n\n  /*<<create `app`>>*/\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/motivation.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nclass controller;\n\nstruct renderer {\n  int device;\n};\n\nclass view {\n public:\n  view(std::string /*title*/, const renderer&) {}\n};\n\nclass model {};\nclass user {};\n\nclass app {\n public:\n  app(controller&, user&) {}\n};\n\n/// CREATE OBJECTS TREE\n#if 1\nclass controller {\n public:\n  controller(model&, view&) {}\n};\n\nint main() {\n  /// NO DEPENDENCY INJECTION\n  {\n    renderer renderer_;\n    view view_{\"\", renderer_};\n    model model_;\n    controller controller_{model_, view_};\n    user user_;\n    app app_{controller_, user_};\n    (void)app_;\n  }\n\n  /// DEPENDENCY INJECTION\n  {\n    auto injector = di::make_injector();\n    auto app_ = injector.create<app>();\n    (void)app_;\n  }\n}\n#endif\n\n/// CHANGE CONTROLLER CONSTRUCTOR ORDER\n#if 0\nclass controller {\n public:\n  controller(view&, model&) {}\n};\n\nint main() {\n  /// NO DEPENDENCY INJECTION\n  {\n  renderer renderer_;\n  view view_{\"\", renderer_};\n  model model_;\n  //controller controller_{model_, view_};\n  controller controller_{view_, model_}; /// CHANGE\n  user user_;\n  app app_{controller_, user_};\n  (void)app_;\n  }\n\n  /// DEPENDENCY INJECTION\n  {\n  auto injector = di::make_injector();\n  auto app_ = injector.create<app>();\n  (void)app_;\n  }\n}\n#endif\n\n/// ADD A NEW DEPENDENCY TO CONTROLLER\n#if 0\nstruct configuration {};\nclass controller {\n public:\n  controller(view&, model&, configuration) {}\n};\n\nint main() {\n  /// NO DEPENDENCY INJECTION\n  {\n  renderer renderer_;\n  view view_{\"\", renderer_};\n  model model_;\n  //controller controller_{model_, view_};\n  controller controller_{view_, model_, configuration{}}; /// CHANGE\n  user user_;\n  app app_{controller_, user_};\n  (void)app_;\n  }\n\n  /// DEPENDENCY INJECTION\n  {\n  auto injector = di::make_injector();\n  auto app_ = injector.create<app>();\n  (void)app_;\n  }\n}\n#endif\n"
  },
  {
    "path": "example/multiple_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <initializer_list>  // has to be before, due to the bug in clang < 3.7\n//->\n#include <boost/di.hpp>\n//<-\n#include <cassert>\n#include <memory>\n#include <set>\n#include <vector>\n//->\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation1 : interface {\n  void dummy() override {}\n};\nstruct implementation2 : interface {\n  void dummy() override {}\n};\n//->\n\nstruct example {\n  example(std::vector<std::unique_ptr<interface>> v, std::vector<int> i) {\n    assert(v.size() == 4);\n    assert(dynamic_cast<implementation1*>(v[0].get()));\n    assert(dynamic_cast<implementation2*>(v[1].get()));\n    assert(dynamic_cast<implementation1*>(v[2].get()));\n    assert(dynamic_cast<implementation2*>(v[3].get()));\n\n    assert(i.size() == 7);\n    assert(i[0] == 1);\n    assert(i[1] == 2);\n    assert(i[2] == 3);\n    assert(i[3] == 5);\n    assert(i[4] == 8);\n    assert(i[5] == 13);\n    assert(i[6] == 21);\n  }\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int[]>().to({1, 2, 3, 5, 8, 13, 21})\n  , di::bind<interface* []>().to<implementation1, implementation2, interface, di::named<class Implementation2>>()\n  , di::bind<interface>().to<implementation1>()  // <------------------/                         |\n  , di::bind<interface>().named<class Implementation2>().to<implementation2>()  // <-------------/\n  );\n  // clang-format on\n\n  injector.create<example>();\n\n  assert(injector.create<std::vector<int>>().size() == 7);\n  assert(injector.create<std::set<int>>().size() == 7);\n\n  assert(injector.create<std::vector<std::shared_ptr<interface>>>().size() == 4);\n  assert(injector.create<std::set<std::shared_ptr<interface>>>().size() == 4);\n}\n"
  },
  {
    "path": "example/multiple_interfaces.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface1 {\n  virtual ~interface1() noexcept = default;\n};\nstruct interface2 {\n  virtual ~interface2() noexcept = default;\n};\nstruct implementation : interface1, interface2 {};\n//->\n\nclass multiple_interfaces {\n public:\n  multiple_interfaces(const std::shared_ptr<interface1>& interface1_, const std::shared_ptr<interface2>& interface2_) {\n    assert(dynamic_cast<implementation*>(interface1_.get()));\n    assert(dynamic_cast<implementation*>(interface2_.get()));\n    assert(static_cast<implementation*>(interface1_.get()) == static_cast<implementation*>(interface2_.get()));\n  }\n};\n\nint main() {\n  /*<<create injector with binding `implementation` to `interface1` and `interface2` using `di::any_of`>>*/\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<interface1, interface2>().to<implementation>()\n  );\n  // clang-format on\n\n  injector.create<multiple_interfaces>();\n}\n"
  },
  {
    "path": "example/performance/create_bound_interface.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cstdlib>\n#include <memory>\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : interface {\n  void dummy() override {}\n};\n//->\n\nauto test() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<interface>().to<implementation>()\n  );\n  // clang-format on\n\n  return injector.create<std::unique_ptr<interface>>();\n}\n\n/**\n * ASM x86-64 (same as `std::make_unique<implementation>()`)\n *\n * push   %rbx\n * mov    %rdi,%rbx\n * mov    $0x8,%edi\n * callq  0x4009f0 <_Znwm@plt>\n * movq   $0x400e78,(%rax)\n * mov    %rax,(%rbx)\n * mov    %rbx,%rax\n * pop    %rbx\n * retq\n */\n\n//<-\nint main(int, char** argv) {\n  std::system((\"gdb -batch -ex 'file \" + std::string{argv[0]} + \"' -ex 'disassemble test'\").c_str());\n}\n//->\n"
  },
  {
    "path": "example/performance/create_bound_interface_via_exposed_module.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cstdlib>\n#include <memory>\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : interface {\n  void dummy() override {}\n};\n//->\n\nauto module = []() -> di::injector<std::unique_ptr<interface>> {\n  // clang-format off\n  return di::make_injector(\n    di::bind<interface>().to<implementation>()\n  );\n  // clang-format on\n};\n\nauto test() {\n  auto injector = di::make_injector(module());\n  return injector.create<std::unique_ptr<interface>>();\n}\n\n/**\n * ASM x86-64 (additional cost for type erasure)\n *\n * push   %r14\n * push   %rbx\n * push   %rax\n * mov    %rdi,%r14\n * mov    $0x18,%edi\n * callq  0x4008e0 <_Znwm@plt>\n * mov    %rax,%rbx\n * movq   $0x400bb0,(%rbx)\n * movq   $0x400bd0,0x8(%rbx)\n * mov    $0x8,%edi\n * callq  0x4008e0 <_Znwm@plt>\n * movq   $0x400cd8,(%rax)\n * mov    %rax,(%r14)\n * mov    %rbx,%rdi\n * callq  *0x8(%rbx)\n * mov    %rbx,%rdi\n * callq  0x400880 <_ZdlPv@plt>\n * mov    %r14,%rax\n * add    $0x8,%rsp\n * pop    %rbx\n * pop    %r14\n * retq\n */\n\n//<-\nint main(int, char** argv) {\n  std::system((\"gdb -batch -ex 'file \" + std::string{argv[0]} + \"' -ex 'disassemble test'\").c_str());\n}\n//->\n"
  },
  {
    "path": "example/performance/create_bound_interface_via_module.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cstdlib>\n#include <memory>\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : interface {\n  void dummy() override {}\n};\n//->\n\nauto module = [] {\n  // clang-format off\n  return di::make_injector(\n    di::bind<interface>().to<implementation>()\n  );\n  // clang-format on\n};\n\nauto test() {\n  auto injector = di::make_injector(module());\n  return injector.create<std::unique_ptr<interface>>();\n}\n\n/**\n * ASM x86-64 (same as `std::make_unique<implementation>()`)\n *\n * push   %rbx\n * mov    %rdi,%rbx\n * mov    $0x8,%edi\n * callq  0x4008e0 <_Znwm@plt>\n * movq   $0x400c78,(%rax)\n * mov    %rax,(%rbx)\n * mov    %rbx,%rax\n * pop    %rbx\n * retq\n */\n\n//<-\nint main(int, char** argv) {\n  std::system((\"gdb -batch -ex 'file \" + std::string{argv[0]} + \"' -ex 'disassemble test'\").c_str());\n}\n//->\n"
  },
  {
    "path": "example/performance/create_named_type.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cstdlib>\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto my_int = [] {};\n\nstruct c {\n  BOOST_DI_INJECT(c, (named = my_int) int i) : i(i) {}\n  int i = 0;\n};\n\nauto test() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().named(my_int).to(42)\n  );\n  // clang-format on\n\n  return injector.create<c>().i;\n}\n\n/**\n * ASM x86-64 (same as `return 42`)\n *\n * mov $0x2a,%eax\n * retq\n */\n\n//<-\nint main(int, char** argv) {\n  std::system((\"gdb -batch -ex 'file \" + std::string{argv[0]} + \"' -ex 'disassemble test'\").c_str());\n}\n//->\n"
  },
  {
    "path": "example/performance/create_type_with_bound_instance.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cstdlib>\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto test() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  );\n  // clang-format on\n\n  return injector.create<int>();\n}\n\n/**\n * ASM x86-64 (same as `return 42`)\n *\n * mov $0x2a,%eax\n * retq\n */\n\n//<-\nint main(int, char** argv) {\n  std::system((\"gdb -batch -ex 'file \" + std::string{argv[0]} + \"' -ex 'disassemble test'\").c_str());\n}\n//->\n"
  },
  {
    "path": "example/performance/create_type_without_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cstdlib>\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto test() {\n  auto injector = di::make_injector();\n  return injector.create<int>();\n}\n\n/**\n * ASM x86-64 (same as `return 0`)\n *\n * xor %eax,%eax\n * retq\n */\n\n//<-\nint main(int, char** argv) {\n  std::system((\"gdb -batch -ex 'file \" + std::string{argv[0]} + \"' -ex 'disassemble test'\").c_str());\n}\n//->\n"
  },
  {
    "path": "example/pool_provider.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nBOOST_DI_NAMESPACE_BEGIN namespace wrappers {\n  template <class TScope, class T, class TDeleter>\n  struct unique<TScope, std::unique_ptr<T, TDeleter>> {\n    using scope = TScope;\n\n    template <class I>\n    inline operator I() const noexcept {\n      return *object;\n    }\n\n    template <class I>\n    inline operator I*() noexcept {\n      return object.release();\n    }\n\n    template <class I>\n    inline operator const I*() noexcept {\n      return object.release();\n    }\n\n    template <class I>\n    inline operator std::shared_ptr<I>() noexcept {\n      return {object.release(), object.get_deleter()};\n    }\n\n    template <class I, class D>\n    inline operator std::unique_ptr<I, D>() noexcept {\n      return static_cast<std::unique_ptr<T, TDeleter>&&>(object);\n    }\n\n    std::unique_ptr<T, TDeleter> object;\n  };\n}\nBOOST_DI_NAMESPACE_END\n\nstruct interface {\n  virtual ~interface() noexcept = default;\n};\nstruct implementation : interface {};\n\n/*<example `pool allocator`>*/\nstruct pool_allocator {\n  template <class T>\n  static di::aux::owner<T*> allocate();\n  static void deallocate(di::aux::owner<void*>);\n};\n\ntemplate <class T>\ndi::aux::owner<T*> pool_allocator::allocate() {\n  return (T*)::operator new(sizeof(T));\n}\n\nvoid pool_allocator::deallocate(di::aux::owner<void*> ptr) { return ::operator delete(ptr); }\n\nstruct pool_deleter {\n  void operator()(di::aux::owner<void*> ptr) const noexcept { pool_allocator::deallocate(ptr); }\n};\n//->\n\n/*<define `pool provider`>*/\nstruct pool_provider {\n  template <class...>\n  struct is_creatable {\n    static constexpr auto value = true;\n  };\n\n  template <class T, class TInitialization, class TMemory, class... TArgs>\n  auto get(const TInitialization&  // direct/uniform\n           ,\n           const TMemory&  // stack/heap\n           ,\n           TArgs&&... args) const {\n    auto memory = pool_allocator::allocate<T>();\n    return std::unique_ptr<T, pool_deleter>{new (memory) T(std::forward<TArgs>(args)...)};\n  }\n};\n\n/*<override `di` provider configuration>*/\nclass config : public di::config {\n public:\n  static auto provider(...) noexcept { return pool_provider{}; }\n};\n\n/*<define `example` class as usual>*/\nstruct example {\n  explicit example(int i, std::unique_ptr<interface, pool_deleter> up, std::shared_ptr<interface> sp) {\n    assert(i == 42);\n    assert(dynamic_cast<implementation*>(up.get()));\n    assert(dynamic_cast<implementation*>(sp.get()));\n  }\n};\n\nint main() {\n  /*<<make injector with simple configuration>>*/\n  // clang-format off\n  auto injector = di::make_injector<config>(\n    di::bind<int>().to(42)\n  , di::bind<interface>().to<implementation>()\n  );\n  // clang-format on\n\n  /*<<create `example` using configuration with `pool_provider`>>*/\n  injector.create<example>();\n}\n"
  },
  {
    "path": "example/scopes.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct per_request {\n  virtual ~per_request() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct per_request_impl : per_request {\n  void dummy() override {}\n};\nstruct shared {\n  virtual ~shared() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct shared_impl : shared {\n  void dummy() override {}\n};\n//->\n\nstruct example {\n  // clang-format off\n  example(std::shared_ptr<per_request> sp1 /*unique*/\n        , std::shared_ptr<per_request> sp2 /*unique*/\n        , const shared& s1 /*singleton*/\n        , shared& s2 /*singleton*/) {\n    assert(sp1 != sp2);\n    assert(&s1 == &s2);\n  }\n  // clang-format on\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<per_request>().to<per_request_impl>().in(di::unique)\n  , di::bind<shared>().to<shared_impl>().in(di::singleton)\n  );\n  // clang-format on\n\n  /*<<create `example`>>*/\n  injector.create<example>();\n}\n"
  },
  {
    "path": "example/try_it.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <boost/di.hpp>\n#include <cassert>\n#include <iostream>\n\nnamespace di = boost::di;\n\nstruct iworld {\n  virtual ~iworld() noexcept = default;\n};\n\nstruct world : iworld {\n  world() { std::cout << \" world!\" << std::endl; }\n};\n\nstruct hello {\n  explicit hello(int i) {\n    assert(42 == i);\n    std::cout << \"hello\";\n  }\n};\n\nclass Greater;\n\n/// aggregate initialization `example{hello, world}`\ntemplate <class T = Greater>\nstruct example {\n  T h;\n  iworld& w;\n};\n\nint main() {\n  // clang-format off\n  const auto injector = di::make_injector(\n    di::bind<iworld>().to<world>()    // bind interface to implementation\n  , di::bind<>().to(42)               // bind int to value 42\n  , di::bind<Greater>().to<hello>()   // bind template to type\n  );\n  // clang-format off\n\n  injector.create<example>();\n}\n"
  },
  {
    "path": "example/tutorial/basic_annotations_to_the_rescue.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <string>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto Rows = [] {};\nauto Cols = [] {};\n\n//<-\nstruct renderer {\n  int device;\n};\n\nclass iview {\n public:\n  virtual ~iview() noexcept = default;\n  virtual void update() = 0;\n};\n\nclass gui_view : public iview {\n public:\n  gui_view(std::string /*title*/, const renderer& r) { assert(123 == r.device); }\n  void update() override {}\n};\n\nclass text_view : public iview {\n public:\n  void update() override {}\n};\n//->\n\nclass model {\n public:\n  model(int /*size*/, double /*precision*/) {}\n  BOOST_DI_INJECT(model, (named = Rows) int rows, (named = Cols) int cols);\n};\n\nmodel::model(int rows, int cols) {\n  assert(6 == rows);\n  assert(8 == cols);\n}\n\n//<-\nclass controller {\n public:\n  controller(model&, iview& v) { assert(dynamic_cast<gui_view*>(&v)); }\n};\n\nclass iclient {\n public:\n  virtual ~iclient() noexcept = default;\n  virtual void process() = 0;\n};\n\nclass user : public iclient {\n public:\n  void process() override{};\n};\n\nclass timer : public iclient {\n public:\n  void process() override{};\n};\n\nclass app {\n public:\n  app(controller&, std::vector<std::shared_ptr<iclient>> v) {\n    assert(2 == v.size());\n    assert(dynamic_cast<user*>(v[0].get()));\n    assert(dynamic_cast<timer*>(v[1].get()));\n  }\n};\n//->\n\nint main() {\n  auto use_gui_view = true;\n\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<iview>().to([&](const auto& injector) -> iview& {\n      if (use_gui_view)\n        return injector.template create<gui_view&>();\n      else\n        return injector.template create<text_view&>();\n    })\n  , di::bind<timer>().in(di::unique) // different per request\n  , di::bind<iclient*[]>().to<user, timer>() // bind many clients\n  , di::bind<int>().to(42) // renderer device\n  , di::bind<int>().to(123) [di::override] // override renderer device\n  , di::bind<int>().named(Rows).to(6)\n  , di::bind<int>().named(Cols).to(8)\n  );\n  // clang-format on\n\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/tutorial/basic_create_objects_tree.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nstruct renderer {\n  int device;\n};\n\nclass view {\n public:\n  view(std::string /*title*/, const renderer&) {}\n};\n\nclass model {};\n\nclass controller {\n public:\n  controller(model&, view&) {}\n};\n\nclass user {};\n\nclass app {\n public:\n  app(controller&, user&) {}\n};\n\nint main() {\n  /**\n   * renderer renderer_;\n   * view view_{\"\", renderer_};\n   * model model_;\n   * controller controller_{model_, view_};\n   * user user_;\n   * app app_{controller_, user_};\n   */\n\n  auto injector = di::make_injector();\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/tutorial/basic_decide_the_life_times.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <string>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct renderer {\n  int device;\n};\n\nclass iview {\n public:\n  virtual ~iview() noexcept = default;\n  virtual void update() = 0;\n};\n\nclass gui_view : public iview {\n public:\n  gui_view(std::string /*title*/, const renderer& r) { assert(123 == r.device); }\n  void update() override {}\n};\n\nclass text_view : public iview {\n public:\n  void update() override {}\n};\n\nclass model {};\n\nclass controller {\n public:\n  controller(model&, iview& v) { assert(dynamic_cast<gui_view*>(&v)); }\n};\n\nclass iclient {\n public:\n  virtual ~iclient() noexcept = default;\n  virtual void process() = 0;\n};\n\nclass user : public iclient {\n public:\n  void process() override{};\n};\n\nclass timer : public iclient {\n public:\n  void process() override{};\n};\n\nclass app {\n public:\n  app(controller&, std::vector<std::shared_ptr<iclient>> v) {\n    assert(2 == v.size());\n    assert(dynamic_cast<user*>(v[0].get()));\n    assert(dynamic_cast<timer*>(v[1].get()));\n  }\n};\n//->\n\nint main() {\n  auto use_gui_view = true;\n\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<iview>().to([&](const auto& injector) -> iview& {\n      if (use_gui_view)\n        return injector.template create<gui_view&>();\n      else\n        return injector.template create<text_view&>();\n    })\n  , di::bind<timer>().in(di::unique) // different per request\n  , di::bind<iclient*[]>().to<user, timer>() // bind many clients\n  , di::bind<int>().to(42) // renderer device\n  , di::bind<int>().to(123) [di::override] // override renderer device\n  );\n  // clang-format on\n\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/tutorial/basic_first_steps_with_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct renderer {\n  int device;\n};\n//->\n\nclass iview {\n public:\n  virtual ~iview() noexcept = default;\n  virtual void update() = 0;\n};\n\nclass gui_view : public iview {\n public:\n  gui_view(std::string /*title*/, const renderer& r) { assert(42 == r.device); }\n  void update() override {}\n};\n\nclass text_view : public iview {\n public:\n  void update() override {}\n};\n\n//<-\nclass model {};\n//->\n\nclass controller {\n public:\n  controller(model&, iview&) {}\n};\n\n//<-\nclass user {};\n\nclass app {\n public:\n  app(controller&, user&) {}\n};\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<iview>().to<gui_view>()\n  , di::bind<int>().to(42) // renderer device\n  );\n  // clang-format on\n\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/tutorial/basic_first_steps_with_bindings_override.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <string>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct renderer {\n  int device;\n};\n\nclass iview {\n public:\n  virtual ~iview() noexcept = default;\n  virtual void update() = 0;\n};\n\nclass gui_view : public iview {\n public:\n  gui_view(std::string /*title*/, const renderer& r) { assert(123 == r.device); }\n  void update() override {}\n};\n\nclass text_view : public iview {\n public:\n  void update() override {}\n};\n\nclass model {};\n\nclass controller {\n public:\n  controller(model&, iview& v) { assert(dynamic_cast<gui_view*>(&v)); }\n};\n\nclass iclient {\n public:\n  virtual ~iclient() noexcept = default;\n  virtual void process() = 0;\n};\n\nclass user : public iclient {\n public:\n  void process() override{};\n};\n\nclass timer : public iclient {\n public:\n  void process() override{};\n};\n\nclass app {\n public:\n  app(controller&, std::vector<std::unique_ptr<iclient>> v) {\n    assert(2 == v.size());\n    assert(dynamic_cast<user*>(v[0].get()));\n    assert(dynamic_cast<timer*>(v[1].get()));\n  }\n};\n//->\n\nint main() {\n  auto use_gui_view = true;\n\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<iview>().to([&](const auto& injector) -> iview& {\n      if (use_gui_view)\n        return injector.template create<gui_view&>();\n      else\n        return injector.template create<text_view&>();\n    })\n  , di::bind<iclient*[]>().to<user, timer>() // bind many clients\n  , di::bind<int>().to(42) // renderer device\n  , di::bind<int>().to(123) [di::override] // override renderer device\n  );\n  // clang-format on\n\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/tutorial/basic_first_steps_with_dynamic_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <string>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct renderer {\n  int device;\n};\n\nclass iview {\n public:\n  virtual ~iview() noexcept = default;\n  virtual void update() = 0;\n};\n\nclass gui_view : public iview {\n public:\n  gui_view(std::string /*title*/, const renderer& r) { assert(42 == r.device); }\n  void update() override {}\n};\n\nclass text_view : public iview {\n public:\n  void update() override {}\n};\n\nclass model {};\n\n//<-\nclass controller {\n public:\n  controller(model&, iview& v) { assert(dynamic_cast<gui_view*>(&v)); }\n};\n//->\n\nclass user {};\n\nclass app {\n public:\n  app(controller&, user&) {}\n};\n//->\n\nint main() {\n  auto use_gui_view = true;\n\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<iview>().to([&](const auto& injector) -> iview& {\n      if (use_gui_view)\n        return injector.template create<gui_view&>();\n      else\n        return injector.template create<text_view&>();\n    })\n  , di::bind<int>().to(42) // renderer device\n  );\n  // clang-format on\n\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/tutorial/basic_first_steps_with_multiple_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <string>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct renderer {\n  int device;\n};\n\nclass iview {\n public:\n  virtual ~iview() noexcept = default;\n  virtual void update() = 0;\n};\n\nclass gui_view : public iview {\n public:\n  gui_view(std::string /*title*/, const renderer& r) { assert(42 == r.device); }\n  void update() override {}\n};\n\nclass text_view : public iview {\n public:\n  void update() override {}\n};\n\nclass model {};\n\nclass controller {\n public:\n  controller(model&, iview& v) { assert(dynamic_cast<gui_view*>(&v)); }\n};\n\nclass iclient {\n public:\n  virtual ~iclient() noexcept = default;\n  virtual void process() = 0;\n};\n//->\n\nclass user : public iclient {\n public:\n  void process() override{};\n};\n\nclass timer : public iclient {\n public:\n  void process() override{};\n};\n\nclass app {\n public:\n  app(controller&, std::vector<std::unique_ptr<iclient>> v) {\n    assert(2 == v.size());\n    assert(dynamic_cast<user*>(v[0].get()));\n    assert(dynamic_cast<timer*>(v[1].get()));\n  }\n};\n\nint main() {\n  auto use_gui_view = true;\n\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<iview>().to([&](const auto& injector) -> iview& {\n      if (use_gui_view)\n        return injector.template create<gui_view&>();\n      else\n        return injector.template create<text_view&>();\n    })\n  , di::bind<int>().to(42) // renderer device\n  , di::bind<iclient*[]>().to<user, timer>() // bind many clients\n  );\n  // clang-format on\n\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/tutorial/basic_first_steps_with_template_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <type_traits>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nclass Greater;\n\ntemplate <class T = Greater>\nstruct example {\n  using type = T;\n};\n\nstruct hello {};\n\nint main() {\n  // clang-format off\n  const auto injector = di::make_injector(\n    di::bind<Greater>().to<hello>()\n  );\n  // clang-format on\n\n  auto object = injector.create<example>();\n  static_assert(std::is_same<hello, decltype(object)::type>{}, \"\");\n}\n"
  },
  {
    "path": "example/tutorial/basic_split_your_configuration.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <string>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nauto Rows = [] {};\nauto Cols = [] {};\n\nstruct renderer {\n  int device;\n};\n\nclass iview {\n public:\n  virtual ~iview() noexcept = default;\n  virtual void update() = 0;\n};\n\nclass gui_view : public iview {\n public:\n  gui_view(std::string /*title*/, const renderer& r) { assert(123 == r.device); }\n  void update() override {}\n};\n\nclass text_view : public iview {\n public:\n  void update() override {}\n};\n\nclass model {\n public:\n  model(int /*size*/, double /*precision*/) {}\n  BOOST_DI_INJECT(model, (named = Rows) int rows, (named = Cols) int cols);\n};\n\nmodel::model(int rows, int cols) {\n  assert(6 == rows);\n  assert(8 == cols);\n}\n\nclass controller {\n public:\n  controller(model&, iview& v) { assert(dynamic_cast<gui_view*>(&v)); }\n};\n\nclass iclient {\n public:\n  virtual ~iclient() noexcept = default;\n  virtual void process() = 0;\n};\n\nclass user : public iclient {\n public:\n  void process() override{};\n};\n\nclass timer : public iclient {\n public:\n  void process() override{};\n};\n\nclass app {\n public:\n  app(controller&, std::vector<std::shared_ptr<iclient>> v) {\n    assert(2 == v.size());\n    assert(dynamic_cast<user*>(v[0].get()));\n    assert(dynamic_cast<timer*>(v[1].get()));\n  }\n};\n//->\n\nauto model_module = [] {\n  // clang-format off\n  return di::make_injector(\n    di::bind<int>().named(Rows).to(6)\n  , di::bind<int>().named(Cols).to(8)\n  );\n  // clang-format on\n};\n\nauto app_module = [](const bool& use_gui_view) {\n  // clang-format off\n  return di::make_injector(\n    di::bind<iview>().to([&](const auto& injector) -> iview& {\n      if (use_gui_view)\n        return injector.template create<gui_view&>();\n      else\n        return injector.template create<text_view&>();\n    })\n  , di::bind<timer>().in(di::unique) // different per request\n  , di::bind<iclient*[]>().to<user, timer>() // bind many clients\n  , di::bind<int>().to(42) // renderer device\n  , di::bind<int>().to(123) [di::override] // override renderer device\n  );\n  // clang-format on\n};\n\nint main() {\n  auto use_gui_view = true;\n\n  // clang-format off\n  auto injector = di::make_injector(\n    model_module()\n  , app_module(use_gui_view)\n  );\n  // clang-format on\n\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/tutorial/basic_split_your_configuration_expose.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <string>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto Rows = [] {};\nauto Cols = [] {};\n\n//<-\nstruct renderer {\n  int device;\n};\n\nclass iview {\n public:\n  virtual ~iview() noexcept = default;\n  virtual void update() = 0;\n};\n\nclass gui_view : public iview {\n public:\n  gui_view(std::string /*title*/, const renderer& r) { assert(123 == r.device); }\n  void update() override {}\n};\n\nclass text_view : public iview {\n public:\n  void update() override {}\n};\n\nclass model {\n public:\n  model(int /*size*/, double /*precision*/) {}\n  BOOST_DI_INJECT(model, (named = Rows) int rows, (named = Cols) int cols);\n};\n\nmodel::model(int rows, int cols) {\n  assert(6 == rows);\n  assert(8 == cols);\n}\n\nclass controller {\n public:\n  controller(model&, iview& v) { assert(dynamic_cast<gui_view*>(&v)); }\n};\n\nclass iclient {\n public:\n  virtual ~iclient() noexcept = default;\n  virtual void process() = 0;\n};\n\nclass user : public iclient {\n public:\n  void process() override{};\n};\n\nclass timer : public iclient {\n public:\n  void process() override{};\n};\n\nclass app {\n public:\n  app(controller&, std::vector<std::shared_ptr<iclient>> v) {\n    assert(2 == v.size());\n    assert(dynamic_cast<user*>(v[0].get()));\n    assert(dynamic_cast<timer*>(v[1].get()));\n  }\n};\n//->\n\ndi::injector<model&> model_module() {\n  // clang-format off\n  return di::make_injector(\n    di::bind<int>().named(Rows).to(6)\n  , di::bind<int>().named(Cols).to(8)\n  );\n  // clang-format on\n}\n\ndi::injector<app> app_module(const bool& use_gui_view) {\n  // clang-format off\n  return di::make_injector(\n    di::bind<iview>().to([&](const auto& injector) -> iview& {\n      if (use_gui_view)\n        return injector.template create<gui_view&>();\n      else\n        return injector.template create<text_view&>();\n    })\n  , di::bind<timer>().in(di::unique) // different per request\n  , di::bind<iclient*[]>().to<user, timer>() // bind many clients\n  , di::bind<int>().to(42) // renderer device\n  , di::bind<int>().to(123) [di::override] // override renderer device\n  , model_module()\n  );\n  // clang-format on\n}\n\nint main() {\n  auto use_gui_view = true;\n  auto injector = app_module(use_gui_view);\n  injector.create<app>();\n}\n"
  },
  {
    "path": "example/user_guide/annotated_constructor_injection.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nauto int1 = [] {};\nauto int2 = [] {};\n\nstruct T {\n  BOOST_DI_INJECT(T, (named = int1) int a, (named = int2) int b) : a(a), b(b) {}\n  int a = 0;\n  int b = 0;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().named(int1).to(42)\n  , di::bind<int>().named(int2).to(87)\n  );\n  // clang-format on\n  {\n    auto object = injector.create<T>();\n    assert(42 == object.a);\n    assert(87 == object.b);\n  }\n  {\n    auto object = T(42, 87);\n    assert(42 == object.a);\n    assert(87 == object.b);\n  }\n}\n"
  },
  {
    "path": "example/user_guide/annotated_constructor_injection_with_constructor_definition.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nauto int1 = [] {};\nauto int2 = [] {};\n\nstruct T {\n  BOOST_DI_INJECT(T, (named = int1) int a, (named = int2) int b);\n  int a = 0;\n  int b = 0;\n};\n\nT::T(int a, int b) : a(a), b(b) {}\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().named(int1).to(42)\n  , di::bind<int>().named(int2).to(87)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87 == object.b);\n}\n"
  },
  {
    "path": "example/user_guide/annotated_constructor_injection_with_ctor_traits.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nauto int1 = [] {};\nauto int2 = [] {};\n\nstruct T {\n  T(int a, int b) : a(a), b(b) {}\n  int a = 0;\n  int b = 0;\n};\n\nnamespace boost {\nnamespace di {\ntemplate <>\nstruct ctor_traits<T> {\n  BOOST_DI_INJECT_TRAITS((named = int1) int, (named = int2) int);\n};\n}\n}  // boost::di\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().named(int1).to(42)\n  , di::bind<int>().named(int2).to(87)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87 == object.b);\n}\n"
  },
  {
    "path": "example/user_guide/annotated_constructor_injection_with_the_same_names.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <string>\n\nnamespace di = boost::di;\n//->\n\nauto n1 = [] {};\nauto n2 = [] {};\n\nstruct T {\n  // clang-format off\n  BOOST_DI_INJECT(T, (named = n1) int i1\n                   , (named = n1) int i2\n                   , (named = n2) int i3\n                   , int i4\n                   , (named = n1)std::string s)\n    : i1(i1), i2(i2), i3(i3), i4(i4), s(s) {}\n  // clang-format on\n  int i1 = 0;\n  int i2 = 0;\n  int i3 = 0;\n  int i4 = 0;\n  std::string s;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().named(n1).to(42)\n  , di::bind<int>().named(n2).to(87)\n  , di::bind<std::string>().named(n1).to(\"str\")\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.i1);\n  assert(42 == object.i2);\n  assert(87 == object.i3);\n  assert(0 == object.i4);\n  assert(\"str\" == object.s);\n}\n"
  },
  {
    "path": "example/user_guide/bind_cross_platform.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nint main() {\n  auto injector = di::make_injector(\n#if defined(__cpp_variable_templates)\n      di::bind<i1>.to<impl1>()\n#else\n      di::bind<i1>().to<impl1>()  // no variable templates\n#endif\n          );\n\n  auto object = injector.create<std::unique_ptr<i1>>();\n  assert(dynamic_cast<impl1*>(object.get()));\n}\n"
  },
  {
    "path": "example/user_guide/bind_deduce_type_to_value.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<>().to(42)\n  );\n  // clang-format on\n\n  assert(42 == injector.create<int>());\n}\n"
  },
  {
    "path": "example/user_guide/bind_dynamic_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl : i1 {\n  void dummy1() override {}\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<i1>().to([&](const auto& injector) -> i1& {\n      if (true)\n        return injector.template create<impl1&>();\n      else\n        return injector.template create<impl&>();\n    })\n  );\n  // clang-format on\n\n  auto&& object = injector.create<i1&>();\n  assert(dynamic_cast<impl1*>(&object));\n}\n"
  },
  {
    "path": "example/user_guide/bind_interface_to_implementation.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<i1>().to<impl1>()\n  );\n  // clang-format on\n\n  auto object = injector.create<std::unique_ptr<i1>>();\n  assert(dynamic_cast<impl1*>(object.get()));\n}\n"
  },
  {
    "path": "example/user_guide/bind_multiple_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n#include <vector>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl : i1 {\n  void dummy1() override {}\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<i1*[]>().to<impl, impl1>()\n  );\n  // clang-format on\n\n  auto v = injector.create<std::vector<std::unique_ptr<i1>>>();\n  assert(2 == v.size());\n  assert(dynamic_cast<impl*>(v[0].get()));\n  assert(dynamic_cast<impl1*>(v[1].get()));\n}\n"
  },
  {
    "path": "example/user_guide/bind_multiple_bindings_initializer_list.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n// clang-format off\n#include <initializer_list>  // has to be before, due to the bug in clang < 3.7\n// clang-format on\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n#include <set>\n#include <vector>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl : i1 {\n  void dummy1() override {}\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int[]>().to({1, 2, 3}) // or int*[]\n  );\n  // clang-format on\n\n  auto v = injector.create<std::vector<int>>();\n  assert(3 == v.size());\n  assert(1 == v[0]);\n  assert(2 == v[1]);\n  assert(3 == v[2]);\n}\n"
  },
  {
    "path": "example/user_guide/bind_multiple_interfaces.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct impl : i1, i2 {\n  void dummy1() override {}\n  void dummy2() override {}\n};\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<i1, i2>().to<impl>()\n  );\n  // clang-format on\n\n  auto object1 = injector.create<std::shared_ptr<i1>>();\n  auto object2 = injector.create<std::shared_ptr<i2>>();\n  assert(dynamic_cast<impl*>(object1.get()));\n  assert(dynamic_cast<impl*>(object2.get()));\n}\n"
  },
  {
    "path": "example/user_guide/bind_type_override.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<int>().to(123) [di::override]\n  );\n  // clang-format on\n\n  assert(123 == injector.create<int>());\n}\n"
  },
  {
    "path": "example/user_guide/bind_type_to_compile_time_value.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <type_traits>\n\nnamespace di = boost::di;\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to<std::integral_constant<int, 42>>()\n  );\n  // clang-format on\n\n  assert(42 == injector.create<int>());\n}\n"
  },
  {
    "path": "example/user_guide/bind_type_to_value.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  );\n  // clang-format on\n\n  assert(42 == injector.create<int>());\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_aggregate.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nstruct T {\n  int a;     // = 0;\n  double d;  // = 0.0;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87.0 == object.d);\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_ambiguous_constructors_via_BOOST_DI_INJECT.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nstruct T {\n  T(double d, int a) : a(a), d(d) {}\n  BOOST_DI_INJECT(T, int a, double d) : a(a), d(d) {}\n\n  int a = 0;\n  double d = 0.0;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87.0 == object.d);\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_ambiguous_constructors_via_BOOST_DI_INJECT_TRAITS.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nstruct T {\n  BOOST_DI_INJECT_TRAITS(int, double);\n  T(double d, int a) : a(a), d(d) {}\n  T(int a, double d) : a(a), d(d) {}\n\n  int a = 0;\n  double d = 0.0;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87.0 == object.d);\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_ambiguous_constructors_via_ctor_traits.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nstruct T {\n  T(double d, int a) : a(a), d(d) {}\n  T(int a, double d) : a(a), d(d) {}\n\n  int a = 0;\n  double d = 0.0;\n};\n\nnamespace boost {\nnamespace di {\ntemplate <>\nstruct ctor_traits<T> {\n  BOOST_DI_INJECT_TRAITS(int, double);\n};\n}\n}  // boost::di\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87.0 == object.d);\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_ambiguous_constructors_via_inject.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nstruct T {\n  T(double d, int a) : a(a), d(d) {}\n  T(int a, double d) : a(a), d(d) {}\n  using boost_di_inject__ = di::inject<int, double>;\n\n  int a = 0;\n  double d = 0.0;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87.0 == object.d);\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_ambiguous_constructors_via_vaargs.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nstruct T {\n  T(double d, int a) : a(a), d(d) {}\n  T(int a, double d, ...) : a(a), d(d) {}\n\n  int a = 0;\n  double d = 0.0;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87.0 == object.d);\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_default_values.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nclass example {\n public:\n  BOOST_DI_INJECT_TRAITS(int);\n  explicit example(int i, double d = 42.0) : i(i), d(d) {}\n\n  int i = 0;\n  double d = 0.0;\n};\n\nint main() {\n  auto injector = di::make_injector();\n  auto object = injector.create<example>();\n  assert(0 == object.i);\n  assert(42.0 == object.d);\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_direct.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nstruct T {\n  T(int a, double d) : a(a), d(d) {}\n\n  int a = 0;\n  double d = 0.0;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87.0 == object.d);\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_long_parameter_list.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n//->\n\nstruct T {\n  // clang-format off\n  using boost_di_inject__ = di::inject<\n    int, int, int, int, int, int, int, int, int, int\n  , int, int, int, int, int, int, int, int, int, int\n  , int, int, int, int, int, int, int, int, int, int>;\n\n  T(int, int, int, int, int, int, int, int, int, int\n  , int, int, int, int, int, int, int, int, int, int\n  , int, int, int, int, int, int, int, int, int, int) { }\n  // clang-format on\n};\n\nint main() {\n  auto injector = di::make_injector();\n  injector.create<T>();  // compile clean\n}\n"
  },
  {
    "path": "example/user_guide/constructor_injection_multiple_constructors.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nstruct T {\n  T();\n  T(int a) : a(a) {}\n  T(int a, double d) : a(a), d(d) {}  // longest will be chosen\n\n  int a = 0;\n  double d = 0.0;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(42)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n  auto object = injector.create<T>();\n  assert(42 == object.a);\n  assert(87.0 == object.d);\n}\n"
  },
  {
    "path": "example/user_guide/injector_empty.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n\nnamespace di = boost::di;\n//->\n\nint main() {\n  auto injector = di::make_injector();\n\n  assert(0 == injector.create<int>());\n}\n"
  },
  {
    "path": "example/user_guide/module.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\nstruct impl2 : i2 {\n  void dummy2() override {}\n};\n//->\n\nstruct T {\n  T(std::unique_ptr<i1> i1, std::unique_ptr<i2> i2, int i) : i1_(std::move(i1)), i2_(std::move(i2)), i(i) {}\n\n  std::unique_ptr<i1> i1_;\n  std::unique_ptr<i2> i2_;\n  int i = 0;\n};\n\n// clang-format off\nauto module1 = [] {\n  return di::make_injector(\n    di::bind<i1>().to<impl1>()\n  , di::bind<int>().to(42)\n  );\n};\n\nauto module2 = [] {\n  return di::make_injector(\n    di::bind<i2>().to<impl2>()\n  );\n};\n// clang-format on\n\nint main() {\n  auto injector = di::make_injector(module1(), module2());\n  auto object = injector.create<std::unique_ptr<T>>();\n  assert(dynamic_cast<impl1*>(object->i1_.get()));\n  assert(dynamic_cast<impl2*>(object->i2_.get()));\n  assert(42 == object->i);\n  auto up1 = injector.create<std::unique_ptr<i1>>();\n  assert(dynamic_cast<impl1*>(up1.get()));\n  auto up2 = injector.create<std::unique_ptr<i2>>();\n  assert(dynamic_cast<impl2*>(up2.get()));\n}\n"
  },
  {
    "path": "example/user_guide/module_exposed_annotated_type.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nauto my_name = [] {};\n\nstruct T {\n  BOOST_DI_INJECT(T, (named = my_name) std::unique_ptr<i1> up) : up(std::move(up)) {}\n  std::unique_ptr<i1> up;\n};\n\nauto module = []() -> di::injector<BOOST_DI_EXPOSE((named = my_name) std::unique_ptr<i1>)> {\n  // clang-format off\n  return di::make_injector(\n    di::bind<i1>().named(my_name).to<impl1>()\n  );\n  // clang-format on\n};\n\nint main() {\n  auto injector = di::make_injector(module());\n  auto object = injector.create<std::unique_ptr<T>>();\n  assert(dynamic_cast<impl1*>(object->up.get()));\n}\n"
  },
  {
    "path": "example/user_guide/module_exposed_complex_types.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\nstruct impl2 : i2 {\n  void dummy2() override {}\n};\n//->\n\nstruct T {\n  T(std::shared_ptr<i1> i1, std::shared_ptr<i2> i2, int i) : i1_(i1), i2_(i2), i(i) {}\n\n  std::shared_ptr<i1> i1_;\n  std::shared_ptr<i2> i2_;\n  int i;\n};\n\n__BOOST_DI_UNUSED auto name = [] {};\n\ndi::injector<T, std::unique_ptr<T>, BOOST_DI_EXPOSE((named = name) T)> module(const int& i) noexcept {\n  // clang-format off\n  return di::make_injector(\n    di::bind<i1>().to<impl1>()\n  , di::bind<i2>().to<impl2>()\n  , di::bind<int>().to(i)\n  );\n  // clang-format on\n}\n\nint main() {\n  auto injector = di::make_injector(module(42));\n  {\n    auto object = injector.create<T>();\n    assert(dynamic_cast<impl1*>(object.i1_.get()));\n    assert(dynamic_cast<impl2*>(object.i2_.get()));\n    assert(42 == object.i);\n  }\n  {\n    auto object = injector.create<std::unique_ptr<T>>();\n    assert(dynamic_cast<impl1*>(object->i1_.get()));\n    assert(dynamic_cast<impl2*>(object->i2_.get()));\n    assert(42 == object->i);\n  }\n  {\n    struct example {\n      BOOST_DI_INJECT(example, (named = name) T object) : object(object) {}\n      T object;\n    };\n\n    auto object = injector.create<example>().object;\n    assert(dynamic_cast<impl1*>(object.i1_.get()));\n    assert(dynamic_cast<impl2*>(object.i2_.get()));\n    assert(42 == object.i);\n  }\n}\n"
  },
  {
    "path": "example/user_guide/module_exposed_many_types.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\nstruct impl2 : i2 {\n  void dummy2() override {}\n};\n//->\n\nauto module = []() -> di::injector<std::unique_ptr<i1>, std::unique_ptr<i2>> {\n  // clang-format off\n  return di::make_injector(\n    di::bind<i1>().to<impl1>()\n  , di::bind<i2>().to<impl2>()\n  );\n  // clang-format on\n};\n\nint main() {\n  auto injector = di::make_injector(module());\n  auto up1 = injector.create<std::unique_ptr<i1>>();\n  assert(dynamic_cast<impl1*>(up1.get()));\n  auto up2 = injector.create<std::unique_ptr<i2>>();\n  assert(dynamic_cast<impl2*>(up2.get()));\n}\n"
  },
  {
    "path": "example/user_guide/module_exposed_type.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\nstruct impl2 : i2 {\n  void dummy2() override {}\n};\n//->\n\nstruct T {\n  T(std::shared_ptr<i1> i1, std::shared_ptr<i2> i2, int i) : i1_(i1), i2_(i2), i(i) {}\n\n  std::shared_ptr<i1> i1_;\n  std::shared_ptr<i2> i2_;\n  int i;\n};\n\ndi::injector<T> module(const int& i) noexcept {\n  // clang-format off\n  return di::make_injector(\n    di::bind<i1>().to<impl1>()\n  , di::bind<i2>().to<impl2>()\n  , di::bind<int>().to(i)\n  );\n  // clang-format on\n}\n\nint main() {\n  auto injector = di::make_injector(module(42));\n  auto object = injector.create<T>();\n  assert(dynamic_cast<impl1*>(object.i1_.get()));\n  assert(dynamic_cast<impl2*>(object.i2_.get()));\n  assert(42 == object.i);\n  // injector.create<std::unique_ptr<i1>>(); // compile error\n  // injector.create<std::unique_ptr<i2>>(); // compile error\n}\n"
  },
  {
    "path": "example/user_guide/policies_constructible_global.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <type_traits>\n//->\nclass all_must_be_bound_unless_int;\n#define BOOST_DI_CFG all_must_be_bound_unless_int\n#include <boost/di.hpp>\n\n//<-\nnamespace di = boost::di;\n//->\n\nclass all_must_be_bound_unless_int : public di::config {\n public:\n  static auto policies(...) noexcept {\n    using namespace di::policies;\n    using namespace di::policies::operators;\n    return di::make_policies(constructible(std::is_same<di::_, int>{} || is_bound<di::_>{}));\n  }\n};\n\nint main() {\n  assert(0 == di::make_injector().create<int>());\n  // di::make_injector().create<double>(); // compile error\n  assert(42.0 == make_injector(di::bind<double>().to(42.0)).create<double>());\n}\n"
  },
  {
    "path": "example/user_guide/policies_constructible_local.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <type_traits>\n//->\n#include <boost/di.hpp>\n\n//<-\nnamespace di = boost::di;\n//->\n\nclass injected_and_bound : public di::config {\n public:\n  static auto policies(...) noexcept {\n    using namespace di::policies;\n    using namespace di::policies::operators;\n    // clang-format off\n    return di::make_policies(\n      constructible(is_injected<di::_>{} && is_bound<di::_>{})\n    );\n    // clang-format on\n  }\n};\n\nstruct T {\n  BOOST_DI_INJECT(T, int, double) {}\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector<injected_and_bound>(\n    di::bind<>().to(42)\n  , di::bind<>().to(87.0)\n  );\n  // clang-format on\n\n  injector.create<T>();\n}\n"
  },
  {
    "path": "example/user_guide/policies_print_type_extended.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <iostream>\n#include <memory>\n#include <typeinfo>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nclass print_types_info_policy : public di::config {\n public:\n  static auto policies(...) noexcept {\n    return di::make_policies([](auto arg) {\n      using T = decltype(arg);\n      using type = typename T::type;\n      using name = typename T::name;\n      using expected = typename T::expected;\n      using given = typename T::given;\n      using scope = typename T::scope;\n      auto ctor_size = T::arity::value;\n\n      std::cout << ctor_size << std::endl\n                << typeid(type).name() << std::endl\n                << typeid(expected).name() << std::endl\n                << typeid(given).name() << std::endl\n                << typeid(name).name() << std::endl\n                << typeid(scope).name() << std::endl;\n    });\n  }\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector<print_types_info_policy>(\n    di::bind<i1>().to<impl1>()\n  );\n  // clang-format on\n  injector.create<std::unique_ptr<i1>>();\n}\n"
  },
  {
    "path": "example/user_guide/policies_print_types.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <iostream>\n#include <typeinfo>\n\nnamespace di = boost::di;\n//->\n\nclass print_types_policy : public di::config {\n public:\n  static auto policies(...) noexcept {\n    return di::make_policies([](auto type) {\n      using arg = typename decltype(type)::type;\n      std::cout << typeid(arg).name() << std::endl;\n    });\n  }\n};\n\nint main() {\n  auto injector = di::make_injector<print_types_policy>();\n  injector.create<int>();  // output: int\n}\n"
  },
  {
    "path": "example/user_guide/providers_heap.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <memory>\n\nnamespace di = boost::di;\n//->\n\nclass my_provider : public di::config {\n public:\n  static auto provider(...) noexcept { return di::providers::heap{}; }\n};\n\nint main() {\n  auto injector = di::make_injector<my_provider>();\n  injector.create<int>();                           // heap\n  std::unique_ptr<int> i{injector.create<int*>()};  // heap\n  (void)i;\n}\n"
  },
  {
    "path": "example/user_guide/providers_heap_no_throw.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <new>\n#include <utility>\n\nnamespace di = boost::di;\n//->\n\nclass heap_no_throw {\n public:\n  template <class...>\n  struct is_creatable {\n    static constexpr auto value = true;\n  };\n\n  // clang-format off\n  template <class T         // implementation\n          , class TInit     // direct()/uniform{}\n          , class TMemory   // heap/stack\n          , class... TArgs>\n  auto get(const TInit&, const TMemory&, TArgs&&... args) const noexcept {\n    return new (std::nothrow) T{std::forward<TArgs>(args)...};\n  }\n  // clang-format on\n};\n\nclass my_provider : public di::config {\n public:\n  static auto provider(...) noexcept { return heap_no_throw{}; }\n};\n\nint main() {\n  auto injector = di::make_injector<my_provider>();\n  assert(0 == injector.create<int>());\n}\n"
  },
  {
    "path": "example/user_guide/providers_stack_over_heap.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <memory>\n\nnamespace di = boost::di;\n//->\n\nclass my_provider : public di::config {\n public:\n  // this is default in di::config\n  static auto provider(...) noexcept { return di::providers::stack_over_heap{}; }\n};\n\nint main() {\n  auto injector = di::make_injector<my_provider>();\n  injector.create<int>();                           // stack\n  std::unique_ptr<int> i{injector.create<int*>()};  // heap\n  (void)i;\n}\n"
  },
  {
    "path": "example/user_guide/scopes_custom.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nstruct custom_scope {\n  template <class TExpected, class>\n  struct scope {\n    template <class>\n    using is_referable = std::false_type;\n\n    template <class T, class, class TProvider>\n    static auto try_create(const TProvider& provider) -> decltype(std::shared_ptr<TExpected>{provider.get()});\n\n    template <class T, class, class TProvider>\n    auto create(const TProvider& provider) {\n      return std::shared_ptr<TExpected>{provider.get()};\n    }\n  };\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<i1>().in(custom_scope{}).to<impl1>()\n  );\n  // clang-format on\n  assert(injector.create<std::shared_ptr<i1>>() != injector.create<std::shared_ptr<i1>>());\n}\n"
  },
  {
    "path": "example/user_guide/scopes_deduce_default.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <functional>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\nstruct impl2 : i2 {\n  void dummy2() override {}\n};\n//->\n\nstruct T {\n  T(const std::shared_ptr<i1>& sp, std::unique_ptr<i2> up, int& i, double d) : sp(sp), up(std::move(up)), i(i), d(d) {}\n\n  std::shared_ptr<i1> sp; /*singleton*/\n  std::unique_ptr<i2> up; /*unique*/\n  int& i;                 /*instance*/\n  double d;               /*unique*/\n};\n\nint main() {\n  auto i = 42;\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<i1>().to<impl1>()\n  , di::bind<i2>().to<impl2>()\n  , di::bind<int>().to(i)\n  , di::bind<double>().to(87.0)\n  );\n  // clang-format on\n  auto object1 = injector.create<std::unique_ptr<T>>();\n  auto object2 = injector.create<std::unique_ptr<T>>();\n  assert(object1->sp == object2->sp);\n  assert(object1->up != object2->up);\n  assert(42 == object1->i);\n  assert(&i == &object1->i);\n  assert(42 == object2->i);\n  assert(&i == &object2->i);\n  assert(87.0 == object1->d);\n  assert(87.0 == object2->d);\n  i = 12;\n  assert(i == object2->i);\n  assert(&i == &object2->i);\n}\n"
  },
  {
    "path": "example/user_guide/scopes_instance.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n#include <type_traits>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\nstruct impl2 : i2 {\n  void dummy2() override {}\n};\nstruct impl : i1, i2 {\n  void dummy1() override {}\n  void dummy2() override {}\n};\n//->\n\nint main() {\n  auto l = 42l;\n  auto b = false;\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(0)\n  , di::bind<int>().to(42)[di::override]\n  , di::bind<i1>().to(std::make_shared<impl>())\n  , di::bind<long>().to(l)\n  , di::bind<short>().to([] { return 87; })\n  , di::bind<i2>().to([&](const auto& injector) -> std::shared_ptr<i2> {\n      return b ? injector.template create<std::shared_ptr<impl2>>() : nullptr; })\n  );\n  // clang-format on\n\n  assert(42 == injector.create<int>());\n  assert(injector.create<std::shared_ptr<i1>>() == injector.create<std::shared_ptr<i1>>());\n  assert(l == injector.create<long&>());\n  assert(&l == &injector.create<long&>());\n  assert(87 == injector.create<short>());\n  {\n    auto object = injector.create<std::shared_ptr<i2>>();\n    assert(nullptr == object);\n  }\n  {\n    b = true;\n    auto object = injector.create<std::shared_ptr<i2>>();\n    assert(dynamic_cast<impl2*>(object.get()));\n  }\n}\n"
  },
  {
    "path": "example/user_guide/scopes_singleton.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<i1>().in(di::singleton).to<impl1>()\n  );\n  // clang-format on\n\n  assert(injector.create<std::shared_ptr<i1>>() == injector.create<std::shared_ptr<i1>>());\n}\n"
  },
  {
    "path": "example/user_guide/scopes_unique.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <boost/di.hpp>\n#include <cassert>\n#include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n//->\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<i1>().in(di::unique).to<impl1>()\n  );\n  // clang-format on\n\n  assert(injector.create<std::shared_ptr<i1>>() != injector.create<std::shared_ptr<i1>>());\n}\n"
  },
  {
    "path": "extension/CMakeLists.txt",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nfunction(extension extension)\n    string(REPLACE \"/\" \"_\" tmp ${extension})\n    add_executable(extension.${tmp} ${CMAKE_CURRENT_LIST_DIR}/${extension}.cpp)\n    add_test(extension.${tmp} extension.${tmp})\nendfunction()\n\nextension(bindings/constructor_bindings)\nextension(bindings/contextual_bindings)\nextension(injections/assisted_injection)\nextension(injections/factory)\nextension(injections/generics)\nextension(injections/lazy)\nextension(injections/named_parameters)\nextension(injections/xml_injection)\nextension(policies/serialize)\nextension(policies/types_dumper)\nextension(policies/uml_dumper)\nextension(providers/mocks_provider)\nextension(scopes/scoped_scope)\nextension(scopes/session_scope)\nextension(scopes/shared_scope)\n"
  },
  {
    "path": "extension/Jamfile.v2",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nimport testing ;\nimport feature : extend-feature compose ;\n\n.argv = [ modules.peek : ARGV ] ;\n\nproject boost.di :\n    requirements\n        <include>../include\n        <include>.\n;\n\nrule extension ( src + : cxxflags * : property * ) {\n    cxx_flags = \"\" ;\n    if $(cxxflags) {\n        cxx_flags = \"$(cxxflags)\" ;\n    }\n\n    toolset =\n        <toolset>gcc:<cxxflags>\"-std=c++1y -fno-exceptions -Wall -Wextra -Werror $(cxx_flags)\"\n        <toolset>gcc-6.0.0:<cxxflags>\"-std=c++1z\"\n        <toolset>clang:<cxxflags>\"-std=c++1y -Wno-dollar-in-identifier-extension -fno-exceptions -pedantic -pedantic-errors -Wall -Wextra -Werror $(cxx_flags)\"\n        <toolset>darwin:<cxxflags>\"-std=c++1y -fno-exceptions -pedantic -pedantic-errors -Wall -Wextra -Werror $(cxx_flags)\"\n        <toolset>msvc:<cxxflags>\"/W3 $(cxx_flags)\"\n    ;\n\n    local memcheck = [ MATCH --memcheck=(.*) : $(.argv) ] ;\n\n    if ${memcheck} {\n        toolset += <testing.launcher>$(memcheck) ;\n    }\n\n    run $(src) : : : $(toolset) : $(property) ;\n}\n\ntest-suite extensions :\n    [ extension bindings/constructor_bindings.cpp ]\n    [ extension bindings/contextual_bindings.cpp ]\n    [ extension injections/assisted_injection.cpp ]\n    [ extension injections/concepts.cpp ]\n    [ extension injections/factory.cpp ]\n    [ extension injections/generics.cpp ]\n    [ extension injections/lazy.cpp ]\n    [ extension injections/named_parameters.cpp ]\n    [ extension injections/xml_injection.cpp ]\n    [ extension policies/serialize.cpp ]\n    [ extension policies/types_dumper.cpp ]\n    [ extension policies/uml_dumper.cpp ]\n    [ extension providers/mocks_provider.cpp ]\n    [ extension scopes/scoped_scope.cpp ]\n    [ extension scopes/session_scope.cpp ]\n    [ extension scopes/shared_scope.cpp ]\n;\n"
  },
  {
    "path": "extension/bindings/constructor_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <string>\n#include <tuple>\n#include <type_traits>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : interface {\n  void dummy() override {}\n};\n\n/*<<to constructor extension>>*/\ntemplate <class... TCtor>\nstruct constructor_impl {\n  template <class TInjector, class T,\n            std::enable_if_t<\n                boost::di::concepts::creatable<boost::di::type_traits::direct, typename T::expected, TCtor...>::value, int> = 0>\n  auto operator()(const TInjector& injector, const T&) const {\n    return new typename T::expected{injector.template create<TCtor>()...};\n  }\n};\n\ntemplate <class... TCtor>\nstruct constructor : constructor_impl<TCtor...> {};\n//->\n\n/*<<normal constructor - to_constructor binding is not needed for it>>*/\nstruct ctor {\n  ctor(int i, std::string s, std::unique_ptr<interface> impl) {\n    assert(i == 2);\n    assert(s == \"hello\");\n    assert(dynamic_cast<implementation*>(impl.get()));\n  }\n};\n\n/*<<ambiguous constructor>>*/\nstruct ambiguous_ctor {\n  ambiguous_ctor(int i, std::string s) {\n    assert(i == 2);\n    assert(s == \"hello\");\n  }\n\n  ambiguous_ctor(std::string s, int i) {\n    assert(s == \"hello\");\n    assert(i == 2);\n  }\n};\n\n/*<<variadic constructor - has to be `explicit`>>*/\nstruct variadic {\n  template <class... Ts>\n  explicit variadic(Ts&&... args) {  // has to be explicit\n    assert(sizeof...(Ts) == 3);\n    std::tuple<Ts...> ts{std::forward<Ts>(args)...};\n    assert(std::get<0>(ts) == 2);\n    assert(std::get<1>(ts) == \"hello\");\n    assert(dynamic_cast<implementation*>(std::get<2>(ts).get()));\n  }\n};\n\nint main() {\n  // clang-format off\n  /*<<define constructor types>>*/\n  auto injector = di::make_injector(\n    di::bind<ctor>().to(constructor<int, std::string, std::unique_ptr<interface>>())\n  , di::bind<ambiguous_ctor>().to(constructor<int, std::string>())\n  , di::bind<variadic>().to(constructor<int, std::string, std::unique_ptr<interface>>())\n\n      /*<<additional bindings>>*/\n  , di::bind<interface>().to<implementation>()\n  , di::bind<int>().to(2), di::bind<std::string>().to(\"hello\")\n  );\n  // clang-format on\n\n  /*<<create types using defined constructors>>*/\n  injector.create<ctor>();\n  injector.create<ambiguous_ctor>();\n  injector.create<variadic>();\n}\n"
  },
  {
    "path": "extension/bindings/contextual_bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <string>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\ntemplate <class T>\nauto get_type() {\n#if defined(_MSC_VER)\n  auto type = std::string{&__FUNCSIG__[28]};\n  const auto i = type[0] == ' ' ? 1 : 0;\n  return type.substr(i, type.length() - 7 - i);\n#elif defined(__clang__)\n  auto type = std::string{&__PRETTY_FUNCTION__[21]};\n  return type.substr(0, type.length() - 1);\n#elif defined(__GCC__)\n  auto type = std::string{&__PRETTY_FUNCTION__[26]};\n  return type.substr(0, type.length() - 1);\n#else\n#error \"Platform not supported!\"\n#endif\n}\n\nstruct context_type : std::string {};\nstruct contexts_list : std::vector<std::string> {};\n\ntemplate <class TInjector>\nauto context(const TInjector& injector) noexcept {\n  return injector.template create<context_type&>();\n}\n\nclass contextual_bindings : public di::config {\n public:\n  template <class TInjector>\n  static auto policies(const TInjector* injector) noexcept {\n    return di::make_policies([&](auto type) {\n      if (std::is_same<typename decltype(type)::type, context_type&>::value ||\n          std::is_same<typename decltype(type)::type, contexts_list&>::value) {\n        return;\n      }\n      using T = decltype(type);\n      auto& v = injector->template create<contexts_list&>();\n      using given = di::aux::decay_t<typename decltype(type)::type>;\n      std::string element;\n      if (!v.empty()) {\n        element = v.back() + \"->\";\n        auto& context = injector->template create<context_type&>();\n        context.assign(v.back());\n        v.pop_back();\n      }\n      auto ctor_size = T::arity::value;\n      while (ctor_size--) {\n        v.push_back(element + get_type<given>());\n      }\n    });\n  }\n};\n//->\n\nstruct more_data {\n  int i;\n};\n\nstruct data {\n  int i;\n  more_data md;\n};\n\nclass example {\n public:\n  example(data& d, int i, float f) {\n    assert(87 == d.i);\n    assert(99 == d.md.i);\n    assert(42 == i);\n    assert(123.f == f);\n  }\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector<contextual_bindings>(\n      di::bind<>().to(123.f)\n    , di::bind<int>().to([](const auto& injector) {\n        if (context(injector) == \"example->data\") return 87;\n        if (context(injector) == \"example->data->more_data\") return 99;\n        return 42;\n      })\n  );\n  // clang-format on\n\n  /*<<create `example`>>*/\n  injector.create<example>();\n}\n"
  },
  {
    "path": "extension/injections/assisted_injection.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <functional>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : interface {\n  void dummy() override {}\n};\n\nconstexpr di::no_name assisted{};\n\ntemplate <class T>\nclass assisted_injection_impl {\n public:\n  template <class TInjector>\n  auto operator()(const TInjector& injector) const {\n    return [&](auto&&... args) {\n      using ctor = typename di::type_traits::ctor_traits__<T>::type;\n      return this->create(injector, typename ctor::second{}, std::forward<decltype(args)>(args)...);\n    };\n  }\n\n private:\n  template <class TInitialization, class... TCtor, class TInjector, class... TArgs>\n  auto create(const TInjector& injector, const di::aux::pair<TInitialization, di::aux::type_list<TCtor...>>& ctor,\n              TArgs&&... args) const {\n    using seq = std::make_index_sequence<sizeof...(TCtor)>;\n    return create_helper(seq{}, injector, ctor, std::forward<decltype(args)>(args)...);\n  }\n\n  template <class TInitialization, class... TCtor, std::size_t... Ns, class TInjector, class... TArgs>\n  auto create_helper(const std::index_sequence<Ns...>&, const TInjector& injector,\n                     const di::aux::pair<TInitialization, di::aux::type_list<TCtor...>>&, TArgs&&... args) const {\n    return std::make_unique<T>(create_impl<Ns>(injector, di::aux::type<TCtor>{}, std::forward<TArgs>(args)...)...);\n  }\n\n  template <std::size_t, class TInjector, class TArg>\n  decltype(auto) create_impl(const TInjector& injector, const di::aux::type<TArg>&, ...) const {\n    return injector.template create<TArg>();\n  }\n\n  template <std::size_t N, class TInjector, class TArg, class... TArgs>\n  decltype(auto) create_impl(const TInjector&, const di::aux::type<di::named<di::no_name, TArg>>&, TArgs&&... args) const {\n    constexpr auto value = get_assisted_ctor_nr(N, typename di::type_traits::ctor_traits__<T>::type::second{});\n    return get<TArg>(std::integral_constant<std::size_t, value>{}, args...);\n  }\n\n  template <class TInitialization, class... TCtor>\n  static constexpr auto get_assisted_ctor_nr(std::size_t N,\n                                             const di::aux::pair<TInitialization, di::aux::type_list<TCtor...>>&) {\n    return sum(0, N, is_assisted(di::aux::type<TCtor>{})...);\n  }\n\n  template <class... Args>\n  static constexpr auto sum(std::size_t index, std::size_t N, bool I, Args... V) {\n    return index < N ? static_cast<int>(I) + sum(index + 1, N, V...) : static_cast<int>(I);\n  }\n\n  static constexpr auto sum(std::size_t, std::size_t) { return 0; }\n\n  template <class TArg>\n  static constexpr auto is_assisted(const di::aux::type<TArg>&) {\n    return false;\n  }\n\n  template <class TArg>\n  static constexpr auto is_assisted(const di::aux::type<di::named<di::no_name, TArg>>&) {\n    return true;\n  }\n\n  template <class TCtor, std::size_t N, class TArg, class... TArgs, class = std::enable_if_t<(N > 1)>>\n  decltype(auto) get(const std::integral_constant<std::size_t, N>&, TArg&&, TArgs&&... args) const {\n    return get<TCtor>(std::integral_constant<std::size_t, N - 1>{}, args...);\n  }\n\n  template <class TCtor, class TArg, class... TArgs>\n  decltype(auto) get(const std::integral_constant<std::size_t, 1>&, TArg&& arg, TArgs&&...) const {\n    return arg;\n  }\n\n  template <class TCtor>\n  auto get(const std::integral_constant<std::size_t, 0>&) const {\n    return TCtor{};\n  }\n};\n\ntemplate <class T>\nstruct assisted_injection : assisted_injection_impl<T> {};\n//->\n\nstruct example {\n  /*<<define `example` constructor using `assisted` as assisted_injection creation parameters>>*/\n  BOOST_DI_INJECT(example, (named = assisted) int date /*from assisted_injection*/\n                  ,\n                  std::unique_ptr<interface> up /*from injector*/\n                  ,\n                  (named = assisted) double factor /*from assisted_injection*/\n                  ,\n                  int i /*from injector*/) {\n    assert(i == 87);\n    assert(dynamic_cast<implementation*>(up.get()));\n    assert(date == 42);\n    assert(factor == 123.0);\n  }\n};\n\nint main() {\n  /*<<assisted_injection declaration using std function>>*/\n  using example_assisted_injection = std::function<std::unique_ptr<example>(int, double)>;\n\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<int>().to(87)\n  , di::bind<interface>().to<implementation>()\n    /*<<bind `example_assisted_injection` to assisted_injection creating `example`>>*/\n  , di::bind<example_assisted_injection>().to(assisted_injection<example>())\n  );\n  // clang-format on\n\n  auto f = injector.create<example_assisted_injection>();\n  f(42, 123.0);\n}\n"
  },
  {
    "path": "extension/injections/concepts.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n#include <type_traits>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\n#if !defined(__cpp_concepts)\nint main() {}\n#else\n\ntemplate <class T>\nauto ctor__(int) -> di::aux::function_traits_t<decltype(&T::template ctor<di::_>)>;\n\ntemplate <class T>\nauto ctor__(int) -> di::aux::function_traits_t<decltype(&T::template ctor<di::_, di::_>)>;\n\ntemplate <class T>\nauto ctor__(int) -> di::aux::function_traits_t<decltype(&T::template ctor<di::_, di::_, di::_>)>;\n\ntemplate <class T>\nauto ctor__(int) -> di::aux::function_traits_t<decltype(&T::ctor)>;\n\ntemplate <class T>\ndi::aux::type_list<> ctor__(...);\n\n#undef BOOST_DI_INJECT_TRAITS_IMPL_1\n#define BOOST_DI_INJECT_TRAITS_IMPL_1(...)                                                       \\\n  static void ctor(BOOST_DI_REPEAT(BOOST_DI_SIZE(__VA_ARGS__), BOOST_DI_GEN_CTOR, __VA_ARGS__)); \\\n  static void name(BOOST_DI_REPEAT(BOOST_DI_SIZE(__VA_ARGS__), BOOST_DI_GEN_NAME, __VA_ARGS__)); \\\n  using type BOOST_DI_UNUSED =                                                                   \\\n      di::detail::combine_t<decltype(ctor__<boost_di_inject__>(0)), di::aux::function_traits_t<decltype(name)>>;\n\ntemplate <class T, class>\nstruct concept_traits {\n  using type = T;\n};\n\ntemplate <class T>\nstruct concept_traits<di::_, T> {\n  using type = T;\n};\n\ntemplate <class T>\nstruct concept_traits<di::_&, T> {\n  using type = T&;\n};\n\ntemplate <class T>\nstruct concept_traits<const di::_&, T> {\n  using type = const T&;\n};\n\ntemplate <class T>\nstruct concept_traits<di::_&&, T> {\n  using type = T&&;\n};\n\ntemplate <class T>\nstruct concept_traits<di::_*, T> {\n  using type = T*;\n};\n\ntemplate <class T>\nstruct concept_traits<const di::_*, T> {\n  using type = const T*;\n};\n\ntemplate <class T, template <class...> class TDeleter>\nstruct concept_traits<std::unique_ptr<di::_, TDeleter<di::_>>, T> {\n  using type = std::unique_ptr<T, TDeleter<T>>;\n};\n\ntemplate <class T, template <class...> class TDeleter>\nstruct concept_traits<const std::unique_ptr<di::_, TDeleter<di::_>>&, T> {\n  using type = const std::unique_ptr<T, TDeleter<T>>&;\n};\n\ntemplate <class T>\nstruct concept_traits<std::shared_ptr<di::_>, T> {\n  using type = std::shared_ptr<T>;\n};\n\ntemplate <class T>\nstruct concept_traits<const std::shared_ptr<di::_>&, T> {\n  using type = std::shared_ptr<T>;\n};\n\ntemplate <class T>\nstruct concept_traits<boost::shared_ptr<di::_>, T> {\n  using type = boost::shared_ptr<T>;\n};\n\ntemplate <class T>\nstruct concept_traits<const boost::shared_ptr<di::_>&, T> {\n  using type = boost::shared_ptr<T>;\n};\n\ntemplate <class T>\nstruct concept_traits<std::weak_ptr<di::_>, T> {\n  using type = std::weak_ptr<T>;\n};\n\ntemplate <class T>\nstruct concept_traits<const std::weak_ptr<di::_>&, T> {\n  using type = std::weak_ptr<T>;\n};\n\ntemplate <class T, class U>\nusing concept_traits_t = typename concept_traits<T, U>::type;\n\ntemplate <template <class...> class TWrapper, class T, class... Ts, template <class...> class X, class TScope, class Y>\nauto concept_cast(const TWrapper<T, X<TScope, Y>>& arg) {\n  return arg.wrapper_.operator concept_traits_t<T, di::aux::remove_qualifiers_t<Y>>();\n}\n\ntemplate <class T>\ndecltype(auto) concept_cast(const T& arg) {\n  return arg;\n}\n\nstruct concepts_provider {\n  template <class TInitialization, class T, class... TArgs>\n  struct is_creatable {\n    static constexpr auto value = true;\n  };\n\n  template <class T, class TMemory, class... TArgs>\n  auto get(const di::type_traits::direct&, const TMemory&  // stack/heap\n           ,\n           TArgs&&... args) const {\n    return new T(concept_cast(args)...);\n  }\n\n  template <class T, class TMemory, class... TArgs>\n  auto get(const di::type_traits::uniform&, const TMemory&  // stack/heap\n           ,\n           TArgs&&... args) const {\n    return new T{concept_cast(args)...};\n  }\n};\n\n/*<override `di` provider configuration>*/\nclass concepts_provider_config : public di::config {\n public:\n  static auto provider(...) noexcept { return concepts_provider{}; }\n};\n//->\n\ntemplate <typename T>\nconcept bool Dummy() {\n  return requires(T a) { {a.dummy()}; };\n}\n\nstruct DummyImpl {\n  void dummy() {}\n};\n\nauto dummy_concept = [] {};\n\nstruct example {\n  BOOST_DI_INJECT(example, int i, auto t, (named = dummy_concept) Dummy d, (named = dummy_concept) std::unique_ptr<Dummy> up) {\n    assert(42 == i);\n    static_assert(std::is_same<decltype(t), int>::value, \"\");\n    assert(87 == t);\n    static_assert(std::is_same<decltype(d), DummyImpl>::value, \"\");\n    static_assert(std::is_same<decltype(up), std::unique_ptr<DummyImpl>>::value, \"\");\n  }\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector<concepts_provider_config>(\n    di::bind<int>.to(42)\n  , di::bind<di::_>.to(87)\n  , di::bind<di::_>().named(dummy_concept).to<DummyImpl>()\n  );\n  // clang-format on\n\n  injector.create<example>();\n}\n\n#endif\n"
  },
  {
    "path": "extension/injections/factory.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\ntemplate <class T, class... TArgs>\nstruct ifactory {\n  virtual ~ifactory() noexcept = default;\n  virtual std::unique_ptr<T> create(TArgs&&...) const = 0;\n};\n\ntemplate <class, class, class>\nstruct factory_impl;\n\ntemplate <class TInjector, class T, class I, class... TArgs>\nstruct factory_impl<TInjector, T, ifactory<I, TArgs...>> : ifactory<I, TArgs...> {\n  explicit factory_impl(const TInjector& injector) : injector_((TInjector&)injector) {}\n\n  std::unique_ptr<I> create(TArgs&&... args) const override {\n    // clang-format off\n    auto injector = di::make_injector(\n      std::move(injector_)\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n    , di::bind<TArgs>().to(std::forward<TArgs>(args))[di::override]...\n#else // wknd for clang 3.4\n    , di::core::dependency<di::scopes::instance, TArgs, TArgs, di::no_name, di::core::override>(std::forward<TArgs>(args))...\n#endif\n    );\n    // clang-format on\n\n    return injector.template create<std::unique_ptr<T>>();\n  }\n\n private:\n  TInjector& injector_;\n};\n\ntemplate <class T>\nstruct factory {\n  template <class TInjector, class TDependency>\n  auto operator()(const TInjector& injector, const TDependency&) const {\n    static auto sp = std::make_shared<factory_impl<TInjector, T, typename TDependency::expected>>(injector);\n    return sp;\n  }\n};\n\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy1() = 0;\n};\n//->\n\nstruct implementation : interface {\n  void dummy1() override {}\n};\n\nstruct implementation_with_args : interface {\n  implementation_with_args(int i, double d) {\n    assert(42 == i);\n    assert(87.0 == d);\n  }\n  void dummy1() override {}\n};\n\nstruct implementation_with_injected_args : interface {\n  implementation_with_injected_args(int i, double d) {\n    assert(123 == i);\n    assert(87.0 == d);\n  }\n  void dummy1() override {}\n};\n\n/*<<example `example` class>>*/\nclass example {\n public:\n  example(const ifactory<interface>& f1, const ifactory<interface, int, double>& f2, const ifactory<interface, double>& f3) {\n    assert(dynamic_cast<implementation*>(f1.create().get()));\n    assert(dynamic_cast<implementation_with_args*>(f2.create(42, 87.0).get()));\n    assert(dynamic_cast<implementation_with_injected_args*>(f3.create(87.0).get()));\n  }\n};\n\nint main() {\n  //<<define injector>>\n  auto module = [] { return di::make_injector(di::bind<>().to(123)); };\n\n  // clang-format off\n  auto injector = di::make_injector(module()\n\n  //<<bind factory interface to implementation>>\n  , di::bind<ifactory<interface>>().to(factory<implementation>{})\n\n  //<<bind factory interface with parameters to implementation_with_args>>\n  , di::bind<ifactory<interface, int, double>>().to(factory<implementation_with_args>{})\n\n  //<<bind factory interface with some parameters injected to implementation_with_injected_args>>\n  , di::bind<ifactory<interface, double>>().to(factory<implementation_with_injected_args>{})\n  );\n  // clang-format on\n\n  /*<<create `example`>>*/\n  injector.create<example>();\n}\n"
  },
  {
    "path": "extension/injections/generics.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <type_traits>\n#include <utility>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\ntemplate <class...>\nstruct valid {\n  using type = int;\n};\n\ntemplate <class... Ts>\nusing valid_t = typename valid<Ts...>::type;\n\ntemplate <int, class T>\nstruct type_id_type {};\n\ntemplate <class, class...>\nstruct type_id_impl;\n\ntemplate <std::size_t... Ns, class... Ts>\nstruct type_id_impl<std::index_sequence<Ns...>, Ts...> : type_id_type<Ns, Ts>... {};\n\ntemplate <class... Ts>\nstruct type_id : type_id_impl<std::make_index_sequence<sizeof...(Ts)>, Ts...> {};\n\ntemplate <class T, int, int N>\nauto get_id_impl(type_id_type<N, T>*) {\n  return N;\n}\ntemplate <class T, int D>\nauto get_id_impl(...) {\n  return D;\n}\ntemplate <class TIds, int D, class T>\nauto get_id() {\n  return get_id_impl<T, D>((TIds*)0);\n}\n\ntemplate <class T>\nstruct identity {\n  using type = T;\n};\n\ntemplate <int N, class D, class T>\nauto get_type_impl(type_id_type<N, T>*) {\n  return identity<T>{};\n}\ntemplate <int, class D>\nauto get_type_impl(...) {\n  return identity<D>{};\n}\n\ntemplate <class TIds, class D, int N>\nstruct get_type {\n  using underlying_type = decltype(get_type_impl<N, D>((TIds*)0));\n  using type = typename underlying_type::type;\n};\n\ntemplate <class TIds, int N, class D = void>\nusing get_type_t = typename get_type<TIds, D, N>::type;\n\ntemplate <class>\nstruct get_size;\n\ntemplate <template <class...> class T, class... Ts>\nstruct get_size<T<Ts...>> {\n  static constexpr auto value = sizeof...(Ts);\n};\n\ntemplate <class>\nstruct function_traits;\n\ntemplate <class R, class T, class... TArgs>\nstruct function_traits<R (T::*)(TArgs...) const> {\n  using type = R (*)(const void*, TArgs...);\n  using result = R;\n  using args = type_id<TArgs...>;\n};\n\ntemplate <class R, class T, class... TArgs>\nstruct function_traits<R (T::*)(TArgs...)> {\n  using type = R (*)(const void*, TArgs...);\n  using result = R;\n  using args = type_id<TArgs...>;\n};\n\ntemplate <class, int, class = int>\nstruct has_info__ : std::false_type {};\n\ntemplate <class T, int N>\nstruct has_info__<T, N, valid_t<typename T::template info__<N, void>::type>> : std::true_type {};\n\n#define ARGS_IMPL(i, ...) __BOOST_DI_IF(i, __BOOST_DI_COMMA, __BOOST_DI_EAT)() get_type_t<typename type::args, i> p##i\n#define ARGS(...)                                                                    \\\n  __BOOST_DI_IF(__BOOST_DI_IS_EMPTY(__VA_ARGS__), __BOOST_DI_EAT, __BOOST_DI_REPEAT) \\\n  (__BOOST_DI_SIZE(__VA_ARGS__), ARGS_IMPL, __VA_ARGS__)\n\n#define PASS_IMPL(i, ...) __BOOST_DI_IF(i, __BOOST_DI_COMMA, __BOOST_DI_EAT)() p##i\n#define PASS(...)                                                                    \\\n  __BOOST_DI_IF(__BOOST_DI_IS_EMPTY(__VA_ARGS__), __BOOST_DI_EAT, __BOOST_DI_REPEAT) \\\n  (__BOOST_DI_SIZE(__VA_ARGS__), PASS_IMPL, __VA_ARGS__)\n#define COMMA_IF(...) __BOOST_DI_IF(__BOOST_DI_IS_EMPTY(__VA_ARGS__), __BOOST_DI_EAT, __BOOST_DI_COMMA)()\n\n#define GENERIC(name)                                                                      \\\n  static constexpr auto id = __COUNTER__ + 1;                                              \\\n  using self_t = name;                                                                     \\\n  template <int, class = void>                                                             \\\n  struct info__;                                                                           \\\n  template <int N, std::enable_if_t<!has_info__<self_t, id + N>::value, int> = 0>          \\\n  static constexpr auto count() {                                                          \\\n    return N;                                                                              \\\n  }                                                                                        \\\n  template <int N, std::enable_if_t<has_info__<self_t, id + N>::value, int> = 0>           \\\n  static constexpr auto count() {                                                          \\\n    return count<N + 1>();                                                                 \\\n  }                                                                                        \\\n  template <class T>                                                                       \\\n  static auto& vtable() {                                                                  \\\n    static void* fs[count<0>()];                                                           \\\n    return fs;                                                                             \\\n  }                                                                                        \\\n  const void* self;                                                                        \\\n  void** ptr;                                                                              \\\n  name() = default;                                                                        \\\n  template <class T>                                                                       \\\n  inline name(const T& t, int) : self(&t), ptr(vtable<std::decay_t<T>>()) {                \\\n    name_impl<std::decay_t<T>, 0>(ptr);                                                    \\\n  }                                                                                        \\\n  template <class T, int N, std::enable_if_t<!has_info__<self_t, id + N>::value, int> = 0> \\\n  static void name_impl(void**) {}                                                         \\\n  template <class T, int N, std::enable_if_t<has_info__<self_t, id + N>::value, int> = 0>  \\\n  static void name_impl(void** ptr) {                                                      \\\n    auto f = &info__<id + N>::template f<T>;                                               \\\n    ptr[N] = *(void**)(&f);                                                                \\\n    name_impl<T, N + 1>(ptr);                                                              \\\n  }                                                                                        \\\n  template <class T>                                                                       \\\n  inline name(const T& t) : name(t, 0)\n\n#define REQUIRES(name, ...) REQUIRES_IMPL(__COUNTER__, name, __VA_ARGS__)\n#define REQUIRES_IMPL(i, name, ...)                                                                                     \\\n  { return info__<i>::call(self, ptr COMMA_IF(__VA_ARGS__) __VA_ARGS__); }                                              \\\n  template <class V>                                                                                                    \\\n  struct info__<i, V> {                                                                                                 \\\n    using type = function_traits<decltype(&self_t::name)>;                                                              \\\n    template <class T>                                                                                                  \\\n    static inline typename type::result f(const void* ptr COMMA_IF(__VA_ARGS__) ARGS(__VA_ARGS__)) {                    \\\n      return ((T*)ptr)->name(PASS(__VA_ARGS__));                                                                        \\\n    }                                                                                                                   \\\n    static inline typename type::result call(const void* self, void** vtable COMMA_IF(__VA_ARGS__) ARGS(__VA_ARGS__)) { \\\n      return (*(type::type*)(&vtable[i - id]))(self COMMA_IF(__VA_ARGS__) PASS(__VA_ARGS__));                           \\\n    }                                                                                                                   \\\n  }\n\ntemplate <template <class...> class TWrapper, class T, class... Ts, template <class...> class X, class TScope, class Y>\nauto generic_cast(const TWrapper<T, X<TScope, Y>>& arg) {\n  return arg.wrapper_.operator T();\n}\n\ntemplate <class T>\ndecltype(auto) generic_cast(const T& arg) {\n  return arg;\n}\n\nstruct generics_provider {\n  template <class TInitialization, class T, class... TArgs>\n  struct is_creatable {\n    static constexpr auto value = true;\n  };\n\n  template <class T, class TMemory, class... TArgs>\n  auto get(const di::type_traits::direct&, const TMemory&  // stack/heap\n           ,\n           TArgs&&... args) const {\n    return new T(generic_cast(args)...);\n  }\n\n  template <class T, class TMemory, class... TArgs>\n  auto get(const di::type_traits::uniform&, const TMemory&  // stack/heap\n           ,\n           TArgs&&... args) const {\n    return new T{generic_cast(args)...};\n  }\n};\n\n/*<override `di` provider configuration>*/\nclass generics_provider_config : public di::config {\n public:\n  static auto provider(...) noexcept { return generics_provider{}; }\n};\n//->\n\n/*<<generic interface>>*/\nstruct interface {\n  GENERIC(interface) {}\n  bool update(int i) REQUIRES(update, i);\n};\n\n/*<<implementation without inheritance>>*/\nstruct implementation1 {\n  bool update(int i) { return i == 42; }\n};\n\n/*<<implementation without inheritance>>*/\nstruct implementation2 {\n  bool update(int i) { return i != 42; }\n};\n\nstruct example {\n  BOOST_DI_INJECT(example, interface i) : i(i) {}\n  interface i;\n};\n\nint main() {\n  {\n    // clang-format off\n    const auto injector = di::make_injector<generics_provider_config>(\n      di::bind<interface>().to<implementation1>()\n    );\n    // clang-format on\n\n    auto object = injector.create<example>();\n    assert(!object.i.update(0));  /// calls implementation1.update(0)\n    assert(object.i.update(42));  /// calls implementation1.update(42)\n  }\n\n  {\n    // clang-format off\n    const auto injector = di::make_injector<generics_provider_config>(\n      di::bind<interface>().to<implementation2>()\n    );\n    // clang-format on\n\n    auto object = injector.create<example>();\n    assert(object.i.update(0));    /// calls implementation2.update(0)\n    assert(!object.i.update(42));  /// calls implementation2.update(42)\n  }\n}\n"
  },
  {
    "path": "extension/injections/lazy.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct type_expensive_to_create : interface {\n  void dummy1() override {}\n};\n\n/*<<simple `lazy` implementation>>*/\ntemplate <class T>\nclass lazy {\n  template <class TInjector>\n  static auto create(const void *injector) {\n    return ((TInjector *)injector)->template create<T>();\n  }\n\n public:\n  using boost_di_inject__ = di::inject<di::self<T>>;\n\n  template <class TInjector>\n  explicit lazy(const TInjector &i) noexcept : injector_((void *)&i), f(create<TInjector>) {}\n\n  T get() const noexcept { return (*f)(injector_); }\n\n private:\n  const void *injector_ = nullptr;\n  T (*f)(const void *) = nullptr;\n};\n//->\n\n/*<<example `example` class>>*/\nclass example {\n public:\n  explicit example(lazy<std::unique_ptr<interface>> l) : l(l) {}\n\n  void initialize() {\n    auto object = l.get();\n    assert(dynamic_cast<type_expensive_to_create *>(object.get()));\n  }\n\n private:\n  lazy<std::unique_ptr<interface>> l;\n};\n\nint main() {\n  /*<<define injector>>*/\n  // clang-format off\n  auto injector = di::make_injector(\n    di::bind<interface>().to<type_expensive_to_create>()\n  );\n  // clang-format on\n\n  /*<<create `example`>>*/\n  auto object = injector.create<example>();\n  object.initialize();\n}\n"
  },
  {
    "path": "extension/injections/named_parameters.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\n#if defined(__MSVC__)\nint main() {}\n#else\n#if defined(__CLANG__)\n#pragma clang diagnostic ignored \"-Wgnu-string-literal-operator-template\"\n#pragma clang diagnostic ignored \"-Wdollar-in-identifier-extension\"\n\n#if (__clang_major__ == 3) && (__clang_minor__ > 4)\n#pragma clang diagnostic ignored \"-Wunknown-attributes\"\n#else\n#pragma clang diagnostic ignored \"-Wattributes\"\n#endif\n#elif defined(__GCC__)\n#pragma GCC diagnostic ignored \"-Wattributes\"\n#endif\n\nstruct interface {\n  virtual ~interface() = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : interface {\n  void dummy() override {}\n};\n\ntemplate <char...>\nstruct chars {};\nstruct pair {\n  long begin;\n  long end;\n};\n\ntemplate <class T, T... Chars>\nconstexpr auto operator\"\"_s() {\n  return di::aux::integral_constant<long, const_hash(chars<Chars...>{}, sizeof...(Chars) + 1)>{};\n}\n\nlong constexpr const_hash(char const* input, long m = 0, long i = 0) {\n  return *input && i < m ? static_cast<long>(*input) + 33 * const_hash(input + 1, m, i + 1) : 5381;\n}\n\ntemplate <char C, char... Chars>\nlong constexpr const_hash(const chars<C, Chars...>&, long m = 0, long i = 0) {\n  return C && i < m ? static_cast<long>(C) + 33 * const_hash(chars<Chars...>{}, m, i + 1) : 5381;\n}\n\nlong constexpr const_hash(const chars<>&, ...) { return 5381; }\n\nconstexpr pair get_name_impl(const char* input, int begin, int n = 0, int quote = 0) {\n  return !*input || *input == ','\n             ? pair{0, 0}\n             : (quote == 2 ? pair{begin + 1, n}\n                           : (quote == 1 && *input == '\"'\n                                  ? get_name_impl(input + 1, begin, n, quote + 1)\n                                  : quote == 0 && *input == '\"' ? get_name_impl(input + 1, begin, n, quote + 1)\n                                                                : get_name_impl(input + 1, quote == 0 ? begin + 1 : begin,\n                                                                                quote == 1 ? n + 1 : n, quote)));\n}\n\nconstexpr pair get_name(const char* input, int N, int c = 0, int i = 0) {\n  return c == N ? get_name_impl(input + 1, i + 1)\n                : (*input ? (*input == ',' ? get_name(input + 1, N, c + 1, i + 1) : get_name(input + 1, N, c, i + 1))\n                          : pair{0, 0});\n}\n\nconstexpr bool has_names(const char* input) { return *input ? *input == '\"' ? true : has_names(input + 1) : false; }\n\ntemplate <class T, class TArg, int N>\nstruct parse {\n  static constexpr auto name = get_name(T::str, N);\n  using type =\n      di::aux::conditional_t<name.begin == name.end, TArg,\n                             di::named<di::aux::integral_constant<long, const_hash(&T::str[name.begin], name.end)>, TArg>>;\n};\n\ntemplate <class, class, class...>\nstruct args_impl;\n\ntemplate <class T, class... TArgs, int... Ns>\nstruct args_impl<T, di::aux::index_sequence<Ns...>, TArgs...> {\n  using type = di::aux::type_list<typename parse<T, TArgs, Ns>::type...>;\n};\n\ntemplate <class>\nstruct args;\n\ntemplate <bool, class R, class... TArgs>\nstruct args__ {\n  using type = typename args_impl<R, di::aux::make_index_sequence<sizeof...(TArgs)>, TArgs...>::type;\n};\n\ntemplate <class R, class... TArgs>\nstruct args__<false, R, TArgs...> {\n  using type = di::aux::type_list<TArgs...>;\n};\n\ntemplate <class R, class... TArgs>\nstruct args<R (*)(TArgs...)> {\n  using type = typename args__<has_names(R::str), R, TArgs...>::type;\n};\n\ntemplate <class R>\nstruct args<R (*)()> {\n  using type = di::aux::type_list<>;\n};\n\ntemplate <class T>\nusing args_t = typename args<T>::type;\n\ntemplate <class T>\ndecltype(T()) ctor_impl1__(...);\n\ntemplate <class T>\nauto ctor_impl1__(int) -> decltype(&T::template ctor<di::_>);\n\ntemplate <class T>\ndecltype(ctor_impl1__<T>(0)) ctor__(...);\n\ntemplate <class T>\nauto ctor__(int) -> decltype(&T::ctor);\n\n#define $inject(T, ...)                                          \\\n  struct boost_di_inject__ {                                     \\\n    static constexpr auto str = #__VA_ARGS__;                    \\\n    static boost_di_inject__ ctor(__VA_ARGS__);                  \\\n    using type = args_t<decltype(ctor__<boost_di_inject__>(0))>; \\\n  };                                                             \\\n  T(__VA_ARGS__)\n\n//->\n\nstruct example {\n  /*<<inject constructor using automatic named parameters>>*/\n  $inject(example, int i, std::unique_ptr<interface> up, [[named(\"my_value\")]] int value) {\n    assert(i == 42);\n    assert(dynamic_cast<implementation*>(up.get()));\n    assert(value == 87);\n  }\n};\n\nint main() {\n  // clang-format off\n  /*<<bind named parameters>>*/\n  auto injector = di::make_injector(\n    di::bind<int>.to(42)\n  , di::bind<interface>.to<implementation>()\n  , di::bind<int>.named(\"my_value\"_s).to(87)\n  );\n  // clang-format on\n\n  injector.create<example>();\n}\n\n//<-\n#endif\n//->\n"
  },
  {
    "path": "extension/injections/xml_injection.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <iostream>\n#include <memory>\n#include <typeinfo>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct interface {\n  virtual ~interface() noexcept = default;\n};\nstruct implementation1 : interface {};\nstruct implementation2 : interface {};\n\nstruct ixml_parser {\n  virtual ~ixml_parser() noexcept = default;\n  virtual std::string parse(const std::string&) = 0;\n};\n\nstruct xml_parser_stub : ixml_parser {\n  std::string parse(const std::string&) override {\n    static auto i = 0;\n\n    switch (i++) {\n      default:\n        return {};\n      case 0:\n        return typeid(implementation1).name();\n      case 1:\n        return typeid(implementation2).name();\n    };\n\n    return {};\n  }\n};\n\ntemplate <class...>\nstruct xml_list {};\n\ntemplate <class... TImpl>\nclass inject_from_xml {\n public:\n  template <class TInjector, class T>\n  auto operator()(const TInjector& injector, const T&) const {\n    auto parser = injector.template create<std::unique_ptr<ixml_parser>>();\n    auto parsed = parser->parse(typeid(typename T::expected).name());\n    return create_impl(injector, parsed, xml_list<TImpl...>{});\n  }\n\n private:\n  template <class TInjector, class T, class... Ts>\n  std::shared_ptr<interface> create_impl(const TInjector& injector, const std::string& parsed,\n                                         const xml_list<T, Ts...>&) const {\n    return typeid(T).name() == parsed ? injector.template create<std::shared_ptr<T>>()\n                                      : create_impl(injector, parsed, xml_list<Ts...>{});\n  }\n\n  template <class TInjector>\n  std::shared_ptr<interface> create_impl(TInjector&, const std::string&, const xml_list<>&) const {\n    return nullptr;\n  }\n};\n\ntemplate <class... TImpl>\nstruct xml : inject_from_xml<TImpl...> {};\n//->\n\nauto module = [] {\n  // clang-format off\n  return di::make_injector(\n    di::bind<ixml_parser>().to<xml_parser_stub>()\n  );\n  // clang-format on\n};\n\nauto xml_module = [] {\n  // clang-format off\n  return di::make_injector(\n    di::bind<interface>().to(xml<implementation1, implementation2>())\n  );\n  // clang-format on\n};\n\nint main() {\n  /*<<make injector>>*/\n  auto injector = di::make_injector(module(), xml_module());\n\n  /*<<create `interface` from xml configuration>>*/\n  {\n    auto object = injector.create<std::shared_ptr<interface>>();\n    assert(object.get());\n    assert(dynamic_cast<implementation1*>(object.get()));\n  }\n\n  /*<<create `interface` from different xml configuration>>*/\n  {\n    auto object = injector.create<std::shared_ptr<interface>>();\n    assert(object.get());\n    assert(dynamic_cast<implementation2*>(object.get()));\n  }\n\n  /*<<create `interface` from different xml configuration>>*/\n  {\n    auto object = injector.create<std::shared_ptr<interface>>();\n    assert(!object.get());\n  }\n}\n"
  },
  {
    "path": "extension/policies/serialize.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <algorithm>\n#include <cassert>\n#include <functional>\n#include <iostream>\n#include <sstream>\n#include <string>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\ntemplate <class T>\nauto get_type() {\n  std::string result;\n#if defined(_MSC_VER)\n  auto type = std::string{&__FUNCSIG__[22]};\n  const auto i = type[0] == ' ' ? 1 : 0;\n  result = type.substr(i, type.length() - 7 - i);\n#elif defined(__clang__)\n  auto type = std::string{&__PRETTY_FUNCTION__[21]};\n  result = type.substr(0, type.length() - 1);\n#elif defined(__GCC__)\n  auto type = std::string{&__PRETTY_FUNCTION__[26]};\n  result = type.substr(0, type.length() - 1);\n#else\n#error \"Platform not supported!\"\n#endif\n  std::replace(result.begin(), result.end(), ' ', '_');\n  return result;\n}\n\nstruct archive {\n  std::string path;\n  std::function<char*()> ptr;\n  std::string type;\n  int offset;\n};\nstruct context : std::vector<archive> {\n  int offset = 0;\n};\nstruct serializable : std::vector<archive> {};\n\nstruct policy_guard {\n  policy_guard() { check() = true; }\n  ~policy_guard() { check() = false; }\n  static bool& check() {\n    static auto guard = false;\n    return guard;\n  }\n};\n\ntemplate <class TGiven, class TInjector>\nstd::function<char*()> get_ptr(const TInjector&, std::false_type) {\n  return {};\n}\n\ntemplate <class TGiven, class TInjector>\nstd::function<char*()> get_ptr(const TInjector& injector, std::true_type) {\n  return [&injector] {\n    policy_guard _;\n    return reinterpret_cast<char*>(&injector.template create<TGiven&>());\n  };\n}\n\nclass serializable_policy : public di::config {\n public:\n  template <class TInjector>\n  static auto policies(TInjector* injector) noexcept {\n    return di::make_policies([&](auto type) {\n      if (policy_guard::check()) return;\n      policy_guard _;\n      using T = decltype(type);\n      using given = di::aux::decay_t<typename decltype(type)::type>;\n      auto&& v = injector->template create<context&>();\n      auto ptr = get_ptr<given>(*injector, std::is_reference<typename T::type>{});\n      if (std::is_pod<typename T::type>::value && T::arity::value) {\n        ptr = v.back().ptr;\n      }\n\n      std::string element;\n      if (!v.empty()) {\n        element = v.back().path + \"->\";\n        if (v.back().ptr) {\n          auto& serialize = injector->template create<serializable&>();\n          if (!T::arity::value) {\n            const auto align = alignof(given);\n            v.offset = ((v.offset + align - 1) / align) * align;\n            serialize.push_back({v.back().path, v.back().ptr, get_type<given>(), v.offset});\n            v.offset += sizeof(given);\n          }\n        }\n        v.pop_back();\n        if (v.empty()) {\n          v.offset = {};\n        }\n      }\n\n      auto ctor_size = T::arity::value;\n      while (ctor_size--) {\n        v.push_back({element + get_type<given>(), ptr, {}, 0});\n      }\n    });\n  }\n};\n\ntemplate <class... Ts>\nstruct serializable_call {\n  template <class TInjector, class TExpr>\n  static void apply(const TInjector& injector, TExpr expr) {\n    for (auto&& o : injector.template create<serializable&>()) {\n      apply_impl(o, expr, di::aux::type_list<Ts...>{});\n    }\n  }\n\n  template <class TExpr, class T, class... Us>\n  static void apply_impl(const archive& o, TExpr expr, di::aux::type_list<T, Us...>) {\n    if (get_type<T>() == o.type) {\n      expr(o, T{});\n    } else {\n      apply_impl(o, expr, di::aux::type_list<Us...>{});\n    }\n  }\n\n  template <class TExpr>\n  static void apply_impl(const archive&, TExpr, di::aux::type_list<>) {}\n};\n\n// clang-format off\nusing serializable_call_t = serializable_call<\n  unsigned char\n, unsigned short\n, unsigned int\n, unsigned long\n, unsigned long long\n, signed char\n, short\n, int\n, long\n, long long\n, char\n, float\n, double\n, long double\n, bool\n>;\n// clang-format on\n\nauto serialize = [](const auto& injector, auto& str) {\n  serializable_call_t::apply(injector, [&](const auto& o, auto t) {\n    str << o.path << \" \" << o.type << \" \" << o.offset << \" \"\n        << std::to_string(*reinterpret_cast<decltype(t)*>(o.ptr() + o.offset)) << std::endl;\n  });\n};\n\nauto deserialize = [](const auto& injector, auto& str) {\n  serializable_call_t::apply(injector, [&](const auto& o, auto t) {\n    std::string line, path, type;\n    decltype(t) value = {};\n    auto offset = 0;\n\n    for (std::string line; std::getline(str, line);) {\n      std::istringstream iss{line};\n      iss >> path >> type >> offset >> value;\n      if (type == o.type) {\n        *reinterpret_cast<decltype(t)*>(o.ptr() + offset) = value;\n        break;\n      }\n    }\n  });\n};\n//->\n\nstruct data {\n  unsigned int ui;\n  long l;\n  float f;\n};\n\nstruct even_more_data {\n  double d;\n  bool b;\n  long long ll;\n};\n\nstruct more_data {\n  int i;\n  long double ld;\n  even_more_data d;\n  short s;\n};\n\nstruct example {\n  example(data& d, more_data& md) : d(d), md(md) {}\n\n  void update() {\n    d.ui = 13;\n    d.l = 23l;\n    d.f = .33f;\n    md.i = 44;\n    md.ld = 42.0;\n    md.d.d = 55.0;\n    md.d.b = true;\n    md.d.ll = 66ll;\n    md.s = 77;\n  }\n\n  void reset() {\n    d.ui = {};\n    d.l = {};\n    d.f = {};\n    md.i = {};\n    md.ld = {};\n    md.d.d = {};\n    md.d.b = {};\n    md.d.ll = {};\n    md.s = {};\n  }\n\n  data& d;\n  more_data& md;\n};\n\nint main() {\n  // clang-format off\n  auto injector = di::make_injector<serializable_policy>(\n      di::bind<>().to(42)\n  );\n  // clang-format on\n\n  /*<<create `example`>>*/\n  auto object = injector.create<example>();\n  {\n    assert(0 == object.d.ui);\n    assert(0 == object.d.l);\n    assert(.0f == object.d.f);\n    assert(42 == object.md.i);  // bound\n    assert(0.0 == object.md.ld);\n    assert(0.0 == object.md.d.d);\n    assert(false == object.md.d.b);\n    assert(0 == object.md.d.ll);\n    assert(0 == object.md.s);\n  }\n\n  /*<<update internal data>>*/\n  object.update();\n  {\n    assert(13 == object.d.ui);\n    assert(23 == object.d.l);\n    assert(.33f == object.d.f);\n    assert(44 == object.md.i);\n    assert(42.0 == object.md.ld);\n    assert(55.0 == object.md.d.d);\n    assert(true == object.md.d.b);\n    assert(66 == object.md.d.ll);\n    assert(77 == object.md.s);\n  }\n\n  /*<<serialize internal data to the stream>>*/\n  std::stringstream str;\n  serialize(injector, str);\n\n  /*<<reset internal data>>*/\n  object.reset();\n\n  /*<<deserialize from the stream>>*/\n  deserialize(injector, str);\n  {\n    assert(13 == object.d.ui);\n    assert(23 == object.d.l);\n    assert(.33f == object.d.f);\n    assert(44 == object.md.i);\n    assert(42.0 == object.md.ld);\n    assert(55.0 == object.md.d.d);\n    assert(true == object.md.d.b);\n    assert(66 == object.md.d.ll);\n    assert(77 == object.md.s);\n  }\n}\n"
  },
  {
    "path": "extension/policies/types_dumper.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <iostream>\n#include <memory>\n#include <string>\n#include <typeinfo>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nauto int_1 = [] { return \"first int\"; };\nauto int_2 = [] { return \"second int\"; };\n\nstruct i0 {\n  virtual ~i0(){};\n};\nstruct c0 : i0 {};\nstruct c1 {\n  c1(std::shared_ptr<i0>, int) {}\n};\nstruct c2 {\n  BOOST_DI_INJECT(c2, (named = int_1) int, (named = int_2) int, char) {}\n};\nstruct c3 {\n  c3(std::shared_ptr<c1>, std::shared_ptr<c2>) {}\n};\n\n// doesn't work inside polices yet / tested with gcc-5.1 and clang-3.7\nstatic std::vector<int> v = {0};\nstatic int i = 1;\n//->\n\n/*<<define `types dumper` directly in configuration>>*/\nclass types_dumper : public di::config {\n public:\n  static auto policies(...) noexcept {\n    return di::make_policies([](auto type) {\n      using T = decltype(type);\n      using arg = typename T::type;\n      using name = typename T::name;\n      using given = typename T::given;\n\n      auto tab = v[i - 1];\n      while (tab--) {\n        std::clog << \"    \";\n      }\n\n      std::clog << \"(\" << typeid(arg).name() << ((*(name*)(0))() ? std::string(\"[\") + (*(name*)(0))() + std::string(\"]\") : \"\")\n                << \" -> \" << typeid(given).name() << \")\" << std::endl;\n\n      auto ctor_size = T::arity::value;\n      while (ctor_size--) {\n        v.insert((v.begin() + i), v[i - 1] + 1);\n      }\n      ++i;\n    });\n  }\n};\n\nint main() {\n  /*<<define injector>>*/\n  // clang-format off\n  auto injector = di::make_injector<types_dumper>(\n    di::bind<i0>().to<c0>()\n  , di::bind<int>().named(int_1).to(42)\n  , di::bind<int>().named(int_2).to(42)\n  );\n  // clang-format on\n\n  /*<<iterate through created objects with `types_dumper`>>*/\n  injector.create<c3>();\n\n  /*<< output [pre\n      (2c3 -> 2c3)\n          (St10shared_ptrI2c1E -> 2c1)\n              (St10shared_ptrI2i0E -> 2c0)\n              (i -> i)\n          (St10shared_ptrI2c2E -> 2c2)\n              (i[first int] -> i)\n              (i[second int] -> i)\n              (c -> c)\n  ]>>*/\n}\n"
  },
  {
    "path": "extension/policies/uml_dumper.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <iostream>\n#include <memory>\n#include <string>\n#include <typeinfo>\n#include <vector>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nauto int_1 = [] { return \"first int\"; };\nauto int_2 = [] { return \"second int\"; };\n\nstruct i0 {\n  virtual ~i0(){};\n};\nstruct c0 : i0 {};\nstruct c1 {\n  c1(std::shared_ptr<i0>, int) {}\n};\nstruct c2 {\n  BOOST_DI_INJECT(c2, (named = int_1) int, (named = int_2) int, char) {}\n};\nstruct c3 {\n  c3(std::shared_ptr<c1>, std::shared_ptr<c2>) {}\n};\n\n// doesn't work inside polices yet / tested with gcc-5.1 and clang-3.7\nstd::vector<const std::type_info*> v = {&typeid(nullptr)};\nint i = 1;\n//->\n\n/**\n * http://plantuml.sourceforge.net/objects.html\n * ./uml_dumper | java -jar plantuml.jar -p > uml_dumper.png\n */\nclass uml_dumper : public di::config {\n public:\n  uml_dumper() { std::cout << \"@startuml uml_dumper.png\" << std::endl; }\n  ~uml_dumper() { std::cout << \"@enduml\" << std::endl; }\n\n  static auto policies(...) noexcept {\n    /*<<define `uml dumper` directly in policies configuration>>*/\n    return di::make_policies([&](auto type) {\n      using T = decltype(type);\n      using name = typename T::name;\n      using given = typename T::given;\n\n      auto root = v[i - 1];\n      if (root != &typeid(nullptr)) {\n        std::cout << \"\\\"\" << root->name() << \"\\\" .. \\\"\" << typeid(given).name()\n                  << ((*(name*)(0))() ? std::string(\" [\") + (*(name*)(0))() + std::string(\"]\") : \"\") << \"\\\"\" << std::endl;\n      }\n\n      auto ctor_size = T::arity::value;\n      while (ctor_size--) {\n        v.insert((v.begin() + i), &typeid(given));\n      }\n      ++i;\n    });\n  }\n};\n\nint main() {\n  /*<<define injector>>*/\n  // clang-format off\n  auto injector = di::make_injector<uml_dumper>(\n    di::bind<i0>().to<c0>()\n  , di::bind<int>().named(int_1).to(42)\n  , di::bind<int>().named(int_2).to(42)\n  );\n  // clang-format on\n\n  /*<<iterate through created objects with `types_dumper`>>*/\n  injector.create<c3>();\n\n  /*<<output [@images/uml_dumper.png [$images/uml_dumper.png [width 75%] [height 75%] ]]>>*/\n}\n"
  },
  {
    "path": "extension/providers/mocks_provider.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <functional>\n#include <map>\n#include <memory>\n#include <stdexcept>\n#include <typeindex>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\n//<-\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual int get() = 0;\n};\n\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual int get() = 0;\n};\n\nclass expectations : public std::map<std::type_index, std::function<std::shared_ptr<void>()>> {\n public:\n  template <class T>\n  void will_return(T value) {\n    operator[](current) = [=] { return std::make_shared<T>(value); };\n  }\n\n  void add(std::type_index type, std::function<std::shared_ptr<void>()> call) {\n    current = type;\n    operator[](current) = call;\n  }\n\n private:\n  std::type_index current{typeid(nullptr)};\n};\n\n/*<<`mocks provider` configuration>>*/\nclass mocks_provider : public di::config {\n  template <class TInjector>\n  struct mock_provider {\n    template <class T>\n    class mock {\n     public:\n      explicit mock(const expectations& exp) : expectations_(exp) {}\n      virtual ~mock() noexcept = default;\n\n      virtual int _1() {\n        auto it = expectations_.find(std::type_index(typeid(T)));\n        if (it != expectations_.end()) {\n          return *(int*)it->second().get();\n        }\n\n        assert(false && \"not implemented\");\n        return {};\n      }\n\n     private:\n      const expectations& expectations_;\n    };\n\n    template <class>\n    static std::false_type resolve_impl(...);\n\n    template <class TKey>\n    static std::true_type resolve_impl(TKey*);\n\n    template <class TKey, class T>\n    struct resolve : decltype(resolve_impl<TKey>((T*)0)) {};\n\n    template <class>\n    struct transform;\n\n    template <class T>\n    struct given {\n      using type = typename T::given;\n    };\n\n    template <class... Ts>\n    struct map : Ts... {};\n\n    template <class... Ts>\n    struct transform<di::aux::type_list<Ts...>> : map<di::aux::type<typename given<Ts>::type>...> {};\n\n    template <class T>\n    using is_resolvable = resolve<di::aux::type<T>, transform<typename TInjector::deps>>;\n\n    template <class T, class TInitialization, class TMemory, class... TArgs>\n    std::enable_if_t<is_resolvable<T>::value || !std::is_polymorphic<T>::value, T*> get(const TInitialization&, const TMemory&,\n                                                                                        TArgs&&... args) const {\n      return new T{std::forward<TArgs>(args)...};\n    }\n\n    template <class T, class TInitialization, class TMemory, class... TArgs>\n    std::enable_if_t<!is_resolvable<T>::value && std::is_polymorphic<T>::value, T*> get(const TInitialization&, const TMemory&,\n                                                                                        TArgs&&...) const {\n      return reinterpret_cast<T*>(new mock<T>{expectations_});\n    }\n\n    template <class...>\n    struct is_creatable {\n      static constexpr auto value = true;\n    };\n\n    const expectations& expectations_;\n  };\n\n public:\n  template <class TInjector>\n  static auto provider(const TInjector*) noexcept {\n    return mock_provider<TInjector>{get_expectations()};\n  }\n\n  static expectations& get_expectations() {\n    static expectations expectations_;\n    return expectations_;\n  }\n};\n\ntemplate <class TInjector>\nstruct mocks : TInjector {\n  using TInjector::TInjector;\n  template <class T>\n  operator T() const noexcept {\n    return this->template create<T>();\n  }\n};\n\ntemplate <class... TDeps>\nauto mocks_injector(TDeps... args) noexcept {\n  auto injector = di::make_injector<mocks_provider>(args...);\n  using type = decltype(injector);\n  return mocks<type>{static_cast<type&&>(injector)};\n}\n\ntemplate <class TInjector, class R, class T, class... TArgs>\nexpectations& expect(TInjector&, R (T::*)(TArgs...)) {\n  TInjector::config::get_expectations().add(std::type_index(typeid(T)), [] {\n    assert(false && \"not implemented\");\n    return nullptr;\n  });\n  return TInjector::config::get_expectations();\n}\n\nstruct test {\n  template <class Test>\n  test(const Test& test) {\n    test();\n  }\n};\n//->\n\nstruct c {\n  c(std::shared_ptr<i1> sp, std::unique_ptr<i2> up, int i) {\n    assert(sp->get() == 42);\n    assert(up->get() == 123);\n    assert(i == 87);\n  }\n};\n\n/*<<define simple unit test>>*/\ntest unit_test = [] {\n  /*<<create injector with `mocks_provider`>>*/\n  auto mi = mocks_injector();\n\n  /*<<set expectations>>*/\n  expect(mi, &i1::get).will_return(42);\n  expect(mi, &i2::get).will_return(123);\n\n  /*<<create object to test with interfaces to be injected by di and int value passed directly to constructor>>*/\n  c object{mi, mi, 87};\n};\n\ntest integration_test = [] {\n  struct impl1 : i1 {\n    int get() override { return 42; }\n  };\n\n  /*<<create injector with `mocks_provider`>>*/\n  // clang-format off\n  auto mi = mocks_injector(\n    di::bind<int>().to(87) // custom value\n  , di::bind<i1>().to<impl1>() // original implementation\n  );\n  // clang-format on\n\n  /*<<set expectations>>*/\n  expect(mi, &i2::get).will_return(123);  // fake\n\n  /*<<create object to test with mocked `i1` and original `i2` and injected int value>>*/\n  mi.create<c>();\n};\n\n/*<<`mock_provider` is just a simple mock framework - to check out di integration with full mock support framework see:\n * [@https://github.com/krzysztof-jusiak/mocks_injector]>>*/\nint main() {}\n"
  },
  {
    "path": "extension/scopes/scoped_scope.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nclass scoped_scope {\n public:\n  template <class, class T>\n  class scope {\n   public:\n    template <class T_>\n    using is_referable = typename di::wrappers::shared<scoped_scope, T>::template is_referable<T_>;\n\n    template <class, class, class TProvider, class T_ = di::aux::decay_t<decltype(di::aux::declval<TProvider>().get())>>\n    static decltype(di::wrappers::shared<scoped_scope, T_>{\n        std::shared_ptr<T_>{std::shared_ptr<T_>{di::aux::declval<TProvider>().get()}}})\n    try_create(const TProvider &);\n\n    template <class T_, class, class TProvider>\n    auto create(const TProvider &provider) {\n      return create_impl<di::aux::decay_t<decltype(provider.get())>>(provider);\n    }\n\n    scope() = default;\n    scope(scope &&other) noexcept : object_(other.object_) { other.object_ = nullptr; }\n    ~scope() noexcept { delete object_; }\n\n   private:\n    template <class, class TProvider>\n    auto create_impl(const TProvider &provider) {\n      if (!object_) {\n        object_ = new std::shared_ptr<T>{provider.get()};\n      }\n      return di::wrappers::shared<scoped_scope, T, std::shared_ptr<T> &>{*object_};\n    }\n\n    std::shared_ptr<T> *object_ = nullptr;\n  };\n};\n\nstatic constexpr scoped_scope scoped{};\n\n//<-\nstruct interface1 {\n  virtual ~interface1() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation1 : interface1 {\n  static auto &ctor_calls() {\n    static auto calls = 0;\n    return calls;\n  }\n  static auto &dtor_calls() {\n    static auto calls = 0;\n    return calls;\n  }\n  implementation1() { ctor_calls()++; }\n  ~implementation1() { dtor_calls()++; }\n  void dummy() override {}\n};\n\nstruct interface2 {\n  virtual ~interface2() noexcept = default;\n};\nstruct implementation2 : interface2 {\n  static auto &ctor_calls() {\n    static auto calls = 0;\n    return calls;\n  }\n  static int &dtor_calls() {\n    static auto calls = 0;\n    return calls;\n  }\n  implementation2() { ctor_calls()++; }\n  ~implementation2() { dtor_calls()++; }\n};\n//->\n\nauto module = [] {\n  // clang-format off\n  return di::make_injector(\n    di::bind<interface1>().to<implementation1>()\n  );\n  // clang-format on\n};\n\nint main() {\n  assert(!implementation1::ctor_calls());\n  assert(!implementation1::dtor_calls());\n  assert(!implementation2::ctor_calls());\n  assert(!implementation2::dtor_calls());\n\n  auto parent_injector = module();\n  /*<<create `interface1` using deduced singleton scope>>*/\n  parent_injector.create<interface1 &>();\n  assert(1 == implementation1::ctor_calls());\n  {\n    /*<<create `child_injector` with `module` and binding using scoped singleton scope>>*/\n    // clang-format off\n    auto child_injector = di::make_injector(\n      module()\n    , di::bind<interface2>().to<implementation2>().in(scoped)\n    );\n    // clang-format on\n    child_injector.create<interface2 &>();\n    assert(1 == implementation2::ctor_calls());\n  }  // end of scoped\n  assert(1 == implementation2::dtor_calls());\n\n  /*<<create `interface1` again in singleton scope>>*/\n  parent_injector.create<interface1 &>();\n  /*<<already created>>*/\n  assert(1 == implementation1::ctor_calls());\n  /*<<`implementation1` will die with the app (static storage)>>*/\n  assert(0 == implementation1::dtor_calls());\n}\n"
  },
  {
    "path": "extension/scopes/session_scope.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\ntemplate <class, class TScope>\nclass session_scope {\n  class session_guard {\n   public:\n    explicit session_guard(bool& guard) : guard_(guard) { guard = true; }\n    ~session_guard() { guard_ = false; }\n\n   private:\n    bool& guard_;\n  };\n\n public:\n  template <class TExpected, class TGiven>\n  class scope {\n    using scope_type = typename TScope::template scope<TExpected, TGiven>;\n\n   public:\n    template <class T>\n    using is_referable = typename scope_type::template is_referable<T>;\n\n    template <class T, class TName, class TProvider>\n#if defined(__MSVC__)\n    static auto try_create(const TProvider& provider) -> T;\n#else\n    static auto try_create(const TProvider& provider) -> decltype(scope_type{}.template try_create<T, TName>(provider));\n#endif\n\n    template <class T, class TName, class TProvider>\n    auto create(const TProvider& provider) {\n      static std::shared_ptr<TGiven> null{nullptr};\n      return get_session() ? scope_.template create<T, TName>(provider) : null;\n    }\n\n   private:\n    scope_type scope_;\n  };\n\n  auto operator()() const { return session_guard{get_session()}; }\n\n private:\n  static auto& get_session() {\n    static auto is_in_session = false;\n    return is_in_session;\n  }\n};\n\ntemplate <class TName, class TScope = di::scopes::singleton>\nauto session(const TName&, const TScope& = {}) {\n  return session_scope<TName, TScope>{};\n}\n\n//<-\nstruct interface1 {\n  virtual ~interface1() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation1 : interface1 {\n  void dummy() override {}\n};\n//->\n\nauto my_session = [] {};\n\nint main() {\n  {\n    // clang-format off\n    auto injector = di::make_injector(\n      di::bind<interface1>().to<implementation1>().in(session(my_session))\n    );\n    // clang-format on\n    assert(!injector.create<std::shared_ptr<interface1>>());\n\n    {\n      auto ms = session(my_session)();\n      assert(injector.create<std::shared_ptr<interface1>>());\n    }  // end of my_session\n\n    assert(!injector.create<std::shared_ptr<interface1>>());\n  }\n\n  {\n    // clang-format off\n    di::injector<std::shared_ptr<interface1>> injector =\n      di::make_injector(\n        di::bind<interface1>().to<implementation1>().in(session(my_session))\n      );\n    // clang-format on\n    assert(!injector.create<std::shared_ptr<interface1>>());\n\n    {\n      auto ms = session(my_session)();\n      assert(injector.create<std::shared_ptr<interface1>>());\n    }  // end of my_session\n\n    assert(!injector.create<std::shared_ptr<interface1>>());\n  }\n}\n"
  },
  {
    "path": "extension/scopes/shared_scope.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n//<-\n#include <cassert>\n#include <memory>\n//->\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nclass shared_scope {\n public:\n  template <class, class T>\n  class scope {\n   public:\n    template <class T_>\n    using is_referable = typename di::wrappers::shared<shared_scope, T>::template is_referable<T_>;\n\n    template <class, class, class TProvider>\n    static auto try_create(const TProvider& provider)\n        -> decltype(di::wrappers::shared<shared_scope, T>{std::shared_ptr<T>{provider.get()}});\n\n    template <class, class, class TProvider>\n    auto create(const TProvider& provider) {\n      if (!object_) {\n        object_ = std::shared_ptr<T>{provider.get()};\n      }\n      return di::wrappers::shared<shared_scope, T>{object_};\n    }\n\n   private:\n    std::shared_ptr<T> object_;\n  };\n};\n\nstatic constexpr shared_scope shared{};\n\n//<-\nstruct interface1 {\n  virtual ~interface1() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation1 : interface1 {\n  void dummy() override {}\n};\nstruct implementation2 : interface1 {\n  void dummy() override {}\n};\n//->\n\nauto name = [] {};\n\nclass example {\n public:\n  BOOST_DI_INJECT(example, (named = name) std::shared_ptr<interface1> sp1, (named = name) std::shared_ptr<interface1> sp2,\n                  std::shared_ptr<interface1> sp3) {\n    assert(sp1 == sp2);\n    assert(dynamic_cast<implementation2*>(sp1.get()));\n    assert(dynamic_cast<implementation2*>(sp2.get()));\n    assert(dynamic_cast<implementation1*>(sp3.get()));\n  }\n};\n\nint main() {\n  {\n    // clang-format off\n    auto injector = di::make_injector(\n      di::bind<interface1>().to<implementation1>().in(shared)  // di::unique will fail (sp1 == sp2)\n    , di::bind<interface1>().to<implementation2>().named(name).in(shared)\n    );\n    // clang-format on\n    injector.create<example>();\n  }\n\n  {\n    // clang-format off\n    di::injector<std::shared_ptr<interface1>> injector =\n      di::make_injector(\n        di::bind<interface1>().to<implementation1>().in(shared)\n      );\n    // clang-format on\n\n    injector.create<std::shared_ptr<interface1>>();\n    // injector.create<std::unique_ptr<interface1>>(); // error, std::unique_ptr<interface1> is not exposed\n  }\n\n  {\n    // clang-format off\n    di::injector<BOOST_DI_EXPOSE((named = name)std::shared_ptr<interface1>), std::shared_ptr<interface1>> injector =\n        di::make_injector(\n          di::bind<interface1>().to<implementation1>().in(shared).named(name)\n        , di::bind<interface1>().to<implementation2>().in(shared).named(name)[di::override]\n        , di::bind<interface1>().to<implementation1>().in(shared)\n        );\n    // clang-format on\n\n    injector.create<example>();\n  }\n}\n"
  },
  {
    "path": "include/boost/di/aux_/compiler.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_AUX_COMPILER_HPP\n#define BOOST_DI_AUX_COMPILER_HPP\n\n#define __BOOST_DI_COMPILER(arg, ...) __BOOST_DI_COMPILER_IMPL(arg, __VA_ARGS__)\n#define __BOOST_DI_COMPILER_IMPL(arg, ...) arg##__VA_ARGS__\n\n#if defined(__clang__)  // clang, clang-cl\n#define __CLANG__ __BOOST_DI_COMPILER(__clang_major__, __clang_minor__)\n#define __BOOST_DI_UNUSED __attribute__((unused))\n#define __BOOST_DI_DEPRECATED(...) [[deprecated(__VA_ARGS__)]]\n#define __BOOST_DI_TYPE_WKND(T)\n#define __BOOST_DI_ACCESS_WKND private\n#elif defined(__GNUC__)  // gcc\n#define __GCC__\n#define __BOOST_DI_UNUSED __attribute__((unused))\n#define __BOOST_DI_DEPRECATED(...) [[deprecated(__VA_ARGS__)]]\n#define __BOOST_DI_TYPE_WKND(T)\n#define __BOOST_DI_ACCESS_WKND private\n#elif defined(_MSC_VER)  // msvc\n#define __MSVC__\n#define __has_include(...) 0\n#define __BOOST_DI_UNUSED\n#define __BOOST_DI_DEPRECATED(...) __declspec(deprecated(__VA_ARGS__))  // error C2059: syntax error: '<L_ATTRIBUTE_SPECIFIER>'\n#define __BOOST_DI_TYPE_WKND(T) (T &&)\n#define __BOOST_DI_ACCESS_WKND public\n#endif\n\n#if !defined(__has_builtin)\n#define __has_builtin(...) 0\n#endif\n#if !defined(__has_extension)\n#define __has_extension(...) 0\n#endif\n\n#endif\n"
  },
  {
    "path": "include/boost/di/aux_/preprocessor.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_AUX_PREPROCESSOR_HPP\n#define BOOST_DI_AUX_PREPROCESSOR_HPP\n\n#include \"boost/di/aux_/compiler.hpp\"\n\n#define __BOOST_DI_IF(cond, t, f) __BOOST_DI_IF_I(cond, t, f)\n#define __BOOST_DI_REPEAT(i, m, ...) __BOOST_DI_REPEAT_N(i, m, __VA_ARGS__)\n#define __BOOST_DI_CAT(a, ...) __BOOST_DI_PRIMITIVE_CAT(a, __VA_ARGS__)\n#define __BOOST_DI_EMPTY()\n#define __BOOST_DI_COMMA() ,\n#define __BOOST_DI_EAT(...)\n#define __BOOST_DI_EXPAND(...) __VA_ARGS__\n#define __BOOST_DI_SIZE(...) __BOOST_DI_CAT(__BOOST_DI_VARIADIC_SIZE_I(__VA_ARGS__, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, ), )\n#define __BOOST_DI_PRIMITIVE_CAT(a, ...) a##__VA_ARGS__\n#define __BOOST_DI_ELEM(n, ...) __BOOST_DI_ELEM_I(n, __VA_ARGS__)\n#define __BOOST_DI_IS_EMPTY(...)                              \\\n  __BOOST_DI_DETAIL_IS_EMPTY_IIF(__BOOST_DI_IBP(__VA_ARGS__)) \\\n  (__BOOST_DI_DETAIL_IS_EMPTY_GEN_ZERO, __BOOST_DI_DETAIL_IS_EMPTY_PROCESS)(__VA_ARGS__)\n\n#define __BOOST_DI_DETAIL_IS_EMPTY_PRIMITIVE_CAT(a, b) a##b\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF(bit) __BOOST_DI_DETAIL_IS_EMPTY_PRIMITIVE_CAT(__BOOST_DI_DETAIL_IS_EMPTY_IIF_, bit)\n#define __BOOST_DI_DETAIL_IS_EMPTY_NON_FUNCTION_C(...) ()\n#define __BOOST_DI_DETAIL_IS_EMPTY_GEN_ZERO(...) 0\n#define __BOOST_DI_VARIADIC_SIZE_I(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, size, ...) size\n#define __BOOST_DI_IF_I(cond, t, f) __BOOST_DI_IIF(cond, t, f)\n#define __BOOST_DI_IIF_0(t, f) f\n#define __BOOST_DI_IIF_1(t, f) t\n#define __BOOST_DI_IIF_2(t, f) t\n#define __BOOST_DI_IIF_3(t, f) t\n#define __BOOST_DI_IIF_4(t, f) t\n#define __BOOST_DI_IIF_5(t, f) t\n#define __BOOST_DI_IIF_6(t, f) t\n#define __BOOST_DI_IIF_7(t, f) t\n#define __BOOST_DI_IIF_8(t, f) t\n#define __BOOST_DI_IIF_9(t, f) t\n#define __BOOST_DI_ELEM_I(n, ...) __BOOST_DI_CAT(__BOOST_DI_CAT(__BOOST_DI_ELEM, n)(__VA_ARGS__, ), )\n#define __BOOST_DI_ELEM0(p1, ...) p1\n#define __BOOST_DI_ELEM1(p1, p2, ...) p2\n#define __BOOST_DI_ELEM2(p1, p2, p3, ...) p3\n#define __BOOST_DI_ELEM3(p1, p2, p3, p4, ...) p4\n#define __BOOST_DI_ELEM4(p1, p2, p3, p4, p5, ...) p5\n#define __BOOST_DI_ELEM5(p1, p2, p3, p4, p5, p6, ...) p6\n#define __BOOST_DI_ELEM6(p1, p2, p3, p4, p5, p6, p7, ...) p7\n#define __BOOST_DI_ELEM7(p1, p2, p3, p4, p5, p6, p7, p8, ...) p8\n#define __BOOST_DI_ELEM8(p1, p2, p3, p4, p5, p6, p7, p8, p9, ...) p9\n#define __BOOST_DI_ELEM9(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, ...) p10\n#define __BOOST_DI_REPEAT_N(i, m, ...) __BOOST_DI_REPEAT_##i(m, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_1(m, ...) m(0, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_2(m, ...) m(0, __VA_ARGS__) m(1, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_3(m, ...) m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_4(m, ...) m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_5(m, ...) m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_6(m, ...) \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_7(m, ...) \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__) m(6, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_8(m, ...)                                                                           \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__) \\\n      m(6, __VA_ARGS__) m(7, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_9(m, ...)                                                                           \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__) \\\n      m(6, __VA_ARGS__) m(7, __VA_ARGS__) m(8, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_10(m, ...)                                                                          \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__) \\\n      m(6, __VA_ARGS__) m(7, __VA_ARGS__) m(8, __VA_ARGS__) m(9, __VA_ARGS__)\n\n#if defined(__MSVC__)\n#define __BOOST_DI_VD_IBP_CAT(a, b) __BOOST_DI_VD_IBP_CAT_I(a, b)\n#define __BOOST_DI_VD_IBP_CAT_I(a, b) __BOOST_DI_VD_IBP_CAT_II(a##b)\n#define __BOOST_DI_VD_IBP_CAT_II(res) res\n#define __BOOST_DI_IBP_SPLIT(i, ...) \\\n  __BOOST_DI_VD_IBP_CAT(__BOOST_DI_IBP_PRIMITIVE_CAT(__BOOST_DI_IBP_SPLIT_, i)(__VA_ARGS__), __BOOST_DI_EMPTY())\n#define __BOOST_DI_IBP_IS_VARIADIC_C(...) 1 1\n#define __BOOST_DI_IBP_SPLIT_0(a, ...) a\n#define __BOOST_DI_IBP_SPLIT_1(a, ...) __VA_ARGS__\n#define __BOOST_DI_IBP_CAT(a, ...) __BOOST_DI_IBP_PRIMITIVE_CAT(a, __VA_ARGS__)\n#define __BOOST_DI_IBP_PRIMITIVE_CAT(a, ...) a##__VA_ARGS__\n#define __BOOST_DI_IBP_IS_VARIADIC_R_1 1,\n#define __BOOST_DI_IBP_IS_VARIADIC_R___BOOST_DI_IBP_IS_VARIADIC_C 0,\n#define __BOOST_DI_IBP(...) \\\n  __BOOST_DI_IBP_SPLIT(0, __BOOST_DI_IBP_CAT(__BOOST_DI_IBP_IS_VARIADIC_R_, __BOOST_DI_IBP_IS_VARIADIC_C __VA_ARGS__))\n#define __BOOST_DI_IIF(bit, t, f) __BOOST_DI_IIF_OO((bit, t, f))\n#define __BOOST_DI_IIF_OO(par) __BOOST_DI_IIF_I##par\n#define __BOOST_DI_IIF_I(bit, t, f) __BOOST_DI_IIF_##bit(t, f)\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF_0(t, b) b\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF_1(t, b) t\n#define __BOOST_DI_DETAIL_IS_EMPTY_PROCESS(...) __BOOST_DI_IBP(__BOOST_DI_DETAIL_IS_EMPTY_NON_FUNCTION_C __VA_ARGS__())\n#else\n#define __BOOST_DI_IBP_SPLIT(i, ...) __BOOST_DI_PRIMITIVE_CAT(__BOOST_DI_IBP_SPLIT_, i)(__VA_ARGS__)\n#define __BOOST_DI_IBP_SPLIT_0(a, ...) a\n#define __BOOST_DI_IBP_SPLIT_1(a, ...) __VA_ARGS__\n#define __BOOST_DI_IBP_IS_VARIADIC_C(...) 1\n#define __BOOST_DI_IBP_IS_VARIADIC_R_1 1,\n#define __BOOST_DI_IBP_IS_VARIADIC_R___BOOST_DI_IBP_IS_VARIADIC_C 0,\n#define __BOOST_DI_IBP(...) \\\n  __BOOST_DI_IBP_SPLIT(0, __BOOST_DI_CAT(__BOOST_DI_IBP_IS_VARIADIC_R_, __BOOST_DI_IBP_IS_VARIADIC_C __VA_ARGS__))\n#define __BOOST_DI_IIF(bit, t, f) __BOOST_DI_IIF_I(bit, t, f)\n#define __BOOST_DI_IIF_I(bit, t, f) __BOOST_DI_IIF_II(__BOOST_DI_IIF_##bit(t, f))\n#define __BOOST_DI_IIF_II(id) id\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF_0(t, ...) __VA_ARGS__\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF_1(t, ...) t\n#define __BOOST_DI_DETAIL_IS_EMPTY_PROCESS(...) __BOOST_DI_IBP(__BOOST_DI_DETAIL_IS_EMPTY_NON_FUNCTION_C __VA_ARGS__())\n#endif\n\n#endif\n"
  },
  {
    "path": "include/boost/di/aux_/type_traits.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_AUX_TYPE_TRAITS_HPP\n#define BOOST_DI_AUX_TYPE_TRAITS_HPP\n\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n\n#define __BOOST_DI_HAS_TYPE(name, call_name)            \\\n  template <class, class = int>                         \\\n  struct name : BOOST_DI_NAMESPACE::aux::false_type {}; \\\n                                                        \\\n  template <class T>                                    \\\n  struct name<T, BOOST_DI_NAMESPACE::aux::valid_t<typename T::call_name>> : BOOST_DI_NAMESPACE::aux::true_type {}\n\n#define __BOOST_DI_HAS_METHOD(name, call_name)                                                            \\\n  template <class T, class... TArgs>                                                                      \\\n  decltype(BOOST_DI_NAMESPACE::aux::declval<T>().call_name(BOOST_DI_NAMESPACE::aux::declval<TArgs>()...), \\\n           BOOST_DI_NAMESPACE::aux::true_type()) name##_impl(int);                                        \\\n                                                                                                          \\\n  template <class, class...>                                                                              \\\n  BOOST_DI_NAMESPACE::aux::false_type name##_impl(...);                                                   \\\n                                                                                                          \\\n  template <class T, class... TArgs>                                                                      \\\n  struct name : decltype(name##_impl<T, TArgs...>(0)) {}\n\n#define __BOOST_DI_REQUIRES(...) typename BOOST_DI_NAMESPACE::aux::enable_if<__VA_ARGS__, int>::type     // __pph__\n#define __BOOST_DI_REQUIRES_MSG(...) typename BOOST_DI_NAMESPACE::aux::concept_check<__VA_ARGS__>::type  // __pph__\n\nnamespace aux {\n\ntemplate <class T>\nT&& declval();\n\ntemplate <class T, T V>\nstruct integral_constant {\n  using type = integral_constant;\n  static constexpr T value = V;\n};\n\nusing true_type = integral_constant<bool, true>;\nusing false_type = integral_constant<bool, false>;\n\ntemplate <bool B, class T, class F>\nstruct conditional {\n  using type = T;\n};\ntemplate <class T, class F>\nstruct conditional<false, T, F> {\n  using type = F;\n};\ntemplate <bool B, class T, class F>\nusing conditional_t = typename conditional<B, T, F>::type;\n\ntemplate <bool B, class T = void>\nstruct enable_if {};\ntemplate <class T>\nstruct enable_if<true, T> {\n  using type = T;\n};\ntemplate <bool B, class T = void>\nusing enable_if_t = typename enable_if<B, T>::type;\n\ntemplate <class T>\nstruct concept_check {\n  static_assert(T::value, \"constraint not satisfied\");\n};\ntemplate <>\nstruct concept_check<true_type> {\n  using type = int;\n};\n\ntemplate <class T>\nstruct remove_reference {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_reference<T&> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_reference<T&&> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_reference_t = typename remove_reference<T>::type;\n\ntemplate <class T>\nstruct remove_pointer {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_pointer<T*> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_pointer_t = typename remove_pointer<T>::type;\n\ntemplate <class T>\nstruct remove_smart_ptr {\n  using type = T;\n};\ntemplate <class T, class TDeleter>\nstruct remove_smart_ptr<std::unique_ptr<T, TDeleter>> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_smart_ptr<std::shared_ptr<T>> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_smart_ptr<std::weak_ptr<T>> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_smart_ptr<boost::shared_ptr<T>> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_smart_ptr_t = typename remove_smart_ptr<T>::type;\n\ntemplate <class T>\nstruct remove_qualifiers {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<const T> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T&> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<const T&> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T*> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<const T*> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T* const&> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T* const> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<const T* const> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T&&> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_qualifiers_t = typename remove_qualifiers<T>::type;\n\ntemplate <class T>\nstruct remove_extent {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_extent<T[]> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_extent_t = typename remove_extent<T>::type;\n\ntemplate <class T>\nstruct deref_type {\n  using type = T;\n};\n\ntemplate <class T, class TDeleter>\nstruct deref_type<std::unique_ptr<T, TDeleter>> {\n  using type = remove_qualifiers_t<typename deref_type<T>::type>;\n};\n\ntemplate <class T>\nstruct deref_type<std::shared_ptr<T>> {\n  using type = remove_qualifiers_t<typename deref_type<T>::type>;\n};\n\ntemplate <class T>\nstruct deref_type<boost::shared_ptr<T>> {\n  using type = remove_qualifiers_t<typename deref_type<T>::type>;\n};\n\ntemplate <class T>\nstruct deref_type<std::weak_ptr<T>> {\n  using type = remove_qualifiers_t<typename deref_type<T>::type>;\n};\n\ntemplate <class T, class TAllocator>\nstruct deref_type<std::vector<T, TAllocator>> {\n  using type = core::array<remove_qualifiers_t<typename deref_type<T>::type>>;\n};\n\ntemplate <class TKey, class TCompare, class TAllocator>\nstruct deref_type<std::set<TKey, TCompare, TAllocator>> {\n  using type = core::array<remove_qualifiers_t<typename deref_type<TKey>::type>>;\n};\n\ntemplate <class T>\nusing decay_t = typename deref_type<remove_qualifiers_t<T>>::type;\n\ntemplate <class, class>\nstruct is_same : false_type {};\ntemplate <class T>\nstruct is_same<T, T> : true_type {};\n\ntemplate <class T, class U>\nstruct is_base_of : integral_constant<bool, __is_base_of(T, U)> {};\n\ntemplate <class T>\nstruct is_class : integral_constant<bool, __is_class(T)> {};\n\ntemplate <class T>\nstruct is_abstract : integral_constant<bool, __is_abstract(T)> {};\n\ntemplate <class T>\nstruct is_polymorphic : integral_constant<bool, __is_polymorphic(T)> {};\n\ntemplate <class...>\nusing is_valid_expr = true_type;\n\n#if __has_extension(is_constructible) && !((__clang_major__ == 3) && (__clang_minor__ == 5))  // __pph__\ntemplate <class T, class... TArgs>\nusing is_constructible = integral_constant<bool, __is_constructible(T, TArgs...)>;\n#else   // __pph__\ntemplate <class T, class... TArgs>\ndecltype(void(T(declval<TArgs>()...)), true_type{}) test_is_constructible(int);\ntemplate <class, class...>\nfalse_type test_is_constructible(...);\ntemplate <class T, class... TArgs>\nstruct is_constructible : decltype(test_is_constructible<T, TArgs...>(0)) {};\n#endif  // __pph__\ntemplate <class T, class... TArgs>\nusing is_constructible_t = typename is_constructible<T, TArgs...>::type;\n\ntemplate <class T, class... TArgs>\ndecltype(void(T{declval<TArgs>()...}), true_type{}) test_is_braces_constructible(int);\ntemplate <class, class...>\nfalse_type test_is_braces_constructible(...);\ntemplate <class T, class... TArgs>\nusing is_braces_constructible = decltype(test_is_braces_constructible<T, TArgs...>(0));\ntemplate <class T, class... TArgs>\nusing is_braces_constructible_t = typename is_braces_constructible<T, TArgs...>::type;\n\n#if defined(__MSVC__)  // __pph__\ntemplate <class T>\nstruct is_copy_constructible : integral_constant<bool, __is_constructible(T, const T&)> {};\ntemplate <class T>\nstruct is_default_constructible : integral_constant<bool, __is_constructible(T)> {};\n#else   // __pph__\ntemplate <class T>\nusing is_copy_constructible = is_constructible<T, const T&>;\ntemplate <class T>\nusing is_default_constructible = is_constructible<T>;\n#endif  // __pph__\n\n#if defined(__CLANG__) || defined(__MSVC__)  // __pph__\ntemplate <class T, class U>\nstruct is_convertible : integral_constant<bool, __is_convertible_to(T, U)> {};\n#else   // __pph__\nstruct test_is_convertible__ {\n  template <class T>\n  static void test(T);\n};\n\ntemplate <class T, class U, class = decltype(test_is_convertible__::test<U>(declval<T>()))>\ntrue_type test_is_convertible(int);\n\ntemplate <class, class>\nfalse_type test_is_convertible(...);\n\ntemplate <class T, class U>\nusing is_convertible = decltype(test_is_convertible<T, U>(0));\n#endif  // __pph__\n\ntemplate <class TSrc, class TDst, class U = remove_qualifiers_t<TDst>>\nusing is_narrowed = integral_constant<bool, !is_class<TSrc>::value && !is_class<U>::value && !is_same<TSrc, U>::value>;\n\ntemplate <class, class...>\nstruct is_array : false_type {};\ntemplate <class T, class... Ts>\nstruct is_array<T[], Ts...> : true_type {};\n\ntemplate <class T, class = decltype(sizeof(T))>\ntrue_type is_complete_impl(int);\n\ntemplate <class T>\nfalse_type is_complete_impl(...);\n\ntemplate <class T>\nstruct is_complete : decltype(is_complete_impl<T>(0)) {};\n\ntemplate <class T, class U, class = decltype(sizeof(U))>\nis_base_of<T, U> is_a_impl(int);\n\ntemplate <class T, class U>\nfalse_type is_a_impl(...);\n\ntemplate <class T, class U>\nstruct is_a : decltype(is_a_impl<T, U>(0)) {};\n\ntemplate <class, class...>\nstruct is_unique_impl;\n\ntemplate <class...>\nstruct not_unique : false_type {\n  using type = not_unique;\n};\n\ntemplate <>\nstruct not_unique<> : true_type {\n  using type = not_unique;\n};\n\ntemplate <class T>\nstruct is_unique_impl<T> : not_unique<> {};\n\ntemplate <class T1, class T2, class... Ts>\nstruct is_unique_impl<T1, T2, Ts...>\n    : conditional_t<is_base_of<type<T2>, T1>::value, not_unique<T2>, is_unique_impl<inherit<T1, type<T2>>, Ts...>> {};\n\ntemplate <class... Ts>\nusing is_unique = is_unique_impl<none_type, Ts...>;\n\ntemplate <class...>\nstruct unique;\n\ntemplate <class... Rs, class T, class... Ts>\nstruct unique<type<Rs...>, T, Ts...> : conditional_t<is_base_of<type<T>, inherit<type<Rs>...>>::value,\n                                                     unique<type<Rs...>, Ts...>, unique<type<Rs..., T>, Ts...>> {};\n\ntemplate <class... Rs>\nstruct unique<type<Rs...>> : type_list<Rs...> {};\n\ntemplate <class... Ts>\nusing unique_t = typename unique<type<>, Ts...>::type;\n\n__BOOST_DI_HAS_METHOD(is_callable_with, operator());\n\nstruct callable_base_impl {\n  void operator()(...) {}\n};\n\ntemplate <class T>\nstruct callable_base : callable_base_impl, aux::conditional_t<aux::is_class<T>::value, T, aux::none_type> {};\n\ntemplate <typename T>\naux::false_type is_callable_impl(T*, aux::non_type<void (callable_base_impl::*)(...), &T::operator()>* = 0);\naux::true_type is_callable_impl(...);\n\ntemplate <class T>\nstruct is_callable : decltype(is_callable_impl((callable_base<T>*)0)) {};\n\ntemplate <class>\nstruct function_traits;\n\ntemplate <class R, class... TArgs>\nstruct function_traits<R (*)(TArgs...)> {\n  using result_type = R;\n  using args = type_list<TArgs...>;\n};\n\ntemplate <class R, class... TArgs>\nstruct function_traits<R(TArgs...)> {\n  using result_type = R;\n  using args = type_list<TArgs...>;\n};\n\ntemplate <class R, class T, class... TArgs>\nstruct function_traits<R (T::*)(TArgs...)> {\n  using result_type = R;\n  using args = type_list<TArgs...>;\n};\n\ntemplate <class R, class T, class... TArgs>\nstruct function_traits<R (T::*)(TArgs...) const> {\n  using result_type = R;\n  using args = type_list<TArgs...>;\n};\n\ntemplate <class T>\nusing function_traits_t = typename function_traits<T>::args;\n\n}  // aux\n\n#endif\n"
  },
  {
    "path": "include/boost/di/aux_/utility.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software type_listicense, Version 1.0.\n// (See accompanying file type_listICENSE_1_0.txt or copy at http://www.boost.org/type_listICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_AUX_UTItype_listITY_HPP\n#define BOOST_DI_AUX_UTItype_listITY_HPP\n\nstruct _ {\n  _(...) {}\n};\n\nnamespace aux {\n\nusing swallow = int[];\n\ntemplate <class T>\nusing owner = T;\n\ntemplate <class...>\nstruct valid {\n  using type = int;\n};\n\ntemplate <class... Ts>\nusing valid_t = typename valid<Ts...>::type;\n\ntemplate <class...>\nstruct type {};\n\nstruct none_type {};\n\ntemplate <class T, T>\nstruct non_type {};\n\ntemplate <class...>\nstruct always {\n  static constexpr auto value = true;\n};\n\ntemplate <class...>\nstruct never {\n  static constexpr auto value = false;\n};\n\ntemplate <class T, class...>\nstruct identity {\n  using type = T;\n};\n\ntemplate <class...>\nstruct type_list {\n  using type = type_list;\n};\n\ntemplate <bool...>\nstruct bool_list {\n  using type = bool_list;\n};\n\ntemplate <class T1, class T2>\nstruct pair {\n  using type = pair;\n  using first = T1;\n  using second = T2;\n};\n\ntemplate <class... Ts>\nstruct inherit : Ts... {\n  using type = inherit;\n};\n\ntemplate <class... Ts>\nstruct join {\n  using type = type_list<>;\n};\n\ntemplate <class T>\nstruct join<T> {\n  using type = T;\n};\n\ntemplate <class... T1s, class... T2s, class... Ts>\nstruct join<type_list<T1s...>, type_list<T2s...>, Ts...> : join<type_list<T1s..., T2s...>, Ts...> {};\n\ntemplate <class... Ts, class... T1s, class... T2s, class... T3s, class... T4s, class... T5s, class... T6s, class... T7s,\n          class... T8s, class... T9s, class... T10s, class... T11s, class... T12s, class... T13s, class... T14s, class... T15s,\n          class... T16s, class... Us>\nstruct join<type_list<Ts...>, type_list<T1s...>, type_list<T2s...>, type_list<T3s...>, type_list<T4s...>, type_list<T5s...>,\n            type_list<T6s...>, type_list<T7s...>, type_list<T8s...>, type_list<T9s...>, type_list<T10s...>, type_list<T11s...>,\n            type_list<T12s...>, type_list<T13s...>, type_list<T14s...>, type_list<T15s...>, type_list<T16s...>, Us...>\n    : join<type_list<Ts..., T1s..., T2s..., T3s..., T4s..., T5s..., T6s..., T7s..., T8s..., T9s..., T10s..., T11s..., T12s...,\n                     T13s..., T14s..., T15s..., T16s...>,\n           Us...> {};\n\ntemplate <class... TArgs>\nusing join_t = typename join<TArgs...>::type;\n\ntemplate <int...>\nstruct index_sequence {\n  using type = index_sequence;\n};\n\n#if __has_builtin(__make_integer_seq)  // __pph__\ntemplate <class T, T...>\nstruct integer_sequence;\ntemplate <int... Ns>\nstruct integer_sequence<int, Ns...> {\n  using type = index_sequence<Ns...>;\n};\ntemplate <int N>\nstruct make_index_sequence_impl {\n  using type = typename __make_integer_seq<integer_sequence, int, N>::type;\n};\n#else   // __pph__\ntemplate <int>\nstruct make_index_sequence_impl;\n\ntemplate <>\nstruct make_index_sequence_impl<0> : index_sequence<> {};\n\ntemplate <>\nstruct make_index_sequence_impl<1> : index_sequence<0> {};\n\ntemplate <>\nstruct make_index_sequence_impl<2> : index_sequence<0, 1> {};\n\ntemplate <>\nstruct make_index_sequence_impl<3> : index_sequence<0, 1, 2> {};\n\ntemplate <>\nstruct make_index_sequence_impl<4> : index_sequence<0, 1, 2, 3> {};\n\ntemplate <>\nstruct make_index_sequence_impl<5> : index_sequence<0, 1, 2, 3, 4> {};\n\ntemplate <>\nstruct make_index_sequence_impl<6> : index_sequence<0, 1, 2, 3, 4, 5> {};\n\ntemplate <>\nstruct make_index_sequence_impl<7> : index_sequence<0, 1, 2, 3, 4, 5, 6> {};\n\ntemplate <>\nstruct make_index_sequence_impl<8> : index_sequence<0, 1, 2, 3, 4, 5, 6, 7> {};\n\ntemplate <>\nstruct make_index_sequence_impl<9> : index_sequence<0, 1, 2, 3, 4, 5, 6, 7, 8> {};\n\ntemplate <>\nstruct make_index_sequence_impl<10> : index_sequence<0, 1, 2, 3, 4, 5, 6, 7, 8, 9> {};\n#endif  // __pph__\n\ntemplate <int N>\nusing make_index_sequence = typename make_index_sequence_impl<N>::type;\n\n}  // aux\n\n#endif\n"
  },
  {
    "path": "include/boost/di/bindings.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_BINDINGS_HPP\n#define BOOST_DI_BINDINGS_HPP\n\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/concepts/boundable.hpp\"\n#include \"boost/di/core/dependency.hpp\"\n#include \"boost/di/scopes/deduce.hpp\"\n#include \"boost/di/scopes/singleton.hpp\"\n#include \"boost/di/scopes/unique.hpp\"\n\nnamespace detail {\n\ntemplate <class...>\nstruct bind;\n\ntemplate <class TScope>\nstruct bind<int, TScope> {\n  using type = core::dependency<TScope>;\n};\n\ntemplate <class TScope, class T>\nstruct bind<int, TScope, T> {\n  using type = core::dependency<TScope, T>;\n};\n\ntemplate <class TScope, class... Ts>\nstruct bind<int, TScope, Ts...> {\n  using type = core::dependency<TScope, concepts::any_of<Ts...>>;\n};\n\n}  // detail\n\ntemplate <class... Ts>\n#if defined(__cpp_variable_templates)  // __pph__\ntypename\n#else   // __pph__\nstruct bind :\n#endif  // __pph__\n    detail::bind<__BOOST_DI_REQUIRES_MSG(concepts::boundable<concepts::any_of<Ts...>>), scopes::deduce, Ts...>::type\n#if defined(__cpp_variable_templates)  // __pph__\n        bind\n#endif  // __pph__\n{};\n\nstatic constexpr __BOOST_DI_UNUSED core::override override{};\nstatic constexpr __BOOST_DI_UNUSED scopes::deduce deduce{};\nstatic constexpr __BOOST_DI_UNUSED scopes::unique unique{};\nstatic constexpr __BOOST_DI_UNUSED scopes::singleton singleton{};\n\n#endif\n"
  },
  {
    "path": "include/boost/di/concepts/boundable.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CONCEPTS_BOUNDABLE_HPP\n#define BOOST_DI_CONCEPTS_BOUNDABLE_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/core/bindings.hpp\"\n#include \"boost/di/fwd.hpp\"\n\nnamespace concepts {\n\ntemplate <class T, class...>\nstruct type_ {\n  template <class TName>\n  struct named {\n    struct is_bound_more_than_once : aux::false_type {};\n  };\n  struct is_bound_more_than_once : aux::false_type {};\n  struct is_neither_a_dependency_nor_an_injector : aux::false_type {};\n  struct has_disallowed_qualifiers : aux::false_type {};\n  struct is_abstract :\n#if (BOOST_DI_CFG_DIAGNOSTICS_LEVEL >= 2)  // __pph__\n                                           // clang-format off\n      decltype(\n\t\t  T{}\n\t  ),\n                                           // clang-format on\n#endif                                     // __pph__\n      aux::false_type {\n  };\n  template <class>\n  struct is_not_related_to : aux::false_type {};\n};\n\ntemplate <class...>\nstruct any_of : aux::false_type {};\n\ntemplate <class... TDeps>\nstruct is_supported : aux::is_same<aux::bool_list<aux::always<TDeps>::value...>,\n                                   aux::bool_list<(aux::is_constructible<TDeps, TDeps&&>::value &&\n                                                   (aux::is_a<core::injector_base, TDeps>::value ||\n                                                    aux::is_a<core::dependency_base, TDeps>::value))...>> {};\n\ntemplate <class...>\nstruct get_not_supported;\n\ntemplate <class T>\nstruct get_not_supported<T> {\n  using type = T;\n};\n\ntemplate <class T, class... TDeps>\nstruct get_not_supported<T, TDeps...>\n    : aux::conditional<aux::is_a<core::injector_base, T>::value || aux::is_a<core::dependency_base, T>::value,\n                       typename get_not_supported<TDeps...>::type, T> {};\n\ntemplate <class>\nstruct is_unique;\n\ntemplate <class T, class = int>\nstruct unique_dependency : aux::type<T> {};\n\ntemplate <class T>\nstruct unique_dependency<T, __BOOST_DI_REQUIRES(aux::is_a<core::dependency_base, T>::value)>\n    : aux::pair<aux::pair<typename T::expected, typename T::name>, typename T::priority> {};\n\ntemplate <class... TDeps>\nstruct is_unique<aux::type_list<TDeps...>> : aux::is_unique<typename unique_dependency<TDeps>::type...> {};\n\ntemplate <class>\nstruct get_is_unique_error_impl : aux::true_type {};\n\ntemplate <class T, class TName, class TPriority>\nstruct get_is_unique_error_impl<aux::not_unique<aux::pair<aux::pair<T, TName>, TPriority>>> {\n  using type = typename type_<T>::template named<TName>::is_bound_more_than_once;\n};\n\ntemplate <class T, class TPriority>\nstruct get_is_unique_error_impl<aux::not_unique<aux::pair<aux::pair<T, no_name>, TPriority>>> {\n  using type = typename type_<T>::is_bound_more_than_once;\n};\n\ntemplate <class T>\nstruct get_is_unique_error_impl<aux::not_unique<T>> {\n  using type = typename type_<T>::is_bound_more_than_once;\n};\n\ntemplate <class>\nstruct get_is_unique_error;\n\ntemplate <class... TDeps>\nstruct get_is_unique_error<aux::type_list<TDeps...>>\n    : get_is_unique_error_impl<typename aux::is_unique<typename unique_dependency<TDeps>::type...>::type> {};\n\ntemplate <class... TDeps>\nusing boundable_bindings =\n    aux::conditional_t<is_supported<TDeps...>::value, typename get_is_unique_error<core::bindings_t<TDeps...>>::type,\n                       typename type_<typename get_not_supported<TDeps...>::type>::is_neither_a_dependency_nor_an_injector>;\n\ntemplate <class... Ts>\nusing get_any_of_error = aux::conditional_t<\n    aux::is_same<aux::bool_list<aux::always<Ts>::value...>, aux::bool_list<aux::is_same<aux::true_type, Ts>::value...>>::value,\n    aux::true_type, any_of<Ts...>>;\n\ntemplate <bool, class...>\nstruct is_related {\n  static constexpr auto value = true;  // allows incomplete types\n};\n\ntemplate <class I, class T>\nstruct is_related<true, I, T> {\n  static constexpr auto value =\n      aux::is_callable<T>::value ||\n      (aux::is_base_of<I, T>::value || (aux::is_convertible<T, I>::value && !aux::is_narrowed<I, T>::value));\n};\n\ntemplate <bool, class>\nstruct is_abstract {\n  static constexpr auto value = false;  // allows incomplete types\n};\n\ntemplate <class T>\nstruct is_abstract<true, T> {\n  static constexpr auto value = aux::is_abstract<T>::value;\n};\n\nauto boundable_impl(any_of<> &&) -> aux::true_type;\n\ntemplate <class T, class... Ts>  // expected\nauto boundable_impl(any_of<T, Ts...> &&)\n    -> aux::conditional_t<aux::is_same<T, aux::decay_t<T>>::value, decltype(boundable_impl(aux::declval<any_of<Ts...>>())),\n                          typename type_<T>::has_disallowed_qualifiers>;\n\ntemplate <class I, class T>\nusing boundable_impl__ = aux::conditional_t<\n    is_related<aux::is_complete<I>::value && aux::is_complete<T>::value, I, T>::value,\n    aux::conditional_t<is_abstract<aux::is_complete<T>::value, T>::value, typename type_<T>::is_abstract, aux::true_type>,\n    typename type_<T>::template is_not_related_to<I>>;\n\ntemplate <class I, class T>                                                                   // expected -> given\nauto boundable_impl(I&&, T &&) -> aux::conditional_t<aux::is_same<T, aux::decay_t<T>>::value  // I is already verified\n                                                     ,\n                                                     boundable_impl__<I, T>, typename type_<T>::has_disallowed_qualifiers>;\n\ntemplate <class I, class T>  // expected -> given\nauto boundable_impl(I&&, T&&, aux::valid<> &&)\n    -> aux::conditional_t<is_related<aux::is_complete<I>::value && aux::is_complete<T>::value, I, T>::value, aux::true_type,\n                          typename type_<T>::template is_not_related_to<I>>;\n\ntemplate <class I, class T>  // array[]\nauto boundable_impl(I* [], T &&) -> aux::conditional_t<aux::is_same<I, aux::decay_t<I>>::value, boundable_impl__<I, T>,\n                                                       typename type_<I>::has_disallowed_qualifiers>;\n\ntemplate <class I, class T>  // array[]\nauto boundable_impl(I[], T &&) -> aux::conditional_t<aux::is_same<I, aux::decay_t<I>>::value, boundable_impl__<I, T>,\n                                                     typename type_<I>::has_disallowed_qualifiers>;\n\ntemplate <class... TDeps>  // bindings\nauto boundable_impl(aux::type_list<TDeps...> &&) -> boundable_bindings<TDeps...>;\n\ntemplate <class T, class... Ts>  // any_of\nauto boundable_impl(concepts::any_of<Ts...>&&, T &&)\n    -> get_any_of_error<decltype(boundable_impl(aux::declval<Ts>(), aux::declval<T>()))...>;\n\ntemplate <class... TDeps>  // make_injector\nauto boundable_impl(aux::type<TDeps...> &&) -> typename get_is_unique_error_impl<typename aux::is_unique<TDeps...>::type>::type;\n\naux::true_type boundable_impl(...);\n\ntemplate <class... Ts>\nstruct boundable__ {\n  using type = decltype(boundable_impl(aux::declval<Ts>()...));\n};\n\ntemplate <class... Ts>\nusing boundable = typename boundable__<Ts...>::type;\n\n}  // concepts\n\n#endif\n"
  },
  {
    "path": "include/boost/di/concepts/callable.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CONCEPTS_CALLABLE_HPP\n#define BOOST_DI_CONCEPTS_CALLABLE_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/core/dependency.hpp\"\n#include \"boost/di/core/pool.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/scopes/deduce.hpp\"\n\nnamespace concepts {\n\nstruct call_operator_with_one_argument {};\n\ntemplate <class>\nstruct policy {\n  template <class>\n  struct requires_ : aux::false_type {};\n};\n\nstruct arg_wrapper {\n  using type = _;\n  using expected = _;\n  using given = _;\n  using name = no_name;\n  using arity = aux::integral_constant<int, 0>;\n  using scope = scopes::deduce;\n  using is_root = aux::false_type;\n\n  template <class, class, class>\n  struct resolve;\n};\n\naux::false_type callable_impl(...);\n\ntemplate <class T, class TArg>\nauto callable_impl(const T&& t, TArg&& arg) -> aux::is_valid_expr<decltype(t(arg))>;\n\ntemplate <class...>\nstruct is_callable_impl;\n\ntemplate <class T, class... Ts>\nstruct is_callable_impl<T, Ts...> {\n  using callable_with_arg = decltype(callable_impl(aux::declval<T>(), arg_wrapper{}));\n  using type = aux::conditional_t<callable_with_arg::value, typename is_callable_impl<Ts...>::type,\n                                  typename policy<T>::template requires_<call_operator_with_one_argument>>;\n};\n\ntemplate <>\nstruct is_callable_impl<> : aux::true_type {};\n\ntemplate <class... Ts>\nstruct is_callable : is_callable_impl<Ts...> {};\n\ntemplate <class... Ts>\nstruct is_callable<core::pool<aux::type_list<Ts...>>> : is_callable_impl<Ts...> {};\n\ntemplate <>\nstruct is_callable<void> {  // auto\n  using type = policy<void>::requires_<call_operator_with_one_argument>;\n};\n\ntemplate <class... Ts>\nusing callable = typename is_callable<Ts...>::type;\n\n}  // concepts\n\n#endif\n"
  },
  {
    "path": "include/boost/di/concepts/configurable.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CONCEPTS_CONFIGURABLE_HPP\n#define BOOST_DI_CONCEPTS_CONFIGURABLE_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/concepts/callable.hpp\"\n#include \"boost/di/concepts/providable.hpp\"\n\nnamespace concepts {\n\ntemplate <class>\nstruct policies {};\nstruct providable_type {};\nstruct callable_type {};\n\ntemplate <class>\nstruct config {\n  template <class...>\n  struct requires_ : aux::false_type {};\n};\n\ntemplate <class TConfig>\nstruct injector {\n  using config = TConfig;\n  using deps = aux::type_list<>;\n  template <class T>\n  T create() const;\n};\n\naux::false_type configurable_impl(...);\n\ntemplate <class T>\nauto configurable_impl(T &&)\n    -> aux::is_valid_expr<decltype(T::provider((injector<T>*)0)), decltype(T::policies((injector<T>*)0))>;\n\ntemplate <class T1, class T2>\nstruct get_configurable_error : aux::type_list<T1, T2> {};\n\ntemplate <class T>\nstruct get_configurable_error<aux::true_type, T> {\n  using type = T;\n};\n\ntemplate <class T>\nstruct get_configurable_error<T, aux::true_type> {\n  using type = T;\n};\n\ntemplate <>\nstruct get_configurable_error<aux::true_type, aux::true_type> : aux::true_type {};\n\ntemplate <class T>\nauto is_configurable(const aux::true_type&) {\n  return typename get_configurable_error<decltype(providable<decltype(T::provider((injector<T>*)0))>()),\n                                         decltype(callable<decltype(T::policies((injector<T>*)0))>())>::type{};\n}\n\ntemplate <class T>\nauto is_configurable(const aux::false_type&) {\n  return typename config<T>::template requires_<provider<providable_type(...)>, policies<callable_type(...)>>{};\n}\n\ntemplate <class T>\nstruct configurable__ {\n  using type = decltype(is_configurable<T>(decltype(configurable_impl(aux::declval<T>())){}));\n};\n\ntemplate <class T>\nusing configurable = typename configurable__<T>::type;\n\n}  // concepts\n\n#endif\n"
  },
  {
    "path": "include/boost/di/concepts/creatable.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CONCEPTS_CREATABLE_HPP\n#define BOOST_DI_CONCEPTS_CREATABLE_HPP\n\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n\n#define __BOOST_DI_CONCEPTS_CREATABLE_ERROR_MSG __BOOST_DI_DEPRECATED(\"creatable constraint not satisfied\")\n\nnamespace concepts {\n\ntemplate <class T>\nstruct abstract_type {\n  struct is_not_bound {\n    operator T*() const {\n      using constraint_not_satisfied = is_not_bound;\n      return constraint_not_satisfied{}.error();\n    }\n\n    // clang-format off\n    static inline T*\n\terror(_ = \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\");\n    // clang-format on\n  };\n\n  template <class TName>\n  struct named {\n    struct is_not_bound {\n      operator T*() const {\n        using constraint_not_satisfied = is_not_bound;\n        return constraint_not_satisfied{}.error();\n      }\n\n      // clang-format off\n      static inline T*\n\t  error(_ = \"type is not bound, did you forget to add: 'di::bind<interface>.named(name).to<implementation>()'?\");\n      // clang-format on\n    };\n  };\n};\n\ntemplate <class TScope, class T>\nstruct scoped {\n  template <class To>\n  struct is_not_convertible_to {\n    operator To() const {\n      using constraint_not_satisfied = is_not_convertible_to;\n      return constraint_not_satisfied{}.error();\n    }\n\n    // clang-format off\n    static inline To\n\terror(_ = \"scoped object is not convertible to the requested type, did you mistake the scope: 'di::bind<T>.in(scope)'?\");\n    // clang-format on\n  };\n};\n\ntemplate <class T>\nstruct scoped<scopes::instance, T> {\n  template <class To>\n  struct is_not_convertible_to {\n    operator To() const {\n      using constraint_not_satisfied = is_not_convertible_to;\n      return constraint_not_satisfied{}.error();\n    }\n\n    // clang-format off\n    static inline To\n\terror(_ = \"instance is not convertible to the requested type, verify binding: 'di::bind<T>.to(value)'?\");\n    // clang-format on\n  };\n};\n\ntemplate <class T>\nstruct type {\n  struct has_ambiguous_number_of_constructor_parameters {\n    template <int Given>\n    struct given {\n      template <int Expected>\n      struct expected {\n        operator T*() const {\n          using constraint_not_satisfied = expected;\n          return constraint_not_satisfied{}.error();\n        }\n\n        // clang-format off\n        static inline T*\n\t\terror(_ = \"verify BOOST_DI_INJECT_TRAITS or di::ctor_traits\");\n        // clang-format on\n      };\n    };\n  };\n\n  struct has_to_many_constructor_parameters {\n    template <int TMax>\n    struct max {\n      operator T*() const {\n        using constraint_not_satisfied = max;\n        return constraint_not_satisfied{}.error();\n      }\n\n      // clang-format off\n      static inline T*\n\t  error(_ = \"increase BOOST_DI_CFG_CTOR_LIMIT_SIZE value or reduce number of constructor parameters\");\n      // clang-format on\n    };\n  };\n\n  struct is_not_exposed {\n    operator T() const {\n      using constraint_not_satisfied = is_not_exposed;\n      return constraint_not_satisfied{}.error();\n    }\n\n    // clang-format off\n      static inline T\n\t  error(_ = \"type is not exposed, did you forget to add: 'di::injector<T>'?\");\n    // clang-format on\n  };\n\n  template <class TName>\n  struct named {\n    struct is_not_exposed {\n      operator T() const {\n        using constraint_not_satisfied = is_not_exposed;\n        return constraint_not_satisfied{}.error();\n      }\n\n      // clang-format off\n      static inline T\n\t  error(_ = \"type is not exposed, did you forget to add: 'di::injector<BOOST_DI_EXPOSE((named = name)T)>'?\");\n      // clang-format on\n    };\n  };\n};\n\ntemplate <class>\nstruct ctor_size;\n\ntemplate <class TInit, class... TCtor>\nstruct ctor_size<aux::pair<TInit, aux::type_list<TCtor...>>> : aux::integral_constant<int, sizeof...(TCtor)> {};\n\ntemplate <class... TCtor>\nstruct ctor_size<aux::type_list<TCtor...>> : aux::integral_constant<int, sizeof...(TCtor)> {};\n\ntemplate <class T>\nusing ctor_size_t = ctor_size<typename type_traits::ctor<T, type_traits::ctor_impl_t<aux::is_constructible, T>>::type>;\n\ntemplate <class TInitialization, class TName, class _, class TCtor, class T = aux::decay_t<_>>\nstruct creatable_error_impl\n    : aux::conditional_t<\n          aux::is_polymorphic<T>::value,\n          aux::conditional_t<aux::is_same<TName, no_name>::value, typename abstract_type<T>::is_not_bound,\n                             typename abstract_type<T>::template named<TName>::is_not_bound>,\n          aux::conditional_t<ctor_size_t<T>::value == ctor_size<TCtor>::value,\n                             typename type<T>::has_to_many_constructor_parameters::template max<BOOST_DI_CFG_CTOR_LIMIT_SIZE>,\n                             typename type<T>::has_ambiguous_number_of_constructor_parameters::template given<\n                                 ctor_size<TCtor>::value>::template expected<ctor_size_t<T>::value>>> {};\n\ntemplate <class TInit, class T, class... TArgs>\nstruct creatable {\n  static constexpr auto value = aux::is_constructible<T, TArgs...>::value;\n};\n\ntemplate <class T, class... TArgs>\nstruct creatable<type_traits::uniform, T, TArgs...> {\n  static constexpr auto value = aux::is_braces_constructible<T, TArgs...>::value;\n};\n\ntemplate <class TInitialization, class TName, class T, class... TArgs>\nT creatable_error() {\n  return creatable_error_impl<TInitialization, TName, T, aux::type_list<TArgs...>>{};\n}\n\n}  // concepts\n\n#endif\n"
  },
  {
    "path": "include/boost/di/concepts/providable.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CONCEPTS_PROVIDABLE_HPP\n#define BOOST_DI_CONCEPTS_PROVIDABLE_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n#include \"boost/di/type_traits/memory_traits.hpp\"\n\nnamespace concepts {\n\nstruct get {};\nstruct is_creatable {};\n\ntemplate <class>\nstruct provider {\n  template <class...>\n  struct requires_ : aux::false_type {};\n};\n\ntemplate <class T>\ntypename provider<T>::template requires_<get, is_creatable> providable_impl(...);\n\ntemplate <class T>\nauto providable_impl(T&& t)\n    -> aux::is_valid_expr<decltype(t.template get<_>(type_traits::direct{}, type_traits::heap{})),\n                          decltype(t.template get<_>(type_traits::direct{}, type_traits::heap{}, int{})),\n                          decltype(t.template get<_>(type_traits::uniform{}, type_traits::stack{})),\n                          decltype(t.template get<_>(type_traits::uniform{}, type_traits::stack{}, int{})),\n                          decltype(T::template is_creatable<type_traits::direct, type_traits::heap, _>::value),\n                          decltype(T::template is_creatable<type_traits::uniform, type_traits::stack, _, int>::value)>;\n\ntemplate <class T>\nstruct providable__ {\n  using type = decltype(providable_impl<T>(aux::declval<T>()));\n};\n\ntemplate <class T>\nusing providable = typename providable__<T>::type;\n\n}  // concepts\n\n#endif\n"
  },
  {
    "path": "include/boost/di/concepts/scopable.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CONCEPTS_SCOPABLE_HPP\n#define BOOST_DI_CONCEPTS_SCOPABLE_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/type_traits/memory_traits.hpp\"\n\nnamespace concepts {\n\ntemplate <class...>\nstruct scope {\n  struct is_referable {};\n  struct try_create {};\n  struct create {};\n\n  template <class...>\n  struct requires_ : aux::false_type {};\n};\n\ntemplate <class T>\nstruct provider__ {\n  template <class TMemory = type_traits::heap>\n  aux::conditional_t<aux::is_same<TMemory, type_traits::stack>::value, T, T*> try_get(const TMemory& = {}) const;\n\n  template <class TMemory = type_traits::heap>\n  T* get(const TMemory& = {}) const {\n    return nullptr;\n  }\n};\n\ntemplate <class T>\ntypename scope<T>::template requires_<typename scope<_, _>::is_referable, typename scope<_, _>::try_create,\n                                      typename scope<_, _>::create>\nscopable_impl(...);\n\ntemplate <class T>\nauto scopable_impl(T &&)\n    -> aux::is_valid_expr<typename T::template scope<_, _>::template is_referable<_>,\n                          decltype(T::template scope<_, _>::template try_create<_, _>(provider__<_>{})),\n                          decltype(aux::declval<typename T::template scope<_, _>>().template create<_, _>(provider__<_>{}))>;\n\ntemplate <class T>\nstruct scopable__ {\n  using type = decltype(scopable_impl<T>(aux::declval<T>()));\n};\n\ntemplate <class T>\nusing scopable = typename scopable__<T>::type;\n\n}  // concepts\n\n#endif\n"
  },
  {
    "path": "include/boost/di/config.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CONFIG_HPP\n#define BOOST_DI_CONFIG_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/concepts/callable.hpp\"\n#include \"boost/di/core/pool.hpp\"\n#include \"boost/di/providers/stack_over_heap.hpp\"\n\n#if !defined(BOOST_DI_CFG)                       // __pph__\n#define BOOST_DI_CFG BOOST_DI_NAMESPACE::config  // __pph__\n#endif                                           // __pph__\n\ntemplate <class... TPolicies, __BOOST_DI_REQUIRES_MSG(concepts::callable<TPolicies...>) = 0>\ninline auto make_policies(TPolicies... args) noexcept {\n  return core::pool_t<TPolicies...>(static_cast<TPolicies&&>(args)...);\n}\n\nstruct config {\n  template <class T>\n  static auto provider(T*) noexcept {\n    return providers::stack_over_heap{};\n  }\n  template <class T>\n  static auto policies(T*) noexcept {\n    return make_policies();\n  }\n};\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/any_type.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CORE_ANY_TYPE_HPP\n#define BOOST_DI_CORE_ANY_TYPE_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/core/binder.hpp\"\n#include \"boost/di/fwd.hpp\"\n\nnamespace core {\n\ntemplate <class T, class TInjector, class TError = aux::false_type>\nstruct is_referable__ {\n  static constexpr auto value = dependency__<binder::resolve_t<TInjector, T>>::template is_referable<T>::value;\n};\n\ntemplate <class T, class TInjector>\nstruct is_referable__<T, TInjector, aux::true_type> {\n  static constexpr auto value = true;\n};\n\ntemplate <class T, class TInjector, class TError>\nstruct is_creatable__ {\n  static constexpr auto value = injector__<TInjector>::template is_creatable<T>::value;\n};\n\ntemplate <class T, class TInjector>\nstruct is_creatable__<T, TInjector, aux::false_type> {\n  static constexpr auto value = true;\n};\n\ntemplate <class, class>\nstruct is_copy_ctor__ : aux::false_type {};\n\ntemplate <class T>\nstruct is_copy_ctor__<T, T> : aux::true_type {};\n\n#if defined(__GCC__) || defined(__MSVC__)  // __pph__\ntemplate <class T>\nstruct is_copy_ctor__<T, const T> : aux::true_type {};\n#endif  // __pph__\n\ntemplate <class TParent, class TInjector, class TError = aux::false_type>\nstruct any_type {\n  template <class T, class = __BOOST_DI_REQUIRES(is_creatable__<T, TInjector, TError>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T>{});\n  }\n\n  const TInjector& injector_;\n};\n\ntemplate <class TParent, class TInjector, class TError = aux::false_type, class TRefError = aux::false_type>\nstruct any_type_ref {\n  template <class T, class = __BOOST_DI_REQUIRES(is_creatable__<T, TInjector, TError>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T>{});\n  }\n\n#if defined(__GCC__)  // __pph__\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<T&&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T&&, TInjector, TError>::value)>\n  operator T &&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T&&>{});\n  }\n#endif  // __pph__\n\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<T&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T&, TInjector, TError>::value)>\n  operator T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T&>{});\n  }\n\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<const T&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<const T&, TInjector, TError>::value)>\n  operator const T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<const T&>{});\n  }\n\n  const TInjector& injector_;\n};\n\ntemplate <class TParent, class TInjector, class TError = aux::false_type>\nstruct any_type_1st {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T, TInjector, TError>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T>{});\n  }\n\n  const TInjector& injector_;\n};\n\ntemplate <class TParent, class TInjector, class TError = aux::false_type, class TRefError = aux::false_type>\nstruct any_type_1st_ref {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T, TInjector, TError>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T>{});\n  }\n\n#if defined(__GCC__)  // __pph__\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<T&&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T&&, TInjector, TError>::value)>\n  operator T &&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T&&>{});\n  }\n#endif  // __pph__\n\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<T&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T&, TInjector, TError>::value)>\n  operator T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T&>{});\n  }\n\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<const T&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<const T&, TInjector, TError>::value)>\n  operator const T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<const T&>{});\n  }\n\n  const TInjector& injector_;\n};\n\nnamespace successful {\n\ntemplate <class TParent, class TInjector>\nstruct any_type {\n  template <class T>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T>{});\n  }\n\n  const TInjector& injector_;\n};\n\ntemplate <class TParent, class TInjector>\nstruct any_type_ref {\n  template <class T>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T>{});\n  }\n\n#if defined(__GCC__)  // __pph__\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<T&&, TInjector>::value)>\n  operator T &&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T&&>{});\n  }\n#endif  // __pph__\n\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<T&, TInjector>::value)>\n  operator T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T&>{});\n  }\n\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<const T&, TInjector>::value)>\n  operator const T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<const T&>{});\n  }\n\n  const TInjector& injector_;\n};\n\ntemplate <class TParent, class TInjector>\nstruct any_type_1st {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T>{});\n  }\n\n  const TInjector& injector_;\n};\n\ntemplate <class TParent, class TInjector>\nstruct any_type_1st_ref {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T>{});\n  }\n\n#if defined(__GCC__)  // __pph__\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<T&&, TInjector>::value)>\n  operator T &&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T&&>{});\n  }\n#endif  // __pph__\n\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<T&, TInjector>::value)>\n  operator T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T&>{});\n  }\n\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<const T&, TInjector>::value)>\n  operator const T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<const T&>{});\n  }\n\n  const TInjector& injector_;\n};\n\n}  // successful\n\ntemplate <class>\nstruct any_type_fwd {\n  template <class T>\n  operator T();\n\n private:\n  template <class T>\n  operator const T&() const;\n};\n\ntemplate <class>\nstruct any_type_ref_fwd {\n  template <class T>\n  operator T();\n\n  template <class T>\n  operator T&() const;\n\n#if defined(__GCC__)  // __pph__\n  template <class T>\n  operator T &&() const;\n#endif  // __pph__\n\n  template <class T>\n  operator const T&() const;\n};\n\ntemplate <class TParent>\nstruct any_type_1st_fwd {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T();\n\n private:\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator const T&() const;\n};\n\ntemplate <class TParent>\nstruct any_type_1st_ref_fwd {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T();\n\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T&() const;\n\n#if defined(__GCC__)  // __pph__\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T &&() const;\n#endif  // __pph__\n\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator const T&() const;\n};\n\n}  // core\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/array.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CORE_ARRAY_HPP\n#define BOOST_DI_CORE_ARRAY_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n#include \"boost/di/type_traits/named_traits.hpp\"\n#include \"boost/di/type_traits/rebind_traits.hpp\"\n\nnamespace core {\n\ntemplate <class T, class... Ts>\nstruct array_impl {\n  using boost_di_inject__ = aux::type_list<Ts...>;\n  explicit array_impl(type_traits::remove_named_t<Ts>&&... args)\n      : array{static_cast<type_traits::remove_named_t<Ts>&&>(args)...} {}\n  T array[sizeof...(Ts)];\n};\n\ntemplate <class T, class... Ts>\nstruct array<T(), Ts...> : T {\n  using value_type = typename T::value_type;\n  using array_t = array_impl<value_type, type_traits::rebind_traits_t<value_type, Ts>...>;\n  using boost_di_inject__ = aux::type_list<array_t&&>;\n\n  template <__BOOST_DI_REQUIRES(\n                aux::is_constructible<T, std::move_iterator<value_type*>, std::move_iterator<value_type*>>::value) = 0>\n  explicit array(array_t&& a)\n      : T(std::move_iterator<value_type*>(a.array), std::move_iterator<value_type*>(a.array + sizeof...(Ts))) {}\n};\n\ntemplate <class T>\nstruct array<T()> : T {\n  using boost_di_inject__ = aux::type_list<>;\n};\n\n}  // core\n\nnamespace type_traits {\ntemplate <class _, class T, class... Ts>\nstruct ctor_traits__<core::array<_, Ts...>, T, aux::false_type>\n    : type_traits::ctor_traits__<core::array<aux::remove_smart_ptr_t<aux::remove_qualifiers_t<T>>(), Ts...>> {};\n}  // type_traits\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/binder.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CORE_BINDER_HPP\n#define BOOST_DI_CORE_BINDER_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/core/dependency.hpp\"\n#include \"boost/di/scopes/deduce.hpp\"\n\nnamespace core {\n\nstruct binder {\n  template <class TDefault, class>\n  static TDefault resolve_impl(...) noexcept {\n    return {};\n  }\n\n  template <class, class TConcept, class TDependency>\n  static decltype(auto) resolve_impl(aux::pair<TConcept, TDependency>* dep) noexcept {\n    return static_cast<TDependency&>(*dep);\n  }\n\n  template <class, class TConcept, class TScope, class TExpected, class TGiven, class TName>\n  static decltype(auto) resolve_impl(\n      aux::pair<TConcept, dependency<TScope, TExpected, TGiven, TName, override>>* dep) noexcept {\n    return static_cast<dependency<TScope, TExpected, TGiven, TName, override>&>(*dep);\n  }\n\n  template <class TDefault, class>\n  static TDefault resolve_impl__(...);\n\n  template <class, class TConcept, class TDependency>\n  static TDependency resolve_impl__(aux::pair<TConcept, TDependency>*);\n\n  template <class, class TConcept, class TScope, class TExpected, class TGiven, class TName>\n  static dependency<TScope, TExpected, TGiven, TName, override> resolve_impl__(\n      aux::pair<TConcept, dependency<TScope, TExpected, TGiven, TName, override>>*);\n\n  template <class TDeps, class T, class TName, class TDefault>\n  struct resolve__ {\n    using type = decltype(resolve_impl__<TDefault, dependency_concept<aux::decay_t<T>, TName>>((TDeps*)0));\n  };\n\n/// Wknd for https://llvm.org/bugs/show_bug.cgi?id=28844\n#if (defined(__CLANG__) && __CLANG__ >= 3'9)  // __pph__\n  template <class TDeps, class T>\n  static T& resolve_(TDeps* deps, const aux::type<T&>&) noexcept {\n    return static_cast<T&>(*deps);\n  }\n\n  template <class TDeps, class T>\n  static T resolve_(TDeps*, const aux::type<T>&) noexcept {\n    return {};\n  }\n#endif  // __pph__\n\n  template <class, class T>\n  struct resolve_template_impl {\n    using type = T;\n  };\n\n  template <class TDeps, template <class...> class T, class... Ts>\n  struct resolve_template_impl<TDeps, aux::identity<T<Ts...>>> {\n    using type = T<typename resolve_template_impl<\n        TDeps, aux::remove_qualifiers_t<typename resolve__<\n                   TDeps, Ts, no_name, dependency<scopes::deduce, aux::decay_t<Ts>>>::type::given>>::type...>;\n  };\n\n  template <class T, class TName = no_name, class TDefault = dependency<scopes::deduce, aux::decay_t<T>>, class TDeps>\n  static decltype(auto) resolve(TDeps* deps) noexcept {\n    using dependency = dependency_concept<aux::decay_t<T>, TName>;\n\n/// Wknd for https://llvm.org/bugs/show_bug.cgi?id=28844\n#if (defined(__CLANG__) && __CLANG__ >= 3'9)  // __pph__\n    return resolve_(deps, aux::type<decltype(resolve_impl<TDefault, dependency>((TDeps*)0))>{});\n#else   // __pph__\n    return resolve_impl<TDefault, dependency>(deps);\n#endif  // __pph__\n  }\n\n  template <class TDeps, class T, class TName = no_name, class TDefault = dependency<scopes::deduce, aux::decay_t<T>>>\n  using resolve_t = typename resolve__<TDeps, T, TName, TDefault>::type;\n\n  template <class TDeps, class T>\n  using resolve_template_t = typename resolve_template_impl<TDeps, aux::remove_qualifiers_t<T>>::type;\n};\n\n}  // core\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/bindings.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CORE_BINDINGS_HPP\n#define BOOST_DI_CORE_BINDINGS_HPP\n\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n\nnamespace core {\n\ntemplate <class T, class = typename aux::is_a<injector_base, T>::type>\nstruct bindings_impl;\n\ntemplate <class T>\nstruct bindings_impl<T, aux::true_type> {\n  using type = typename T::deps;\n};\n\ntemplate <class T>\nstruct bindings_impl<T, aux::false_type> {\n  using type = aux::type_list<T>;\n};\n\n#if defined(__MSVC__)  // __pph__\ntemplate <class... Ts>\nstruct bindings : aux::join_t<typename bindings_impl<Ts>::type...> {};\n\ntemplate <class... Ts>\nusing bindings_t = typename bindings<Ts...>::type;\n#else   // __pph__\ntemplate <class... Ts>\nusing bindings_t = aux::join_t<typename bindings_impl<Ts>::type...>;\n#endif  // __pph__\n\n}  // core\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/dependency.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CORE_DEPENDENCY_HPP\n#define BOOST_DI_CORE_DEPENDENCY_HPP\n\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/concepts/boundable.hpp\"\n#include \"boost/di/concepts/scopable.hpp\"\n#include \"boost/di/core/array.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/scopes/deduce.hpp\"\n#include \"boost/di/scopes/instance.hpp\"\n\nnamespace core {\n\ntemplate <class, class>\nstruct dependency_concept {};\n\ntemplate <class T, class TDependency>\nstruct dependency_impl : aux::pair<T, TDependency> {};\n\ntemplate <class T>\nstruct make_dependency_concept {\n  using type = dependency_concept<T, no_name>;\n};\n\ntemplate <class TName, class T>\nstruct make_dependency_concept<named<TName, T>> {\n  using type = dependency_concept<T, TName>;\n};\n\ntemplate <class... Ts, class TName, class TDependency>\nstruct dependency_impl<dependency_concept<concepts::any_of<Ts...>, TName>, TDependency>\n    : aux::pair<dependency_concept<Ts, TName>, TDependency>... {};\n\ntemplate <class... Ts, class TDependency>\nstruct dependency_impl<dependency_concept<aux::type_list<Ts...>, no_name>, TDependency>\n    : aux::pair<typename make_dependency_concept<Ts>::type, TDependency>... {};\n\nstruct override {};\n\ntemplate <class TScope, class TExpected, class TGiven, class TName, class TPriority>\nclass dependency\n    : dependency_base,\n      __BOOST_DI_ACCESS_WKND TScope::template scope<TExpected, TGiven>,\n      public dependency_impl<dependency_concept<TExpected, TName>, dependency<TScope, TExpected, TGiven, TName, TPriority>> {\n  template <class, class, class, class, class>\n  friend class dependency;\n  using scope_t = typename TScope::template scope<TExpected, TGiven>;\n\n  template <class T>\n  using externable = aux::integral_constant<\n      bool, aux::always<T>::value && aux::is_same<TScope, scopes::deduce>::value && aux::is_same<TExpected, TGiven>::value>;\n\n  template <class T>\n  struct ref_traits {\n    using type = T;\n  };\n\n  template <int N>\n  struct ref_traits<const char (&)[N]> {\n    using type = TExpected;\n  };\n\n  template <class R, class... Ts>\n  struct ref_traits<R (&)(Ts...)> {\n    using type = TExpected;\n  };\n\n  template <class T>\n  struct ref_traits<std::shared_ptr<T>&> {\n    using type = std::shared_ptr<T>;\n  };\n\n  template <class T, class>\n  struct deduce_traits {\n    using type = T;\n  };\n\n  template <class T>\n  struct deduce_traits<deduced, T> {\n    using type = aux::decay_t<T>;\n  };\n\n  template <class T, class U>\n  using deduce_traits_t = typename deduce_traits<T, U>::type;\n\n public:\n  using scope = TScope;\n  using expected = TExpected;\n  using given = TGiven;\n  using name = TName;\n  using priority = TPriority;\n\n  dependency() noexcept {}\n\n  template <class T>\n  explicit dependency(T&& object) noexcept : scope_t(static_cast<T&&>(object)) {}\n\n  template <class T, __BOOST_DI_REQUIRES(aux::is_same<TName, no_name>::value && !aux::is_same<T, no_name>::value) = 0>\n  auto named() noexcept {\n    return dependency<TScope, TExpected, TGiven, T, TPriority>{static_cast<dependency&&>(*this)};\n  }\n\n  template <class T, __BOOST_DI_REQUIRES(aux::is_same<TName, no_name>::value && !aux::is_same<T, no_name>::value) = 0>\n  auto named(const T&) noexcept {\n    return dependency<TScope, TExpected, TGiven, T, TPriority>{static_cast<dependency&&>(*this)};\n  }\n\n  template <class T, __BOOST_DI_REQUIRES_MSG(concepts::scopable<T>) = 0>\n  auto in(const T&)noexcept {\n    return dependency<T, TExpected, TGiven, TName, TPriority>{};\n  }\n\n  template <class T, __BOOST_DI_REQUIRES(!aux::is_array<TExpected, T>::value) = 0,\n            __BOOST_DI_REQUIRES_MSG(concepts::boundable<TExpected, T>) = 0>\n  auto to() noexcept {\n    return dependency<TScope, TExpected, T, TName, TPriority>{};\n  }\n\n  template <class... Ts, __BOOST_DI_REQUIRES(aux::is_array<TExpected, Ts...>::value) = 0>\n  auto to() noexcept {\n    using type = aux::remove_pointer_t<aux::remove_extent_t<TExpected>>;\n    return dependency<TScope, array<type>, array<type, Ts...>, TName, TPriority>{};\n  }\n\n  template <class T, __BOOST_DI_REQUIRES_MSG(concepts::boundable<TExpected, T>) = 0>\n  auto to(std::initializer_list<T>&& object) noexcept {\n    using type = aux::remove_pointer_t<aux::remove_extent_t<TExpected>>;\n    using dependency = dependency<scopes::instance, array<type>, std::initializer_list<T>, TName, TPriority>;\n    return dependency{object};\n  }\n\n  template <class T, __BOOST_DI_REQUIRES(externable<T>::value) = 0,\n            __BOOST_DI_REQUIRES_MSG(concepts::boundable<deduce_traits_t<TExpected, T>, aux::decay_t<T>, aux::valid<>>) = 0>\n  auto to(T&& object) noexcept {\n    using dependency =\n        dependency<scopes::instance, deduce_traits_t<TExpected, T>, typename ref_traits<T>::type, TName, TPriority>;\n    return dependency{static_cast<T&&>(object)};\n  }\n\n  template <class TConcept, class T, __BOOST_DI_REQUIRES(externable<T>::value) = 0,\n            __BOOST_DI_REQUIRES_MSG(concepts::boundable<deduce_traits_t<TExpected, T>, aux::decay_t<T>, aux::valid<>>) = 0>\n  auto to(T&& object) noexcept {\n    using dependency = dependency<scopes::instance, deduce_traits_t<concepts::any_of<TExpected, TConcept>, T>,\n                                  typename ref_traits<T>::type, TName, TPriority>;\n    return dependency{static_cast<T&&>(object)};\n  }\n\n  template <template <class...> class T>\n  auto to() noexcept {\n    return dependency<TScope, TExpected, aux::identity<T<>>, TName, TPriority>{};\n  }\n\n  template <class...>\n  dependency& to(...) const noexcept;\n\n  auto operator[](const override&) noexcept {\n    return dependency<TScope, TExpected, TGiven, TName, override>{static_cast<dependency&&>(*this)};\n  }\n\n#if defined(__cpp_variable_templates)  // __pph__\n  dependency& operator()() noexcept { return *this; }\n#endif  // __pph__\n\n#if defined(__MSVC__)  // __pph__\n public:\n#else   // __pph__\n protected:\n#endif  // __pph__\n  using scope_t::is_referable;\n  using scope_t::create;\n  using scope_t::try_create;\n  template <class, class>\n  static void try_create(...);\n};\n\n}  // core\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/injector.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CORE_INJECTOR_HPP\n#define BOOST_DI_CORE_INJECTOR_HPP\n\n#if !defined(__BOOST_DI_CORE_INJECTOR_POLICY)\n\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/concepts/creatable.hpp\"\n#include \"boost/di/config.hpp\"\n#include \"boost/di/core/any_type.hpp\"\n#include \"boost/di/core/binder.hpp\"\n#include \"boost/di/core/bindings.hpp\"\n#include \"boost/di/core/policy.hpp\"\n#include \"boost/di/core/pool.hpp\"\n#include \"boost/di/core/provider.hpp\"\n#include \"boost/di/core/wrapper.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n\nnamespace core {\n\nstruct from_injector {};\nstruct from_deps {};\nstruct init {};\nstruct with_error {};\n\ntemplate <class>\nstruct copyable;\n\ntemplate <class T>\nstruct copyable_impl\n    : aux::conditional<\n          aux::is_default_constructible<typename T::scope::template scope<typename T::expected, typename T::given>>::value,\n          aux::type_list<>, aux::type_list<T>> {};\n\ntemplate <class... TDeps>\nstruct copyable<aux::type_list<TDeps...>> : aux::join<typename copyable_impl<TDeps>::type...> {};\n\ntemplate <class TDeps>\nusing copyable_t = typename copyable<TDeps>::type;\n\ntemplate <class T, class>\nstruct referable {\n  using type = T;\n};\n\ntemplate <class T, class TDependency>\nstruct referable<T&, TDependency> {\n  using type = aux::conditional_t<TDependency::template is_referable<T&>::value, T&, T>;\n};\n\ntemplate <class T, class TDependency>\nstruct referable<const T&, TDependency> {\n  using type = aux::conditional_t<TDependency::template is_referable<const T&>::value, const T&, T>;\n};\n\n#if defined(__MSVC__)  // __pph__\ntemplate <class T, class TDependency>\nstruct referable<T&&, TDependency> {\n  using type = aux::conditional_t<TDependency::template is_referable<T&&>::value, T&&, T>;\n};\n#endif  // __pph__\n\ntemplate <class T, class TDependency>\nusing referable_t = typename referable<T, TDependency>::type;\n\n#if defined(__MSVC__)  // __pph__\ntemplate <class T, class TInjector>\ninline auto build(TInjector&& injector) noexcept {\n  return T{static_cast<TInjector&&>(injector)};\n}\n#endif  // __pph__\n\n#define __BOOST_DI_CORE_INJECTOR_POLICY(...) __VA_ARGS__ __BOOST_DI_CORE_INJECTOR_POLICY_ELSE\n#define __BOOST_DI_CORE_INJECTOR_POLICY_ELSE(...)\n#define __BOOST_DI_INJECTOR_ITERATE\n\n#endif\n\ntemplate <class TConfig __BOOST_DI_CORE_INJECTOR_POLICY(, class TPolicies = pool<>)(), class... TDeps>\nclass injector __BOOST_DI_CORE_INJECTOR_POLICY()(<TConfig, pool<>, TDeps...>) : injector_base, pool<bindings_t<TDeps...>> {\n  friend struct binder;\n  template <class>\n  friend struct pool;\n  using pool_t = pool<bindings_t<TDeps...>>;\n\n protected:\n  template <class T, class TName = no_name, class TIsRoot = aux::false_type>\n  struct is_creatable {\n    using dependency_t = binder::resolve_t<injector, T, TName>;\n    using ctor_t =\n        typename type_traits::ctor_traits__<binder::resolve_template_t<injector, typename dependency_t::given>, T>::type;\n    using ctor_args_t = typename ctor_t::second::second;\n\n    static constexpr auto value =\n        aux::is_convertible<decltype(dependency__<dependency_t>::template try_create<T, TName>(\n                                try_provider<ctor_t, injector, decltype(TConfig::provider((injector*)0))>{})),\n                            T>::value\n            __BOOST_DI_CORE_INJECTOR_POLICY(\n                &&policy::template try_call<arg_wrapper<T, TName, TIsRoot, ctor_args_t, dependency_t, pool_t>,\n                                            TPolicies>::value)();\n  };\n\n public:\n  using deps = bindings_t<TDeps...>;\n  using config = TConfig;\n\n  injector(injector &&) = default;\n\n  template <class... TArgs>\n  explicit injector(const init&, TArgs... args) noexcept : injector{from_deps{}, static_cast<TArgs&&>(args)...} {}\n\n  template <class TConfig_, class TPolicies_, class... TDeps_>\n  explicit injector(injector<TConfig_, TPolicies_, TDeps_...> && other) noexcept\n      : injector{from_injector{}, static_cast<injector<TConfig_, TPolicies_, TDeps_...>&&>(other), deps{}} {}\n\n  template <class T, __BOOST_DI_REQUIRES(is_creatable<T, no_name, aux::true_type>::value) = 0>\n  T create() const {\n    return __BOOST_DI_TYPE_WKND(T) create_successful_impl<aux::true_type>(aux::type<T>{});\n  }\n\n  template <class T, __BOOST_DI_REQUIRES(!is_creatable<T, no_name, aux::true_type>::value) = 0>\n  __BOOST_DI_CONCEPTS_CREATABLE_ERROR_MSG T\n      // clang-format off\n  create\n      // clang-format on\n      () const {\n    return __BOOST_DI_TYPE_WKND(T) create_impl<aux::true_type>(aux::type<T>{});\n  }\n\n  template <template <class...> class T,\n            __BOOST_DI_REQUIRES(\n                is_creatable<binder::resolve_template_t<injector, aux::identity<T<>>>, no_name, aux::true_type>::value) = 0>\n  binder::resolve_template_t<injector, aux::identity<T<>>>\n      // clang-format off\n  create()\n      // clang-format on\n      const {\n    using type = binder::resolve_template_t<injector, aux::identity<T<>>>;\n    return __BOOST_DI_TYPE_WKND(type) create_successful_impl<aux::true_type>(aux::type<type>{});\n  }\n\n  template <template <class...> class T,\n            __BOOST_DI_REQUIRES(\n                !is_creatable<binder::resolve_template_t<injector, aux::identity<T<>>>, no_name, aux::true_type>::value) = 0>\n  __BOOST_DI_CONCEPTS_CREATABLE_ERROR_MSG binder::resolve_template_t<injector, aux::identity<T<>>>\n      // clang-format off\n  create()\n      // clang-format on\n      const {\n    using type = binder::resolve_template_t<injector, aux::identity<T<>>>;\n    return __BOOST_DI_TYPE_WKND(type) create_impl<aux::true_type>(aux::type<type>{});\n  }\n\n protected:\n  template <class T>\n  struct try_create {\n    using type = aux::conditional_t<is_creatable<T>::value, T, void>;\n  };\n\n  template <class TParent>\n  struct try_create<any_type_fwd<TParent>> {\n    using type = any_type<TParent, injector, with_error>;\n  };\n\n  template <class TParent>\n  struct try_create<any_type_ref_fwd<TParent>> {\n    using type = any_type_ref<TParent, injector, with_error>;\n  };\n\n  template <class TParent>\n  struct try_create<any_type_1st_fwd<TParent>> {\n    using type = any_type_1st<TParent, injector, with_error>;\n  };\n\n  template <class TParent>\n  struct try_create<any_type_1st_ref_fwd<TParent>> {\n    using type = any_type_1st_ref<TParent, injector, with_error>;\n  };\n\n  template <class TName, class T>\n  struct try_create<BOOST_DI_NAMESPACE::named<TName, T>> {\n    using type = aux::conditional_t<is_creatable<T, TName>::value, T, void>;\n  };\n\n  template <class T>\n  struct try_create<self<T>> {\n    using type = injector;\n  };\n\n  template <class TIsRoot = aux::false_type, class T>\n  auto create_impl(const aux::type<T>&) const {\n    return create_impl__<TIsRoot, T>();\n  }\n\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_fwd<TParent>>&) const {\n    return any_type<TParent, injector>{*this};\n  }\n\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_ref_fwd<TParent>>&) const {\n    return any_type_ref<TParent, injector, aux::false_type, aux::true_type>{*this};\n  }\n\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_1st_fwd<TParent>>&) const {\n    return any_type_1st<TParent, injector>{*this};\n  }\n\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_1st_ref_fwd<TParent>>&) const {\n    return any_type_1st_ref<TParent, injector, aux::false_type, aux::true_type>{*this};\n  }\n\n  template <class TIsRoot = aux::false_type, class T, class TName>\n  auto create_impl(const aux::type<BOOST_DI_NAMESPACE::named<TName, T>>&) const {\n    return create_impl__<TIsRoot, T, TName>();\n  }\n\n  template <class TIsRoot = aux::false_type, class T>\n  auto create_successful_impl(const aux::type<T>&) const {\n    return create_successful_impl__<TIsRoot, T>();\n  }\n\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_fwd<TParent>>&) const {\n    return successful::any_type<TParent, injector>{*this};\n  }\n\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_ref_fwd<TParent>>&) const {\n    return successful::any_type_ref<TParent, injector>{*this};\n  }\n\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_1st_fwd<TParent>>&) const {\n    return successful::any_type_1st<TParent, injector>{*this};\n  }\n\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_1st_ref_fwd<TParent>>&) const {\n    return successful::any_type_1st_ref<TParent, injector>{*this};\n  }\n\n  template <class TIsRoot = aux::false_type, class T, class TName>\n  auto create_successful_impl(const aux::type<BOOST_DI_NAMESPACE::named<TName, T>>&) const {\n    return create_successful_impl__<TIsRoot, T, TName>();\n  }\n\n  template <class TIsRoot = aux::false_type, class T>\n  decltype(auto) create_successful_impl(const aux::type<self<T>>&) const {\n    return *this;\n  }\n\n private:\n  template <class... TArgs>\n  explicit injector(const from_deps&, TArgs... args) noexcept\n      : pool_t{copyable_t<deps>{}, core::pool_t<TArgs...>{static_cast<TArgs&&>(args)...}} {}\n\n  template <class TInjector, class... TArgs>\n  explicit injector(const from_injector&, TInjector&& injector, const aux::type_list<TArgs...>&) noexcept\n#if defined(__MSVC__)  // __pph__\n      : pool_t {\n    copyable_t<deps>{}, pool_t { build<TArgs>(static_cast<TInjector&&>(injector))... }\n  }\n#else   // __pph__\n      : pool_t {\n    copyable_t<deps>{}, pool_t { TArgs{static_cast<TInjector&&>(injector)}... }\n  }\n#endif  // __pph__\n  {}\n\n  template <class TIsRoot = aux::false_type, class T, class TName = no_name>\n  auto create_impl__() const {\n    auto&& dependency = binder::resolve<T, TName>((injector*)this);\n    using dependency_t = aux::remove_reference_t<decltype(dependency)>;\n    using ctor_t =\n        typename type_traits::ctor_traits__<binder::resolve_template_t<injector, typename dependency_t::given>, T>::type;\n    using provider_t = core::provider<ctor_t, TName, injector>;\n    using wrapper_t =\n        decltype(static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this}));\n    __BOOST_DI_CORE_INJECTOR_POLICY(\n        using ctor_args_t = typename ctor_t::second::second;\n        policy::template call<arg_wrapper<T, TName, TIsRoot, ctor_args_t, dependency_t, pool_t>>(TConfig::policies(this));)\n    () return wrapper<T, wrapper_t>{\n        static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this})};\n  }\n\n  template <class TIsRoot = aux::false_type, class T, class TName = no_name>\n  auto create_successful_impl__() const {\n    auto&& dependency = binder::resolve<T, TName>((injector*)this);\n    using dependency_t = aux::remove_reference_t<decltype(dependency)>;\n    using ctor_t =\n        typename type_traits::ctor_traits__<binder::resolve_template_t<injector, typename dependency_t::given>, T>::type;\n    using provider_t = successful::provider<ctor_t, injector>;\n    using wrapper_t =\n        decltype(static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this}));\n    using create_t = referable_t<T, dependency__<dependency_t>>;\n    __BOOST_DI_CORE_INJECTOR_POLICY(\n        using ctor_args_t = typename ctor_t::second::second;\n        policy::template call<arg_wrapper<T, TName, TIsRoot, ctor_args_t, dependency_t, pool_t>>(TConfig::policies(this));)\n    () return successful::wrapper<create_t, wrapper_t>{\n        static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this})};\n  }\n};\n\n#if defined(__BOOST_DI_INJECTOR_ITERATE)\n#undef BOOST_DI_CORE_INJECTOR_HPP\n#undef __BOOST_DI_INJECTOR_ITERATE\n#undef __BOOST_DI_CORE_INJECTOR_POLICY\n#undef __BOOST_DI_CORE_INJECTOR_POLICY_ELSE\n#define __BOOST_DI_CORE_INJECTOR_POLICY(...) __BOOST_DI_CORE_INJECTOR_POLICY_ELSE\n#define __BOOST_DI_CORE_INJECTOR_POLICY_ELSE(...) __VA_ARGS__\n#include \"boost/di/core/injector.hpp\"\n}  // core\n#endif\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/policy.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef __BOOST_DI_CORE_POLICY_HPP\n#define __BOOST_DI_CORE_POLICY_HPP\n\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/core/binder.hpp\"\n#include \"boost/di/core/pool.hpp\"\n\nnamespace core {\n\ntemplate <class...>\nstruct arg_wrapper;\n\ntemplate <class T, class TName, class TIsRoot, template <class...> class TList, class... TCtor, class TDependency, class TDeps>\nstruct arg_wrapper<T, TName, TIsRoot, TList<TCtor...>, TDependency, TDeps> {\n  using type __BOOST_DI_UNUSED = T;\n  using expected __BOOST_DI_UNUSED = typename TDependency::expected;\n  using given __BOOST_DI_UNUSED = typename TDependency::given;\n  using name __BOOST_DI_UNUSED = TName;\n  using arity __BOOST_DI_UNUSED = aux::integral_constant<int, sizeof...(TCtor)>;\n  using scope __BOOST_DI_UNUSED = typename TDependency::scope;\n  using is_root __BOOST_DI_UNUSED = TIsRoot;\n\n  template <class T_, class TName_, class TDefault_>\n  using resolve = decltype(core::binder::resolve<T_, TName_, TDefault_>((TDeps*)0));\n};\n\ntemplate <class T>\nstruct allow_void : T {};\n\ntemplate <>\nstruct allow_void<void> : aux::true_type {};\n\nclass policy {\n  template <class TArg, class TPolicy, class TPolicies>\n  static void call_impl(const TPolicies& policies) noexcept {\n    static_cast<const TPolicy&>(policies)(TArg{});\n  }\n\n  template <class TArg, class TPolicy>\n  struct try_call_impl : allow_void<decltype((aux::declval<TPolicy>())(aux::declval<TArg>()))> {};\n\n public:\n  template <class, class>\n  struct try_call;\n\n  template <class TArg, class... TPolicies>\n  struct try_call<TArg, pool_t<TPolicies...>> : aux::is_same<aux::bool_list<aux::always<TPolicies>::value...>,\n                                                             aux::bool_list<try_call_impl<TArg, TPolicies>::value...>> {};\n\n  template <class TArg, class... TPolicies>\n  static void call(__BOOST_DI_UNUSED const pool_t<TPolicies...>& policies) noexcept {\n    (void)aux::swallow{0, (call_impl<TArg, TPolicies>(policies), 0)...};\n  }\n};\n\n}  // core\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/pool.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CORE_POOL_HPP\n#define BOOST_DI_CORE_POOL_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n\nnamespace core {\n\ntemplate <class = aux::type_list<>>\nstruct pool;\n\ntemplate <class... TArgs>\nusing pool_t = pool<aux::type_list<TArgs...>>;\n\ntemplate <class... TArgs>\nstruct pool<aux::type_list<TArgs...>> : TArgs... {\n  template <class... Ts>\n  explicit pool(Ts... args) noexcept : Ts(static_cast<Ts&&>(args))... {}\n\n  template <class... Ts, class TPool>\n  pool(const aux::type_list<Ts...>&, TPool p) noexcept : pool(static_cast<Ts&&>(p)...) {\n    (void)p;\n  }\n};\n\n}  // core\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/provider.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CORE_PROVIDER_HPP\n#define BOOST_DI_CORE_PROVIDER_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/concepts/creatable.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/type_traits/memory_traits.hpp\"\n\nnamespace core {\n\n#if (BOOST_DI_CFG_DIAGNOSTICS_LEVEL >= 2)  // __pph__\ntemplate <class T>\nstruct creating {\n  creating() { type(); }\n  static inline T type(_ = \"creating...\");\n};\n#endif  // __pph__\n\ntemplate <class, class, class>\nstruct try_provider;\n\ntemplate <class T, class TInjector, class TProvider, class TInitialization, template <class...> class TList, class... TCtor>\nstruct try_provider<aux::pair<T, aux::pair<TInitialization, TList<TCtor...>>>, TInjector, TProvider> {\n  using injector_t = TInjector;\n\n  template <class>\n  struct is_creatable {\n    static constexpr auto value =\n        TProvider::template is_creatable<TInitialization, T,\n                                         typename injector__<TInjector>::template try_create<TCtor>::type...>::value;\n  };\n\n  template <class TMemory = type_traits::heap>\n  auto get(const TMemory& = {}) const\n      -> aux::enable_if_t<is_creatable<TMemory>::value,\n                          aux::conditional_t<aux::is_same<TMemory, type_traits::stack>::value, T, aux::remove_reference_t<T>*>>;\n};\n\ntemplate <class, class, class>\nstruct provider;\n\ntemplate <class T, class TName, class TInjector, class TInitialization, template <class...> class TList, class... TCtor>\nstruct provider<aux::pair<T, aux::pair<TInitialization, TList<TCtor...>>>, TName, TInjector> {\n  using provider_t = decltype(TInjector::config::provider((TInjector*)0));\n  using injector_t = TInjector;\n\n  template <class, class... TArgs>\n  struct is_creatable {\n    static constexpr auto value = provider_t::template is_creatable<TInitialization, T, TArgs...>::value;\n  };\n\n  template <class TMemory = type_traits::heap>\n  auto get(const TMemory& memory = {}) const {\n    return get_impl(memory, static_cast<const injector__<TInjector>*>(injector_)->create_impl(aux::type<TCtor>{})...);\n  }\n\n  template <class TMemory, class... TArgs, __BOOST_DI_REQUIRES(is_creatable<TMemory, TArgs...>::value) = 0>\n  auto get_impl(const TMemory& memory, TArgs&&... args) const {\n#if (BOOST_DI_CFG_DIAGNOSTICS_LEVEL >= 2)  // __pph__\n    (void)aux::conditional_t<injector__<TInjector>::template is_creatable<T>::value, _, creating<T>>{};\n#endif  // __pph__\n\n    return TInjector::config::provider(injector_).template get<T>(TInitialization{}, memory, static_cast<TArgs&&>(args)...);\n  }\n\n  template <class TMemory, class... TArgs, __BOOST_DI_REQUIRES(!is_creatable<TMemory, TArgs...>::value) = 0>\n  auto get_impl(const TMemory&, TArgs&&...) const {\n#if (BOOST_DI_CFG_DIAGNOSTICS_LEVEL > 0)  // __pph__\n    return concepts::creatable_error<TInitialization, TName, T*, TArgs...>();\n#else   // __pph__\n    return nullptr;\n#endif  // __pph__\n  }\n\n  const TInjector* injector_;\n};\n\nnamespace successful {\n\ntemplate <class, class>\nstruct provider;\n\ntemplate <class T, class TInjector, class TInitialization, template <class...> class TList, class... TCtor>\nstruct provider<aux::pair<T, aux::pair<TInitialization, TList<TCtor...>>>, TInjector> {\n  using injector_t = TInjector;\n\n  template <class TMemory = type_traits::heap>\n  auto get(const TMemory& memory = {}) const {\n    return TInjector::config::provider(injector_).template get<T>(\n        TInitialization{}, memory,\n        static_cast<const injector__<TInjector>*>(injector_)->create_successful_impl(aux::type<TCtor>{})...);\n  }\n\n  const TInjector* injector_;\n};\n}\n}  // successful::core\n\n#endif\n"
  },
  {
    "path": "include/boost/di/core/wrapper.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_CORE_WRAPPER_HPP\n#define BOOST_DI_CORE_WRAPPER_HPP\n\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/concepts/creatable.hpp\"\n\nnamespace core {\n\nnamespace successful {\n\ntemplate <class T, class TWrapper>\nstruct wrapper {\n  inline operator T() noexcept { return __BOOST_DI_TYPE_WKND(T) wrapper_; }\n  TWrapper wrapper_;\n};\n\n}  // successful\n\ntemplate <class T, class TWrapper, class = int>\nstruct wrapper_impl {\n  inline operator T() noexcept { return wrapper_; }\n  TWrapper wrapper_;\n};\n\ntemplate <class T, template <class...> class TWrapper, class TScope, class T_, class... Ts>\nstruct wrapper_impl<T, TWrapper<TScope, T_, Ts...>,\n                    __BOOST_DI_REQUIRES(!aux::is_convertible<TWrapper<TScope, T_, Ts...>, T>::value)> {\n  inline operator T() noexcept {\n    return typename concepts::scoped<TScope, aux::remove_qualifiers_t<T_>>::template is_not_convertible_to<T>{};\n  }\n  TWrapper<TScope, T_, Ts...> wrapper_;\n};\n\ntemplate <class T, class TWrapper>\nusing wrapper = wrapper_impl<T, TWrapper>;\n\n}  // core\n\n#endif\n"
  },
  {
    "path": "include/boost/di/fwd.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FWD_HPP\n#define BOOST_DI_FWD_HPP\n\n#include \"boost/di/fwd_ext.hpp\"\n\ntemplate <class, class = void>\nstruct named {};\nstruct no_name {\n  constexpr auto operator()() const noexcept { return \"\"; }\n};\ntemplate <class, class = int>\nstruct ctor_traits;\n\ntemplate <class>\nstruct self {};\n\nstruct ignore_policies {};\n\nnamespace core {\ntemplate <class>\nstruct any_type_fwd;\ntemplate <class>\nstruct any_type_ref_fwd;\ntemplate <class>\nstruct any_type_1st_fwd;\ntemplate <class>\nstruct any_type_1st_ref_fwd;\n\nstruct dependency_base {};\nstruct injector_base {};\n\ntemplate <class T>\nstruct dependency__ : T {\n  using T::try_create;\n  using T::is_referable;\n  using T::create;\n};\n\ntemplate <class T>\nstruct injector__ : T {\n  using T::try_create;\n  using T::create_impl;\n  using T::create_successful_impl;\n\n#if defined(__MSVC__)  // __pph__\n  template <class... Ts>\n  using is_creatable = typename T::template is_creatable<Ts...>;\n#else   // __pph__\n  using T::is_creatable;\n#endif  // __pph__\n};\n\ntemplate <class, class...>\nstruct array;\n\nstruct deduced {};\n\ntemplate <class, class TExpected = deduced, class = TExpected, class = no_name, class = void>\nclass dependency;\n}  // core\n\nnamespace scopes {\nclass deduce;\nclass instance;\nclass singleton;\nclass unique;\n}  // scopes\n\n#endif\n"
  },
  {
    "path": "include/boost/di/fwd_ext.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FWD_EXT_HPP\n#define BOOST_DI_FWD_EXT_HPP\n\n// libc++\n#if __has_include(<__config>)  // __pph__\n#include <__config>            // __pph__\n#endif                         // __pph__\n\n#if defined(_LIBCPP_VERSION)  // __pph__\n_LIBCPP_BEGIN_NAMESPACE_STD\n#else   // __pph__\nnamespace std {\n#endif  // __pph__\ntemplate <class>\nclass shared_ptr;\ntemplate <class>\nclass weak_ptr;\ntemplate <class, class>\nclass unique_ptr;\ntemplate <class>\nstruct char_traits;\ntemplate <class...>\nclass tuple;\ntemplate <class, class>\nclass vector;\ntemplate <class, class, class>\nclass set;\ntemplate <class>\nclass move_iterator;\n#if defined(_LIBCPP_VERSION)  // __pph__\n_LIBCPP_END_NAMESPACE_STD\n#else   // __pph__\n}  // std\n#endif  // __pph__\n\nnamespace std {\ntemplate <class>\nclass initializer_list;\n}  // std\nnamespace boost {\ntemplate <class>\nclass shared_ptr;\n}  // boost\n\n#endif\n"
  },
  {
    "path": "include/boost/di/inject.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_INJECT_HPP\n#define BOOST_DI_INJECT_HPP\n\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/preprocessor.hpp\"\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n\ntemplate <class, class>\nstruct named;\n\nnamespace detail {\n\nstruct named_impl {\n  template <class T>\n  T operator=(const T&) const;\n};\nstatic constexpr __BOOST_DI_UNUSED named_impl named{};\n\ntemplate <class T, class TName>\nstruct combine_impl {\n  using type = BOOST_DI_NAMESPACE::named<TName, T>;\n};\n\ntemplate <class T>\nstruct combine_impl<T, aux::none_type> {\n  using type = T;\n};\n\ntemplate <class, class>\nstruct combine;\n\ntemplate <class... T1, class... T2>\nstruct combine<aux::type_list<T1...>, aux::type_list<T2...>> {\n  using type = aux::type_list<typename combine_impl<T1, T2>::type...>;\n};\n\ntemplate <class T1, class T2>\nusing combine_t = typename combine<T1, T2>::type;\n\n}  // detail\n\ntemplate <class... Ts>\nusing inject = aux::type_list<Ts...>;\n\n#define __BOOST_DI_HAS_NAME(i, ...) __BOOST_DI_IF(__BOOST_DI_IBP(__BOOST_DI_ELEM(i, __VA_ARGS__, )), 1, )\n#define __BOOST_DI_HAS_NAMES(...) \\\n  __BOOST_DI_IF(__BOOST_DI_IS_EMPTY(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_HAS_NAME, __VA_ARGS__)), 0, 1)\n#define __BOOST_DI_GEN_CTOR_IMPL(p, i) \\\n  __BOOST_DI_IF(i, __BOOST_DI_COMMA, __BOOST_DI_EAT)() __BOOST_DI_IF(__BOOST_DI_IBP(p), __BOOST_DI_EAT p, p)\n#define __BOOST_DI_GEN_CTOR(i, ...) __BOOST_DI_GEN_CTOR_IMPL(__BOOST_DI_ELEM(i, __VA_ARGS__, ), i)\n#define __BOOST_DI_GEN_ARG_NAME(p) __BOOST_DI_GEN_ARG_NAME_IMPL p )\n#define __BOOST_DI_GEN_NONE_TYPE(p) BOOST_DI_NAMESPACE::aux::none_type\n#define __BOOST_DI_GEN_ARG_NAME_IMPL(p) decltype(BOOST_DI_NAMESPACE::detail::p) __BOOST_DI_EAT(\n#define __BOOST_DI_GEN_NAME_IMPL(p, i)               \\\n  __BOOST_DI_IF(i, __BOOST_DI_COMMA, __BOOST_DI_EAT) \\\n  () __BOOST_DI_IF(__BOOST_DI_IBP(p), __BOOST_DI_GEN_ARG_NAME, __BOOST_DI_GEN_NONE_TYPE)(p)\n#define __BOOST_DI_GEN_NAME(i, ...) __BOOST_DI_GEN_NAME_IMPL(__BOOST_DI_ELEM(i, __VA_ARGS__, ), i)\n\n#define __BOOST_DI_INJECT_TRAITS_IMPL_0(...)                                                           \\\n  static void ctor(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_GEN_CTOR, __VA_ARGS__)); \\\n  using type __BOOST_DI_UNUSED = BOOST_DI_NAMESPACE::aux::function_traits_t<decltype(ctor)>;\n\n#define __BOOST_DI_INJECT_TRAITS_IMPL_1(...)                                                            \\\n  static void ctor(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_GEN_CTOR, __VA_ARGS__));  \\\n  static void name(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_GEN_NAME, __VA_ARGS__));  \\\n  using type __BOOST_DI_UNUSED =                                                                        \\\n      BOOST_DI_NAMESPACE::detail::combine_t<BOOST_DI_NAMESPACE::aux::function_traits_t<decltype(ctor)>, \\\n                                            BOOST_DI_NAMESPACE::aux::function_traits_t<decltype(name)>>;\n\n#define __BOOST_DI_INJECT_TRAITS_EMPTY_IMPL(...) \\\n  using boost_di_inject__ __BOOST_DI_UNUSED = BOOST_DI_NAMESPACE::aux::type_list<>\n\n#define __BOOST_DI_INJECT_TRAITS_IMPL(...)                                                                             \\\n  struct boost_di_inject__ {                                                                                           \\\n    __BOOST_DI_CAT(__BOOST_DI_INJECT_TRAITS_IMPL_, __BOOST_DI_HAS_NAMES(__VA_ARGS__))                                  \\\n    (__VA_ARGS__) static_assert(__BOOST_DI_SIZE(__VA_ARGS__) <= BOOST_DI_CFG_CTOR_LIMIT_SIZE,                          \\\n                                \"Number of constructor arguments is out of range - see BOOST_DI_CFG_CTOR_LIMIT_SIZE\"); \\\n  }\n\n#define BOOST_DI_INJECT_TRAITS(...)                                                                                   \\\n  __BOOST_DI_IF(__BOOST_DI_IS_EMPTY(__VA_ARGS__), __BOOST_DI_INJECT_TRAITS_EMPTY_IMPL, __BOOST_DI_INJECT_TRAITS_IMPL) \\\n  (__VA_ARGS__)\n\n#define BOOST_DI_INJECT(T, ...)        \\\n  BOOST_DI_INJECT_TRAITS(__VA_ARGS__); \\\n  T(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_GEN_CTOR, __VA_ARGS__))\n\n#endif\n"
  },
  {
    "path": "include/boost/di/injector.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_INJECTOR_HPP\n#define BOOST_DI_INJECTOR_HPP\n\n#include \"boost/di/concepts/boundable.hpp\"\n#include \"boost/di/concepts/configurable.hpp\"\n#include \"boost/di/config.hpp\"\n#include \"boost/di/core/injector.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/type_traits/named_traits.hpp\"\n\nnamespace detail {\n\ntemplate <class>\nvoid create(const aux::true_type&) {}\n\n// clang-format off\ntemplate <class>\n__BOOST_DI_CONCEPTS_CREATABLE_ERROR_MSG void\ncreate\n(const aux::false_type&) {}\n// clang-format on\n\ntemplate <class, class, class...>\nstruct injector;\n\ntemplate <class, class>\nstruct is_creatable_impl;\n\ntemplate <class TInjector, class TName, class T>\nstruct is_creatable_impl<TInjector, named<TName, T>> {\n  static constexpr auto value = core::injector__<TInjector>::template is_creatable<T, TName>::value;\n};\n\ntemplate <class TConfig, class T, class... TGivens>\nstruct injector<TConfig, int, core::dependency<scopes::instance, T, aux::type_list<TGivens...>>>\n    : core::injector<TConfig, core::pool<>, core::dependency<scopes::instance, T, aux::type_list<TGivens...>>> {\n  template <class... Ts>\n  injector(core::injector<Ts...>&& injector) noexcept  // non explicit\n      : core::injector<TConfig, core::pool<>, core::dependency<scopes::instance, T, aux::type_list<TGivens...>>>(\n            static_cast<core::injector<Ts...>&&>(injector)) {\n    using injector_t = core::injector<Ts...>;\n    int _[]{0,\n            // clang-format off\n            (detail::\ncreate<T> (\n\t\t\t  aux::integral_constant<bool, is_creatable_impl<injector_t, TGivens>::value>{}),\n             0)...};\n    // clang-format on\n    (void)_;\n  }\n};\n\n}  // detail\n\ntemplate <class T, class... Ts>\nusing injector = detail::injector<\n    BOOST_DI_CFG, __BOOST_DI_REQUIRES_MSG(concepts::boundable<aux::type<T, Ts...>>),\n    core::dependency<scopes::instance, aux::unique_t<type_traits::named_decay_t<T>, type_traits::named_decay_t<Ts>...>,\n                     aux::type_list<type_traits::add_named_t<T>, type_traits::add_named_t<Ts>...>>>;\n\n// clang-format off\n#define __BOOST_DI_EXPOSE_IMPL__(...) decltype(BOOST_DI_NAMESPACE::detail::__VA_ARGS__), // __pph__\n#define __BOOST_DI_EXPOSE_IMPL(...) BOOST_DI_NAMESPACE::named<__BOOST_DI_EXPOSE_IMPL__ __VA_ARGS__> // __pph__\n#define BOOST_DI_EXPOSE(...) __BOOST_DI_IF(__BOOST_DI_IBP(__VA_ARGS__), __BOOST_DI_EXPOSE_IMPL, __BOOST_DI_EXPAND)(__VA_ARGS__) // __pph__\n// clang-format on\n\n#endif\n"
  },
  {
    "path": "include/boost/di/make_injector.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_MAKE_INJECTOR_HPP\n#define BOOST_DI_MAKE_INJECTOR_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/concepts/boundable.hpp\"\n#include \"boost/di/concepts/configurable.hpp\"\n#include \"boost/di/config.hpp\"\n#include \"boost/di/core/injector.hpp\"\n\n#if defined(__MSVC__)                                                     // __pph__\n#define __BOOST_DI_MAKE_INJECTOR(...) __VA_ARGS__                         // __pph__\n#else                                                                     // __pph__\nnamespace detail {\nstatic auto make_injector = [](auto injector) {\n  using injector_t = decltype(injector);\n  struct i : injector_t {\n    explicit i(injector_t&& other) : injector_t(static_cast<injector_t&&>(other)) {}\n  };\n  return i{static_cast<injector_t&&>(injector)};\n};\n}  // detail\n#define __BOOST_DI_MAKE_INJECTOR(...) detail::make_injector(__VA_ARGS__)  // __pph__\n#endif                                                                    // __pph__\n\ntemplate <class TConfig = BOOST_DI_CFG, class... TDeps,\n          __BOOST_DI_REQUIRES_MSG(concepts::boundable<aux::type_list<TDeps...>>) = 0,\n          __BOOST_DI_REQUIRES_MSG(concepts::configurable<TConfig>) = 0>\ninline auto make_injector(TDeps... args) noexcept {\n  return __BOOST_DI_MAKE_INJECTOR(\n      core::injector<TConfig, decltype(((TConfig*)0)->policies((concepts::injector<TConfig>*)0)), TDeps...>{\n          core::init{}, static_cast<TDeps&&>(args)...});\n}\n#undef __BOOST_DI_MAKE_INJECTOR  // __pph__\n#endif\n"
  },
  {
    "path": "include/boost/di/policies/constructible.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_POLICIES_CONSTRUCTIBLE_HPP\n#define BOOST_DI_POLICIES_CONSTRUCTIBLE_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n\nnamespace policies {\nnamespace detail {\n\nstruct type_op {};\n\ntemplate <class T, class = int>\nstruct apply_impl {\n  template <class>\n  struct apply : T {};\n};\n\ntemplate <template <class...> class T, class... Ts>\nstruct apply_impl<T<Ts...>, __BOOST_DI_REQUIRES(!aux::is_base_of<type_op, T<Ts...>>::value)> {\n  template <class TOp, class>\n  struct apply_placeholder_impl {\n    using type = TOp;\n  };\n\n  template <class TOp>\n  struct apply_placeholder_impl<_, TOp> {\n    using type = TOp;\n  };\n\n  template <template <class...> class TExpr, class TOp, class... TArgs>\n  struct apply_placeholder {\n    using type = TExpr<typename apply_placeholder_impl<TArgs, TOp>::type...>;\n  };\n\n  template <class TArg>\n  struct apply : apply_placeholder<T, typename TArg::type, Ts...>::type {};\n};\n\ntemplate <class T>\nstruct apply_impl<T, __BOOST_DI_REQUIRES(aux::is_base_of<type_op, T>::value)> {\n  template <class TArg>\n  struct apply : T::template apply<TArg>::type {};\n};\n\ntemplate <class T>\nstruct not_ : detail::type_op {\n  template <class TArg>\n  struct apply : aux::integral_constant<bool, !detail::apply_impl<T>::template apply<TArg>::value> {};\n};\n\ntemplate <class... Ts>\nstruct and_ : detail::type_op {\n  template <class TArg>\n  struct apply : aux::is_same<aux::bool_list<detail::apply_impl<Ts>::template apply<TArg>::value...>,\n                              aux::bool_list<aux::always<Ts>::value...>> {};\n};\n\ntemplate <class... Ts>\nstruct or_ : detail::type_op {\n  template <class TArg>\n  struct apply : aux::integral_constant<bool,\n                                        !aux::is_same<aux::bool_list<detail::apply_impl<Ts>::template apply<TArg>::value...>,\n                                                      aux::bool_list<aux::never<Ts>::value...>>::value> {};\n};\n\n}  // detail\n\ntemplate <class T>\nstruct type {\n  template <class TPolicy>\n  struct not_allowed_by {\n    operator aux::false_type() const {\n      using constraint_not_satisfied = not_allowed_by;\n      return constraint_not_satisfied{}.error();\n    }\n\n    // clang-format off\n    static inline aux::false_type\n\terror(_ = \"type disabled by constructible policy, added by BOOST_DI_CFG or make_injector<CONFIG>!\");\n    // clang-format on\n  };\n};\n\ntemplate <class T>\nstruct is_bound : detail::type_op {\n  struct not_resolved {};\n  template <class TArg>\n  struct apply\n      : aux::integral_constant<\n            bool,\n            !aux::is_same<typename TArg::template resolve<aux::conditional_t<aux::is_same<T, _>::value, typename TArg::type, T>,\n                                                          typename TArg::name, not_resolved>,\n                          not_resolved>::value> {};\n};\n\ntemplate <class T>\nstruct is_injected : detail::type_op {\n  template <class TArg, class U = aux::decay_t<aux::conditional_t<aux::is_same<T, _>::value, typename TArg::type, T>>>\n  struct apply : aux::conditional_t<aux::is_class<U>::value, typename type_traits::is_injectable<U>::type, aux::true_type> {};\n};\n\nnamespace operators {\n\ntemplate <class X, class Y>\ninline auto operator||(const X&, const Y&) {\n  return detail::or_<X, Y>{};\n}\n\ntemplate <class X, class Y>\ninline auto operator&&(const X&, const Y&) {\n  return detail::and_<X, Y>{};\n}\n\ntemplate <class T>\ninline auto operator!(const T&) {\n  return detail::not_<T>{};\n}\n\n}  // operators\n\ntemplate <class T>\nstruct constructible_impl {\n  template <class TArg, __BOOST_DI_REQUIRES(TArg::is_root::value || T::template apply<TArg>::value) = 0>\n  aux::true_type operator()(const TArg&) const {\n    return {};\n  }\n\n  template <class TArg, __BOOST_DI_REQUIRES(!TArg::is_root::value && !T::template apply<TArg>::value) = 0>\n  aux::false_type operator()(const TArg&) const {\n    return typename type<typename TArg::type>::template not_allowed_by<T>{};\n  }\n};\n\ntemplate <class T = aux::never<_>, __BOOST_DI_REQUIRES(aux::is_base_of<detail::type_op, T>::value) = 0>\ninline auto constructible(const T& = {}) {\n  return constructible_impl<T>{};\n}\n\ntemplate <class T = aux::never<_>, __BOOST_DI_REQUIRES(!aux::is_base_of<detail::type_op, T>::value) = 0>\ninline auto constructible(const T& = {}) {\n  return constructible_impl<detail::or_<T>>{};\n}\n\n}  // policies\n\n#endif\n"
  },
  {
    "path": "include/boost/di/providers/heap.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_PROVIDERS_HEAP_HPP\n#define BOOST_DI_PROVIDERS_HEAP_HPP\n\n#include \"boost/di/concepts/creatable.hpp\"\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n\nnamespace providers {\n\nclass heap {\n public:\n  template <class TInitialization, class T, class... TArgs>\n  struct is_creatable {\n    static constexpr auto value = concepts::creatable<TInitialization, T, TArgs...>::value;\n  };\n\n  template <class T, class TMemory, class... TArgs>\n  auto get(const type_traits::direct&, const TMemory&, TArgs&&... args) const {\n    return new T(static_cast<TArgs&&>(args)...);\n  }\n\n  template <class T, class TMemory, class... TArgs>\n  auto get(const type_traits::uniform&, const TMemory&, TArgs&&... args) const {\n    return new T{static_cast<TArgs&&>(args)...};\n  }\n};\n\n}  // providers\n\n#endif\n"
  },
  {
    "path": "include/boost/di/providers/stack_over_heap.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_PROVIDERS_STACK_OVER_HEAP_HPP\n#define BOOST_DI_PROVIDERS_STACK_OVER_HEAP_HPP\n\n#include \"boost/di/concepts/creatable.hpp\"\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n#include \"boost/di/type_traits/memory_traits.hpp\"\n\nnamespace providers {\n\nclass stack_over_heap {\n public:\n  template <class TInitialization, class T, class... TArgs>\n  struct is_creatable {\n    static constexpr auto value = concepts::creatable<TInitialization, T, TArgs...>::value;\n  };\n\n  template <class T, class... TArgs>\n  auto get(const type_traits::direct&, const type_traits::heap&, TArgs&&... args) {\n    return new T(static_cast<TArgs&&>(args)...);\n  }\n\n  template <class T, class... TArgs>\n  auto get(const type_traits::uniform&, const type_traits::heap&, TArgs&&... args) {\n    return new T{static_cast<TArgs&&>(args)...};\n  }\n\n  template <class T, class... TArgs>\n  auto get(const type_traits::direct&, const type_traits::stack&, TArgs&&... args) const {\n    return T(static_cast<TArgs&&>(args)...);\n  }\n\n  template <class T, class... TArgs>\n  auto get(const type_traits::uniform&, const type_traits::stack&, TArgs&&... args) const {\n    return T{static_cast<TArgs&&>(args)...};\n  }\n};\n\n}  // providers\n\n#endif\n"
  },
  {
    "path": "include/boost/di/scopes/deduce.hpp",
    "content": "// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_SCOPES_DEDUCE_HPP\n#define BOOST_DI_SCOPES_DEDUCE_HPP\n\n#include \"boost/di/type_traits/scope_traits.hpp\"\n\nnamespace scopes {\n\nclass deduce {\n public:\n  template <class TExpected, class TGiven>\n  class scope {\n   public:\n    template <class T>\n    using is_referable = typename type_traits::scope_traits_t<T>::template scope<TExpected, TGiven>::template is_referable<T>;\n\n    template <class T, class TName, class TProvider>\n    static decltype(typename type_traits::scope_traits_t<T>::template scope<TExpected, TGiven>{}.template try_create<T, TName>(\n        aux::declval<TProvider>()))\n    try_create(const TProvider&);\n\n    template <class T, class TName, class TProvider>\n    auto create(const TProvider& provider) {\n      using scope_traits = type_traits::scope_traits_t<T>;\n      using scope = typename scope_traits::template scope<TExpected, TGiven>;\n      return scope{}.template create<T, TName>(provider);\n    }\n  };\n};\n\n}  // scopes\n\n#endif\n"
  },
  {
    "path": "include/boost/di/scopes/instance.hpp",
    "content": "// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_SCOPES_INSTANCE_HPP\n#define BOOST_DI_SCOPES_INSTANCE_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/concepts/creatable.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/wrappers/shared.hpp\"\n#include \"boost/di/wrappers/unique.hpp\"\n\nnamespace scopes {\n\nclass instance;\n\nnamespace detail {\n\ntemplate <class T, class TExpected, class TGiven>\nstruct arg {\n  using type = T;\n  using expected = TExpected;\n  using given = TGiven;\n};\n\ntemplate <class T>\nstruct wrapper_traits {\n  using type = wrappers::unique<instance, T>;\n};\n\ntemplate <class T>\nstruct wrapper_traits<std::shared_ptr<T>> {\n  using type = wrappers::shared<instance, T>;\n};\n\ntemplate <class T>\nusing wrapper_traits_t = typename wrapper_traits<T>::type;\n\n__BOOST_DI_HAS_TYPE(has_result_type, result_type);\n\ntemplate <class TGiven, class TProvider, class... Ts>\nstruct is_expr : aux::integral_constant<bool,\n                                        aux::is_callable_with<TGiven, typename TProvider::injector_t, Ts...>::value &&\n                                            !has_result_type<TGiven>::value> {};\n\n}  // detail\n\ntemplate <class T>\nstruct wrapper {\n  inline operator T() noexcept { return static_cast<T&&>(object); }\n  T object;\n};\n\nclass instance {\n public:\n  template <class, class TGiven, class = int>\n  struct scope {\n    template <class>\n    using is_referable = aux::false_type;\n\n    explicit scope(const TGiven& object) : object_{object} {}\n\n    template <class, class, class TProvider>\n    static wrappers::unique<instance, TGiven> try_create(const TProvider&);\n\n    template <class, class, class TProvider>\n    auto create(const TProvider&) const noexcept {\n      return wrappers::unique<instance, TGiven>{object_};\n    }\n\n    TGiven object_;\n  };\n\n  template <class TExpected, class TGiven>\n  struct scope<TExpected, std::shared_ptr<TGiven>> {\n    template <class T>\n    using is_referable = typename wrappers::shared<instance, TGiven>::template is_referable<aux::remove_qualifiers_t<T>>;\n\n    explicit scope(const std::shared_ptr<TGiven>& object) : object_{object} {}\n\n    template <class, class, class TProvider>\n    static wrappers::shared<instance, TGiven> try_create(const TProvider&);\n\n    template <class, class, class TProvider>\n    auto create(const TProvider&) const noexcept {\n      return wrappers::shared<instance, TGiven>{object_};\n    }\n\n    std::shared_ptr<TGiven> object_;\n  };\n\n  template <class TExpected, class TGiven>\n  struct scope<TExpected, std::initializer_list<TGiven>> {\n    template <class>\n    using is_referable = aux::false_type;\n\n    scope(const std::initializer_list<TGiven>& object) : object_(object) {}\n\n    template <class, class, class TProvider>\n    static std::initializer_list<TGiven> try_create(const TProvider&);\n\n    template <class, class, class TProvider>\n    auto create(const TProvider&) const noexcept {\n      return wrappers::unique<instance, std::initializer_list<TGiven>>{object_};\n    }\n\n    std::initializer_list<TGiven> object_;\n  };\n\n  template <class TExpected, class TGiven>\n  struct scope<TExpected, TGiven&, __BOOST_DI_REQUIRES(!aux::is_callable<TGiven>::value)> {\n    template <class>\n    using is_referable = aux::true_type;\n\n    explicit scope(TGiven& object) : object_{object} {}\n\n    template <class, class, class TProvider>\n    static wrappers::shared<instance, TGiven&> try_create(const TProvider&);\n\n    template <class, class, class TProvider>\n    auto create(const TProvider&) const noexcept {\n      return object_;\n    }\n\n    wrappers::shared<instance, TGiven&> object_;\n  };\n\n  template <class TExpected, class TGiven>\n  struct scope<TExpected, TGiven, __BOOST_DI_REQUIRES(aux::is_callable<TGiven>::value)> {\n    template <class>\n    using is_referable =\n        aux::integral_constant<bool, !aux::is_callable<TExpected>::value || !detail::has_result_type<TExpected>::value>;\n\n    explicit scope(const TGiven& object) : object_(object) {}\n\n#if defined(__MSVC__)  // __pph__\n    template <class T, class, class TProvider>\n    static T try_create(const TProvider&) noexcept;\n#else   // __pph__\n\n    template <class, class, class TProvider,\n              __BOOST_DI_REQUIRES(!detail::is_expr<TGiven, TProvider>::value && aux::is_callable<TGiven>::value &&\n                                  aux::is_callable<TExpected>::value) = 0>\n    static wrappers::unique<instance, TExpected> try_create(const TProvider&) noexcept;\n\n    template <class T, class, class TProvider,\n              __BOOST_DI_REQUIRES(!detail::is_expr<TGiven, TProvider>::value && aux::is_callable_with<TGiven>::value &&\n                                  !aux::is_callable<TExpected>::value) = 0>\n    static auto try_create(const TProvider&) noexcept\n        -> detail::wrapper_traits_t<decltype(aux::declval<typename aux::identity<TGiven, T>::type>()())>;\n\n    template <class, class, class TProvider, __BOOST_DI_REQUIRES(detail::is_expr<TGiven, TProvider>::value) = 0>\n    static detail::wrapper_traits_t<decltype(aux::declval<TGiven>()(aux::declval<typename TProvider::injector_t>()))>\n    try_create(const TProvider&) noexcept;\n\n    template <class T, class, class TProvider,\n              __BOOST_DI_REQUIRES(detail::is_expr<TGiven, TProvider, const detail::arg<T, TExpected, TGiven>&>::value) = 0>\n    static detail::wrapper_traits_t<decltype(aux::declval<TGiven>()(aux::declval<typename TProvider::injector_t>(),\n                                                                    aux::declval<detail::arg<T, TExpected, TGiven>>()))>\n    try_create(const TProvider&) noexcept;\n#endif  // __pph__\n\n    template <class, class, class TProvider,\n              __BOOST_DI_REQUIRES(!detail::is_expr<TGiven, TProvider>::value && aux::is_callable<TGiven>::value &&\n                                  aux::is_callable<TExpected>::value) = 0>\n    auto create(const TProvider&) const noexcept {\n      return wrappers::unique<instance, TExpected>{object_};\n    }\n\n    template <class T, class, class TProvider,\n              __BOOST_DI_REQUIRES(!detail::is_expr<TGiven, TProvider>::value && aux::is_callable_with<TGiven>::value &&\n                                  !aux::is_callable<TExpected>::value) = 0>\n    auto create(const TProvider&) const {\n      using wrapper = detail::wrapper_traits_t<decltype(aux::declval<TGiven>()())>;\n      return wrapper{object_()};\n    }\n\n    template <class, class, class TProvider, __BOOST_DI_REQUIRES(detail::is_expr<TGiven, TProvider>::value) = 0>\n    auto create(const TProvider& provider) {\n      using wrapper = detail::wrapper_traits_t<decltype((object_)(*provider.injector_))>;\n      return wrapper{(object_)(*provider.injector_)};\n    }\n\n    template <class T, class, class TProvider,\n              __BOOST_DI_REQUIRES(detail::is_expr<TGiven, TProvider, const detail::arg<T, TExpected, TGiven>&>::value) = 0>\n    auto create(const TProvider& provider) {\n      using wrapper = detail::wrapper_traits_t<decltype((object_)(*provider.injector_, detail::arg<T, TExpected, TGiven>{}))>;\n      return wrapper{(object_)(*provider.injector_, detail::arg<T, TExpected, TGiven>{})};\n    }\n\n    TGiven object_;\n  };\n\n  template <class _, class... Ts>\n  class scope<_, aux::type_list<Ts...>> {\n    template <class>\n    struct injector__;\n\n    template <class TName, class T>\n    struct injector__<named<TName, T>> {\n      T (*f)(const injector__*) = nullptr;\n      explicit injector__(const decltype(f) & ptr) : f(ptr) {}\n    };\n\n    struct injector : injector__<Ts>... {\n      void (*dtor)(injector*) = nullptr;\n      ~injector() noexcept { static_cast<injector*>(this)->dtor(this); }\n\n      template <class TName, class T>\n      T create(const named<TName, T>&, const aux::true_type&) const noexcept {\n        return static_cast<const injector__<named<TName, T>>*>(this)->f(static_cast<const injector__<named<TName, T>>*>(this));\n      }\n\n      template <class T>\n      T create(const named<no_name, T>&, const aux::false_type&) const noexcept {\n        return typename concepts::type<T>::is_not_exposed{};\n      }\n\n      template <class TName, class T>\n      T create(const named<TName, T>&, const aux::false_type&) const noexcept {\n        return typename concepts::type<T>::template named<TName>::is_not_exposed{};\n      }\n    };\n\n    template <class TInjector>\n    class injector_impl : injector__<Ts>... {\n      void (*dtor)(injector_impl*) = nullptr;\n      static void dtor_impl(injector_impl* object) { object->~injector_impl(); }\n\n      template <class, class>\n      struct create;\n\n      template <class TName, class T>\n      struct create<named<TName, T>, aux::true_type> {\n        static T impl(const injector__<named<TName, T>>* object) noexcept {\n          using type = aux::type<aux::conditional_t<aux::is_same<TName, no_name>::value, T, named<TName, T>>>;\n          return static_cast<const core::injector__<TInjector>&>(static_cast<const injector_impl*>(object)->injector_)\n              .create_successful_impl(type{});\n        }\n      };\n\n      template <class TName, class T>\n      struct create<named<TName, T>, aux::false_type> {\n        static T impl(const injector__<named<TName, T>>* object) noexcept {\n          using type = aux::type<aux::conditional_t<aux::is_same<TName, no_name>::value, T, named<TName, T>>>;\n          return static_cast<const core::injector__<TInjector>&>(static_cast<const injector_impl*>(object)->injector_)\n              .create_impl(type{});\n        }\n      };\n\n      template <class T>\n      struct is_creatable : aux::integral_constant<bool, core::injector__<TInjector>::template is_creatable<T>::value> {};\n\n      template <class TName, class T>\n      struct is_creatable<named<TName, T>>\n          : aux::integral_constant<bool, core::injector__<TInjector>::template is_creatable<T, TName>::value> {};\n\n     public:\n      explicit injector_impl(TInjector&& injector) noexcept\n          : injector__<Ts>(&injector_impl::template create<Ts, typename is_creatable<Ts>::type>::impl)...,\n            dtor(&injector_impl::dtor_impl),\n            injector_(static_cast<TInjector&&>(injector)) {}\n\n     private:\n      TInjector injector_;\n    };\n\n   public:\n    template <class>\n    using is_referable = aux::true_type;\n\n    template <class TInjector, __BOOST_DI_REQUIRES(aux::is_a<core::injector_base, TInjector>::value) = 0>\n    explicit scope(TInjector&& i) noexcept : injector_((injector*)new injector_impl<TInjector>{static_cast<TInjector&&>(i)}) {}\n\n    scope(scope&& other) noexcept : injector_(other.injector_) { other.injector_ = nullptr; }\n    ~scope() noexcept { delete injector_; }\n\n    template <class T, class TName, class TProvider>\n    static aux::conditional_t<aux::is_base_of<injector__<named<TName, T>>, injector>::value, T, void> try_create(\n        const TProvider&);\n\n    template <class T, class TName, class TProvider>\n    auto create(const TProvider&) {\n      return wrapper<T>{injector_->create(named<TName, T>{}, aux::is_base_of<injector__<named<TName, T>>, injector>{})};\n    }\n\n   private:\n    injector* injector_;\n  };\n};\n\n}  // scopes\n\n#endif\n"
  },
  {
    "path": "include/boost/di/scopes/singleton.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_SCOPES_SINGLETON_HPP\n#define BOOST_DI_SCOPES_SINGLETON_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/type_traits/memory_traits.hpp\"  // type_traits::stack\n#include \"boost/di/wrappers/shared.hpp\"\n\nnamespace scopes {\n\naux::false_type has_shared_ptr__(...);\n\n#if !defined(BOOST_DI_DISABLE_SHARED_PTR_DEDUCTION)  // __pph__\ntemplate <class T>\nauto has_shared_ptr__(T &&) -> aux::is_valid_expr<decltype(std::shared_ptr<T>{})>;\n#endif  // __pph__\n\nclass singleton {\n public:\n  template <class, class T, class = decltype(has_shared_ptr__(aux::declval<T>()))>\n  class scope {\n   public:\n    template <class T_>\n    using is_referable = typename wrappers::shared<singleton, T&>::template is_referable<T_>;\n\n    template <class, class, class TProvider>\n    static decltype(wrappers::shared<singleton, T&>{aux::declval<TProvider>().get(type_traits::stack{})}) try_create(\n        const TProvider&);\n\n    template <class, class, class TProvider>\n    auto create(const TProvider& provider) {\n      return create_impl(provider);\n    }\n\n   private:\n    template <class TProvider>\n    wrappers::shared<singleton, T&> create_impl(const TProvider& provider) {\n      static auto object(provider.get(type_traits::stack{}));\n      return wrappers::shared<singleton, T&>(object);\n    }\n  };\n\n  template <class _, class T>\n  class scope<_, T, aux::true_type> {\n   public:\n    template <class T_>\n    using is_referable = typename wrappers::shared<singleton, T>::template is_referable<T_>;\n\n    template <class, class, class TProvider, class T_ = aux::decay_t<decltype(aux::declval<TProvider>().get())>>\n    static decltype(wrappers::shared<singleton, T_>{std::shared_ptr<T_>{std::shared_ptr<T_>{aux::declval<TProvider>().get()}}})\n    try_create(const TProvider&);\n\n    template <class, class, class TProvider>\n    auto create(const TProvider& provider) {\n      return create_impl<aux::decay_t<decltype(provider.get())>>(provider);\n    }\n\n   private:\n    template <class T_, class TProvider>\n    auto create_impl(const TProvider& provider) {\n      static std::shared_ptr<T_> object{provider.get()};\n      return wrappers::shared<singleton, T_, std::shared_ptr<T_>&>{object};\n    }\n  };\n};\n\n}  // scopes\n\n#endif\n"
  },
  {
    "path": "include/boost/di/scopes/unique.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_SCOPES_UNIQUE_HPP\n#define BOOST_DI_SCOPES_UNIQUE_HPP\n\n#include \"boost/di/type_traits/memory_traits.hpp\"\n#include \"boost/di/wrappers/unique.hpp\"\n\nnamespace scopes {\n\nclass unique {\n public:\n  template <class, class>\n  class scope {\n   public:\n    template <class>\n    using is_referable = aux::false_type;\n\n    template <class T, class, class TProvider>\n    static decltype(wrappers::unique<unique, decltype(aux::declval<TProvider>().get(type_traits::memory_traits_t<T>{}))>{\n        aux::declval<TProvider>().get(type_traits::memory_traits_t<T>{})})\n    try_create(const TProvider&);\n\n    template <class T, class, class TProvider>\n    auto create(const TProvider& provider) const {\n      using memory = type_traits::memory_traits_t<T>;\n      using wrapper = wrappers::unique<unique, decltype(provider.get(memory{}))>;\n      return wrapper{provider.get(memory{})};\n    }\n  };\n};\n\n}  // scopes\n\n#endif\n"
  },
  {
    "path": "include/boost/di/type_traits/ctor_traits.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_TYPE_TRAITS_CTOR_TRAITS_HPP\n#define BOOST_DI_TYPE_TRAITS_CTOR_TRAITS_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n\n#if !defined(BOOST_DI_CFG_CTOR_LIMIT_SIZE)  // __pph__\n#define BOOST_DI_CFG_CTOR_LIMIT_SIZE 10     // __pph__\n#endif                                      // __pph__\n\nnamespace type_traits {\n\n__BOOST_DI_HAS_TYPE(is_injectable, boost_di_inject__);\n\nstruct direct {};\nstruct uniform {};\n\ntemplate <class T, int>\nusing get = T;\n\ntemplate <template <class...> class, class, class, class = int>\nstruct ctor_impl;\n\ntemplate <template <class...> class TIsConstructible, class T>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<>> : aux::type_list<> {};\n\ntemplate <template <class...> class TIsConstructible, class T>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<0>,\n                 __BOOST_DI_REQUIRES(TIsConstructible<T, core::any_type_1st_fwd<T>>::value)>\n    : aux::type_list<core::any_type_1st_fwd<T>> {};\n\ntemplate <template <class...> class TIsConstructible, class T>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<0>,\n                 __BOOST_DI_REQUIRES(!TIsConstructible<T, core::any_type_1st_fwd<T>>::value)>\n    : aux::conditional_t<TIsConstructible<T, core::any_type_1st_ref_fwd<T>>::value,\n                         aux::type_list<core::any_type_1st_ref_fwd<T>>, aux::type_list<>> {};\n\ntemplate <template <class...> class TIsConstructible, class T, int... Ns>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<Ns...>,\n                 __BOOST_DI_REQUIRES((sizeof...(Ns) > 1) && TIsConstructible<T, get<core::any_type_fwd<T>, Ns>...>::value)>\n    : aux::type_list<get<core::any_type_fwd<T>, Ns>...> {};\n\ntemplate <template <class...> class TIsConstructible, class T, int... Ns>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<Ns...>,\n                 __BOOST_DI_REQUIRES((sizeof...(Ns) > 1) && !TIsConstructible<T, get<core::any_type_fwd<T>, Ns>...>::value)>\n    : aux::conditional<TIsConstructible<T, get<core::any_type_ref_fwd<T>, Ns>...>::value,\n                       aux::type_list<get<core::any_type_ref_fwd<T>, Ns>...>,\n                       typename ctor_impl<TIsConstructible, T, aux::make_index_sequence<sizeof...(Ns) - 1>>::type> {};\n\ntemplate <template <class...> class TIsConstructible, class T>\nusing ctor_impl_t = typename ctor_impl<TIsConstructible, T, aux::make_index_sequence<BOOST_DI_CFG_CTOR_LIMIT_SIZE>>::type;\n\ntemplate <class...>\nstruct ctor;\n\ntemplate <class T>\nstruct ctor<T, aux::type_list<>> : aux::pair<uniform, ctor_impl_t<aux::is_braces_constructible, T>> {};\n\ntemplate <class T, class... TArgs>\nstruct ctor<T, aux::type_list<TArgs...>> : aux::pair<direct, aux::type_list<TArgs...>> {};\n\ntemplate <class T, class = void, class = typename is_injectable<T>::type>\nstruct ctor_traits__;\n\ntemplate <class T, class, class = typename is_injectable<ctor_traits<T>>::type>\nstruct ctor_traits_impl;\n\ntemplate <class T, class _>\nstruct ctor_traits__<T, _, aux::true_type> : aux::pair<T, aux::pair<direct, typename T::boost_di_inject__::type>> {};\n\ntemplate <class T, class _>\nstruct ctor_traits__<T, _, aux::false_type> : ctor_traits_impl<T, _> {};\n\ntemplate <class T, class _>\nstruct ctor_traits_impl<T, _, aux::true_type>\n    : aux::pair<T, aux::pair<direct, typename ctor_traits<T>::boost_di_inject__::type>> {};\n\ntemplate <class T, class _>\nstruct ctor_traits_impl<T, _, aux::false_type> : aux::pair<T, typename ctor_traits<T>::type> {};\n\n}  // type_traits\n\ntemplate <class T, class>\nstruct ctor_traits : type_traits::ctor<T, type_traits::ctor_impl_t<aux::is_constructible, T>> {};\n\ntemplate <class T>\nstruct ctor_traits<std::initializer_list<T>> {\n  using boost_di_inject__ = aux::type_list<>;\n};\n\ntemplate <class... Ts>\nstruct ctor_traits<std::tuple<Ts...>> {\n  using boost_di_inject__ = aux::type_list<Ts...>;\n};\n\ntemplate <class T>\nstruct ctor_traits<T, __BOOST_DI_REQUIRES(aux::is_same<std::char_traits<char>, typename T::traits_type>::value)> {\n  using boost_di_inject__ = aux::type_list<>;\n};\n\ntemplate <class T>\nstruct ctor_traits<T, __BOOST_DI_REQUIRES(!aux::is_class<T>::value)> {\n  using boost_di_inject__ = aux::type_list<>;\n};\n\n#endif\n"
  },
  {
    "path": "include/boost/di/type_traits/memory_traits.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_TYPE_TRAITS_MEMORY_TRAITS_HPP\n#define BOOST_DI_TYPE_TRAITS_MEMORY_TRAITS_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/fwd.hpp\"\n\nnamespace type_traits {\n\nstruct stack {};\nstruct heap {};\n\ntemplate <class T, class = int>\nstruct memory_traits {\n  using type = stack;\n};\n\ntemplate <class T>\nstruct memory_traits<T*> {\n  using type = heap;\n};\n\ntemplate <class T>\nstruct memory_traits<const T&> {\n  using type = typename memory_traits<T>::type;\n};\n\ntemplate <class T, class TDeleter>\nstruct memory_traits<std::unique_ptr<T, TDeleter>> {\n  using type = heap;\n};\n\ntemplate <class T>\nstruct memory_traits<std::shared_ptr<T>> {\n  using type = heap;\n};\n\ntemplate <class T>\nstruct memory_traits<boost::shared_ptr<T>> {\n  using type = heap;\n};\n\ntemplate <class T>\nstruct memory_traits<std::weak_ptr<T>> {\n  using type = heap;\n};\n\ntemplate <class T>\nstruct memory_traits<T, __BOOST_DI_REQUIRES(aux::is_polymorphic<T>::value)> {\n  using type = heap;\n};\n\ntemplate <class T>\nusing memory_traits_t = typename memory_traits<T>::type;\n\n}  // type_traits\n\n#endif\n"
  },
  {
    "path": "include/boost/di/type_traits/named_traits.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_TYPE_TRAITS_NAMED_TRAITS_HPP\n#define BOOST_DI_TYPE_TRAITS_NAMED_TRAITS_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/fwd.hpp\"\n\nnamespace type_traits {\n\ntemplate <class T>\nstruct remove_named {\n  using type = T;\n};\n\ntemplate <class TName, class T>\nstruct remove_named<named<TName, T>> {\n  using type = T;\n};\n\ntemplate <class T>\nusing remove_named_t = typename remove_named<T>::type;\n\ntemplate <class T>\nstruct add_named {\n  using type = named<no_name, T>;\n};\n\ntemplate <class TName, class T>\nstruct add_named<named<TName, T>> {\n  using type = named<TName, T>;\n};\n\ntemplate <class T>\nusing add_named_t = typename add_named<T>::type;\n\ntemplate <class T>\nstruct named_decay {\n  using type = aux::decay_t<T>;\n};\n\ntemplate <class TName, class T>\nstruct named_decay<named<TName, T>> {\n  using type = named<TName, aux::decay_t<T>>;\n};\n\ntemplate <class T>\nusing named_decay_t = typename named_decay<T>::type;\n\n}  // type_traits\n\n#endif\n"
  },
  {
    "path": "include/boost/di/type_traits/rebind_traits.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_TYPE_TRAITS_REBIND_TRAITS_HPP\n#define BOOST_DI_TYPE_TRAITS_REBIND_TRAITS_HPP\n\n#include \"boost/di/fwd.hpp\"\n\nnamespace type_traits {\n\ntemplate <class, class T>\nstruct rebind_traits {\n  using type = T;\n};\n\ntemplate <class T, class TName, class _>\nstruct rebind_traits<T, named<TName, _>> {\n  using type = named<TName, T>;\n};\n\ntemplate <class T, class D, class U>\nstruct rebind_traits<std::unique_ptr<T, D>, U> {\n  using type = std::unique_ptr<U, D>;\n};\n\ntemplate <class T, class D, class TName, class _>\nstruct rebind_traits<std::unique_ptr<T, D>, named<TName, _>> {\n  using type = named<TName, std::unique_ptr<T, D>>;\n};\n\ntemplate <class T, class U>\nstruct rebind_traits<std::shared_ptr<T>, U> {\n  using type = std::shared_ptr<U>;\n};\n\ntemplate <class T, class TName, class _>\nstruct rebind_traits<std::shared_ptr<T>, named<TName, _>> {\n  using type = named<TName, std::shared_ptr<T>>;\n};\n\ntemplate <class T, class U>\nstruct rebind_traits<std::weak_ptr<T>, U> {\n  using type = std::weak_ptr<U>;\n};\n\ntemplate <class T, class TName, class _>\nstruct rebind_traits<std::weak_ptr<T>, named<TName, _>> {\n  using type = named<TName, std::weak_ptr<T>>;\n};\n\ntemplate <class T, class U>\nstruct rebind_traits<boost::shared_ptr<T>, U> {\n  using type = boost::shared_ptr<U>;\n};\n\ntemplate <class T, class TName, class _>\nstruct rebind_traits<boost::shared_ptr<T>, named<TName, _>> {\n  using type = named<TName, boost::shared_ptr<T>>;\n};\n\ntemplate <class T, class U>\nusing rebind_traits_t = typename rebind_traits<T, U>::type;\n\n}  // type_traits\n\n#endif\n"
  },
  {
    "path": "include/boost/di/type_traits/scope_traits.hpp",
    "content": "// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_TYPE_TRAITS_SCOPE_TRAITS_HPP\n#define BOOST_DI_TYPE_TRAITS_SCOPE_TRAITS_HPP\n\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/scopes/singleton.hpp\"\n#include \"boost/di/scopes/unique.hpp\"\n\nnamespace type_traits {\n\ntemplate <class T>\nstruct scope_traits {\n  using type = scopes::unique;\n};\n\ntemplate <class T>\nstruct scope_traits<T&> {\n  using type = scopes::singleton;\n};\n\ntemplate <class T>\nstruct scope_traits<std::shared_ptr<T>> {\n  using type = scopes::singleton;\n};\n\ntemplate <class T>\nstruct scope_traits<boost::shared_ptr<T>> {\n  using type = scopes::singleton;\n};\n\ntemplate <class T>\nstruct scope_traits<std::weak_ptr<T>> {\n  using type = scopes::singleton;\n};\n\ntemplate <class T>\nusing scope_traits_t = typename scope_traits<T>::type;\n\n}  // type_traits\n\n#endif\n"
  },
  {
    "path": "include/boost/di/wrappers/shared.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_WRAPPERS_SHARED_HPP\n#define BOOST_DI_WRAPPERS_SHARED_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n\nnamespace wrappers {\n\ntemplate <class TScope, class T, class TObject = std::shared_ptr<T>>\nstruct shared {\n  using scope = TScope;\n\n  template <class>\n  struct is_referable_impl : aux::true_type {};\n\n  template <class I>\n  struct is_referable_impl<std::shared_ptr<I>> : aux::is_same<I, T> {};\n\n  template <class I>\n  struct is_referable_impl<boost::shared_ptr<I>> : aux::false_type {};\n\n  template <class T_>\n  using is_referable = is_referable_impl<aux::remove_qualifiers_t<T_>>;\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator std::shared_ptr<I>() const noexcept {\n    return object;\n  }\n\n  inline operator std::shared_ptr<T>&() noexcept { return object; }\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator boost::shared_ptr<I>() const noexcept {\n    struct sp_holder {\n      std::shared_ptr<T> object;\n      void operator()(...) noexcept { object.reset(); }\n    };\n    return {object.get(), sp_holder{object}};\n  }\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator std::weak_ptr<I>() const noexcept {\n    return object;\n  }\n\n  inline operator T&() noexcept { return *object; }\n  inline operator const T&() const noexcept { return *object; }\n\n  TObject object;\n};\n\ntemplate <class TScope, class T>\nstruct shared<TScope, T&> {\n  using scope = TScope;\n\n  template <class>\n  struct is_referable : aux::true_type {};\n\n  explicit shared(T& object) : object(&object) {}\n\n  template <class I>\n  explicit shared(I);  // compile clean\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T, I>::value) = 0>\n  inline operator I() const noexcept {\n    return *object;\n  }\n\n  inline operator T&() const noexcept { return *object; }\n\n  T* object = nullptr;\n};\n\n}  // wrappers\n\n#endif\n"
  },
  {
    "path": "include/boost/di/wrappers/unique.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or unique at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_WRAPPERS_UNIQUE_HPP\n#define BOOST_DI_WRAPPERS_UNIQUE_HPP\n\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n\nnamespace wrappers {\n\ntemplate <class TScope, class T>\nstruct unique {\n  using scope = TScope;\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T, I>::value) = 0>\n  inline operator I() const noexcept {\n    return object;\n  }\n\n  inline operator T &&() noexcept { return static_cast<T&&>(object); }\n\n  T object;\n};\n\ntemplate <class TScope, class T>\nstruct unique<TScope, T*> {\n  using scope = TScope;\n\n#if defined(__MSVC__)  // __pph__\n  explicit unique(T* object) : object(object) {}\n#endif  // __pph__\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T, I>::value) = 0>\n  inline operator I() const noexcept {\n    struct scoped_ptr {\n      aux::owner<T*> ptr;\n      ~scoped_ptr() noexcept { delete ptr; }\n    };\n    return *scoped_ptr{object}.ptr;\n  }\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator aux::owner<I*>() const noexcept {\n    return object;\n  }\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, const I*>::value) = 0>\n  inline operator aux::owner<const I*>() const noexcept {\n    return object;\n  }\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator std::shared_ptr<I>() const noexcept {\n    return std::shared_ptr<I>{object};\n  }\n\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator boost::shared_ptr<I>() const noexcept {\n    return boost::shared_ptr<I>{object};\n  }\n\n  template <class I, class D, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator std::unique_ptr<I, D>() const noexcept {\n    return std::unique_ptr<I, D>{object};\n  }\n\n  T* object = nullptr;\n};\n\n}  // wrappers\n\n#endif\n"
  },
  {
    "path": "include/boost/di.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#pragma once\n#if (__cplusplus < 201305L && _MSC_VER < 1900)\n#error \"[Boost].DI requires C++14 support (Clang-3.4+, GCC-5.1+, MSVC-2015+)\"\n#else\n#define BOOST_DI_VERSION 1'1'0\n#define BOOST_DI_NAMESPACE_BEGIN \\\n  namespace boost {              \\\n  namespace di {                 \\\n  inline namespace v1_1_0 {\n#define BOOST_DI_NAMESPACE_END \\\n  }                            \\\n  }                            \\\n  }\n#if !defined(BOOST_DI_CFG_DIAGNOSTICS_LEVEL)\n#define BOOST_DI_CFG_DIAGNOSTICS_LEVEL 1\n#endif\n#if defined(BOOST_DI_CFG_FWD)\nBOOST_DI_CFG_FWD\n#endif\n#define __BOOST_DI_COMPILER(arg, ...) __BOOST_DI_COMPILER_IMPL(arg, __VA_ARGS__)\n#define __BOOST_DI_COMPILER_IMPL(arg, ...) arg##__VA_ARGS__\n#if defined(__clang__)\n#define __CLANG__ __BOOST_DI_COMPILER(__clang_major__, __clang_minor__)\n#define __BOOST_DI_UNUSED __attribute__((unused))\n#define __BOOST_DI_DEPRECATED(...) [[deprecated(__VA_ARGS__)]]\n#define __BOOST_DI_TYPE_WKND(T)\n#define __BOOST_DI_ACCESS_WKND private\n#elif defined(__GNUC__)\n#define __GCC__\n#define __BOOST_DI_UNUSED __attribute__((unused))\n#define __BOOST_DI_DEPRECATED(...) [[deprecated(__VA_ARGS__)]]\n#define __BOOST_DI_TYPE_WKND(T)\n#define __BOOST_DI_ACCESS_WKND private\n#elif defined(_MSC_VER)\n#define __MSVC__\n#define __has_include(...) 0\n#define __BOOST_DI_UNUSED\n#define __BOOST_DI_DEPRECATED(...) __declspec(deprecated(__VA_ARGS__))\n#define __BOOST_DI_TYPE_WKND(T) (T &&)\n#define __BOOST_DI_ACCESS_WKND public\n#endif\n#if !defined(__has_builtin)\n#define __has_builtin(...) 0\n#endif\n#if !defined(__has_extension)\n#define __has_extension(...) 0\n#endif\n#if defined(__CLANG__)\n#if (!BOOST_DI_CFG_DIAGNOSTICS_LEVEL)\n#pragma clang diagnostic error \"-Wdeprecated-declarations\"\n#else\n#pragma clang diagnostic warning \"-Wdeprecated-declarations\"\n#endif\n#pragma clang diagnostic push\n#pragma clang diagnostic error \"-Wundefined-inline\"\n#pragma clang diagnostic error \"-Wundefined-internal\"\n#pragma clang diagnostic ignored \"-Wmissing-field-initializers\"\n#elif defined(__GCC__)\n#pragma GCC diagnostic error \"-Wdeprecated-declarations\"\n#pragma GCC diagnostic push\n#if (__GNUC__ < 6)\n#pragma GCC diagnostic error \"-Werror\"\n#endif\n#elif defined(__MSVC__)\n#pragma warning(disable : 4503)\n#pragma warning(disable : 4822)\n#pragma warning(disable : 4505)\n#endif\n#if __has_include(<__config>)\n#include <__config>\n#endif\n#if defined(_LIBCPP_VERSION)\n_LIBCPP_BEGIN_NAMESPACE_STD\n#else\nnamespace std {\n#endif\ntemplate <class>\nclass shared_ptr;\ntemplate <class>\nclass weak_ptr;\ntemplate <class, class>\nclass unique_ptr;\ntemplate <class>\nstruct char_traits;\ntemplate <class...>\nclass tuple;\ntemplate <class, class>\nclass vector;\ntemplate <class, class, class>\nclass set;\ntemplate <class>\nclass move_iterator;\n#if defined(_LIBCPP_VERSION)\n_LIBCPP_END_NAMESPACE_STD\n#else\n}\n#endif\nnamespace std {\ntemplate <class>\nclass initializer_list;\n}\nnamespace boost {\ntemplate <class>\nclass shared_ptr;\n}\nBOOST_DI_NAMESPACE_BEGIN\nstruct _ {\n  _(...) {}\n};\nnamespace aux {\nusing swallow = int[];\ntemplate <class T>\nusing owner = T;\ntemplate <class...>\nstruct valid {\n  using type = int;\n};\ntemplate <class... Ts>\nusing valid_t = typename valid<Ts...>::type;\ntemplate <class...>\nstruct type {};\nstruct none_type {};\ntemplate <class T, T>\nstruct non_type {};\ntemplate <class...>\nstruct always {\n  static constexpr auto value = true;\n};\ntemplate <class...>\nstruct never {\n  static constexpr auto value = false;\n};\ntemplate <class T, class...>\nstruct identity {\n  using type = T;\n};\ntemplate <class...>\nstruct type_list {\n  using type = type_list;\n};\ntemplate <bool...>\nstruct bool_list {\n  using type = bool_list;\n};\ntemplate <class T1, class T2>\nstruct pair {\n  using type = pair;\n  using first = T1;\n  using second = T2;\n};\ntemplate <class... Ts>\nstruct inherit : Ts... {\n  using type = inherit;\n};\ntemplate <class... Ts>\nstruct join {\n  using type = type_list<>;\n};\ntemplate <class T>\nstruct join<T> {\n  using type = T;\n};\ntemplate <class... T1s, class... T2s, class... Ts>\nstruct join<type_list<T1s...>, type_list<T2s...>, Ts...> : join<type_list<T1s..., T2s...>, Ts...> {};\ntemplate <class... Ts, class... T1s, class... T2s, class... T3s, class... T4s, class... T5s, class... T6s, class... T7s,\n          class... T8s, class... T9s, class... T10s, class... T11s, class... T12s, class... T13s, class... T14s, class... T15s,\n          class... T16s, class... Us>\nstruct join<type_list<Ts...>, type_list<T1s...>, type_list<T2s...>, type_list<T3s...>, type_list<T4s...>, type_list<T5s...>,\n            type_list<T6s...>, type_list<T7s...>, type_list<T8s...>, type_list<T9s...>, type_list<T10s...>, type_list<T11s...>,\n            type_list<T12s...>, type_list<T13s...>, type_list<T14s...>, type_list<T15s...>, type_list<T16s...>, Us...>\n    : join<type_list<Ts..., T1s..., T2s..., T3s..., T4s..., T5s..., T6s..., T7s..., T8s..., T9s..., T10s..., T11s..., T12s...,\n                     T13s..., T14s..., T15s..., T16s...>,\n           Us...> {};\ntemplate <class... TArgs>\nusing join_t = typename join<TArgs...>::type;\ntemplate <int...>\nstruct index_sequence {\n  using type = index_sequence;\n};\n#if __has_builtin(__make_integer_seq)\ntemplate <class T, T...>\nstruct integer_sequence;\ntemplate <int... Ns>\nstruct integer_sequence<int, Ns...> {\n  using type = index_sequence<Ns...>;\n};\ntemplate <int N>\nstruct make_index_sequence_impl {\n  using type = typename __make_integer_seq<integer_sequence, int, N>::type;\n};\n#else\ntemplate <int>\nstruct make_index_sequence_impl;\ntemplate <>\nstruct make_index_sequence_impl<0> : index_sequence<> {};\ntemplate <>\nstruct make_index_sequence_impl<1> : index_sequence<0> {};\ntemplate <>\nstruct make_index_sequence_impl<2> : index_sequence<0, 1> {};\ntemplate <>\nstruct make_index_sequence_impl<3> : index_sequence<0, 1, 2> {};\ntemplate <>\nstruct make_index_sequence_impl<4> : index_sequence<0, 1, 2, 3> {};\ntemplate <>\nstruct make_index_sequence_impl<5> : index_sequence<0, 1, 2, 3, 4> {};\ntemplate <>\nstruct make_index_sequence_impl<6> : index_sequence<0, 1, 2, 3, 4, 5> {};\ntemplate <>\nstruct make_index_sequence_impl<7> : index_sequence<0, 1, 2, 3, 4, 5, 6> {};\ntemplate <>\nstruct make_index_sequence_impl<8> : index_sequence<0, 1, 2, 3, 4, 5, 6, 7> {};\ntemplate <>\nstruct make_index_sequence_impl<9> : index_sequence<0, 1, 2, 3, 4, 5, 6, 7, 8> {};\ntemplate <>\nstruct make_index_sequence_impl<10> : index_sequence<0, 1, 2, 3, 4, 5, 6, 7, 8, 9> {};\n#endif\ntemplate <int N>\nusing make_index_sequence = typename make_index_sequence_impl<N>::type;\n}\ntemplate <class, class = void>\nstruct named {};\nstruct no_name {\n  constexpr auto operator()() const noexcept { return \"\"; }\n};\ntemplate <class, class = int>\nstruct ctor_traits;\ntemplate <class>\nstruct self {};\nstruct ignore_policies {};\nnamespace core {\ntemplate <class>\nstruct any_type_fwd;\ntemplate <class>\nstruct any_type_ref_fwd;\ntemplate <class>\nstruct any_type_1st_fwd;\ntemplate <class>\nstruct any_type_1st_ref_fwd;\nstruct dependency_base {};\nstruct injector_base {};\ntemplate <class T>\nstruct dependency__ : T {\n  using T::try_create;\n  using T::is_referable;\n  using T::create;\n};\ntemplate <class T>\nstruct injector__ : T {\n  using T::try_create;\n  using T::create_impl;\n  using T::create_successful_impl;\n#if defined(__MSVC__)\n  template <class... Ts>\n  using is_creatable = typename T::template is_creatable<Ts...>;\n#else\n  using T::is_creatable;\n#endif\n};\ntemplate <class, class...>\nstruct array;\nstruct deduced {};\ntemplate <class, class TExpected = deduced, class = TExpected, class = no_name, class = void>\nclass dependency;\n}\nnamespace scopes {\nclass deduce;\nclass instance;\nclass singleton;\nclass unique;\n}\n#define __BOOST_DI_REQUIRES(...) typename ::boost::di::v1_1_0::aux::enable_if<__VA_ARGS__, int>::type\n#define __BOOST_DI_REQUIRES_MSG(...) typename ::boost::di::v1_1_0::aux::concept_check<__VA_ARGS__>::type\nnamespace aux {\ntemplate <class T>\nT&& declval();\ntemplate <class T, T V>\nstruct integral_constant {\n  using type = integral_constant;\n  static constexpr T value = V;\n};\nusing true_type = integral_constant<bool, true>;\nusing false_type = integral_constant<bool, false>;\ntemplate <bool B, class T, class F>\nstruct conditional {\n  using type = T;\n};\ntemplate <class T, class F>\nstruct conditional<false, T, F> {\n  using type = F;\n};\ntemplate <bool B, class T, class F>\nusing conditional_t = typename conditional<B, T, F>::type;\ntemplate <bool B, class T = void>\nstruct enable_if {};\ntemplate <class T>\nstruct enable_if<true, T> {\n  using type = T;\n};\ntemplate <bool B, class T = void>\nusing enable_if_t = typename enable_if<B, T>::type;\ntemplate <class T>\nstruct concept_check {\n  static_assert(T::value, \"constraint not satisfied\");\n};\ntemplate <>\nstruct concept_check<true_type> {\n  using type = int;\n};\ntemplate <class T>\nstruct remove_reference {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_reference<T&> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_reference<T&&> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_reference_t = typename remove_reference<T>::type;\ntemplate <class T>\nstruct remove_pointer {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_pointer<T*> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_pointer_t = typename remove_pointer<T>::type;\ntemplate <class T>\nstruct remove_smart_ptr {\n  using type = T;\n};\ntemplate <class T, class TDeleter>\nstruct remove_smart_ptr<std::unique_ptr<T, TDeleter>> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_smart_ptr<std::shared_ptr<T>> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_smart_ptr<std::weak_ptr<T>> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_smart_ptr<boost::shared_ptr<T>> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_smart_ptr_t = typename remove_smart_ptr<T>::type;\ntemplate <class T>\nstruct remove_qualifiers {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<const T> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T&> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<const T&> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T*> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<const T*> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T* const&> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T* const> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<const T* const> {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_qualifiers<T&&> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_qualifiers_t = typename remove_qualifiers<T>::type;\ntemplate <class T>\nstruct remove_extent {\n  using type = T;\n};\ntemplate <class T>\nstruct remove_extent<T[]> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_extent_t = typename remove_extent<T>::type;\ntemplate <class T>\nstruct deref_type {\n  using type = T;\n};\ntemplate <class T, class TDeleter>\nstruct deref_type<std::unique_ptr<T, TDeleter>> {\n  using type = remove_qualifiers_t<typename deref_type<T>::type>;\n};\ntemplate <class T>\nstruct deref_type<std::shared_ptr<T>> {\n  using type = remove_qualifiers_t<typename deref_type<T>::type>;\n};\ntemplate <class T>\nstruct deref_type<boost::shared_ptr<T>> {\n  using type = remove_qualifiers_t<typename deref_type<T>::type>;\n};\ntemplate <class T>\nstruct deref_type<std::weak_ptr<T>> {\n  using type = remove_qualifiers_t<typename deref_type<T>::type>;\n};\ntemplate <class T, class TAllocator>\nstruct deref_type<std::vector<T, TAllocator>> {\n  using type = core::array<remove_qualifiers_t<typename deref_type<T>::type>>;\n};\ntemplate <class TKey, class TCompare, class TAllocator>\nstruct deref_type<std::set<TKey, TCompare, TAllocator>> {\n  using type = core::array<remove_qualifiers_t<typename deref_type<TKey>::type>>;\n};\ntemplate <class T>\nusing decay_t = typename deref_type<remove_qualifiers_t<T>>::type;\ntemplate <class, class>\nstruct is_same : false_type {};\ntemplate <class T>\nstruct is_same<T, T> : true_type {};\ntemplate <class T, class U>\nstruct is_base_of : integral_constant<bool, __is_base_of(T, U)> {};\ntemplate <class T>\nstruct is_class : integral_constant<bool, __is_class(T)> {};\ntemplate <class T>\nstruct is_abstract : integral_constant<bool, __is_abstract(T)> {};\ntemplate <class T>\nstruct is_polymorphic : integral_constant<bool, __is_polymorphic(T)> {};\ntemplate <class...>\nusing is_valid_expr = true_type;\n#if __has_extension(is_constructible) && !((__clang_major__ == 3) && (__clang_minor__ == 5))\ntemplate <class T, class... TArgs>\nusing is_constructible = integral_constant<bool, __is_constructible(T, TArgs...)>;\n#else\ntemplate <class T, class... TArgs>\ndecltype(void(T(declval<TArgs>()...)), true_type{}) test_is_constructible(int);\ntemplate <class, class...>\nfalse_type test_is_constructible(...);\ntemplate <class T, class... TArgs>\nstruct is_constructible : decltype(test_is_constructible<T, TArgs...>(0)) {};\n#endif\ntemplate <class T, class... TArgs>\nusing is_constructible_t = typename is_constructible<T, TArgs...>::type;\ntemplate <class T, class... TArgs>\ndecltype(void(T{declval<TArgs>()...}), true_type{}) test_is_braces_constructible(int);\ntemplate <class, class...>\nfalse_type test_is_braces_constructible(...);\ntemplate <class T, class... TArgs>\nusing is_braces_constructible = decltype(test_is_braces_constructible<T, TArgs...>(0));\ntemplate <class T, class... TArgs>\nusing is_braces_constructible_t = typename is_braces_constructible<T, TArgs...>::type;\n#if defined(__MSVC__)\ntemplate <class T>\nstruct is_copy_constructible : integral_constant<bool, __is_constructible(T, const T&)> {};\ntemplate <class T>\nstruct is_default_constructible : integral_constant<bool, __is_constructible(T)> {};\n#else\ntemplate <class T>\nusing is_copy_constructible = is_constructible<T, const T&>;\ntemplate <class T>\nusing is_default_constructible = is_constructible<T>;\n#endif\n#if defined(__CLANG__) || defined(__MSVC__)\ntemplate <class T, class U>\nstruct is_convertible : integral_constant<bool, __is_convertible_to(T, U)> {};\n#else\nstruct test_is_convertible__ {\n  template <class T>\n  static void test(T);\n};\ntemplate <class T, class U, class = decltype(test_is_convertible__::test<U>(declval<T>()))>\ntrue_type test_is_convertible(int);\ntemplate <class, class>\nfalse_type test_is_convertible(...);\ntemplate <class T, class U>\nusing is_convertible = decltype(test_is_convertible<T, U>(0));\n#endif\ntemplate <class TSrc, class TDst, class U = remove_qualifiers_t<TDst>>\nusing is_narrowed = integral_constant<bool, !is_class<TSrc>::value && !is_class<U>::value && !is_same<TSrc, U>::value>;\ntemplate <class, class...>\nstruct is_array : false_type {};\ntemplate <class T, class... Ts>\nstruct is_array<T[], Ts...> : true_type {};\ntemplate <class T, class = decltype(sizeof(T))>\ntrue_type is_complete_impl(int);\ntemplate <class T>\nfalse_type is_complete_impl(...);\ntemplate <class T>\nstruct is_complete : decltype(is_complete_impl<T>(0)) {};\ntemplate <class T, class U, class = decltype(sizeof(U))>\nis_base_of<T, U> is_a_impl(int);\ntemplate <class T, class U>\nfalse_type is_a_impl(...);\ntemplate <class T, class U>\nstruct is_a : decltype(is_a_impl<T, U>(0)) {};\ntemplate <class, class...>\nstruct is_unique_impl;\ntemplate <class...>\nstruct not_unique : false_type {\n  using type = not_unique;\n};\ntemplate <>\nstruct not_unique<> : true_type {\n  using type = not_unique;\n};\ntemplate <class T>\nstruct is_unique_impl<T> : not_unique<> {};\ntemplate <class T1, class T2, class... Ts>\nstruct is_unique_impl<T1, T2, Ts...>\n    : conditional_t<is_base_of<type<T2>, T1>::value, not_unique<T2>, is_unique_impl<inherit<T1, type<T2>>, Ts...>> {};\ntemplate <class... Ts>\nusing is_unique = is_unique_impl<none_type, Ts...>;\ntemplate <class...>\nstruct unique;\ntemplate <class... Rs, class T, class... Ts>\nstruct unique<type<Rs...>, T, Ts...> : conditional_t<is_base_of<type<T>, inherit<type<Rs>...>>::value,\n                                                     unique<type<Rs...>, Ts...>, unique<type<Rs..., T>, Ts...>> {};\ntemplate <class... Rs>\nstruct unique<type<Rs...>> : type_list<Rs...> {};\ntemplate <class... Ts>\nusing unique_t = typename unique<type<>, Ts...>::type;\ntemplate <class T, class... TArgs>\ndecltype(::boost::di::v1_1_0::aux::declval<T>().operator()(::boost::di::v1_1_0::aux::declval<TArgs>()...),\n         ::boost::di::v1_1_0::aux::true_type())\nis_callable_with_impl(int);\ntemplate <class, class...>\n::boost::di::v1_1_0::aux::false_type is_callable_with_impl(...);\ntemplate <class T, class... TArgs>\nstruct is_callable_with : decltype(is_callable_with_impl<T, TArgs...>(0)) {};\nstruct callable_base_impl {\n  void operator()(...) {}\n};\ntemplate <class T>\nstruct callable_base : callable_base_impl, aux::conditional_t<aux::is_class<T>::value, T, aux::none_type> {};\ntemplate <typename T>\naux::false_type is_callable_impl(T*, aux::non_type<void (callable_base_impl::*)(...), &T::operator()>* = 0);\naux::true_type is_callable_impl(...);\ntemplate <class T>\nstruct is_callable : decltype(is_callable_impl((callable_base<T>*)0)) {};\ntemplate <class>\nstruct function_traits;\ntemplate <class R, class... TArgs>\nstruct function_traits<R (*)(TArgs...)> {\n  using result_type = R;\n  using args = type_list<TArgs...>;\n};\ntemplate <class R, class... TArgs>\nstruct function_traits<R(TArgs...)> {\n  using result_type = R;\n  using args = type_list<TArgs...>;\n};\ntemplate <class R, class T, class... TArgs>\nstruct function_traits<R (T::*)(TArgs...)> {\n  using result_type = R;\n  using args = type_list<TArgs...>;\n};\ntemplate <class R, class T, class... TArgs>\nstruct function_traits<R (T::*)(TArgs...) const> {\n  using result_type = R;\n  using args = type_list<TArgs...>;\n};\ntemplate <class T>\nusing function_traits_t = typename function_traits<T>::args;\n}\nnamespace core {\ntemplate <class T, class = typename aux::is_a<injector_base, T>::type>\nstruct bindings_impl;\ntemplate <class T>\nstruct bindings_impl<T, aux::true_type> {\n  using type = typename T::deps;\n};\ntemplate <class T>\nstruct bindings_impl<T, aux::false_type> {\n  using type = aux::type_list<T>;\n};\n#if defined(__MSVC__)\ntemplate <class... Ts>\nstruct bindings : aux::join_t<typename bindings_impl<Ts>::type...> {};\ntemplate <class... Ts>\nusing bindings_t = typename bindings<Ts...>::type;\n#else\ntemplate <class... Ts>\nusing bindings_t = aux::join_t<typename bindings_impl<Ts>::type...>;\n#endif\n}\nnamespace concepts {\ntemplate <class T, class...>\nstruct type_ {\n  template <class TName>\n  struct named {\n    struct is_bound_more_than_once : aux::false_type {};\n  };\n  struct is_bound_more_than_once : aux::false_type {};\n  struct is_neither_a_dependency_nor_an_injector : aux::false_type {};\n  struct has_disallowed_qualifiers : aux::false_type {};\n  struct is_abstract :\n#if (BOOST_DI_CFG_DIAGNOSTICS_LEVEL >= 2)\n      // clang-format off\n      decltype(\n    T{}\n   ),\n// clang-format on\n#endif\n      aux::false_type {\n  };\n  template <class>\n  struct is_not_related_to : aux::false_type {};\n};\ntemplate <class...>\nstruct any_of : aux::false_type {};\ntemplate <class... TDeps>\nstruct is_supported : aux::is_same<aux::bool_list<aux::always<TDeps>::value...>,\n                                   aux::bool_list<(aux::is_constructible<TDeps, TDeps&&>::value &&\n                                                   (aux::is_a<core::injector_base, TDeps>::value ||\n                                                    aux::is_a<core::dependency_base, TDeps>::value))...>> {};\ntemplate <class...>\nstruct get_not_supported;\ntemplate <class T>\nstruct get_not_supported<T> {\n  using type = T;\n};\ntemplate <class T, class... TDeps>\nstruct get_not_supported<T, TDeps...>\n    : aux::conditional<aux::is_a<core::injector_base, T>::value || aux::is_a<core::dependency_base, T>::value,\n                       typename get_not_supported<TDeps...>::type, T> {};\ntemplate <class>\nstruct is_unique;\ntemplate <class T, class = int>\nstruct unique_dependency : aux::type<T> {};\ntemplate <class T>\nstruct unique_dependency<T, __BOOST_DI_REQUIRES(aux::is_a<core::dependency_base, T>::value)>\n    : aux::pair<aux::pair<typename T::expected, typename T::name>, typename T::priority> {};\ntemplate <class... TDeps>\nstruct is_unique<aux::type_list<TDeps...>> : aux::is_unique<typename unique_dependency<TDeps>::type...> {};\ntemplate <class>\nstruct get_is_unique_error_impl : aux::true_type {};\ntemplate <class T, class TName, class TPriority>\nstruct get_is_unique_error_impl<aux::not_unique<aux::pair<aux::pair<T, TName>, TPriority>>> {\n  using type = typename type_<T>::template named<TName>::is_bound_more_than_once;\n};\ntemplate <class T, class TPriority>\nstruct get_is_unique_error_impl<aux::not_unique<aux::pair<aux::pair<T, no_name>, TPriority>>> {\n  using type = typename type_<T>::is_bound_more_than_once;\n};\ntemplate <class T>\nstruct get_is_unique_error_impl<aux::not_unique<T>> {\n  using type = typename type_<T>::is_bound_more_than_once;\n};\ntemplate <class>\nstruct get_is_unique_error;\ntemplate <class... TDeps>\nstruct get_is_unique_error<aux::type_list<TDeps...>>\n    : get_is_unique_error_impl<typename aux::is_unique<typename unique_dependency<TDeps>::type...>::type> {};\ntemplate <class... TDeps>\nusing boundable_bindings =\n    aux::conditional_t<is_supported<TDeps...>::value, typename get_is_unique_error<core::bindings_t<TDeps...>>::type,\n                       typename type_<typename get_not_supported<TDeps...>::type>::is_neither_a_dependency_nor_an_injector>;\ntemplate <class... Ts>\nusing get_any_of_error = aux::conditional_t<\n    aux::is_same<aux::bool_list<aux::always<Ts>::value...>, aux::bool_list<aux::is_same<aux::true_type, Ts>::value...>>::value,\n    aux::true_type, any_of<Ts...>>;\ntemplate <bool, class...>\nstruct is_related {\n  static constexpr auto value = true;\n};\ntemplate <class I, class T>\nstruct is_related<true, I, T> {\n  static constexpr auto value =\n      aux::is_callable<T>::value ||\n      (aux::is_base_of<I, T>::value || (aux::is_convertible<T, I>::value && !aux::is_narrowed<I, T>::value));\n};\ntemplate <bool, class>\nstruct is_abstract {\n  static constexpr auto value = false;\n};\ntemplate <class T>\nstruct is_abstract<true, T> {\n  static constexpr auto value = aux::is_abstract<T>::value;\n};\nauto boundable_impl(any_of<> &&) -> aux::true_type;\ntemplate <class T, class... Ts>\nauto boundable_impl(any_of<T, Ts...> &&)\n    -> aux::conditional_t<aux::is_same<T, aux::decay_t<T>>::value, decltype(boundable_impl(aux::declval<any_of<Ts...>>())),\n                          typename type_<T>::has_disallowed_qualifiers>;\ntemplate <class I, class T>\nusing boundable_impl__ = aux::conditional_t<\n    is_related<aux::is_complete<I>::value && aux::is_complete<T>::value, I, T>::value,\n    aux::conditional_t<is_abstract<aux::is_complete<T>::value, T>::value, typename type_<T>::is_abstract, aux::true_type>,\n    typename type_<T>::template is_not_related_to<I>>;\ntemplate <class I, class T>\nauto boundable_impl(I&&, T &&) -> aux::conditional_t<aux::is_same<T, aux::decay_t<T>>::value, boundable_impl__<I, T>,\n                                                     typename type_<T>::has_disallowed_qualifiers>;\ntemplate <class I, class T>\nauto boundable_impl(I&&, T&&, aux::valid<> &&)\n    -> aux::conditional_t<is_related<aux::is_complete<I>::value && aux::is_complete<T>::value, I, T>::value, aux::true_type,\n                          typename type_<T>::template is_not_related_to<I>>;\ntemplate <class I, class T>\nauto boundable_impl(I* [], T &&) -> aux::conditional_t<aux::is_same<I, aux::decay_t<I>>::value, boundable_impl__<I, T>,\n                                                       typename type_<I>::has_disallowed_qualifiers>;\ntemplate <class I, class T>\nauto boundable_impl(I[], T &&) -> aux::conditional_t<aux::is_same<I, aux::decay_t<I>>::value, boundable_impl__<I, T>,\n                                                     typename type_<I>::has_disallowed_qualifiers>;\ntemplate <class... TDeps>\nauto boundable_impl(aux::type_list<TDeps...> &&) -> boundable_bindings<TDeps...>;\ntemplate <class T, class... Ts>\nauto boundable_impl(concepts::any_of<Ts...>&&, T &&)\n    -> get_any_of_error<decltype(boundable_impl(aux::declval<Ts>(), aux::declval<T>()))...>;\ntemplate <class... TDeps>\nauto boundable_impl(aux::type<TDeps...> &&) -> typename get_is_unique_error_impl<typename aux::is_unique<TDeps...>::type>::type;\naux::true_type boundable_impl(...);\ntemplate <class... Ts>\nstruct boundable__ {\n  using type = decltype(boundable_impl(aux::declval<Ts>()...));\n};\ntemplate <class... Ts>\nusing boundable = typename boundable__<Ts...>::type;\n}\nnamespace type_traits {\nstruct stack {};\nstruct heap {};\ntemplate <class T, class = int>\nstruct memory_traits {\n  using type = stack;\n};\ntemplate <class T>\nstruct memory_traits<T*> {\n  using type = heap;\n};\ntemplate <class T>\nstruct memory_traits<const T&> {\n  using type = typename memory_traits<T>::type;\n};\ntemplate <class T, class TDeleter>\nstruct memory_traits<std::unique_ptr<T, TDeleter>> {\n  using type = heap;\n};\ntemplate <class T>\nstruct memory_traits<std::shared_ptr<T>> {\n  using type = heap;\n};\ntemplate <class T>\nstruct memory_traits<boost::shared_ptr<T>> {\n  using type = heap;\n};\ntemplate <class T>\nstruct memory_traits<std::weak_ptr<T>> {\n  using type = heap;\n};\ntemplate <class T>\nstruct memory_traits<T, __BOOST_DI_REQUIRES(aux::is_polymorphic<T>::value)> {\n  using type = heap;\n};\ntemplate <class T>\nusing memory_traits_t = typename memory_traits<T>::type;\n}\nnamespace concepts {\ntemplate <class...>\nstruct scope {\n  struct is_referable {};\n  struct try_create {};\n  struct create {};\n  template <class...>\n  struct requires_ : aux::false_type {};\n};\ntemplate <class T>\nstruct provider__ {\n  template <class TMemory = type_traits::heap>\n  aux::conditional_t<aux::is_same<TMemory, type_traits::stack>::value, T, T*> try_get(const TMemory& = {}) const;\n  template <class TMemory = type_traits::heap>\n  T* get(const TMemory& = {}) const {\n    return nullptr;\n  }\n};\ntemplate <class T>\ntypename scope<T>::template requires_<typename scope<_, _>::is_referable, typename scope<_, _>::try_create,\n                                      typename scope<_, _>::create>\nscopable_impl(...);\ntemplate <class T>\nauto scopable_impl(T &&)\n    -> aux::is_valid_expr<typename T::template scope<_, _>::template is_referable<_>,\n                          decltype(T::template scope<_, _>::template try_create<_, _>(provider__<_>{})),\n                          decltype(aux::declval<typename T::template scope<_, _>>().template create<_, _>(provider__<_>{}))>;\ntemplate <class T>\nstruct scopable__ {\n  using type = decltype(scopable_impl<T>(aux::declval<T>()));\n};\ntemplate <class T>\nusing scopable = typename scopable__<T>::type;\n}\n#if !defined(BOOST_DI_CFG_CTOR_LIMIT_SIZE)\n#define BOOST_DI_CFG_CTOR_LIMIT_SIZE 10\n#endif\nnamespace type_traits {\ntemplate <class, class = int>\nstruct is_injectable : ::boost::di::v1_1_0::aux::false_type {};\ntemplate <class T>\nstruct is_injectable<T, ::boost::di::v1_1_0::aux::valid_t<typename T::boost_di_inject__>>\n    : ::boost::di::v1_1_0::aux::true_type {};\nstruct direct {};\nstruct uniform {};\ntemplate <class T, int>\nusing get = T;\ntemplate <template <class...> class, class, class, class = int>\nstruct ctor_impl;\ntemplate <template <class...> class TIsConstructible, class T>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<>> : aux::type_list<> {};\ntemplate <template <class...> class TIsConstructible, class T>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<0>,\n                 __BOOST_DI_REQUIRES(TIsConstructible<T, core::any_type_1st_fwd<T>>::value)>\n    : aux::type_list<core::any_type_1st_fwd<T>> {};\ntemplate <template <class...> class TIsConstructible, class T>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<0>,\n                 __BOOST_DI_REQUIRES(!TIsConstructible<T, core::any_type_1st_fwd<T>>::value)>\n    : aux::conditional_t<TIsConstructible<T, core::any_type_1st_ref_fwd<T>>::value,\n                         aux::type_list<core::any_type_1st_ref_fwd<T>>, aux::type_list<>> {};\ntemplate <template <class...> class TIsConstructible, class T, int... Ns>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<Ns...>,\n                 __BOOST_DI_REQUIRES((sizeof...(Ns) > 1) && TIsConstructible<T, get<core::any_type_fwd<T>, Ns>...>::value)>\n    : aux::type_list<get<core::any_type_fwd<T>, Ns>...> {};\ntemplate <template <class...> class TIsConstructible, class T, int... Ns>\nstruct ctor_impl<TIsConstructible, T, aux::index_sequence<Ns...>,\n                 __BOOST_DI_REQUIRES((sizeof...(Ns) > 1) && !TIsConstructible<T, get<core::any_type_fwd<T>, Ns>...>::value)>\n    : aux::conditional<TIsConstructible<T, get<core::any_type_ref_fwd<T>, Ns>...>::value,\n                       aux::type_list<get<core::any_type_ref_fwd<T>, Ns>...>,\n                       typename ctor_impl<TIsConstructible, T, aux::make_index_sequence<sizeof...(Ns) - 1>>::type> {};\ntemplate <template <class...> class TIsConstructible, class T>\nusing ctor_impl_t = typename ctor_impl<TIsConstructible, T, aux::make_index_sequence<BOOST_DI_CFG_CTOR_LIMIT_SIZE>>::type;\ntemplate <class...>\nstruct ctor;\ntemplate <class T>\nstruct ctor<T, aux::type_list<>> : aux::pair<uniform, ctor_impl_t<aux::is_braces_constructible, T>> {};\ntemplate <class T, class... TArgs>\nstruct ctor<T, aux::type_list<TArgs...>> : aux::pair<direct, aux::type_list<TArgs...>> {};\ntemplate <class T, class = void, class = typename is_injectable<T>::type>\nstruct ctor_traits__;\ntemplate <class T, class, class = typename is_injectable<ctor_traits<T>>::type>\nstruct ctor_traits_impl;\ntemplate <class T, class _>\nstruct ctor_traits__<T, _, aux::true_type> : aux::pair<T, aux::pair<direct, typename T::boost_di_inject__::type>> {};\ntemplate <class T, class _>\nstruct ctor_traits__<T, _, aux::false_type> : ctor_traits_impl<T, _> {};\ntemplate <class T, class _>\nstruct ctor_traits_impl<T, _, aux::true_type>\n    : aux::pair<T, aux::pair<direct, typename ctor_traits<T>::boost_di_inject__::type>> {};\ntemplate <class T, class _>\nstruct ctor_traits_impl<T, _, aux::false_type> : aux::pair<T, typename ctor_traits<T>::type> {};\n}\ntemplate <class T, class>\nstruct ctor_traits : type_traits::ctor<T, type_traits::ctor_impl_t<aux::is_constructible, T>> {};\ntemplate <class T>\nstruct ctor_traits<std::initializer_list<T>> {\n  using boost_di_inject__ = aux::type_list<>;\n};\ntemplate <class... Ts>\nstruct ctor_traits<std::tuple<Ts...>> {\n  using boost_di_inject__ = aux::type_list<Ts...>;\n};\ntemplate <class T>\nstruct ctor_traits<T, __BOOST_DI_REQUIRES(aux::is_same<std::char_traits<char>, typename T::traits_type>::value)> {\n  using boost_di_inject__ = aux::type_list<>;\n};\ntemplate <class T>\nstruct ctor_traits<T, __BOOST_DI_REQUIRES(!aux::is_class<T>::value)> {\n  using boost_di_inject__ = aux::type_list<>;\n};\nnamespace type_traits {\ntemplate <class T>\nstruct remove_named {\n  using type = T;\n};\ntemplate <class TName, class T>\nstruct remove_named<named<TName, T>> {\n  using type = T;\n};\ntemplate <class T>\nusing remove_named_t = typename remove_named<T>::type;\ntemplate <class T>\nstruct add_named {\n  using type = named<no_name, T>;\n};\ntemplate <class TName, class T>\nstruct add_named<named<TName, T>> {\n  using type = named<TName, T>;\n};\ntemplate <class T>\nusing add_named_t = typename add_named<T>::type;\ntemplate <class T>\nstruct named_decay {\n  using type = aux::decay_t<T>;\n};\ntemplate <class TName, class T>\nstruct named_decay<named<TName, T>> {\n  using type = named<TName, aux::decay_t<T>>;\n};\ntemplate <class T>\nusing named_decay_t = typename named_decay<T>::type;\n}\nnamespace type_traits {\ntemplate <class, class T>\nstruct rebind_traits {\n  using type = T;\n};\ntemplate <class T, class TName, class _>\nstruct rebind_traits<T, named<TName, _>> {\n  using type = named<TName, T>;\n};\ntemplate <class T, class D, class U>\nstruct rebind_traits<std::unique_ptr<T, D>, U> {\n  using type = std::unique_ptr<U, D>;\n};\ntemplate <class T, class D, class TName, class _>\nstruct rebind_traits<std::unique_ptr<T, D>, named<TName, _>> {\n  using type = named<TName, std::unique_ptr<T, D>>;\n};\ntemplate <class T, class U>\nstruct rebind_traits<std::shared_ptr<T>, U> {\n  using type = std::shared_ptr<U>;\n};\ntemplate <class T, class TName, class _>\nstruct rebind_traits<std::shared_ptr<T>, named<TName, _>> {\n  using type = named<TName, std::shared_ptr<T>>;\n};\ntemplate <class T, class U>\nstruct rebind_traits<std::weak_ptr<T>, U> {\n  using type = std::weak_ptr<U>;\n};\ntemplate <class T, class TName, class _>\nstruct rebind_traits<std::weak_ptr<T>, named<TName, _>> {\n  using type = named<TName, std::weak_ptr<T>>;\n};\ntemplate <class T, class U>\nstruct rebind_traits<boost::shared_ptr<T>, U> {\n  using type = boost::shared_ptr<U>;\n};\ntemplate <class T, class TName, class _>\nstruct rebind_traits<boost::shared_ptr<T>, named<TName, _>> {\n  using type = named<TName, boost::shared_ptr<T>>;\n};\ntemplate <class T, class U>\nusing rebind_traits_t = typename rebind_traits<T, U>::type;\n}\nnamespace core {\ntemplate <class T, class... Ts>\nstruct array_impl {\n  using boost_di_inject__ = aux::type_list<Ts...>;\n  explicit array_impl(type_traits::remove_named_t<Ts>&&... args)\n      : array{static_cast<type_traits::remove_named_t<Ts>&&>(args)...} {}\n  T array[sizeof...(Ts)];\n};\ntemplate <class T, class... Ts>\nstruct array<T(), Ts...> : T {\n  using value_type = typename T::value_type;\n  using array_t = array_impl<value_type, type_traits::rebind_traits_t<value_type, Ts>...>;\n  using boost_di_inject__ = aux::type_list<array_t&&>;\n  template <__BOOST_DI_REQUIRES(\n                aux::is_constructible<T, std::move_iterator<value_type*>, std::move_iterator<value_type*>>::value) = 0>\n  explicit array(array_t&& a)\n      : T(std::move_iterator<value_type*>(a.array), std::move_iterator<value_type*>(a.array + sizeof...(Ts))) {}\n};\ntemplate <class T>\nstruct array<T()> : T {\n  using boost_di_inject__ = aux::type_list<>;\n};\n}\nnamespace type_traits {\ntemplate <class _, class T, class... Ts>\nstruct ctor_traits__<core::array<_, Ts...>, T, aux::false_type>\n    : type_traits::ctor_traits__<core::array<aux::remove_smart_ptr_t<aux::remove_qualifiers_t<T>>(), Ts...>> {};\n}\nnamespace wrappers {\ntemplate <class TScope, class T, class TObject = std::shared_ptr<T>>\nstruct shared {\n  using scope = TScope;\n  template <class>\n  struct is_referable_impl : aux::true_type {};\n  template <class I>\n  struct is_referable_impl<std::shared_ptr<I>> : aux::is_same<I, T> {};\n  template <class I>\n  struct is_referable_impl<boost::shared_ptr<I>> : aux::false_type {};\n  template <class T_>\n  using is_referable = is_referable_impl<aux::remove_qualifiers_t<T_>>;\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator std::shared_ptr<I>() const noexcept {\n    return object;\n  }\n  inline operator std::shared_ptr<T>&() noexcept { return object; }\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator boost::shared_ptr<I>() const noexcept {\n    struct sp_holder {\n      std::shared_ptr<T> object;\n      void operator()(...) noexcept { object.reset(); }\n    };\n    return {object.get(), sp_holder{object}};\n  }\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator std::weak_ptr<I>() const noexcept {\n    return object;\n  }\n  inline operator T&() noexcept { return *object; }\n  inline operator const T&() const noexcept { return *object; }\n  TObject object;\n};\ntemplate <class TScope, class T>\nstruct shared<TScope, T&> {\n  using scope = TScope;\n  template <class>\n  struct is_referable : aux::true_type {};\n  explicit shared(T& object) : object(&object) {}\n  template <class I>\n  explicit shared(I);\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T, I>::value) = 0>\n  inline operator I() const noexcept {\n    return *object;\n  }\n  inline operator T&() const noexcept { return *object; }\n  T* object = nullptr;\n};\n}\nnamespace scopes {\naux::false_type has_shared_ptr__(...);\n#if !defined(BOOST_DI_DISABLE_SHARED_PTR_DEDUCTION)\ntemplate <class T>\nauto has_shared_ptr__(T &&) -> aux::is_valid_expr<decltype(std::shared_ptr<T>{})>;\n#endif\nclass singleton {\n public:\n  template <class, class T, class = decltype(has_shared_ptr__(aux::declval<T>()))>\n  class scope {\n   public:\n    template <class T_>\n    using is_referable = typename wrappers::shared<singleton, T&>::template is_referable<T_>;\n    template <class, class, class TProvider>\n    static decltype(wrappers::shared<singleton, T&>{aux::declval<TProvider>().get(type_traits::stack{})}) try_create(\n        const TProvider&);\n    template <class, class, class TProvider>\n    auto create(const TProvider& provider) {\n      return create_impl(provider);\n    }\n\n   private:\n    template <class TProvider>\n    wrappers::shared<singleton, T&> create_impl(const TProvider& provider) {\n      static auto object(provider.get(type_traits::stack{}));\n      return wrappers::shared<singleton, T&>(object);\n    }\n  };\n  template <class _, class T>\n  class scope<_, T, aux::true_type> {\n   public:\n    template <class T_>\n    using is_referable = typename wrappers::shared<singleton, T>::template is_referable<T_>;\n    template <class, class, class TProvider, class T_ = aux::decay_t<decltype(aux::declval<TProvider>().get())>>\n    static decltype(wrappers::shared<singleton, T_>{std::shared_ptr<T_>{std::shared_ptr<T_>{aux::declval<TProvider>().get()}}})\n    try_create(const TProvider&);\n    template <class, class, class TProvider>\n    auto create(const TProvider& provider) {\n      return create_impl<aux::decay_t<decltype(provider.get())>>(provider);\n    }\n\n   private:\n    template <class T_, class TProvider>\n    auto create_impl(const TProvider& provider) {\n      static std::shared_ptr<T_> object{provider.get()};\n      return wrappers::shared<singleton, T_, std::shared_ptr<T_>&>{object};\n    }\n  };\n};\n}\nnamespace wrappers {\ntemplate <class TScope, class T>\nstruct unique {\n  using scope = TScope;\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T, I>::value) = 0>\n  inline operator I() const noexcept {\n    return object;\n  }\n  inline operator T &&() noexcept { return static_cast<T&&>(object); }\n  T object;\n};\ntemplate <class TScope, class T>\nstruct unique<TScope, T*> {\n  using scope = TScope;\n#if defined(__MSVC__)\n  explicit unique(T* object) : object(object) {}\n#endif\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T, I>::value) = 0>\n  inline operator I() const noexcept {\n    struct scoped_ptr {\n      aux::owner<T*> ptr;\n      ~scoped_ptr() noexcept { delete ptr; }\n    };\n    return *scoped_ptr{object}.ptr;\n  }\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator aux::owner<I*>() const noexcept {\n    return object;\n  }\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, const I*>::value) = 0>\n  inline operator aux::owner<const I*>() const noexcept {\n    return object;\n  }\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator std::shared_ptr<I>() const noexcept {\n    return std::shared_ptr<I>{object};\n  }\n  template <class I, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator boost::shared_ptr<I>() const noexcept {\n    return boost::shared_ptr<I>{object};\n  }\n  template <class I, class D, __BOOST_DI_REQUIRES(aux::is_convertible<T*, I*>::value) = 0>\n  inline operator std::unique_ptr<I, D>() const noexcept {\n    return std::unique_ptr<I, D>{object};\n  }\n  T* object = nullptr;\n};\n}\nnamespace scopes {\nclass unique {\n public:\n  template <class, class>\n  class scope {\n   public:\n    template <class>\n    using is_referable = aux::false_type;\n    template <class T, class, class TProvider>\n    static decltype(wrappers::unique<unique, decltype(aux::declval<TProvider>().get(type_traits::memory_traits_t<T>{}))>{\n        aux::declval<TProvider>().get(type_traits::memory_traits_t<T>{})})\n    try_create(const TProvider&);\n    template <class T, class, class TProvider>\n    auto create(const TProvider& provider) const {\n      using memory = type_traits::memory_traits_t<T>;\n      using wrapper = wrappers::unique<unique, decltype(provider.get(memory{}))>;\n      return wrapper{provider.get(memory{})};\n    }\n  };\n};\n}\nnamespace type_traits {\ntemplate <class T>\nstruct scope_traits {\n  using type = scopes::unique;\n};\ntemplate <class T>\nstruct scope_traits<T&> {\n  using type = scopes::singleton;\n};\ntemplate <class T>\nstruct scope_traits<std::shared_ptr<T>> {\n  using type = scopes::singleton;\n};\ntemplate <class T>\nstruct scope_traits<boost::shared_ptr<T>> {\n  using type = scopes::singleton;\n};\ntemplate <class T>\nstruct scope_traits<std::weak_ptr<T>> {\n  using type = scopes::singleton;\n};\ntemplate <class T>\nusing scope_traits_t = typename scope_traits<T>::type;\n}\nnamespace scopes {\nclass deduce {\n public:\n  template <class TExpected, class TGiven>\n  class scope {\n   public:\n    template <class T>\n    using is_referable = typename type_traits::scope_traits_t<T>::template scope<TExpected, TGiven>::template is_referable<T>;\n    template <class T, class TName, class TProvider>\n    static decltype(typename type_traits::scope_traits_t<T>::template scope<TExpected, TGiven>{}.template try_create<T, TName>(\n        aux::declval<TProvider>()))\n    try_create(const TProvider&);\n    template <class T, class TName, class TProvider>\n    auto create(const TProvider& provider) {\n      using scope_traits = type_traits::scope_traits_t<T>;\n      using scope = typename scope_traits::template scope<TExpected, TGiven>;\n      return scope{}.template create<T, TName>(provider);\n    }\n  };\n};\n}\nnamespace concepts {\ntemplate <class T>\nstruct abstract_type {\n  struct is_not_bound {\n    operator T*() const {\n      using constraint_not_satisfied = is_not_bound;\n      return constraint_not_satisfied{}.error();\n    }\n    // clang-format off\n    static inline T*\n error(_ = \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\");\n    // clang-format on\n  };\n  template <class TName>\n  struct named {\n    struct is_not_bound {\n      operator T*() const {\n        using constraint_not_satisfied = is_not_bound;\n        return constraint_not_satisfied{}.error();\n      }\n      // clang-format off\n      static inline T*\n   error(_ = \"type is not bound, did you forget to add: 'di::bind<interface>.named(name).to<implementation>()'?\");\n      // clang-format on\n    };\n  };\n};\ntemplate <class TScope, class T>\nstruct scoped {\n  template <class To>\n  struct is_not_convertible_to {\n    operator To() const {\n      using constraint_not_satisfied = is_not_convertible_to;\n      return constraint_not_satisfied{}.error();\n    }\n    // clang-format off\n    static inline To\n error(_ = \"scoped object is not convertible to the requested type, did you mistake the scope: 'di::bind<T>.in(scope)'?\");\n    // clang-format on\n  };\n};\ntemplate <class T>\nstruct scoped<scopes::instance, T> {\n  template <class To>\n  struct is_not_convertible_to {\n    operator To() const {\n      using constraint_not_satisfied = is_not_convertible_to;\n      return constraint_not_satisfied{}.error();\n    }\n    // clang-format off\n    static inline To\n error(_ = \"instance is not convertible to the requested type, verify binding: 'di::bind<T>.to(value)'?\");\n    // clang-format on\n  };\n};\ntemplate <class T>\nstruct type {\n  struct has_ambiguous_number_of_constructor_parameters {\n    template <int Given>\n    struct given {\n      template <int Expected>\n      struct expected {\n        operator T*() const {\n          using constraint_not_satisfied = expected;\n          return constraint_not_satisfied{}.error();\n        }\n        // clang-format off\n        static inline T*\n  error(_ = \"verify BOOST_DI_INJECT_TRAITS or di::ctor_traits\");\n        // clang-format on\n      };\n    };\n  };\n  struct has_to_many_constructor_parameters {\n    template <int TMax>\n    struct max {\n      operator T*() const {\n        using constraint_not_satisfied = max;\n        return constraint_not_satisfied{}.error();\n      }\n      // clang-format off\n      static inline T*\n   error(_ = \"increase BOOST_DI_CFG_CTOR_LIMIT_SIZE value or reduce number of constructor parameters\");\n      // clang-format on\n    };\n  };\n  struct is_not_exposed {\n    operator T() const {\n      using constraint_not_satisfied = is_not_exposed;\n      return constraint_not_satisfied{}.error();\n    }\n    // clang-format off\n      static inline T\n   error(_ = \"type is not exposed, did you forget to add: 'di::injector<T>'?\");\n    // clang-format on\n  };\n  template <class TName>\n  struct named {\n    struct is_not_exposed {\n      operator T() const {\n        using constraint_not_satisfied = is_not_exposed;\n        return constraint_not_satisfied{}.error();\n      }\n      // clang-format off\n      static inline T\n   error(_ = \"type is not exposed, did you forget to add: 'di::injector<BOOST_DI_EXPOSE((named = name)T)>'?\");\n      // clang-format on\n    };\n  };\n};\ntemplate <class>\nstruct ctor_size;\ntemplate <class TInit, class... TCtor>\nstruct ctor_size<aux::pair<TInit, aux::type_list<TCtor...>>> : aux::integral_constant<int, sizeof...(TCtor)> {};\ntemplate <class... TCtor>\nstruct ctor_size<aux::type_list<TCtor...>> : aux::integral_constant<int, sizeof...(TCtor)> {};\ntemplate <class T>\nusing ctor_size_t = ctor_size<typename type_traits::ctor<T, type_traits::ctor_impl_t<aux::is_constructible, T>>::type>;\ntemplate <class TInitialization, class TName, class _, class TCtor, class T = aux::decay_t<_>>\nstruct creatable_error_impl\n    : aux::conditional_t<\n          aux::is_polymorphic<T>::value,\n          aux::conditional_t<aux::is_same<TName, no_name>::value, typename abstract_type<T>::is_not_bound,\n                             typename abstract_type<T>::template named<TName>::is_not_bound>,\n          aux::conditional_t<ctor_size_t<T>::value == ctor_size<TCtor>::value,\n                             typename type<T>::has_to_many_constructor_parameters::template max<BOOST_DI_CFG_CTOR_LIMIT_SIZE>,\n                             typename type<T>::has_ambiguous_number_of_constructor_parameters::template given<\n                                 ctor_size<TCtor>::value>::template expected<ctor_size_t<T>::value>>> {};\ntemplate <class TInit, class T, class... TArgs>\nstruct creatable {\n  static constexpr auto value = aux::is_constructible<T, TArgs...>::value;\n};\ntemplate <class T, class... TArgs>\nstruct creatable<type_traits::uniform, T, TArgs...> {\n  static constexpr auto value = aux::is_braces_constructible<T, TArgs...>::value;\n};\ntemplate <class TInitialization, class TName, class T, class... TArgs>\nT creatable_error() {\n  return creatable_error_impl<TInitialization, TName, T, aux::type_list<TArgs...>>{};\n}\n}\nnamespace scopes {\nclass instance;\nnamespace detail {\ntemplate <class T, class TExpected, class TGiven>\nstruct arg {\n  using type = T;\n  using expected = TExpected;\n  using given = TGiven;\n};\ntemplate <class T>\nstruct wrapper_traits {\n  using type = wrappers::unique<instance, T>;\n};\ntemplate <class T>\nstruct wrapper_traits<std::shared_ptr<T>> {\n  using type = wrappers::shared<instance, T>;\n};\ntemplate <class T>\nusing wrapper_traits_t = typename wrapper_traits<T>::type;\ntemplate <class, class = int>\nstruct has_result_type : ::boost::di::v1_1_0::aux::false_type {};\ntemplate <class T>\nstruct has_result_type<T, ::boost::di::v1_1_0::aux::valid_t<typename T::result_type>> : ::boost::di::v1_1_0::aux::true_type {};\ntemplate <class TGiven, class TProvider, class... Ts>\nstruct is_expr : aux::integral_constant<bool,\n                                        aux::is_callable_with<TGiven, typename TProvider::injector_t, Ts...>::value &&\n                                            !has_result_type<TGiven>::value> {};\n}\ntemplate <class T>\nstruct wrapper {\n  inline operator T() noexcept { return static_cast<T&&>(object); }\n  T object;\n};\nclass instance {\n public:\n  template <class, class TGiven, class = int>\n  struct scope {\n    template <class>\n    using is_referable = aux::false_type;\n    explicit scope(const TGiven& object) : object_{object} {}\n    template <class, class, class TProvider>\n    static wrappers::unique<instance, TGiven> try_create(const TProvider&);\n    template <class, class, class TProvider>\n    auto create(const TProvider&) const noexcept {\n      return wrappers::unique<instance, TGiven>{object_};\n    }\n    TGiven object_;\n  };\n  template <class TExpected, class TGiven>\n  struct scope<TExpected, std::shared_ptr<TGiven>> {\n    template <class T>\n    using is_referable = typename wrappers::shared<instance, TGiven>::template is_referable<aux::remove_qualifiers_t<T>>;\n    explicit scope(const std::shared_ptr<TGiven>& object) : object_{object} {}\n    template <class, class, class TProvider>\n    static wrappers::shared<instance, TGiven> try_create(const TProvider&);\n    template <class, class, class TProvider>\n    auto create(const TProvider&) const noexcept {\n      return wrappers::shared<instance, TGiven>{object_};\n    }\n    std::shared_ptr<TGiven> object_;\n  };\n  template <class TExpected, class TGiven>\n  struct scope<TExpected, std::initializer_list<TGiven>> {\n    template <class>\n    using is_referable = aux::false_type;\n    scope(const std::initializer_list<TGiven>& object) : object_(object) {}\n    template <class, class, class TProvider>\n    static std::initializer_list<TGiven> try_create(const TProvider&);\n    template <class, class, class TProvider>\n    auto create(const TProvider&) const noexcept {\n      return wrappers::unique<instance, std::initializer_list<TGiven>>{object_};\n    }\n    std::initializer_list<TGiven> object_;\n  };\n  template <class TExpected, class TGiven>\n  struct scope<TExpected, TGiven&, __BOOST_DI_REQUIRES(!aux::is_callable<TGiven>::value)> {\n    template <class>\n    using is_referable = aux::true_type;\n    explicit scope(TGiven& object) : object_{object} {}\n    template <class, class, class TProvider>\n    static wrappers::shared<instance, TGiven&> try_create(const TProvider&);\n    template <class, class, class TProvider>\n    auto create(const TProvider&) const noexcept {\n      return object_;\n    }\n    wrappers::shared<instance, TGiven&> object_;\n  };\n  template <class TExpected, class TGiven>\n  struct scope<TExpected, TGiven, __BOOST_DI_REQUIRES(aux::is_callable<TGiven>::value)> {\n    template <class>\n    using is_referable =\n        aux::integral_constant<bool, !aux::is_callable<TExpected>::value || !detail::has_result_type<TExpected>::value>;\n    explicit scope(const TGiven& object) : object_(object) {}\n#if defined(__MSVC__)\n    template <class T, class, class TProvider>\n    static T try_create(const TProvider&) noexcept;\n#else\n    template <class, class, class TProvider,\n              __BOOST_DI_REQUIRES(!detail::is_expr<TGiven, TProvider>::value && aux::is_callable<TGiven>::value &&\n                                  aux::is_callable<TExpected>::value) = 0>\n    static wrappers::unique<instance, TExpected> try_create(const TProvider&) noexcept;\n    template <class T, class, class TProvider,\n              __BOOST_DI_REQUIRES(!detail::is_expr<TGiven, TProvider>::value && aux::is_callable_with<TGiven>::value &&\n                                  !aux::is_callable<TExpected>::value) = 0>\n    static auto try_create(const TProvider&) noexcept\n        -> detail::wrapper_traits_t<decltype(aux::declval<typename aux::identity<TGiven, T>::type>()())>;\n    template <class, class, class TProvider, __BOOST_DI_REQUIRES(detail::is_expr<TGiven, TProvider>::value) = 0>\n    static detail::wrapper_traits_t<decltype(aux::declval<TGiven>()(aux::declval<typename TProvider::injector_t>()))>\n    try_create(const TProvider&) noexcept;\n    template <class T, class, class TProvider,\n              __BOOST_DI_REQUIRES(detail::is_expr<TGiven, TProvider, const detail::arg<T, TExpected, TGiven>&>::value) = 0>\n    static detail::wrapper_traits_t<decltype(aux::declval<TGiven>()(aux::declval<typename TProvider::injector_t>(),\n                                                                    aux::declval<detail::arg<T, TExpected, TGiven>>()))>\n    try_create(const TProvider&) noexcept;\n#endif\n    template <class, class, class TProvider,\n              __BOOST_DI_REQUIRES(!detail::is_expr<TGiven, TProvider>::value && aux::is_callable<TGiven>::value &&\n                                  aux::is_callable<TExpected>::value) = 0>\n    auto create(const TProvider&) const noexcept {\n      return wrappers::unique<instance, TExpected>{object_};\n    }\n    template <class T, class, class TProvider,\n              __BOOST_DI_REQUIRES(!detail::is_expr<TGiven, TProvider>::value && aux::is_callable_with<TGiven>::value &&\n                                  !aux::is_callable<TExpected>::value) = 0>\n    auto create(const TProvider&) const {\n      using wrapper = detail::wrapper_traits_t<decltype(aux::declval<TGiven>()())>;\n      return wrapper{object_()};\n    }\n    template <class, class, class TProvider, __BOOST_DI_REQUIRES(detail::is_expr<TGiven, TProvider>::value) = 0>\n    auto create(const TProvider& provider) {\n      using wrapper = detail::wrapper_traits_t<decltype((object_)(*provider.injector_))>;\n      return wrapper{(object_)(*provider.injector_)};\n    }\n    template <class T, class, class TProvider,\n              __BOOST_DI_REQUIRES(detail::is_expr<TGiven, TProvider, const detail::arg<T, TExpected, TGiven>&>::value) = 0>\n    auto create(const TProvider& provider) {\n      using wrapper = detail::wrapper_traits_t<decltype((object_)(*provider.injector_, detail::arg<T, TExpected, TGiven>{}))>;\n      return wrapper{(object_)(*provider.injector_, detail::arg<T, TExpected, TGiven>{})};\n    }\n    TGiven object_;\n  };\n  template <class _, class... Ts>\n  class scope<_, aux::type_list<Ts...>> {\n    template <class>\n    struct injector__;\n    template <class TName, class T>\n    struct injector__<named<TName, T>> {\n      T (*f)(const injector__*) = nullptr;\n      explicit injector__(const decltype(f) & ptr) : f(ptr) {}\n    };\n    struct injector : injector__<Ts>... {\n      void (*dtor)(injector*) = nullptr;\n      ~injector() noexcept { static_cast<injector*>(this)->dtor(this); }\n      template <class TName, class T>\n      T create(const named<TName, T>&, const aux::true_type&) const noexcept {\n        return static_cast<const injector__<named<TName, T>>*>(this)->f(static_cast<const injector__<named<TName, T>>*>(this));\n      }\n      template <class T>\n      T create(const named<no_name, T>&, const aux::false_type&) const noexcept {\n        return typename concepts::type<T>::is_not_exposed{};\n      }\n      template <class TName, class T>\n      T create(const named<TName, T>&, const aux::false_type&) const noexcept {\n        return typename concepts::type<T>::template named<TName>::is_not_exposed{};\n      }\n    };\n    template <class TInjector>\n    class injector_impl : injector__<Ts>... {\n      void (*dtor)(injector_impl*) = nullptr;\n      static void dtor_impl(injector_impl* object) { object->~injector_impl(); }\n      template <class, class>\n      struct create;\n      template <class TName, class T>\n      struct create<named<TName, T>, aux::true_type> {\n        static T impl(const injector__<named<TName, T>>* object) noexcept {\n          using type = aux::type<aux::conditional_t<aux::is_same<TName, no_name>::value, T, named<TName, T>>>;\n          return static_cast<const core::injector__<TInjector>&>(static_cast<const injector_impl*>(object)->injector_)\n              .create_successful_impl(type{});\n        }\n      };\n      template <class TName, class T>\n      struct create<named<TName, T>, aux::false_type> {\n        static T impl(const injector__<named<TName, T>>* object) noexcept {\n          using type = aux::type<aux::conditional_t<aux::is_same<TName, no_name>::value, T, named<TName, T>>>;\n          return static_cast<const core::injector__<TInjector>&>(static_cast<const injector_impl*>(object)->injector_)\n              .create_impl(type{});\n        }\n      };\n      template <class T>\n      struct is_creatable : aux::integral_constant<bool, core::injector__<TInjector>::template is_creatable<T>::value> {};\n      template <class TName, class T>\n      struct is_creatable<named<TName, T>>\n          : aux::integral_constant<bool, core::injector__<TInjector>::template is_creatable<T, TName>::value> {};\n\n     public:\n      explicit injector_impl(TInjector&& injector) noexcept\n          : injector__<Ts>(&injector_impl::template create<Ts, typename is_creatable<Ts>::type>::impl)...,\n            dtor(&injector_impl::dtor_impl),\n            injector_(static_cast<TInjector&&>(injector)) {}\n\n     private:\n      TInjector injector_;\n    };\n\n   public:\n    template <class>\n    using is_referable = aux::true_type;\n    template <class TInjector, __BOOST_DI_REQUIRES(aux::is_a<core::injector_base, TInjector>::value) = 0>\n    explicit scope(TInjector&& i) noexcept : injector_((injector*)new injector_impl<TInjector>{static_cast<TInjector&&>(i)}) {}\n    scope(scope&& other) noexcept : injector_(other.injector_) { other.injector_ = nullptr; }\n    ~scope() noexcept { delete injector_; }\n    template <class T, class TName, class TProvider>\n    static aux::conditional_t<aux::is_base_of<injector__<named<TName, T>>, injector>::value, T, void> try_create(\n        const TProvider&);\n    template <class T, class TName, class TProvider>\n    auto create(const TProvider&) {\n      return wrapper<T>{injector_->create(named<TName, T>{}, aux::is_base_of<injector__<named<TName, T>>, injector>{})};\n    }\n\n   private:\n    injector* injector_;\n  };\n};\n}\nnamespace core {\ntemplate <class, class>\nstruct dependency_concept {};\ntemplate <class T, class TDependency>\nstruct dependency_impl : aux::pair<T, TDependency> {};\ntemplate <class T>\nstruct make_dependency_concept {\n  using type = dependency_concept<T, no_name>;\n};\ntemplate <class TName, class T>\nstruct make_dependency_concept<named<TName, T>> {\n  using type = dependency_concept<T, TName>;\n};\ntemplate <class... Ts, class TName, class TDependency>\nstruct dependency_impl<dependency_concept<concepts::any_of<Ts...>, TName>, TDependency>\n    : aux::pair<dependency_concept<Ts, TName>, TDependency>... {};\ntemplate <class... Ts, class TDependency>\nstruct dependency_impl<dependency_concept<aux::type_list<Ts...>, no_name>, TDependency>\n    : aux::pair<typename make_dependency_concept<Ts>::type, TDependency>... {};\nstruct override {};\ntemplate <class TScope, class TExpected, class TGiven, class TName, class TPriority>\nclass dependency\n    : dependency_base,\n      __BOOST_DI_ACCESS_WKND TScope::template scope<TExpected, TGiven>,\n      public dependency_impl<dependency_concept<TExpected, TName>, dependency<TScope, TExpected, TGiven, TName, TPriority>> {\n  template <class, class, class, class, class>\n  friend class dependency;\n  using scope_t = typename TScope::template scope<TExpected, TGiven>;\n  template <class T>\n  using externable = aux::integral_constant<\n      bool, aux::always<T>::value && aux::is_same<TScope, scopes::deduce>::value && aux::is_same<TExpected, TGiven>::value>;\n  template <class T>\n  struct ref_traits {\n    using type = T;\n  };\n  template <int N>\n  struct ref_traits<const char (&)[N]> {\n    using type = TExpected;\n  };\n  template <class R, class... Ts>\n  struct ref_traits<R (&)(Ts...)> {\n    using type = TExpected;\n  };\n  template <class T>\n  struct ref_traits<std::shared_ptr<T>&> {\n    using type = std::shared_ptr<T>;\n  };\n  template <class T, class>\n  struct deduce_traits {\n    using type = T;\n  };\n  template <class T>\n  struct deduce_traits<deduced, T> {\n    using type = aux::decay_t<T>;\n  };\n  template <class T, class U>\n  using deduce_traits_t = typename deduce_traits<T, U>::type;\n\n public:\n  using scope = TScope;\n  using expected = TExpected;\n  using given = TGiven;\n  using name = TName;\n  using priority = TPriority;\n  dependency() noexcept {}\n  template <class T>\n  explicit dependency(T&& object) noexcept : scope_t(static_cast<T&&>(object)) {}\n  template <class T, __BOOST_DI_REQUIRES(aux::is_same<TName, no_name>::value && !aux::is_same<T, no_name>::value) = 0>\n  auto named() noexcept {\n    return dependency<TScope, TExpected, TGiven, T, TPriority>{static_cast<dependency&&>(*this)};\n  }\n  template <class T, __BOOST_DI_REQUIRES(aux::is_same<TName, no_name>::value && !aux::is_same<T, no_name>::value) = 0>\n  auto named(const T&) noexcept {\n    return dependency<TScope, TExpected, TGiven, T, TPriority>{static_cast<dependency&&>(*this)};\n  }\n  template <class T, __BOOST_DI_REQUIRES_MSG(concepts::scopable<T>) = 0>\n  auto in(const T&)noexcept {\n    return dependency<T, TExpected, TGiven, TName, TPriority>{};\n  }\n  template <class T, __BOOST_DI_REQUIRES(!aux::is_array<TExpected, T>::value) = 0,\n            __BOOST_DI_REQUIRES_MSG(concepts::boundable<TExpected, T>) = 0>\n  auto to() noexcept {\n    return dependency<TScope, TExpected, T, TName, TPriority>{};\n  }\n  template <class... Ts, __BOOST_DI_REQUIRES(aux::is_array<TExpected, Ts...>::value) = 0>\n  auto to() noexcept {\n    using type = aux::remove_pointer_t<aux::remove_extent_t<TExpected>>;\n    return dependency<TScope, array<type>, array<type, Ts...>, TName, TPriority>{};\n  }\n  template <class T, __BOOST_DI_REQUIRES_MSG(concepts::boundable<TExpected, T>) = 0>\n  auto to(std::initializer_list<T>&& object) noexcept {\n    using type = aux::remove_pointer_t<aux::remove_extent_t<TExpected>>;\n    using dependency = dependency<scopes::instance, array<type>, std::initializer_list<T>, TName, TPriority>;\n    return dependency{object};\n  }\n  template <class T, __BOOST_DI_REQUIRES(externable<T>::value) = 0,\n            __BOOST_DI_REQUIRES_MSG(concepts::boundable<deduce_traits_t<TExpected, T>, aux::decay_t<T>, aux::valid<>>) = 0>\n  auto to(T&& object) noexcept {\n    using dependency =\n        dependency<scopes::instance, deduce_traits_t<TExpected, T>, typename ref_traits<T>::type, TName, TPriority>;\n    return dependency{static_cast<T&&>(object)};\n  }\n  template <class TConcept, class T, __BOOST_DI_REQUIRES(externable<T>::value) = 0,\n            __BOOST_DI_REQUIRES_MSG(concepts::boundable<deduce_traits_t<TExpected, T>, aux::decay_t<T>, aux::valid<>>) = 0>\n  auto to(T&& object) noexcept {\n    using dependency = dependency<scopes::instance, deduce_traits_t<concepts::any_of<TExpected, TConcept>, T>,\n                                  typename ref_traits<T>::type, TName, TPriority>;\n    return dependency{static_cast<T&&>(object)};\n  }\n  template <template <class...> class T>\n  auto to() noexcept {\n    return dependency<TScope, TExpected, aux::identity<T<>>, TName, TPriority>{};\n  }\n  template <class...>\n  dependency& to(...) const noexcept;\n  auto operator[](const override&) noexcept {\n    return dependency<TScope, TExpected, TGiven, TName, override>{static_cast<dependency&&>(*this)};\n  }\n#if defined(__cpp_variable_templates)\n  dependency& operator()() noexcept { return *this; }\n#endif\n#if defined(__MSVC__)\n public:\n#else\n protected:\n#endif\n  using scope_t::is_referable;\n  using scope_t::create;\n  using scope_t::try_create;\n  template <class, class>\n  static void try_create(...);\n};\n}\nnamespace core {\ntemplate <class = aux::type_list<>>\nstruct pool;\ntemplate <class... TArgs>\nusing pool_t = pool<aux::type_list<TArgs...>>;\ntemplate <class... TArgs>\nstruct pool<aux::type_list<TArgs...>> : TArgs... {\n  template <class... Ts>\n  explicit pool(Ts... args) noexcept : Ts(static_cast<Ts&&>(args))... {}\n  template <class... Ts, class TPool>\n  pool(const aux::type_list<Ts...>&, TPool p) noexcept : pool(static_cast<Ts&&>(p)...) {\n    (void)p;\n  }\n};\n}\nnamespace concepts {\nstruct call_operator_with_one_argument {};\ntemplate <class>\nstruct policy {\n  template <class>\n  struct requires_ : aux::false_type {};\n};\nstruct arg_wrapper {\n  using type = _;\n  using expected = _;\n  using given = _;\n  using name = no_name;\n  using arity = aux::integral_constant<int, 0>;\n  using scope = scopes::deduce;\n  using is_root = aux::false_type;\n  template <class, class, class>\n  struct resolve;\n};\naux::false_type callable_impl(...);\ntemplate <class T, class TArg>\nauto callable_impl(const T&& t, TArg&& arg) -> aux::is_valid_expr<decltype(t(arg))>;\ntemplate <class...>\nstruct is_callable_impl;\ntemplate <class T, class... Ts>\nstruct is_callable_impl<T, Ts...> {\n  using callable_with_arg = decltype(callable_impl(aux::declval<T>(), arg_wrapper{}));\n  using type = aux::conditional_t<callable_with_arg::value, typename is_callable_impl<Ts...>::type,\n                                  typename policy<T>::template requires_<call_operator_with_one_argument>>;\n};\ntemplate <>\nstruct is_callable_impl<> : aux::true_type {};\ntemplate <class... Ts>\nstruct is_callable : is_callable_impl<Ts...> {};\ntemplate <class... Ts>\nstruct is_callable<core::pool<aux::type_list<Ts...>>> : is_callable_impl<Ts...> {};\ntemplate <>\nstruct is_callable<void> {\n  using type = policy<void>::requires_<call_operator_with_one_argument>;\n};\ntemplate <class... Ts>\nusing callable = typename is_callable<Ts...>::type;\n}\nnamespace providers {\nclass stack_over_heap {\n public:\n  template <class TInitialization, class T, class... TArgs>\n  struct is_creatable {\n    static constexpr auto value = concepts::creatable<TInitialization, T, TArgs...>::value;\n  };\n  template <class T, class... TArgs>\n  auto get(const type_traits::direct&, const type_traits::heap&, TArgs&&... args) {\n    return new T(static_cast<TArgs&&>(args)...);\n  }\n  template <class T, class... TArgs>\n  auto get(const type_traits::uniform&, const type_traits::heap&, TArgs&&... args) {\n    return new T{static_cast<TArgs&&>(args)...};\n  }\n  template <class T, class... TArgs>\n  auto get(const type_traits::direct&, const type_traits::stack&, TArgs&&... args) const {\n    return T(static_cast<TArgs&&>(args)...);\n  }\n  template <class T, class... TArgs>\n  auto get(const type_traits::uniform&, const type_traits::stack&, TArgs&&... args) const {\n    return T{static_cast<TArgs&&>(args)...};\n  }\n};\n}\n#if !defined(BOOST_DI_CFG)\n#define BOOST_DI_CFG ::boost::di::v1_1_0::config\n#endif\ntemplate <class... TPolicies, __BOOST_DI_REQUIRES_MSG(concepts::callable<TPolicies...>) = 0>\ninline auto make_policies(TPolicies... args) noexcept {\n  return core::pool_t<TPolicies...>(static_cast<TPolicies&&>(args)...);\n}\nstruct config {\n  template <class T>\n  static auto provider(T*) noexcept {\n    return providers::stack_over_heap{};\n  }\n  template <class T>\n  static auto policies(T*) noexcept {\n    return make_policies();\n  }\n};\nnamespace detail {\ntemplate <class...>\nstruct bind;\ntemplate <class TScope>\nstruct bind<int, TScope> {\n  using type = core::dependency<TScope>;\n};\ntemplate <class TScope, class T>\nstruct bind<int, TScope, T> {\n  using type = core::dependency<TScope, T>;\n};\ntemplate <class TScope, class... Ts>\nstruct bind<int, TScope, Ts...> {\n  using type = core::dependency<TScope, concepts::any_of<Ts...>>;\n};\n}\ntemplate <class... Ts>\n#if defined(__cpp_variable_templates)\ntypename\n#else\nstruct bind :\n#endif\n    detail::bind<__BOOST_DI_REQUIRES_MSG(concepts::boundable<concepts::any_of<Ts...>>), scopes::deduce, Ts...>::type\n#if defined(__cpp_variable_templates)\n        bind\n#endif\n{};\nstatic constexpr __BOOST_DI_UNUSED core::override override{};\nstatic constexpr __BOOST_DI_UNUSED scopes::deduce deduce{};\nstatic constexpr __BOOST_DI_UNUSED scopes::unique unique{};\nstatic constexpr __BOOST_DI_UNUSED scopes::singleton singleton{};\nnamespace concepts {\nstruct get {};\nstruct is_creatable {};\ntemplate <class>\nstruct provider {\n  template <class...>\n  struct requires_ : aux::false_type {};\n};\ntemplate <class T>\ntypename provider<T>::template requires_<get, is_creatable> providable_impl(...);\ntemplate <class T>\nauto providable_impl(T&& t)\n    -> aux::is_valid_expr<decltype(t.template get<_>(type_traits::direct{}, type_traits::heap{})),\n                          decltype(t.template get<_>(type_traits::direct{}, type_traits::heap{}, int{})),\n                          decltype(t.template get<_>(type_traits::uniform{}, type_traits::stack{})),\n                          decltype(t.template get<_>(type_traits::uniform{}, type_traits::stack{}, int{})),\n                          decltype(T::template is_creatable<type_traits::direct, type_traits::heap, _>::value),\n                          decltype(T::template is_creatable<type_traits::uniform, type_traits::stack, _, int>::value)>;\ntemplate <class T>\nstruct providable__ {\n  using type = decltype(providable_impl<T>(aux::declval<T>()));\n};\ntemplate <class T>\nusing providable = typename providable__<T>::type;\n}\nnamespace concepts {\ntemplate <class>\nstruct policies {};\nstruct providable_type {};\nstruct callable_type {};\ntemplate <class>\nstruct config {\n  template <class...>\n  struct requires_ : aux::false_type {};\n};\ntemplate <class TConfig>\nstruct injector {\n  using config = TConfig;\n  using deps = aux::type_list<>;\n  template <class T>\n  T create() const;\n};\naux::false_type configurable_impl(...);\ntemplate <class T>\nauto configurable_impl(T &&)\n    -> aux::is_valid_expr<decltype(T::provider((injector<T>*)0)), decltype(T::policies((injector<T>*)0))>;\ntemplate <class T1, class T2>\nstruct get_configurable_error : aux::type_list<T1, T2> {};\ntemplate <class T>\nstruct get_configurable_error<aux::true_type, T> {\n  using type = T;\n};\ntemplate <class T>\nstruct get_configurable_error<T, aux::true_type> {\n  using type = T;\n};\ntemplate <>\nstruct get_configurable_error<aux::true_type, aux::true_type> : aux::true_type {};\ntemplate <class T>\nauto is_configurable(const aux::true_type&) {\n  return typename get_configurable_error<decltype(providable<decltype(T::provider((injector<T>*)0))>()),\n                                         decltype(callable<decltype(T::policies((injector<T>*)0))>())>::type{};\n}\ntemplate <class T>\nauto is_configurable(const aux::false_type&) {\n  return typename config<T>::template requires_<provider<providable_type(...)>, policies<callable_type(...)>>{};\n}\ntemplate <class T>\nstruct configurable__ {\n  using type = decltype(is_configurable<T>(decltype(configurable_impl(aux::declval<T>())){}));\n};\ntemplate <class T>\nusing configurable = typename configurable__<T>::type;\n}\nnamespace core {\nstruct binder {\n  template <class TDefault, class>\n  static TDefault resolve_impl(...) noexcept {\n    return {};\n  }\n  template <class, class TConcept, class TDependency>\n  static decltype(auto) resolve_impl(aux::pair<TConcept, TDependency>* dep) noexcept {\n    return static_cast<TDependency&>(*dep);\n  }\n  template <class, class TConcept, class TScope, class TExpected, class TGiven, class TName>\n  static decltype(auto) resolve_impl(\n      aux::pair<TConcept, dependency<TScope, TExpected, TGiven, TName, override>>* dep) noexcept {\n    return static_cast<dependency<TScope, TExpected, TGiven, TName, override>&>(*dep);\n  }\n  template <class TDefault, class>\n  static TDefault resolve_impl__(...);\n  template <class, class TConcept, class TDependency>\n  static TDependency resolve_impl__(aux::pair<TConcept, TDependency>*);\n  template <class, class TConcept, class TScope, class TExpected, class TGiven, class TName>\n  static dependency<TScope, TExpected, TGiven, TName, override> resolve_impl__(\n      aux::pair<TConcept, dependency<TScope, TExpected, TGiven, TName, override>>*);\n  template <class TDeps, class T, class TName, class TDefault>\n  struct resolve__ {\n    using type = decltype(resolve_impl__<TDefault, dependency_concept<aux::decay_t<T>, TName>>((TDeps*)0));\n  };\n#if (defined(__CLANG__) && __CLANG__ >= 3'9)  //\n  template <class TDeps, class T>\n  static T& resolve_(TDeps* deps, const aux::type<T&>&) noexcept {\n    return static_cast<T&>(*deps);\n  }\n  template <class TDeps, class T>\n  static T resolve_(TDeps*, const aux::type<T>&) noexcept {\n    return {};\n  }\n#endif\n  template <class, class T>\n  struct resolve_template_impl {\n    using type = T;\n  };\n  template <class TDeps, template <class...> class T, class... Ts>\n  struct resolve_template_impl<TDeps, aux::identity<T<Ts...>>> {\n    using type = T<typename resolve_template_impl<\n        TDeps, aux::remove_qualifiers_t<typename resolve__<\n                   TDeps, Ts, no_name, dependency<scopes::deduce, aux::decay_t<Ts>>>::type::given>>::type...>;\n  };\n  template <class T, class TName = no_name, class TDefault = dependency<scopes::deduce, aux::decay_t<T>>, class TDeps>\n  static decltype(auto) resolve(TDeps* deps) noexcept {\n    using dependency = dependency_concept<aux::decay_t<T>, TName>;\n#if (defined(__CLANG__) && __CLANG__ >= 3'9)  //\n    return resolve_(deps, aux::type<decltype(resolve_impl<TDefault, dependency>((TDeps*)0))>{});\n#else\n    return resolve_impl<TDefault, dependency>(deps);\n#endif\n  }\n  template <class TDeps, class T, class TName = no_name, class TDefault = dependency<scopes::deduce, aux::decay_t<T>>>\n  using resolve_t = typename resolve__<TDeps, T, TName, TDefault>::type;\n  template <class TDeps, class T>\n  using resolve_template_t = typename resolve_template_impl<TDeps, aux::remove_qualifiers_t<T>>::type;\n};\n}\nnamespace core {\ntemplate <class T, class TInjector, class TError = aux::false_type>\nstruct is_referable__ {\n  static constexpr auto value = dependency__<binder::resolve_t<TInjector, T>>::template is_referable<T>::value;\n};\ntemplate <class T, class TInjector>\nstruct is_referable__<T, TInjector, aux::true_type> {\n  static constexpr auto value = true;\n};\ntemplate <class T, class TInjector, class TError>\nstruct is_creatable__ {\n  static constexpr auto value = injector__<TInjector>::template is_creatable<T>::value;\n};\ntemplate <class T, class TInjector>\nstruct is_creatable__<T, TInjector, aux::false_type> {\n  static constexpr auto value = true;\n};\ntemplate <class, class>\nstruct is_copy_ctor__ : aux::false_type {};\ntemplate <class T>\nstruct is_copy_ctor__<T, T> : aux::true_type {};\n#if defined(__GCC__) || defined(__MSVC__)\ntemplate <class T>\nstruct is_copy_ctor__<T, const T> : aux::true_type {};\n#endif\ntemplate <class TParent, class TInjector, class TError = aux::false_type>\nstruct any_type {\n  template <class T, class = __BOOST_DI_REQUIRES(is_creatable__<T, TInjector, TError>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T>{});\n  }\n  const TInjector& injector_;\n};\ntemplate <class TParent, class TInjector, class TError = aux::false_type, class TRefError = aux::false_type>\nstruct any_type_ref {\n  template <class T, class = __BOOST_DI_REQUIRES(is_creatable__<T, TInjector, TError>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T>{});\n  }\n#if defined(__GCC__)\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<T&&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T&&, TInjector, TError>::value)>\n  operator T &&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T&&>{});\n  }\n#endif\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<T&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T&, TInjector, TError>::value)>\n  operator T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T&>{});\n  }\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<const T&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<const T&, TInjector, TError>::value)>\n  operator const T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<const T&>{});\n  }\n  const TInjector& injector_;\n};\ntemplate <class TParent, class TInjector, class TError = aux::false_type>\nstruct any_type_1st {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T, TInjector, TError>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T>{});\n  }\n  const TInjector& injector_;\n};\ntemplate <class TParent, class TInjector, class TError = aux::false_type, class TRefError = aux::false_type>\nstruct any_type_1st_ref {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T, TInjector, TError>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T>{});\n  }\n#if defined(__GCC__)\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<T&&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T&&, TInjector, TError>::value)>\n  operator T &&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T&&>{});\n  }\n#endif\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<T&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<T&, TInjector, TError>::value)>\n  operator T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<T&>{});\n  }\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<const T&, TInjector, TRefError>::value),\n            class = __BOOST_DI_REQUIRES(is_creatable__<const T&, TInjector, TError>::value)>\n  operator const T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_impl(aux::type<const T&>{});\n  }\n  const TInjector& injector_;\n};\nnamespace successful {\ntemplate <class TParent, class TInjector>\nstruct any_type {\n  template <class T>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T>{});\n  }\n  const TInjector& injector_;\n};\ntemplate <class TParent, class TInjector>\nstruct any_type_ref {\n  template <class T>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T>{});\n  }\n#if defined(__GCC__)\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<T&&, TInjector>::value)>\n  operator T &&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T&&>{});\n  }\n#endif\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<T&, TInjector>::value)>\n  operator T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T&>{});\n  }\n  template <class T, class = __BOOST_DI_REQUIRES(is_referable__<const T&, TInjector>::value)>\n  operator const T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<const T&>{});\n  }\n  const TInjector& injector_;\n};\ntemplate <class TParent, class TInjector>\nstruct any_type_1st {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T>{});\n  }\n  const TInjector& injector_;\n};\ntemplate <class TParent, class TInjector>\nstruct any_type_1st_ref {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T() {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T>{});\n  }\n#if defined(__GCC__)\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<T&&, TInjector>::value)>\n  operator T &&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T&&>{});\n  }\n#endif\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<T&, TInjector>::value)>\n  operator T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<T&>{});\n  }\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value),\n            class = __BOOST_DI_REQUIRES(is_referable__<const T&, TInjector>::value)>\n  operator const T&() const {\n    return static_cast<const core::injector__<TInjector>&>(injector_).create_successful_impl(aux::type<const T&>{});\n  }\n  const TInjector& injector_;\n};\n}\ntemplate <class>\nstruct any_type_fwd {\n  template <class T>\n  operator T();\n\n private:\n  template <class T>\n  operator const T&() const;\n};\ntemplate <class>\nstruct any_type_ref_fwd {\n  template <class T>\n  operator T();\n  template <class T>\n  operator T&() const;\n#if defined(__GCC__)\n  template <class T>\n  operator T &&() const;\n#endif\n  template <class T>\n  operator const T&() const;\n};\ntemplate <class TParent>\nstruct any_type_1st_fwd {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T();\n\n private:\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator const T&() const;\n};\ntemplate <class TParent>\nstruct any_type_1st_ref_fwd {\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T();\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T&() const;\n#if defined(__GCC__)\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator T &&() const;\n#endif\n  template <class T, class = __BOOST_DI_REQUIRES(!is_copy_ctor__<TParent, T>::value)>\n  operator const T&() const;\n};\n}\nnamespace core {\ntemplate <class...>\nstruct arg_wrapper;\ntemplate <class T, class TName, class TIsRoot, template <class...> class TList, class... TCtor, class TDependency, class TDeps>\nstruct arg_wrapper<T, TName, TIsRoot, TList<TCtor...>, TDependency, TDeps> {\n  using type __BOOST_DI_UNUSED = T;\n  using expected __BOOST_DI_UNUSED = typename TDependency::expected;\n  using given __BOOST_DI_UNUSED = typename TDependency::given;\n  using name __BOOST_DI_UNUSED = TName;\n  using arity __BOOST_DI_UNUSED = aux::integral_constant<int, sizeof...(TCtor)>;\n  using scope __BOOST_DI_UNUSED = typename TDependency::scope;\n  using is_root __BOOST_DI_UNUSED = TIsRoot;\n  template <class T_, class TName_, class TDefault_>\n  using resolve = decltype(core::binder::resolve<T_, TName_, TDefault_>((TDeps*)0));\n};\ntemplate <class T>\nstruct allow_void : T {};\ntemplate <>\nstruct allow_void<void> : aux::true_type {};\nclass policy {\n  template <class TArg, class TPolicy, class TPolicies>\n  static void call_impl(const TPolicies& policies) noexcept {\n    static_cast<const TPolicy&>(policies)(TArg{});\n  }\n  template <class TArg, class TPolicy>\n  struct try_call_impl : allow_void<decltype((aux::declval<TPolicy>())(aux::declval<TArg>()))> {};\n\n public:\n  template <class, class>\n  struct try_call;\n  template <class TArg, class... TPolicies>\n  struct try_call<TArg, pool_t<TPolicies...>> : aux::is_same<aux::bool_list<aux::always<TPolicies>::value...>,\n                                                             aux::bool_list<try_call_impl<TArg, TPolicies>::value...>> {};\n  template <class TArg, class... TPolicies>\n  static void call(__BOOST_DI_UNUSED const pool_t<TPolicies...>& policies) noexcept {\n    (void)aux::swallow{0, (call_impl<TArg, TPolicies>(policies), 0)...};\n  }\n};\n}\nnamespace core {\n#if (BOOST_DI_CFG_DIAGNOSTICS_LEVEL >= 2)\ntemplate <class T>\nstruct creating {\n  creating() { type(); }\n  static inline T type(_ = \"creating...\");\n};\n#endif\ntemplate <class, class, class>\nstruct try_provider;\ntemplate <class T, class TInjector, class TProvider, class TInitialization, template <class...> class TList, class... TCtor>\nstruct try_provider<aux::pair<T, aux::pair<TInitialization, TList<TCtor...>>>, TInjector, TProvider> {\n  using injector_t = TInjector;\n  template <class>\n  struct is_creatable {\n    static constexpr auto value =\n        TProvider::template is_creatable<TInitialization, T,\n                                         typename injector__<TInjector>::template try_create<TCtor>::type...>::value;\n  };\n  template <class TMemory = type_traits::heap>\n  auto get(const TMemory& = {}) const\n      -> aux::enable_if_t<is_creatable<TMemory>::value,\n                          aux::conditional_t<aux::is_same<TMemory, type_traits::stack>::value, T, aux::remove_reference_t<T>*>>;\n};\ntemplate <class, class, class>\nstruct provider;\ntemplate <class T, class TName, class TInjector, class TInitialization, template <class...> class TList, class... TCtor>\nstruct provider<aux::pair<T, aux::pair<TInitialization, TList<TCtor...>>>, TName, TInjector> {\n  using provider_t = decltype(TInjector::config::provider((TInjector*)0));\n  using injector_t = TInjector;\n  template <class, class... TArgs>\n  struct is_creatable {\n    static constexpr auto value = provider_t::template is_creatable<TInitialization, T, TArgs...>::value;\n  };\n  template <class TMemory = type_traits::heap>\n  auto get(const TMemory& memory = {}) const {\n    return get_impl(memory, static_cast<const injector__<TInjector>*>(injector_)->create_impl(aux::type<TCtor>{})...);\n  }\n  template <class TMemory, class... TArgs, __BOOST_DI_REQUIRES(is_creatable<TMemory, TArgs...>::value) = 0>\n  auto get_impl(const TMemory& memory, TArgs&&... args) const {\n#if (BOOST_DI_CFG_DIAGNOSTICS_LEVEL >= 2)\n    (void)aux::conditional_t<injector__<TInjector>::template is_creatable<T>::value, _, creating<T>>{};\n#endif\n    return TInjector::config::provider(injector_).template get<T>(TInitialization{}, memory, static_cast<TArgs&&>(args)...);\n  }\n  template <class TMemory, class... TArgs, __BOOST_DI_REQUIRES(!is_creatable<TMemory, TArgs...>::value) = 0>\n  auto get_impl(const TMemory&, TArgs&&...) const {\n#if (BOOST_DI_CFG_DIAGNOSTICS_LEVEL > 0)\n    return concepts::creatable_error<TInitialization, TName, T*, TArgs...>();\n#else\n    return nullptr;\n#endif\n  }\n  const TInjector* injector_;\n};\nnamespace successful {\ntemplate <class, class>\nstruct provider;\ntemplate <class T, class TInjector, class TInitialization, template <class...> class TList, class... TCtor>\nstruct provider<aux::pair<T, aux::pair<TInitialization, TList<TCtor...>>>, TInjector> {\n  using injector_t = TInjector;\n  template <class TMemory = type_traits::heap>\n  auto get(const TMemory& memory = {}) const {\n    return TInjector::config::provider(injector_).template get<T>(\n        TInitialization{}, memory,\n        static_cast<const injector__<TInjector>*>(injector_)->create_successful_impl(aux::type<TCtor>{})...);\n  }\n  const TInjector* injector_;\n};\n}\n}\nnamespace core {\nnamespace successful {\ntemplate <class T, class TWrapper>\nstruct wrapper {\n  inline operator T() noexcept { return __BOOST_DI_TYPE_WKND(T) wrapper_; }\n  TWrapper wrapper_;\n};\n}\ntemplate <class T, class TWrapper, class = int>\nstruct wrapper_impl {\n  inline operator T() noexcept { return wrapper_; }\n  TWrapper wrapper_;\n};\ntemplate <class T, template <class...> class TWrapper, class TScope, class T_, class... Ts>\nstruct wrapper_impl<T, TWrapper<TScope, T_, Ts...>,\n                    __BOOST_DI_REQUIRES(!aux::is_convertible<TWrapper<TScope, T_, Ts...>, T>::value)> {\n  inline operator T() noexcept {\n    return typename concepts::scoped<TScope, aux::remove_qualifiers_t<T_>>::template is_not_convertible_to<T>{};\n  }\n  TWrapper<TScope, T_, Ts...> wrapper_;\n};\ntemplate <class T, class TWrapper>\nusing wrapper = wrapper_impl<T, TWrapper>;\n}\nnamespace core {\nstruct from_injector {};\nstruct from_deps {};\nstruct init {};\nstruct with_error {};\ntemplate <class>\nstruct copyable;\ntemplate <class T>\nstruct copyable_impl\n    : aux::conditional<\n          aux::is_default_constructible<typename T::scope::template scope<typename T::expected, typename T::given>>::value,\n          aux::type_list<>, aux::type_list<T>> {};\ntemplate <class... TDeps>\nstruct copyable<aux::type_list<TDeps...>> : aux::join<typename copyable_impl<TDeps>::type...> {};\ntemplate <class TDeps>\nusing copyable_t = typename copyable<TDeps>::type;\ntemplate <class T, class>\nstruct referable {\n  using type = T;\n};\ntemplate <class T, class TDependency>\nstruct referable<T&, TDependency> {\n  using type = aux::conditional_t<TDependency::template is_referable<T&>::value, T&, T>;\n};\ntemplate <class T, class TDependency>\nstruct referable<const T&, TDependency> {\n  using type = aux::conditional_t<TDependency::template is_referable<const T&>::value, const T&, T>;\n};\n#if defined(__MSVC__)\ntemplate <class T, class TDependency>\nstruct referable<T&&, TDependency> {\n  using type = aux::conditional_t<TDependency::template is_referable<T&&>::value, T&&, T>;\n};\n#endif\ntemplate <class T, class TDependency>\nusing referable_t = typename referable<T, TDependency>::type;\n#if defined(__MSVC__)\ntemplate <class T, class TInjector>\ninline auto build(TInjector&& injector) noexcept {\n  return T{static_cast<TInjector&&>(injector)};\n}\n#endif\ntemplate <class TConfig, class TPolicies = pool<>, class... TDeps>\nclass injector : injector_base, pool<bindings_t<TDeps...>> {\n  friend struct binder;\n  template <class>\n  friend struct pool;\n  using pool_t = pool<bindings_t<TDeps...>>;\n\n protected:\n  template <class T, class TName = no_name, class TIsRoot = aux::false_type>\n  struct is_creatable {\n    using dependency_t = binder::resolve_t<injector, T, TName>;\n    using ctor_t =\n        typename type_traits::ctor_traits__<binder::resolve_template_t<injector, typename dependency_t::given>, T>::type;\n    using ctor_args_t = typename ctor_t::second::second;\n    static constexpr auto value =\n        aux::is_convertible<decltype(dependency__<dependency_t>::template try_create<T, TName>(\n                                try_provider<ctor_t, injector, decltype(TConfig::provider((injector*)0))>{})),\n                            T>::value &&\n        policy::template try_call<arg_wrapper<T, TName, TIsRoot, ctor_args_t, dependency_t, pool_t>, TPolicies>::value;\n  };\n\n public:\n  using deps = bindings_t<TDeps...>;\n  using config = TConfig;\n  injector(injector&&) = default;\n  template <class... TArgs>\n  explicit injector(const init&, TArgs... args) noexcept : injector{from_deps{}, static_cast<TArgs&&>(args)...} {}\n  template <class TConfig_, class TPolicies_, class... TDeps_>\n  explicit injector(injector<TConfig_, TPolicies_, TDeps_...>&& other) noexcept\n      : injector{from_injector{}, static_cast<injector<TConfig_, TPolicies_, TDeps_...>&&>(other), deps{}} {}\n  template <class T, __BOOST_DI_REQUIRES(is_creatable<T, no_name, aux::true_type>::value) = 0>\n  T create() const {\n    return __BOOST_DI_TYPE_WKND(T) create_successful_impl<aux::true_type>(aux::type<T>{});\n  }\n  template <class T, __BOOST_DI_REQUIRES(!is_creatable<T, no_name, aux::true_type>::value) = 0>\n  __BOOST_DI_DEPRECATED(\"creatable constraint not satisfied\")\n  T\n      // clang-format off\n  create\n      // clang-format on\n      () const {\n    return __BOOST_DI_TYPE_WKND(T) create_impl<aux::true_type>(aux::type<T>{});\n  }\n  template <template <class...> class T,\n            __BOOST_DI_REQUIRES(\n                is_creatable<binder::resolve_template_t<injector, aux::identity<T<>>>, no_name, aux::true_type>::value) = 0>\n  binder::resolve_template_t<injector, aux::identity<T<>>>\n      // clang-format off\n  create()\n      // clang-format on\n      const {\n    using type = binder::resolve_template_t<injector, aux::identity<T<>>>;\n    return __BOOST_DI_TYPE_WKND(type) create_successful_impl<aux::true_type>(aux::type<type>{});\n  }\n  template <template <class...> class T,\n            __BOOST_DI_REQUIRES(\n                !is_creatable<binder::resolve_template_t<injector, aux::identity<T<>>>, no_name, aux::true_type>::value) = 0>\n  __BOOST_DI_DEPRECATED(\"creatable constraint not satisfied\")\n  binder::resolve_template_t<injector, aux::identity<T<>>>\n      // clang-format off\n  create()\n      // clang-format on\n      const {\n    using type = binder::resolve_template_t<injector, aux::identity<T<>>>;\n    return __BOOST_DI_TYPE_WKND(type) create_impl<aux::true_type>(aux::type<type>{});\n  }\n\n protected:\n  template <class T>\n  struct try_create {\n    using type = aux::conditional_t<is_creatable<T>::value, T, void>;\n  };\n  template <class TParent>\n  struct try_create<any_type_fwd<TParent>> {\n    using type = any_type<TParent, injector, with_error>;\n  };\n  template <class TParent>\n  struct try_create<any_type_ref_fwd<TParent>> {\n    using type = any_type_ref<TParent, injector, with_error>;\n  };\n  template <class TParent>\n  struct try_create<any_type_1st_fwd<TParent>> {\n    using type = any_type_1st<TParent, injector, with_error>;\n  };\n  template <class TParent>\n  struct try_create<any_type_1st_ref_fwd<TParent>> {\n    using type = any_type_1st_ref<TParent, injector, with_error>;\n  };\n  template <class TName, class T>\n  struct try_create<::boost::di::v1_1_0::named<TName, T>> {\n    using type = aux::conditional_t<is_creatable<T, TName>::value, T, void>;\n  };\n  template <class T>\n  struct try_create<self<T>> {\n    using type = injector;\n  };\n  template <class TIsRoot = aux::false_type, class T>\n  auto create_impl(const aux::type<T>&) const {\n    return create_impl__<TIsRoot, T>();\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_fwd<TParent>>&) const {\n    return any_type<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_ref_fwd<TParent>>&) const {\n    return any_type_ref<TParent, injector, aux::false_type, aux::true_type>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_1st_fwd<TParent>>&) const {\n    return any_type_1st<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_1st_ref_fwd<TParent>>&) const {\n    return any_type_1st_ref<TParent, injector, aux::false_type, aux::true_type>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class T, class TName>\n  auto create_impl(const aux::type<::boost::di::v1_1_0::named<TName, T>>&) const {\n    return create_impl__<TIsRoot, T, TName>();\n  }\n  template <class TIsRoot = aux::false_type, class T>\n  auto create_successful_impl(const aux::type<T>&) const {\n    return create_successful_impl__<TIsRoot, T>();\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_fwd<TParent>>&) const {\n    return successful::any_type<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_ref_fwd<TParent>>&) const {\n    return successful::any_type_ref<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_1st_fwd<TParent>>&) const {\n    return successful::any_type_1st<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_1st_ref_fwd<TParent>>&) const {\n    return successful::any_type_1st_ref<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class T, class TName>\n  auto create_successful_impl(const aux::type<::boost::di::v1_1_0::named<TName, T>>&) const {\n    return create_successful_impl__<TIsRoot, T, TName>();\n  }\n  template <class TIsRoot = aux::false_type, class T>\n  decltype(auto) create_successful_impl(const aux::type<self<T>>&) const {\n    return *this;\n  }\n\n private:\n  template <class... TArgs>\n  explicit injector(const from_deps&, TArgs... args) noexcept\n      : pool_t{copyable_t<deps>{}, core::pool_t<TArgs...>{static_cast<TArgs&&>(args)...}} {}\n  template <class TInjector, class... TArgs>\n  explicit injector(const from_injector&, TInjector&& injector, const aux::type_list<TArgs...>&) noexcept\n#if defined(__MSVC__)\n      : pool_t {\n    copyable_t<deps>{}, pool_t { build<TArgs>(static_cast<TInjector&&>(injector))... }\n  }\n#else\n      : pool_t {\n    copyable_t<deps>{}, pool_t { TArgs{static_cast<TInjector&&>(injector)}... }\n  }\n#endif\n  {}\n  template <class TIsRoot = aux::false_type, class T, class TName = no_name>\n  auto create_impl__() const {\n    auto&& dependency = binder::resolve<T, TName>((injector*)this);\n    using dependency_t = aux::remove_reference_t<decltype(dependency)>;\n    using ctor_t =\n        typename type_traits::ctor_traits__<binder::resolve_template_t<injector, typename dependency_t::given>, T>::type;\n    using provider_t = core::provider<ctor_t, TName, injector>;\n    using wrapper_t =\n        decltype(static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this}));\n    using ctor_args_t = typename ctor_t::second::second;\n    policy::template call<arg_wrapper<T, TName, TIsRoot, ctor_args_t, dependency_t, pool_t>>(TConfig::policies(this));\n    return wrapper<T, wrapper_t>{\n        static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this})};\n  }\n  template <class TIsRoot = aux::false_type, class T, class TName = no_name>\n  auto create_successful_impl__() const {\n    auto&& dependency = binder::resolve<T, TName>((injector*)this);\n    using dependency_t = aux::remove_reference_t<decltype(dependency)>;\n    using ctor_t =\n        typename type_traits::ctor_traits__<binder::resolve_template_t<injector, typename dependency_t::given>, T>::type;\n    using provider_t = successful::provider<ctor_t, injector>;\n    using wrapper_t =\n        decltype(static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this}));\n    using create_t = referable_t<T, dependency__<dependency_t>>;\n    using ctor_args_t = typename ctor_t::second::second;\n    policy::template call<arg_wrapper<T, TName, TIsRoot, ctor_args_t, dependency_t, pool_t>>(TConfig::policies(this));\n    return successful::wrapper<create_t, wrapper_t>{\n        static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this})};\n  }\n};\ntemplate <class TConfig, class... TDeps>\nclass injector<TConfig, pool<>, TDeps...> : injector_base, pool<bindings_t<TDeps...>> {\n  friend struct binder;\n  template <class>\n  friend struct pool;\n  using pool_t = pool<bindings_t<TDeps...>>;\n\n protected:\n  template <class T, class TName = no_name, class TIsRoot = aux::false_type>\n  struct is_creatable {\n    using dependency_t = binder::resolve_t<injector, T, TName>;\n    using ctor_t =\n        typename type_traits::ctor_traits__<binder::resolve_template_t<injector, typename dependency_t::given>, T>::type;\n    using ctor_args_t = typename ctor_t::second::second;\n    static constexpr auto value =\n        aux::is_convertible<decltype(dependency__<dependency_t>::template try_create<T, TName>(\n                                try_provider<ctor_t, injector, decltype(TConfig::provider((injector*)0))>{})),\n                            T>::value;\n  };\n\n public:\n  using deps = bindings_t<TDeps...>;\n  using config = TConfig;\n  injector(injector&&) = default;\n  template <class... TArgs>\n  explicit injector(const init&, TArgs... args) noexcept : injector{from_deps{}, static_cast<TArgs&&>(args)...} {}\n  template <class TConfig_, class TPolicies_, class... TDeps_>\n  explicit injector(injector<TConfig_, TPolicies_, TDeps_...>&& other) noexcept\n      : injector{from_injector{}, static_cast<injector<TConfig_, TPolicies_, TDeps_...>&&>(other), deps{}} {}\n  template <class T, __BOOST_DI_REQUIRES(is_creatable<T, no_name, aux::true_type>::value) = 0>\n  T create() const {\n    return __BOOST_DI_TYPE_WKND(T) create_successful_impl<aux::true_type>(aux::type<T>{});\n  }\n  template <class T, __BOOST_DI_REQUIRES(!is_creatable<T, no_name, aux::true_type>::value) = 0>\n  __BOOST_DI_DEPRECATED(\"creatable constraint not satisfied\")\n  T\n      // clang-format off\n  create\n      // clang-format on\n      () const {\n    return __BOOST_DI_TYPE_WKND(T) create_impl<aux::true_type>(aux::type<T>{});\n  }\n  template <template <class...> class T,\n            __BOOST_DI_REQUIRES(\n                is_creatable<binder::resolve_template_t<injector, aux::identity<T<>>>, no_name, aux::true_type>::value) = 0>\n  binder::resolve_template_t<injector, aux::identity<T<>>>\n      // clang-format off\n  create()\n      // clang-format on\n      const {\n    using type = binder::resolve_template_t<injector, aux::identity<T<>>>;\n    return __BOOST_DI_TYPE_WKND(type) create_successful_impl<aux::true_type>(aux::type<type>{});\n  }\n  template <template <class...> class T,\n            __BOOST_DI_REQUIRES(\n                !is_creatable<binder::resolve_template_t<injector, aux::identity<T<>>>, no_name, aux::true_type>::value) = 0>\n  __BOOST_DI_DEPRECATED(\"creatable constraint not satisfied\")\n  binder::resolve_template_t<injector, aux::identity<T<>>>\n      // clang-format off\n  create()\n      // clang-format on\n      const {\n    using type = binder::resolve_template_t<injector, aux::identity<T<>>>;\n    return __BOOST_DI_TYPE_WKND(type) create_impl<aux::true_type>(aux::type<type>{});\n  }\n\n protected:\n  template <class T>\n  struct try_create {\n    using type = aux::conditional_t<is_creatable<T>::value, T, void>;\n  };\n  template <class TParent>\n  struct try_create<any_type_fwd<TParent>> {\n    using type = any_type<TParent, injector, with_error>;\n  };\n  template <class TParent>\n  struct try_create<any_type_ref_fwd<TParent>> {\n    using type = any_type_ref<TParent, injector, with_error>;\n  };\n  template <class TParent>\n  struct try_create<any_type_1st_fwd<TParent>> {\n    using type = any_type_1st<TParent, injector, with_error>;\n  };\n  template <class TParent>\n  struct try_create<any_type_1st_ref_fwd<TParent>> {\n    using type = any_type_1st_ref<TParent, injector, with_error>;\n  };\n  template <class TName, class T>\n  struct try_create<::boost::di::v1_1_0::named<TName, T>> {\n    using type = aux::conditional_t<is_creatable<T, TName>::value, T, void>;\n  };\n  template <class T>\n  struct try_create<self<T>> {\n    using type = injector;\n  };\n  template <class TIsRoot = aux::false_type, class T>\n  auto create_impl(const aux::type<T>&) const {\n    return create_impl__<TIsRoot, T>();\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_fwd<TParent>>&) const {\n    return any_type<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_ref_fwd<TParent>>&) const {\n    return any_type_ref<TParent, injector, aux::false_type, aux::true_type>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_1st_fwd<TParent>>&) const {\n    return any_type_1st<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_impl(const aux::type<any_type_1st_ref_fwd<TParent>>&) const {\n    return any_type_1st_ref<TParent, injector, aux::false_type, aux::true_type>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class T, class TName>\n  auto create_impl(const aux::type<::boost::di::v1_1_0::named<TName, T>>&) const {\n    return create_impl__<TIsRoot, T, TName>();\n  }\n  template <class TIsRoot = aux::false_type, class T>\n  auto create_successful_impl(const aux::type<T>&) const {\n    return create_successful_impl__<TIsRoot, T>();\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_fwd<TParent>>&) const {\n    return successful::any_type<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_ref_fwd<TParent>>&) const {\n    return successful::any_type_ref<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_1st_fwd<TParent>>&) const {\n    return successful::any_type_1st<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class TParent>\n  auto create_successful_impl(const aux::type<any_type_1st_ref_fwd<TParent>>&) const {\n    return successful::any_type_1st_ref<TParent, injector>{*this};\n  }\n  template <class TIsRoot = aux::false_type, class T, class TName>\n  auto create_successful_impl(const aux::type<::boost::di::v1_1_0::named<TName, T>>&) const {\n    return create_successful_impl__<TIsRoot, T, TName>();\n  }\n  template <class TIsRoot = aux::false_type, class T>\n  decltype(auto) create_successful_impl(const aux::type<self<T>>&) const {\n    return *this;\n  }\n\n private:\n  template <class... TArgs>\n  explicit injector(const from_deps&, TArgs... args) noexcept\n      : pool_t{copyable_t<deps>{}, core::pool_t<TArgs...>{static_cast<TArgs&&>(args)...}} {}\n  template <class TInjector, class... TArgs>\n  explicit injector(const from_injector&, TInjector&& injector, const aux::type_list<TArgs...>&) noexcept\n#if defined(__MSVC__)\n      : pool_t {\n    copyable_t<deps>{}, pool_t { build<TArgs>(static_cast<TInjector&&>(injector))... }\n  }\n#else\n      : pool_t {\n    copyable_t<deps>{}, pool_t { TArgs{static_cast<TInjector&&>(injector)}... }\n  }\n#endif\n  {}\n  template <class TIsRoot = aux::false_type, class T, class TName = no_name>\n  auto create_impl__() const {\n    auto&& dependency = binder::resolve<T, TName>((injector*)this);\n    using dependency_t = aux::remove_reference_t<decltype(dependency)>;\n    using ctor_t =\n        typename type_traits::ctor_traits__<binder::resolve_template_t<injector, typename dependency_t::given>, T>::type;\n    using provider_t = core::provider<ctor_t, TName, injector>;\n    using wrapper_t =\n        decltype(static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this}));\n    return wrapper<T, wrapper_t>{\n        static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this})};\n  }\n  template <class TIsRoot = aux::false_type, class T, class TName = no_name>\n  auto create_successful_impl__() const {\n    auto&& dependency = binder::resolve<T, TName>((injector*)this);\n    using dependency_t = aux::remove_reference_t<decltype(dependency)>;\n    using ctor_t =\n        typename type_traits::ctor_traits__<binder::resolve_template_t<injector, typename dependency_t::given>, T>::type;\n    using provider_t = successful::provider<ctor_t, injector>;\n    using wrapper_t =\n        decltype(static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this}));\n    using create_t = referable_t<T, dependency__<dependency_t>>;\n    return successful::wrapper<create_t, wrapper_t>{\n        static_cast<dependency__<dependency_t>&>(dependency).template create<T, TName>(provider_t{this})};\n  }\n};\n}\nnamespace detail {\ntemplate <class>\nvoid create(const aux::true_type&) {}\n// clang-format off\ntemplate <class>\n__BOOST_DI_DEPRECATED(\"creatable constraint not satisfied\") void\ncreate\n(const aux::false_type&) {}\n// clang-format on\ntemplate <class, class, class...>\nstruct injector;\ntemplate <class, class>\nstruct is_creatable_impl;\ntemplate <class TInjector, class TName, class T>\nstruct is_creatable_impl<TInjector, named<TName, T>> {\n  static constexpr auto value = core::injector__<TInjector>::template is_creatable<T, TName>::value;\n};\ntemplate <class TConfig, class T, class... TGivens>\nstruct injector<TConfig, int, core::dependency<scopes::instance, T, aux::type_list<TGivens...>>>\n    : core::injector<TConfig, core::pool<>, core::dependency<scopes::instance, T, aux::type_list<TGivens...>>> {\n  template <class... Ts>\n  injector(core::injector<Ts...>&& injector) noexcept\n      : core::injector<TConfig, core::pool<>, core::dependency<scopes::instance, T, aux::type_list<TGivens...>>>(\n            static_cast<core::injector<Ts...>&&>(injector)) {\n    using injector_t = core::injector<Ts...>;\n    int _[]{0,\n            // clang-format off\n            (detail::\ncreate<T> (\n     aux::integral_constant<bool, is_creatable_impl<injector_t, TGivens>::value>{}),\n             0)...};\n    // clang-format on\n    (void)_;\n  }\n};\n}\ntemplate <class T, class... Ts>\nusing injector = detail::injector<\n    BOOST_DI_CFG, __BOOST_DI_REQUIRES_MSG(concepts::boundable<aux::type<T, Ts...>>),\n    core::dependency<scopes::instance, aux::unique_t<type_traits::named_decay_t<T>, type_traits::named_decay_t<Ts>...>,\n                     aux::type_list<type_traits::add_named_t<T>, type_traits::add_named_t<Ts>...>>>;\n// clang-format off\n#define __BOOST_DI_EXPOSE_IMPL__(...) decltype(::boost::di::v1_1_0::detail::__VA_ARGS__),\n#define __BOOST_DI_EXPOSE_IMPL(...) ::boost::di::v1_1_0::named<__BOOST_DI_EXPOSE_IMPL__ __VA_ARGS__>\n#define BOOST_DI_EXPOSE(...) __BOOST_DI_IF(__BOOST_DI_IBP(__VA_ARGS__), __BOOST_DI_EXPOSE_IMPL, __BOOST_DI_EXPAND)(__VA_ARGS__)\n// clang-format on\n#if defined(__MSVC__)\n#define __BOOST_DI_MAKE_INJECTOR(...) __VA_ARGS__\n#else\nnamespace detail {\nstatic auto make_injector = [](auto injector) {\n  using injector_t = decltype(injector);\n  struct i : injector_t {\n    explicit i(injector_t&& other) : injector_t(static_cast<injector_t&&>(other)) {}\n  };\n  return i{static_cast<injector_t&&>(injector)};\n};\n}\n#define __BOOST_DI_MAKE_INJECTOR(...) detail::make_injector(__VA_ARGS__)\n#endif\ntemplate <class TConfig = BOOST_DI_CFG, class... TDeps,\n          __BOOST_DI_REQUIRES_MSG(concepts::boundable<aux::type_list<TDeps...>>) = 0,\n          __BOOST_DI_REQUIRES_MSG(concepts::configurable<TConfig>) = 0>\ninline auto make_injector(TDeps... args) noexcept {\n  return __BOOST_DI_MAKE_INJECTOR(\n      core::injector<TConfig, decltype(((TConfig*)0)->policies((concepts::injector<TConfig>*)0)), TDeps...>{\n          core::init{}, static_cast<TDeps&&>(args)...});\n}\nnamespace policies {\nnamespace detail {\nstruct type_op {};\ntemplate <class T, class = int>\nstruct apply_impl {\n  template <class>\n  struct apply : T {};\n};\ntemplate <template <class...> class T, class... Ts>\nstruct apply_impl<T<Ts...>, __BOOST_DI_REQUIRES(!aux::is_base_of<type_op, T<Ts...>>::value)> {\n  template <class TOp, class>\n  struct apply_placeholder_impl {\n    using type = TOp;\n  };\n  template <class TOp>\n  struct apply_placeholder_impl<_, TOp> {\n    using type = TOp;\n  };\n  template <template <class...> class TExpr, class TOp, class... TArgs>\n  struct apply_placeholder {\n    using type = TExpr<typename apply_placeholder_impl<TArgs, TOp>::type...>;\n  };\n  template <class TArg>\n  struct apply : apply_placeholder<T, typename TArg::type, Ts...>::type {};\n};\ntemplate <class T>\nstruct apply_impl<T, __BOOST_DI_REQUIRES(aux::is_base_of<type_op, T>::value)> {\n  template <class TArg>\n  struct apply : T::template apply<TArg>::type {};\n};\ntemplate <class T>\nstruct not_ : detail::type_op {\n  template <class TArg>\n  struct apply : aux::integral_constant<bool, !detail::apply_impl<T>::template apply<TArg>::value> {};\n};\ntemplate <class... Ts>\nstruct and_ : detail::type_op {\n  template <class TArg>\n  struct apply : aux::is_same<aux::bool_list<detail::apply_impl<Ts>::template apply<TArg>::value...>,\n                              aux::bool_list<aux::always<Ts>::value...>> {};\n};\ntemplate <class... Ts>\nstruct or_ : detail::type_op {\n  template <class TArg>\n  struct apply : aux::integral_constant<bool,\n                                        !aux::is_same<aux::bool_list<detail::apply_impl<Ts>::template apply<TArg>::value...>,\n                                                      aux::bool_list<aux::never<Ts>::value...>>::value> {};\n};\n}\ntemplate <class T>\nstruct type {\n  template <class TPolicy>\n  struct not_allowed_by {\n    operator aux::false_type() const {\n      using constraint_not_satisfied = not_allowed_by;\n      return constraint_not_satisfied{}.error();\n    }\n    // clang-format off\n    static inline aux::false_type\n error(_ = \"type disabled by constructible policy, added by BOOST_DI_CFG or make_injector<CONFIG>!\");\n    // clang-format on\n  };\n};\ntemplate <class T>\nstruct is_bound : detail::type_op {\n  struct not_resolved {};\n  template <class TArg>\n  struct apply\n      : aux::integral_constant<\n            bool,\n            !aux::is_same<typename TArg::template resolve<aux::conditional_t<aux::is_same<T, _>::value, typename TArg::type, T>,\n                                                          typename TArg::name, not_resolved>,\n                          not_resolved>::value> {};\n};\ntemplate <class T>\nstruct is_injected : detail::type_op {\n  template <class TArg, class U = aux::decay_t<aux::conditional_t<aux::is_same<T, _>::value, typename TArg::type, T>>>\n  struct apply : aux::conditional_t<aux::is_class<U>::value, typename type_traits::is_injectable<U>::type, aux::true_type> {};\n};\nnamespace operators {\ntemplate <class X, class Y>\ninline auto operator||(const X&, const Y&) {\n  return detail::or_<X, Y>{};\n}\ntemplate <class X, class Y>\ninline auto operator&&(const X&, const Y&) {\n  return detail::and_<X, Y>{};\n}\ntemplate <class T>\ninline auto operator!(const T&) {\n  return detail::not_<T>{};\n}\n}\ntemplate <class T>\nstruct constructible_impl {\n  template <class TArg, __BOOST_DI_REQUIRES(TArg::is_root::value || T::template apply<TArg>::value) = 0>\n  aux::true_type operator()(const TArg&) const {\n    return {};\n  }\n  template <class TArg, __BOOST_DI_REQUIRES(!TArg::is_root::value && !T::template apply<TArg>::value) = 0>\n  aux::false_type operator()(const TArg&) const {\n    return typename type<typename TArg::type>::template not_allowed_by<T>{};\n  }\n};\ntemplate <class T = aux::never<_>, __BOOST_DI_REQUIRES(aux::is_base_of<detail::type_op, T>::value) = 0>\ninline auto constructible(const T& = {}) {\n  return constructible_impl<T>{};\n}\ntemplate <class T = aux::never<_>, __BOOST_DI_REQUIRES(!aux::is_base_of<detail::type_op, T>::value) = 0>\ninline auto constructible(const T& = {}) {\n  return constructible_impl<detail::or_<T>>{};\n}\n}\nnamespace providers {\nclass heap {\n public:\n  template <class TInitialization, class T, class... TArgs>\n  struct is_creatable {\n    static constexpr auto value = concepts::creatable<TInitialization, T, TArgs...>::value;\n  };\n  template <class T, class TMemory, class... TArgs>\n  auto get(const type_traits::direct&, const TMemory&, TArgs&&... args) const {\n    return new T(static_cast<TArgs&&>(args)...);\n  }\n  template <class T, class TMemory, class... TArgs>\n  auto get(const type_traits::uniform&, const TMemory&, TArgs&&... args) const {\n    return new T{static_cast<TArgs&&>(args)...};\n  }\n};\n}\n#define __BOOST_DI_IF(cond, t, f) __BOOST_DI_IF_I(cond, t, f)\n#define __BOOST_DI_REPEAT(i, m, ...) __BOOST_DI_REPEAT_N(i, m, __VA_ARGS__)\n#define __BOOST_DI_CAT(a, ...) __BOOST_DI_PRIMITIVE_CAT(a, __VA_ARGS__)\n#define __BOOST_DI_EMPTY()\n#define __BOOST_DI_COMMA() ,\n#define __BOOST_DI_EAT(...)\n#define __BOOST_DI_EXPAND(...) __VA_ARGS__\n#define __BOOST_DI_SIZE(...) __BOOST_DI_CAT(__BOOST_DI_VARIADIC_SIZE_I(__VA_ARGS__, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, ), )\n#define __BOOST_DI_PRIMITIVE_CAT(a, ...) a##__VA_ARGS__\n#define __BOOST_DI_ELEM(n, ...) __BOOST_DI_ELEM_I(n, __VA_ARGS__)\n#define __BOOST_DI_IS_EMPTY(...)                              \\\n  __BOOST_DI_DETAIL_IS_EMPTY_IIF(__BOOST_DI_IBP(__VA_ARGS__)) \\\n  (__BOOST_DI_DETAIL_IS_EMPTY_GEN_ZERO, __BOOST_DI_DETAIL_IS_EMPTY_PROCESS)(__VA_ARGS__)\n#define __BOOST_DI_DETAIL_IS_EMPTY_PRIMITIVE_CAT(a, b) a##b\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF(bit) __BOOST_DI_DETAIL_IS_EMPTY_PRIMITIVE_CAT(__BOOST_DI_DETAIL_IS_EMPTY_IIF_, bit)\n#define __BOOST_DI_DETAIL_IS_EMPTY_NON_FUNCTION_C(...) ()\n#define __BOOST_DI_DETAIL_IS_EMPTY_GEN_ZERO(...) 0\n#define __BOOST_DI_VARIADIC_SIZE_I(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, size, ...) size\n#define __BOOST_DI_IF_I(cond, t, f) __BOOST_DI_IIF(cond, t, f)\n#define __BOOST_DI_IIF_0(t, f) f\n#define __BOOST_DI_IIF_1(t, f) t\n#define __BOOST_DI_IIF_2(t, f) t\n#define __BOOST_DI_IIF_3(t, f) t\n#define __BOOST_DI_IIF_4(t, f) t\n#define __BOOST_DI_IIF_5(t, f) t\n#define __BOOST_DI_IIF_6(t, f) t\n#define __BOOST_DI_IIF_7(t, f) t\n#define __BOOST_DI_IIF_8(t, f) t\n#define __BOOST_DI_IIF_9(t, f) t\n#define __BOOST_DI_ELEM_I(n, ...) __BOOST_DI_CAT(__BOOST_DI_CAT(__BOOST_DI_ELEM, n)(__VA_ARGS__, ), )\n#define __BOOST_DI_ELEM0(p1, ...) p1\n#define __BOOST_DI_ELEM1(p1, p2, ...) p2\n#define __BOOST_DI_ELEM2(p1, p2, p3, ...) p3\n#define __BOOST_DI_ELEM3(p1, p2, p3, p4, ...) p4\n#define __BOOST_DI_ELEM4(p1, p2, p3, p4, p5, ...) p5\n#define __BOOST_DI_ELEM5(p1, p2, p3, p4, p5, p6, ...) p6\n#define __BOOST_DI_ELEM6(p1, p2, p3, p4, p5, p6, p7, ...) p7\n#define __BOOST_DI_ELEM7(p1, p2, p3, p4, p5, p6, p7, p8, ...) p8\n#define __BOOST_DI_ELEM8(p1, p2, p3, p4, p5, p6, p7, p8, p9, ...) p9\n#define __BOOST_DI_ELEM9(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, ...) p10\n#define __BOOST_DI_REPEAT_N(i, m, ...) __BOOST_DI_REPEAT_##i(m, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_1(m, ...) m(0, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_2(m, ...) m(0, __VA_ARGS__) m(1, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_3(m, ...) m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_4(m, ...) m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_5(m, ...) m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_6(m, ...) \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_7(m, ...) \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__) m(6, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_8(m, ...)                                                                           \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__) \\\n      m(6, __VA_ARGS__) m(7, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_9(m, ...)                                                                           \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__) \\\n      m(6, __VA_ARGS__) m(7, __VA_ARGS__) m(8, __VA_ARGS__)\n#define __BOOST_DI_REPEAT_10(m, ...)                                                                          \\\n  m(0, __VA_ARGS__) m(1, __VA_ARGS__) m(2, __VA_ARGS__) m(3, __VA_ARGS__) m(4, __VA_ARGS__) m(5, __VA_ARGS__) \\\n      m(6, __VA_ARGS__) m(7, __VA_ARGS__) m(8, __VA_ARGS__) m(9, __VA_ARGS__)\n#if defined(__MSVC__)\n#define __BOOST_DI_VD_IBP_CAT(a, b) __BOOST_DI_VD_IBP_CAT_I(a, b)\n#define __BOOST_DI_VD_IBP_CAT_I(a, b) __BOOST_DI_VD_IBP_CAT_II(a##b)\n#define __BOOST_DI_VD_IBP_CAT_II(res) res\n#define __BOOST_DI_IBP_SPLIT(i, ...) \\\n  __BOOST_DI_VD_IBP_CAT(__BOOST_DI_IBP_PRIMITIVE_CAT(__BOOST_DI_IBP_SPLIT_, i)(__VA_ARGS__), __BOOST_DI_EMPTY())\n#define __BOOST_DI_IBP_IS_VARIADIC_C(...) 1 1\n#define __BOOST_DI_IBP_SPLIT_0(a, ...) a\n#define __BOOST_DI_IBP_SPLIT_1(a, ...) __VA_ARGS__\n#define __BOOST_DI_IBP_CAT(a, ...) __BOOST_DI_IBP_PRIMITIVE_CAT(a, __VA_ARGS__)\n#define __BOOST_DI_IBP_PRIMITIVE_CAT(a, ...) a##__VA_ARGS__\n#define __BOOST_DI_IBP_IS_VARIADIC_R_1 1,\n#define __BOOST_DI_IBP_IS_VARIADIC_R___BOOST_DI_IBP_IS_VARIADIC_C 0,\n#define __BOOST_DI_IBP(...) \\\n  __BOOST_DI_IBP_SPLIT(0, __BOOST_DI_IBP_CAT(__BOOST_DI_IBP_IS_VARIADIC_R_, __BOOST_DI_IBP_IS_VARIADIC_C __VA_ARGS__))\n#define __BOOST_DI_IIF(bit, t, f) __BOOST_DI_IIF_OO((bit, t, f))\n#define __BOOST_DI_IIF_OO(par) __BOOST_DI_IIF_I##par\n#define __BOOST_DI_IIF_I(bit, t, f) __BOOST_DI_IIF_##bit(t, f)\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF_0(t, b) b\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF_1(t, b) t\n#define __BOOST_DI_DETAIL_IS_EMPTY_PROCESS(...) __BOOST_DI_IBP(__BOOST_DI_DETAIL_IS_EMPTY_NON_FUNCTION_C __VA_ARGS__())\n#else\n#define __BOOST_DI_IBP_SPLIT(i, ...) __BOOST_DI_PRIMITIVE_CAT(__BOOST_DI_IBP_SPLIT_, i)(__VA_ARGS__)\n#define __BOOST_DI_IBP_SPLIT_0(a, ...) a\n#define __BOOST_DI_IBP_SPLIT_1(a, ...) __VA_ARGS__\n#define __BOOST_DI_IBP_IS_VARIADIC_C(...) 1\n#define __BOOST_DI_IBP_IS_VARIADIC_R_1 1,\n#define __BOOST_DI_IBP_IS_VARIADIC_R___BOOST_DI_IBP_IS_VARIADIC_C 0,\n#define __BOOST_DI_IBP(...) \\\n  __BOOST_DI_IBP_SPLIT(0, __BOOST_DI_CAT(__BOOST_DI_IBP_IS_VARIADIC_R_, __BOOST_DI_IBP_IS_VARIADIC_C __VA_ARGS__))\n#define __BOOST_DI_IIF(bit, t, f) __BOOST_DI_IIF_I(bit, t, f)\n#define __BOOST_DI_IIF_I(bit, t, f) __BOOST_DI_IIF_II(__BOOST_DI_IIF_##bit(t, f))\n#define __BOOST_DI_IIF_II(id) id\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF_0(t, ...) __VA_ARGS__\n#define __BOOST_DI_DETAIL_IS_EMPTY_IIF_1(t, ...) t\n#define __BOOST_DI_DETAIL_IS_EMPTY_PROCESS(...) __BOOST_DI_IBP(__BOOST_DI_DETAIL_IS_EMPTY_NON_FUNCTION_C __VA_ARGS__())\n#endif\ntemplate <class, class>\nstruct named;\nnamespace detail {\nstruct named_impl {\n  template <class T>\n  T operator=(const T&) const;\n};\nstatic constexpr __BOOST_DI_UNUSED named_impl named{};\ntemplate <class T, class TName>\nstruct combine_impl {\n  using type = ::boost::di::v1_1_0::named<TName, T>;\n};\ntemplate <class T>\nstruct combine_impl<T, aux::none_type> {\n  using type = T;\n};\ntemplate <class, class>\nstruct combine;\ntemplate <class... T1, class... T2>\nstruct combine<aux::type_list<T1...>, aux::type_list<T2...>> {\n  using type = aux::type_list<typename combine_impl<T1, T2>::type...>;\n};\ntemplate <class T1, class T2>\nusing combine_t = typename combine<T1, T2>::type;\n}\ntemplate <class... Ts>\nusing inject = aux::type_list<Ts...>;\n#define __BOOST_DI_HAS_NAME(i, ...) __BOOST_DI_IF(__BOOST_DI_IBP(__BOOST_DI_ELEM(i, __VA_ARGS__, )), 1, )\n#define __BOOST_DI_HAS_NAMES(...) \\\n  __BOOST_DI_IF(__BOOST_DI_IS_EMPTY(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_HAS_NAME, __VA_ARGS__)), 0, 1)\n#define __BOOST_DI_GEN_CTOR_IMPL(p, i) \\\n  __BOOST_DI_IF(i, __BOOST_DI_COMMA, __BOOST_DI_EAT)() __BOOST_DI_IF(__BOOST_DI_IBP(p), __BOOST_DI_EAT p, p)\n#define __BOOST_DI_GEN_CTOR(i, ...) __BOOST_DI_GEN_CTOR_IMPL(__BOOST_DI_ELEM(i, __VA_ARGS__, ), i)\n#define __BOOST_DI_GEN_ARG_NAME(p) __BOOST_DI_GEN_ARG_NAME_IMPL p )\n#define __BOOST_DI_GEN_NONE_TYPE(p) ::boost::di::v1_1_0::aux::none_type\n#define __BOOST_DI_GEN_ARG_NAME_IMPL(p) decltype(::boost::di::v1_1_0::detail::p) __BOOST_DI_EAT(\n#define __BOOST_DI_GEN_NAME_IMPL(p, i)               \\\n  __BOOST_DI_IF(i, __BOOST_DI_COMMA, __BOOST_DI_EAT) \\\n  () __BOOST_DI_IF(__BOOST_DI_IBP(p), __BOOST_DI_GEN_ARG_NAME, __BOOST_DI_GEN_NONE_TYPE)(p)\n#define __BOOST_DI_GEN_NAME(i, ...) __BOOST_DI_GEN_NAME_IMPL(__BOOST_DI_ELEM(i, __VA_ARGS__, ), i)\n#define __BOOST_DI_INJECT_TRAITS_IMPL_0(...)                                                           \\\n  static void ctor(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_GEN_CTOR, __VA_ARGS__)); \\\n  using type __BOOST_DI_UNUSED = ::boost::di::v1_1_0::aux::function_traits_t<decltype(ctor)>;\n#define __BOOST_DI_INJECT_TRAITS_IMPL_1(...)                                                              \\\n  static void ctor(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_GEN_CTOR, __VA_ARGS__));    \\\n  static void name(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_GEN_NAME, __VA_ARGS__));    \\\n  using type __BOOST_DI_UNUSED =                                                                          \\\n      ::boost::di::v1_1_0::detail::combine_t<::boost::di::v1_1_0::aux::function_traits_t<decltype(ctor)>, \\\n                                             ::boost::di::v1_1_0::aux::function_traits_t<decltype(name)>>;\n#define __BOOST_DI_INJECT_TRAITS_EMPTY_IMPL(...) \\\n  using boost_di_inject__ __BOOST_DI_UNUSED = ::boost::di::v1_1_0::aux::type_list<>\n#define __BOOST_DI_INJECT_TRAITS_IMPL(...)                                                                             \\\n  struct boost_di_inject__ {                                                                                           \\\n    __BOOST_DI_CAT(__BOOST_DI_INJECT_TRAITS_IMPL_, __BOOST_DI_HAS_NAMES(__VA_ARGS__))                                  \\\n    (__VA_ARGS__) static_assert(__BOOST_DI_SIZE(__VA_ARGS__) <= BOOST_DI_CFG_CTOR_LIMIT_SIZE,                          \\\n                                \"Number of constructor arguments is out of range - see BOOST_DI_CFG_CTOR_LIMIT_SIZE\"); \\\n  }\n#define BOOST_DI_INJECT_TRAITS(...)                                                                                   \\\n  __BOOST_DI_IF(__BOOST_DI_IS_EMPTY(__VA_ARGS__), __BOOST_DI_INJECT_TRAITS_EMPTY_IMPL, __BOOST_DI_INJECT_TRAITS_IMPL) \\\n  (__VA_ARGS__)\n#define BOOST_DI_INJECT(T, ...)        \\\n  BOOST_DI_INJECT_TRAITS(__VA_ARGS__); \\\n  T(__BOOST_DI_REPEAT(__BOOST_DI_SIZE(__VA_ARGS__), __BOOST_DI_GEN_CTOR, __VA_ARGS__))\nBOOST_DI_NAMESPACE_END\n#endif\n#if defined(__CLANG__)\n#pragma clang diagnostic pop\n#elif defined(__GCC__)\n#pragma GCC diagnostic pop\n#endif\n"
  },
  {
    "path": "meta/libraries.json",
    "content": "{\n    \"key\": \"di\",\n    \"name\": \"Boost.DI\",\n    \"authors\": [ \"Kris Jusiak\" ],\n    \"maintainers\": [ \"kris at jusiak dot net\" ],\n    \"description\": \"C++14 Dependency Injection library\",\n    \"std\": [ \"14\" ],\n    \"category\": [ \"Design Patterns\" ]\n}\n"
  },
  {
    "path": "test/CMakeLists.txt",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\ninclude_directories(${CMAKE_CURRENT_LIST_DIR})\n\nfunction(test test)\n    string(REPLACE \"/\" \"_\" tmp ${test})\n    add_executable(test.${tmp} ${CMAKE_CURRENT_LIST_DIR}/${test}.cpp)\n    add_test(test.${tmp} test.${tmp})\nendfunction()\n\nif(${CMAKE_CXX_COMPILER_ID} STREQUAL GNU)\n    set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -DBOOST_DI_NAMESPACE= -include common/test.hpp\")\nelseif (${CMAKE_CXX_COMPILER_ID} STREQUAL Clang)\n    set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -DBOOST_DI_NAMESPACE= -include common/test.hpp\")\nelseif (${CMAKE_CXX_COMPILER_ID} STREQUAL MSVC)\n    set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} /FIcommon/test.hpp /D_CRT_SECURE_NO_WARNINGS /DBOOST_DI_NAMESPACE=\")\nendif()\n\ntest(ut/inject)\ntest(ut/aux_/preprocessor)\ntest(ut/aux_/type_traits)\ntest(ut/aux_/utility)\ntest(ut/concepts/boundable)\ntest(ut/concepts/callable)\ntest(ut/concepts/configurable)\ntest(ut/concepts/creatable)\ntest(ut/concepts/providable)\ntest(ut/concepts/scopable)\ntest(ut/core/any_type)\ntest(ut/core/array)\ntest(ut/core/binder)\ntest(ut/core/bindings)\ntest(ut/core/dependency)\ntest(ut/core/injector)\ntest(ut/core/policy)\ntest(ut/core/pool)\ntest(ut/core/provider)\ntest(ut/core/wrapper)\ntest(ut/policies/constructible)\ntest(ut/providers/heap)\ntest(ut/providers/stack_over_heap)\ntest(ut/scopes/deduce)\ntest(ut/scopes/instance)\ntest(ut/scopes/singleton)\ntest(ut/scopes/unique)\ntest(ut/type_traits/ctor_traits)\ntest(ut/type_traits/memory_traits)\ntest(ut/type_traits/named_traits)\ntest(ut/type_traits/rebind_traits)\ntest(ut/type_traits/scope_traits)\ntest(ut/wrappers/unique)\ntest(ut/wrappers/shared)\ntest(ut/bindings)\ntest(ut/config)\ntest(ut/injector)\ntest(ut/make_injector)\n\ntest(ft/di_bind)\ntest(ft/di_config)\ntest(ft/di_config_global_policies)\ntest(ft/di_config_global_provider)\ntest(ft/di_errors)\ntest(ft/di_inject)\ntest(ft/di_injector)\ntest(ft/di_no_memory_inc)\nset_source_files_properties(ft/di_no_std_inc.cpp PROPERTIES COMPILE_FLAGS -DBOOST_DI_TEST_HPP)\ntest(ft/di_no_std_inc)\nset_source_files_properties(ft/di_injector_except.cpp PROPERTIES COMPILE_FLAGS -fexceptions)\ntest(ft/di_injector_except)\n\ntest(pt/di_compile_time)\nset(CMAKE_BUILD_TYPE Release)\ntest(pt/di_run_time)\n"
  },
  {
    "path": "test/Jamfile.v2",
    "content": "#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\nimport testing ;\nimport modules ;\nimport feature : extend-feature compose ;\n\n.argv = [ modules.peek : ARGV ] ;\n\nextend-feature variant : coverage ;\ncompose <variant>coverage :\n    <cxxflags>\"-fprofile-arcs -ftest-coverage -DCOVERAGE\" <linkflags>\"-fprofile-arcs\"\n    <optimization>off\n;\n\nextend-feature variant : analyze ;\ncompose <variant>analyze :\n    <toolset>gcc:<cxxflags>\"-fsanitize=undefined,address\" <toolset>gcc:<linkflags>\"-fsanitize=undefined,address\"\n    <toolset>clang:<cxxflags>\"-fsanitize=undefined,address\" <toolset>clang:<linkflags>\"-fsanitize=undefined,address\"\n    <toolset>darwin:<cxxflags>\"-fsanitize=undefined,address\" <toolset>darwin:<linkflags>\"-fsanitize=undefined,address\"\n    <toolset>msvc:<cxxflags>\"/analyze\"\n    <optimization>off\n;\n\nproject boost.di :\n    requirements\n        <include>.\n        <include>..\n        <include>../include\n;\n\nrule test ( src + : property * : defines * : options * ) {\n    toolset =\n        <toolset>gcc:<cxxflags>\"-std=c++1y -include common/test.hpp -fno-exceptions -pedantic -pedantic-errors -Wall -Wextra -Werror\"\n        <toolset>gcc-6.0.0:<cxxflags>\"-std=c++1z\"\n        <toolset>clang:<cxxflags>\"-std=c++1y -include common/test.hpp -fno-exceptions -pedantic -pedantic-errors -Wall -Wextra -Werror\"\n        <toolset>darwin:<cxxflags>\"-std=c++1y -include common/test.hpp -fno-exceptions -pedantic -pedantic-errors -Wall -Wextra -Werror\"\n        <toolset>msvc:<cxxflags>\"/FI common/test.hpp /W3 /D_CRT_SECURE_NO_WARNINGS\"\n    ;\n\n    local memcheck = [ MATCH --memcheck=(.*) : $(.argv) ] ;\n\n    if ${memcheck} && ! DISABLE_MEMCHECK in $(options) {\n        toolset += <testing.launcher>$(memcheck) ;\n    }\n\n    run $(src) : : : $(toolset) <define>BOOST_DI_NAMESPACE= $(defines) : $(property) ;\n}\n\ntest-suite ut :\n    [ test ut/inject.cpp ]\n    [ test ut/aux_/preprocessor.cpp ]\n    [ test ut/aux_/type_traits.cpp ]\n    [ test ut/aux_/utility.cpp ]\n    [ test ut/concepts/boundable.cpp ]\n    [ test ut/concepts/callable.cpp ]\n    [ test ut/concepts/configurable.cpp ]\n    [ test ut/concepts/creatable.cpp ]\n    [ test ut/concepts/providable.cpp ]\n    [ test ut/concepts/scopable.cpp ]\n    [ test ut/core/any_type.cpp ]\n    [ test ut/core/array.cpp ]\n    [ test ut/core/binder.cpp ]\n    [ test ut/core/bindings.cpp ]\n    [ test ut/core/dependency.cpp ]\n    [ test ut/core/injector.cpp ]\n    [ test ut/core/policy.cpp ]\n    [ test ut/core/pool.cpp ]\n    [ test ut/core/provider.cpp ]\n    [ test ut/core/wrapper.cpp ]\n    [ test ut/policies/constructible.cpp ]\n    [ test ut/providers/heap.cpp ]\n    [ test ut/providers/stack_over_heap.cpp ]\n    [ test ut/scopes/deduce.cpp ]\n    [ test ut/scopes/instance.cpp ]\n    [ test ut/scopes/singleton.cpp ]\n    [ test ut/scopes/unique.cpp ]\n    [ test ut/type_traits/ctor_traits.cpp ]\n    [ test ut/type_traits/memory_traits.cpp ]\n    [ test ut/type_traits/named_traits.cpp ]\n    [ test ut/type_traits/rebind_traits.cpp ]\n    [ test ut/type_traits/scope_traits.cpp ]\n    [ test ut/wrappers/unique.cpp : unique_wrapper ]\n    [ test ut/wrappers/shared.cpp : shared_wrapper ]\n    [ test ut/bindings.cpp : bindings_cpp ]\n    [ test ut/config.cpp ]\n    [ test ut/injector.cpp : injector_cpp ]\n    [ test ut/make_injector.cpp ]\n;\n\ntest-suite ft :\n    [ test ft/di_bind.cpp ]\n    [ test ft/di_config.cpp ]\n    [ test ft/di_config_global_policies.cpp ]\n    [ test ft/di_config_global_provider.cpp ]\n    [ test ft/di_errors.cpp : : : DISABLE_MEMCHECK ]\n    [ test ft/di_inject.cpp ]\n    [ test ft/di_injector.cpp ]\n    [ test ft/di_no_memory_inc.cpp ]\n    [ test ft/di_no_std_inc.cpp : : <define>BOOST_DI_TEST_HPP ] # -nostdinc, -nostdinc++\n    [ test ft/di_module_1.cpp ft/di_module_2.cpp ft/di_module_3.cpp : : <define>BOOST_DI_TEST_HPP ]\n;\n\ntest-suite pt :\n    [ test pt/di_compile_time.cpp ]\n    [ test pt/di_run_time.cpp : : <optimization>speed <variant>release ]\n;\n\n"
  },
  {
    "path": "test/common/common.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_COMMON_HPP\n#define BOOST_DI_COMMON_HPP\n\n#include <functional>\n#include <utility>\n\ntemplate <class T>\nusing owner = T;\n\ntemplate <class T>\nstruct function : std::function<T> {\n  template <class U, class = decltype(std::declval<U>()())>\n  function(const U& f)  // non explicit\n      : std::function<T>(f) {}\n};\n\ntemplate <class T>\nstruct deleter {\n  void operator()(owner<T*> ptr) const noexcept { delete ptr; }\n};\n\n#endif\n"
  },
  {
    "path": "test/common/fakes/fake_config.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FAKE_CONFIG_HPP\n#define BOOST_DI_FAKE_CONFIG_HPP\n\n#include \"boost/di/core/pool.hpp\"\n#include \"boost/di/providers/heap.hpp\"\n\ntemplate <class = void>\nstruct fake_config {\n  static auto policies(...) noexcept { return core::pool<>{}; }\n  static auto provider(...) noexcept { return providers::heap{}; }\n};\n\n#endif\n"
  },
  {
    "path": "test/common/fakes/fake_dependency.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FAKE_DEPENDENCY_HPP\n#define BOOST_DI_FAKE_DEPENDENCY_HPP\n\n#include \"boost/di/core/dependency.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"common/fakes/fake_scope.hpp\"\n\ntemplate <class T, class TScope = fake_scope<>, class TIsReferable = std::false_type, class TName = no_name>\nstruct fake_dependency : core::dependency_base, TScope::template scope<T, T> {\n  using creator = typename TScope::template scope<T, T>;\n  using expected = T;\n  using given = T;\n  using scope = TScope;\n  using name = TName;\n  using priority = aux::none_type;\n\n  template <class>\n  using is_referable = TIsReferable;\n};\n\n#endif\n"
  },
  {
    "path": "test/common/fakes/fake_injector.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FAKE_INJECTOR_HPP\n#define BOOST_DI_FAKE_INJECTOR_HPP\n\n#include <type_traits>\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"common/fakes/fake_config.hpp\"\n#include \"common/fakes/fake_pool.hpp\"\n\ntemplate <class... TDeps>\nstruct fake_injector : core::injector_base {\n  using deps = fake_pool<TDeps...>;\n  using config = fake_config<>;\n\n  template <class T>\n  auto create() const noexcept {\n    return create_impl(aux::type<T>{});\n  }\n\n protected:\n  template <class, class = no_name, class = std::false_type>\n  struct is_creatable : std::true_type {};\n\n  template <class, class>\n  struct try_create {\n    using type = void;\n  };\n\n  template <class T>\n  auto create_impl(const aux::type<T>&) const noexcept {\n    return T{};\n  }\n\n  template <class TName, class T>\n  auto create_impl(const aux::type<named<TName, T>>&) const noexcept {\n    return T{};\n  }\n\n  template <class T>\n  auto create_successful_impl(const aux::type<T>&) const noexcept {\n    return T{};\n  }\n\n  template <class TName, class T>\n  auto create_successful_impl(const aux::type<named<TName, T>>&) const noexcept {\n    return T{};\n  }\n};\n\n#endif\n"
  },
  {
    "path": "test/common/fakes/fake_policy.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FAKE_POLICY_HPP\n#define BOOST_DI_FAKE_POLICY_HPP\n\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n\ntemplate <class T, class TDependency = aux::none_type, class TDeps = aux::none_type, bool TResolve = true>\nstruct fake_policy;\n\ntemplate <class T, class TDependency, class TDeps>\nstruct fake_policy<T, TDependency, TDeps, true> {\n  using type = T;\n  using name = no_name;\n  using dependency = TDependency;\n  using is_root = std::false_type;\n\n  template <class, class, class>\n  using resolve = TDependency;\n};\n\ntemplate <class T, class TDependency, class TDeps>\nstruct fake_policy<T, TDependency, TDeps, false> {\n  using type = T;\n  using name = no_name;\n  using dependency = TDependency;\n  using is_root = std::false_type;\n\n  template <class, class, class TDefault>\n  using resolve = TDefault;\n};\n\n#endif\n"
  },
  {
    "path": "test/common/fakes/fake_pool.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FAKE_POOL_HPP\n#define BOOST_DI_FAKE_POOL_HPP\n\n#include \"boost/di/aux_/utility.hpp\"\n\ntemplate <class... Ts>\nusing fake_pool = aux::type_list<Ts...>;\n\n#endif\n"
  },
  {
    "path": "test/common/fakes/fake_provider.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FAKE_PROVIDER_HPP\n#define BOOST_DI_FAKE_PROVIDER_HPP\n\n#include \"boost/di/type_traits/memory_traits.hpp\"\n#include \"common/fakes/fake_injector.hpp\"\n\ntemplate <class T = aux::none_type>\nstruct fake_provider {\n  auto get(const type_traits::heap& = {}) const noexcept {\n    ++provide_calls();\n    return new T{};\n  }\n\n  auto get(const type_traits::stack&) const noexcept {\n    ++provide_calls();\n    return T{};\n  }\n\n  static auto& provide_calls() {\n    static int calls = 0;\n    return calls;\n  }\n\n  fake_injector<T>* injector_ = nullptr;\n  using injector_t = fake_injector<T>;\n};\n\n#endif\n"
  },
  {
    "path": "test/common/fakes/fake_scope.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FAKE_SCOPE_HPP\n#define BOOST_DI_FAKE_SCOPE_HPP\n\n#include <type_traits>\n\nstruct fake_scope_entry {};\nstruct fake_scope_exit {};\n\ntemplate <bool Priority = false>\nstruct fake_scope {\n  template <class TExpected, class>\n  struct scope {\n    template <class T>\n    using is_referable = std::false_type;\n\n    explicit scope(const TExpected& = {}) { ++ctor_calls(); }\n\n    template <class T, class, class TProvider>\n    static T try_create(const TProvider&);\n\n    template <class T, class, class TProvider>\n    auto create(const TProvider&) const noexcept {\n      ++calls();\n      return T{};\n    }\n  };\n\n  static auto& ctor_calls() {\n    static auto ctor_calls = 0;\n    return ctor_calls;\n  }\n\n  static auto& calls() {\n    static auto calls = 0;\n    return calls;\n  }\n};\n\n#endif\n"
  },
  {
    "path": "test/common/fakes/fake_wrapper.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_FAKE_WRAPPER_HPP\n#define BOOST_DI_FAKE_WRAPPER_HPP\n\nstruct fake_wrapper {\n  template <class T>\n  inline operator T() const {\n    return {};\n  }\n};\n\n#endif\n"
  },
  {
    "path": "test/common/test.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_TEST_HPP\n#define BOOST_DI_TEST_HPP\n\n#include <cstdio>\n#include <cstdlib>\n#include \"boost/di/aux_/compiler.hpp\"\n\n#if defined(__MSVC__)\n#pragma warning(disable : 4503)\n#pragma warning(disable : 4822)\n#pragma warning(disable : 4505)\n#define __has_include(...) 0\n#endif\n\n#define expect(...) (void)((__VA_ARGS__) || (expect_fail__(#__VA_ARGS__, __FILE__, __LINE__), 0))\n#define static_expect(...) static_assert((__VA_ARGS__), \"fail\")\n\nvoid expect_fail__(const char *msg, const char *file, int line) {\n  std::printf(\"%s:%d:%s\\n\", file, line, msg);\n  std::exit(-1);\n}\n\nstruct test {\n  template <class Test>\n  test(const Test &test) {\n    test();\n  }\n};\n\nint main() {}\n\n#endif\n"
  },
  {
    "path": "test/common/utils.hpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#ifndef BOOST_DI_UTILS_HPP\n#define BOOST_DI_UTILS_HPP\n\n#include <limits.h>\n#include <cstdlib>\n#include <fstream>\n#include <string>\n#if defined(__linux)\n#include <unistd.h>\n#elif defined(__APPLE__)\n#include <mach-o/dyld.h>\n#elif defined(_WIN32) || defined(_WIN64)\n#include <Windows.h>\n#endif\n#include \"boost/di/aux_/compiler.hpp\"\n\ntemplate <class TFStream = std::ofstream>\nstruct file : std::string, TFStream {\n  file(const std::string& name)  // non explicit\n      : std::string{name}, TFStream{name} {}\n};\n\nstd::string cxx() {\n  if (auto cpp = std::getenv(\"CXX\")) {\n    return cpp;\n  }\n\n#if defined(__CLANG__)\n  return \"clang++\";\n#elif defined(__GCC__)\n  return \"g++\";\n#elif defined(__MSVC__)\n#if defined(__clang__)\n  return \"clang-cl\";\n#else\n  return \"cl\";\n#endif\n#endif\n}\n\nstd::string cxxflags(bool internal = false) {\n  std::string cppflags;\n\n  if (internal) {\n    cppflags += \"-I../include -I../../include \";  // bjam, cmake\n\n#if defined(__CLANG__)\n    cppflags += \"-std=c++1y\";\n#elif defined(__GCC__)\n    cppflags += \"-std=c++1y\";\n#elif defined(__MSVC__)\n    cppflags += \"\";\n#endif\n  }\n\n  if (auto flags = std::getenv(\"CXXFLAGS\")) {\n    cppflags += cppflags.empty() ? flags : std::string{\" \"} + flags;\n  }\n\n  return cppflags;\n}\n\nauto get_module_file_name() {\n  char progname[FILENAME_MAX];\n\n#if defined(__linux)\n  auto len = 0;\n  if ((len = readlink(\"/proc/self/exe\", progname, sizeof(progname) - 1)) != -1) {\n    progname[len] = '\\0';\n  }\n#elif defined(__APPLE__)\n  auto size = static_cast<unsigned int>(sizeof(progname));\n  _NSGetExecutablePath(progname, &size);\n#elif defined(_WIN32) || defined(_WIN64)\n  GetModuleFileName(nullptr, progname, FILENAME_MAX);\n#endif\n\n  return std::string{progname};\n}\n\n#endif\n"
  },
  {
    "path": "test/ft/di_bind.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n// clang-format off\n#include <initializer_list>  // has to be before, due to the bug in clang < 3.7\n// clang-format on\n#include \"boost/di.hpp\"\n#include <functional>\n#include <iterator>\n#include <memory>\n#include <set>\n#include <string>\n#include <tuple>\n#include <vector>\n\nstruct Concept {};\nstruct ConceptImpl {};\n\nBOOST_DI_NAMESPACE_BEGIN\n\nnamespace concepts {\ntemplate <class T>\nstruct is_related<true, Concept, T> {\n  static constexpr auto value = true;\n};\n}  // concepts\n\nBOOST_DI_NAMESPACE_END\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct i3 {\n  virtual ~i3() noexcept = default;\n  virtual void dummy3() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\nstruct impl1_int : i1 {\n  explicit impl1_int(int i) : i(i) {}\n  void dummy1() override {}\n  int i = 0;\n};\nstruct impl2 : i2 {\n  void dummy2() override {}\n};\nstruct impl1_2 : i1, i2 {\n  void dummy1() override {}\n  void dummy2() override {}\n};\nstruct impl4 : impl1_2 {};\n\nstruct impl1_with_i2 : i1 {\n  explicit impl1_with_i2(std::shared_ptr<i2> i2) : i2_(i2) {}\n  void dummy1() override {}\n\n  std::shared_ptr<i2> i2_;\n};\n\nauto a = [] {};\nauto b = [] {};\nstruct name_ {\n} name;\n\ntest forward_decl = [] {\n  di::make_injector(di::bind<class InterfaceFwd>().to<class ImplementationFwd>());\n  di::make_injector(di::bind<class InterfaceFwd>().to<impl1>());\n  di::make_injector(di::bind<i1>().to<class Impl>());\n};\n\ntest bind_to = [] {\n  auto injector = di::make_injector(di::bind<int>().to(42), di::bind<>().to(87l));\n  expect(42 == injector.create<int>());\n  expect(87l == injector.create<long>());\n};\n\ntest named_to = [] {\n  constexpr auto i = 42;\n  constexpr auto d = 87.0;\n\n  struct c {\n    BOOST_DI_INJECT(c, (named = a) int i, (named = b) double d) : i_(i), d_(d) {}\n\n    int i_ = 0;\n    double d_ = 0.0;\n  };\n\n  auto injector = di::make_injector(di::bind<int>().named(a).to(i), di::bind<double>().to(d).named(b));\n  auto object = injector.create<c>();\n\n  expect(i == object.i_);\n  expect(d == object.d_);\n};\n\ntest deduced_named_to = [] {\n  constexpr auto i = 42;\n  constexpr auto d = 87.0;\n\n  struct c {\n    BOOST_DI_INJECT(c, (named = a) int i, (named = b) double d) : i_(i), d_(d) {}\n\n    int i_ = 0;\n    double d_ = 0.0;\n  };\n\n  auto injector = di::make_injector(di::bind<>().named(a).to(i), di::bind<>().to(d).named(b));\n  auto object = injector.create<c>();\n\n  expect(i == object.i_);\n  expect(d == object.d_);\n};\n\ntest named_polymorphic = [] {\n  struct c {\n    BOOST_DI_INJECT(explicit c, (named = name) std::shared_ptr<i1> sp) : sp(sp) {}\n    std::shared_ptr<i1> sp;\n  };\n\n  auto injector = di::make_injector(di::bind<i1>().named(name).to<impl1>());\n  auto object = injector.create<c>();\n\n  expect(dynamic_cast<impl1 *>(object.sp.get()));\n};\n\nstruct c {\n  BOOST_DI_INJECT(explicit c, (named = name) int i);\n  int i = 0;\n};\n\nc::c(int i) : i(i) {}\n\ntest named_with_ctor_def_decl = [] {\n  constexpr auto i = 42;\n\n  auto injector = di::make_injector(di::bind<int>().to(i).named(name));\n\n  auto object = injector.create<c>();\n\n  expect(i == object.i);\n};\n\ntest named_parameters_with_shared_scope = [] {\n  struct c {\n    BOOST_DI_INJECT(c, (named = a) const std::shared_ptr<i1> &n1, (named = b) std::shared_ptr<i1> n2) : n1(n1), n2(n2) {}\n\n    std::shared_ptr<i1> n1;\n    std::shared_ptr<i1> n2;\n  };\n\n  auto injector = di::make_injector(di::bind<i1>().named(a).in(di::unique).to<impl1>(),\n                                    di::bind<i1>().named(b).to(std::make_shared<impl1>()));\n\n  auto object = injector.create<c>();\n\n  expect(object.n1 != object.n2);\n};\n\ntest any_of = [] {\n  auto injector = di::make_injector(di::bind<impl1_2>());\n\n  auto object = injector.create<std::unique_ptr<impl1_2>>();\n  expect(dynamic_cast<i1 *>(object.get()));\n  expect(dynamic_cast<i2 *>(object.get()));\n  expect(!dynamic_cast<i3 *>(object.get()));\n};\n\ntest any_of_with_scope = [] {\n  auto test = [](auto scope, auto same) {\n    auto injector = di::make_injector(\n#if defined(__MSVC__)\n        di::bind<i2, i1>().in(scope).to<impl1_2>()\n#else\n        di::bind<i2, i1>().in(scope).template to<impl1_2>()\n#endif\n            );\n\n    auto object_1 = injector.template create<std::shared_ptr<i1>>();\n    auto object_2 = injector.template create<std::shared_ptr<i2>>();\n    auto result = dynamic_cast<impl1_2 *>(object_1.get()) == dynamic_cast<impl1_2 *>(object_2.get());\n    expect(result == same);\n  };\n\n  test(di::unique, false);\n  test(di::singleton, true);\n};\n\ntest any_of_with_scope_split = [] {\n  auto test = [](auto scope, auto same) {\n    auto injector = di::make_injector(\n#if defined(__MSVC__)\n        di::bind<i1>().in(scope).to<impl1_2>(), di::bind<i2>().in(scope).to<impl1_2>()\n#else\n        di::bind<i1>().in(scope).template to<impl1_2>(), di::bind<i2>().in(scope).template to<impl1_2>()\n#endif\n            );\n\n    auto object_1 = injector.template create<std::shared_ptr<i1>>();\n    auto object_2 = injector.template create<std::shared_ptr<i2>>();\n    auto result = dynamic_cast<impl1_2 *>(object_1.get()) == dynamic_cast<impl1_2 *>(object_2.get());\n    expect(result == same);\n  };\n\n  test(di::unique, false);\n  test(di::singleton, false);\n};\n\ntest any_of_unique = [] {\n  auto injector = di::make_injector(di::bind<i1, i2>().in(di::unique).to<impl1_2>());\n\n  auto object_1 = injector.create<std::shared_ptr<i1>>();\n  auto object_2 = injector.create<std::shared_ptr<i2>>();\n  expect(dynamic_cast<impl1_2 *>(object_1.get()) != dynamic_cast<impl1_2 *>(object_2.get()));\n};\n\ntest bind_int_to_static_value = [] {\n  auto injector = di::make_injector(di::bind<int>().to<std::integral_constant<int, 42>>());\n  auto object = injector.create<int>();\n  expect(42 == object);\n};\n\ntest override_priority = [] {\n  auto injector =\n      di::make_injector(di::bind<int>().to(12)[di::override], di::bind<int>().to<std::integral_constant<int, 42>>());\n\n  auto object = injector.create<int>();\n\n  expect(12 == object);\n};\n\ntest override_priority_order = [] {\n  auto injector = di::make_injector(di::bind<int>().to<std::integral_constant<int, 41>>(),\n                                    di::bind<int>().to([] { return 42; })[di::override]);\n\n  expect(42 == injector.create<int>());\n};\n\ntest override_priority_interface = [] {\n  auto injector = di::make_injector(di::bind<i1>().to<impl1>(), di::bind<i1>().to<impl1_int>()[di::override]);\n  auto object = injector.create<std::unique_ptr<i1>>();\n  expect(dynamic_cast<impl1_int *>(object.get()));\n};\n\ntest override_priority_interface_module = [] {\n  auto module = [] { return di::make_injector(di::bind<i1>().to<impl1_int>()); };\n  auto injector = di::make_injector(module(), di::bind<i1>().to<impl1>()[di::override]);\n  auto object = injector.create<std::unique_ptr<i1>>();\n  expect(dynamic_cast<impl1 *>(object.get()));\n};\n\ntest bind_non_interface_in_singleton_scope = [] {\n  struct c {};\n  auto injector = di::make_injector(di::bind<c>().in(di::singleton));\n  expect(injector.create<std::shared_ptr<c>>() == injector.create<std::shared_ptr<c>>());\n};\n\ntest bind_interface_implementation_in_singleton_scope = [] {\n  struct c {\n    c(std::shared_ptr<i1> sp1, std::shared_ptr<impl1> sp2) { expect(sp1 == sp2); }\n  };\n  auto injector = di::make_injector(di::bind<i1, impl1>().to<impl1>().in(di::singleton));\n  injector.create<c>();\n};\n\ntest bind_interface_implementation_ref_in_singleton_scope = [] {\n  struct c {\n    c(const std::shared_ptr<i1> &sp1, const std::shared_ptr<impl1> &sp2) { expect(sp1 == sp2); }\n  };\n  auto injector = di::make_injector(di::bind<i1, impl1>().to<impl1>().in(di::singleton));\n  injector.create<c>();\n};\n\ntest bind_const_ref_type_in_singleton_scope = [] {\n  struct c_inject {\n    BOOST_DI_INJECT(c_inject, const int &i1, const int &i2) { expect(&i1 == &i2); }\n  };\n\n  struct c {\n    c(const int &i1, const int &i2) { expect(&i1 == &i2); }\n  };\n\n  auto injector = di::make_injector(di::bind<int>().in(di::singleton));\n\n  injector.create<c_inject>();\n  di::make_injector().create<c_inject>();\n\n  injector.create<c>();\n  di::make_injector().create<c>();\n};\n\ntest bind_shared_ptr_ref = [] {\n  struct c {\n    c(std::shared_ptr<int> &sp1, std::shared_ptr<int> &sp2) { expect(sp1 == sp2); }\n  };\n\n  di::make_injector().create<c>();\n};\n\ntest bind_shared_ptr_interface = [] {\n  struct c {\n    c(std::shared_ptr<i1> sp1, i1 &sp2) { expect(sp1.get() == &sp2); }\n  };\n\n  auto injector = di::make_injector(di::bind<i1>().to<impl1>());\n  injector.create<c>();\n};\n\ntest scopes_instance_interface_ptr = [] {\n  std::unique_ptr<i1> object = std::make_unique<impl1>();\n  auto injector = di::make_injector(di::bind<i1>().to(*object));\n  injector.create<const i1 &>();\n  injector.create<i1 &>();\n};\n\ntest scopes_instance_interface_shared = [] {\n  std::shared_ptr<i1> object = std::make_shared<impl1>();\n  auto injector = di::make_injector(di::bind<i1>().to(object));\n  injector.create<std::shared_ptr<i1>>();\n  injector.create<const i1 &>();\n  injector.create<i1 &>();\n};\n\ntest scopes_instance_shared = [] {\n  auto i = std::make_shared<int>(42);\n  auto injector = di::make_injector(di::bind<int>().to(i));\n\n  {\n    auto object = injector.create<std::shared_ptr<int>>();\n    expect(i.get() == object.get());\n    expect(42 == *i);\n  }\n\n  {\n    ++*i;\n    auto object = injector.create<std::shared_ptr<int>>();\n    expect(43 == *i);\n  }\n};\n\ntest scopes_instance_lambda = [] {\n  auto i = std::make_shared<int>(42);\n  auto injector = di::make_injector(di::bind<int>().to([&i] { return i; }));\n\n  {\n    auto object = injector.create<std::shared_ptr<int>>();\n    expect(i.get() == object.get());\n    expect(42 == *i);\n  }\n\n  {\n    ++*i;\n    auto object = injector.create<std::shared_ptr<int>>();\n    expect(43 == *i);\n  }\n};\n\ntest scopes_instance_lambda_injector = [] {\n  auto i = std::make_shared<int>(42);\n  auto injector = di::make_injector(di::bind<int>().to([&i](const auto &) { return i; }));\n\n  {\n    auto object = injector.create<std::shared_ptr<int>>();\n    expect(i.get() == object.get());\n    expect(42 == *i);\n  }\n\n  {\n    ++*i;\n    auto object = injector.create<std::shared_ptr<int>>();\n    expect(43 == *i);\n  }\n};\n\ntest scopes_instance_lambda_injector_mix = [] {\n  auto injector = di::make_injector(\n      di::bind<short>().to([] { return 42; }), di::bind<long>().to(87l),\n      di::bind<int>().to([](const auto &injector) { return static_cast<int>(injector.template create<long>()); }));\n\n  expect(42 == injector.create<short>());\n  expect(87 == injector.create<int>());\n  expect(87l == injector.create<long>());\n};\n\ntest scopes_instance_deduced = [] {\n  auto injector = di::make_injector(di::bind<>().to(short{42}), di::bind<>().to(87l), di::bind<>().to(123));\n  expect(42 == injector.create<short>());\n  expect(123 == injector.create<int>());\n  expect(87l == injector.create<long>());\n};\n\ntest instances_ref_cref = [] {\n  auto i = 42;\n  const auto d = 87.0;\n\n  struct refs {\n    BOOST_DI_INJECT(refs, int &i, const double &d) : i_(i), d_(d) {}\n\n    int &i_;\n    const double &d_;\n  };\n\n  auto injector = make_injector(di::bind<int>().to(i), di::bind<double>().to(d));\n  auto object = injector.create<refs>();\n\n  expect(i == object.i_);\n  expect(d == object.d_);\n};\n\ntest bind_chars_to_string = [] {\n  auto injector = di::make_injector(di::bind<std::string>().to(\"str\"));\n\n  expect(\"str\" == injector.create<std::string>());\n};\n\ntest dynamic_binding_ref = [] {\n  auto test = [](bool runtime_value) -> i1 & {\n    auto injector = di::make_injector(di::bind<i1>().to([&](const auto &injector) -> i1 & {\n      if (runtime_value) {\n        return injector.template create<impl1 &>();\n      } else {\n        return injector.template create<impl1_int &>();\n      }\n    }),\n                                      di::bind<>().to(42));\n\n    return injector.create<i1 &>();\n  };\n\n  {\n    auto &&object = test(true);\n    expect(dynamic_cast<impl1 *>(&object));\n  }\n\n  {\n    auto &&object = test(false);\n    expect(dynamic_cast<impl1_int *>(&object));\n    expect(42 == dynamic_cast<impl1_int &>(object).i);\n  }\n};\n\ntest dynamic_binding_expose_ref = [] {\n  auto test = [](bool runtime_value) -> i1 & {\n    di::injector<i1 &> injector = di::make_injector(di::bind<i1>().to([&](const auto &injector) -> i1 & {\n      if (runtime_value) {\n        return injector.template create<impl1 &>();\n      } else {\n        return injector.template create<impl1_int &>();\n      }\n    }),\n                                                    di::bind<>().to(42));\n\n    return injector.create<i1 &>();\n  };\n\n  {\n    auto &&object = test(true);\n    expect(dynamic_cast<impl1 *>(&object));\n  }\n\n  {\n    auto &&object = test(false);\n    expect(dynamic_cast<impl1_int *>(&object));\n    expect(42 == dynamic_cast<impl1_int &>(object).i);\n  }\n};\n\ntest dynamic_binding_using_polymorphic_lambdas_with_dependend_interfaces = [] {\n  auto test = [&](bool debug_property) {\n    auto injector = make_injector(di::bind<i1>().to([&](const auto &injector) -> std::shared_ptr<i1> {\n      if (debug_property) {\n        return std::make_shared<impl1>();\n      }\n\n      return injector.template create<std::shared_ptr<impl1_with_i2>>();\n    }),\n                                  di::bind<i2>().to<impl2>());\n\n    return injector.create<std::shared_ptr<i1>>();\n  };\n\n  {\n    auto object = test(false);\n    expect(dynamic_cast<impl1_with_i2 *>(object.get()));\n    expect(dynamic_cast<impl2 *>(dynamic_cast<impl1_with_i2 *>(object.get())->i2_.get()));\n  }\n\n  {\n    auto object = test(true);\n    expect(dynamic_cast<impl1 *>(object.get()));\n  }\n};\n\ndouble return_double(double d) { return d; }\n\ntest bind_to_function_ptr = [] {\n  constexpr auto i = 42;\n  constexpr auto d = 87.0;\n\n  struct functions {\n    BOOST_DI_INJECT(functions, const std::function<int()> &fi, std::function<double()> fd) : fi(fi), fd(fd) {}\n\n    std::function<int()> fi;\n    std::function<double()> fd;\n  };\n\n  auto injector = di::make_injector(di::bind<std::function<int()>>().to([&] { return i; }),\n                                    di::bind<std::function<double()>>().to(std::bind(&return_double, d)));\n\n  auto object = injector.create<functions>();\n\n  expect(i == object.fi());\n  expect(d == object.fd());\n};\n\ntest bind_to_function = [] {\n  using f_t = std::function<double(double)>;\n  const auto injector = di::make_injector(di::bind<f_t>().to(return_double));\n  const auto object = injector.create<f_t>();\n\n  expect(42.0 == object(42.0));\n};\n\ntest runtime_factory_impl = [] {\n  constexpr auto i = 42;\n\n  auto test = [&](bool debug_property) {\n    auto injector = make_injector(di::bind<int>().to(i), di::bind<i1>().to([&](const auto &injector) -> std::shared_ptr<i1> {\n      if (debug_property) {\n        return std::make_shared<impl1>();\n      }\n\n      return injector.template create<std::shared_ptr<impl1_int>>();\n    }));\n\n    return injector.create<std::shared_ptr<i1>>();\n  };\n\n  {\n    auto object = test(false);\n    expect(dynamic_cast<impl1_int *>(object.get()));\n    expect(i == dynamic_cast<impl1_int *>(object.get())->i);\n  }\n\n  {\n    auto object = test(true);\n    expect(dynamic_cast<impl1 *>(object.get()));\n  }\n};\n\nstruct call_operator {\n  bool &b;\n\n  template <class TInjector>\n  std::shared_ptr<i1> operator()(const TInjector &injector) const {\n    if (b) {\n      return injector.template create<std::shared_ptr<impl1>>();\n    }\n\n    return injector.template create<std::shared_ptr<impl1_int>>();\n  }\n};\n\ntest runtime_factory_call_operator_impl = [] {\n  constexpr auto i = 42;\n\n  auto test = [&](bool debug_property) {\n    auto injector = make_injector(di::bind<int>().to(i), di::bind<i1>().to(call_operator{debug_property}));\n\n    return injector.create<std::shared_ptr<i1>>();\n  };\n\n  {\n    auto object = test(false);\n    expect(dynamic_cast<impl1_int *>(object.get()));\n    expect(i == dynamic_cast<impl1_int *>(object.get())->i);\n  }\n\n  {\n    auto object = test(true);\n    expect(dynamic_cast<impl1 *>(object.get()));\n  }\n};\n\ntest scopes_injector_lambda_injector = [] {\n  constexpr double d = 42.0;\n  auto injector = di::make_injector(di::bind<double>().to(d), di::bind<int>().to([](const auto &injector) {\n    return static_cast<int>(injector.template create<double>());\n  }));\n\n  expect(static_cast<int>(d) == injector.create<int>());\n};\n\ntest bind_function_to_callable = [] {\n  struct functions {\n    BOOST_DI_INJECT(explicit functions, const std::function<int(int)> &f) { expect(f(42) == 42); }\n  };\n\n  auto injector =\n      di::make_injector(di::bind<std::function<int(int)>>().to([](const auto &) { return [](int i) { return i; }; }));\n\n  injector.create<functions>();\n};\n\ntest bind_non_owning_ptr = [] {\n  using Pointer = int;\n  constexpr auto i = 42;\n  struct c {\n    c(Pointer &ptr) { expect(i == ptr); }\n  };\n  auto module = [](Pointer *ptr) { return di::bind<Pointer>().to(*ptr); };\n  di::aux::owner<Pointer *> ptr{new Pointer{i}};\n  auto injector = di::make_injector(module(ptr));\n\n  injector.create<c>();\n\n  delete ptr;\n};\n\ntest bind_to_function_via_interface = [] {\n  struct i {\n    virtual ~i() = default;\n    virtual void operator()() = 0;\n  };\n\n  struct impl : i {\n    void operator()() override {}\n  };\n\n  struct c {\n    c(i &object) { expect(dynamic_cast<impl *>(&object)); }\n  };\n\n  const auto injector =\n      di::make_injector(di::bind<i>().to([&](const auto &injector) -> i & { return injector.template create<impl &>(); }));\n\n  injector.create<c>();\n};\n\ntest bind_to_function_via_interface_inject = [] {\n  struct i {\n    virtual ~i() = default;\n    virtual void operator()() = 0;\n  };\n\n  struct impl : i {\n    void operator()() override {}\n  };\n\n  struct c {\n    BOOST_DI_INJECT(c, i &object) { expect(dynamic_cast<impl *>(&object)); }\n  };\n\n  const auto injector =\n      di::make_injector(di::bind<i>().to([&](const auto &injector) -> i & { return injector.template create<impl &>(); }));\n\n  injector.create<c>();\n};\n\ntest multi_bindings_empty = [] {\n  struct c {\n    c(std::vector<int> v, const std::set<std::unique_ptr<i1>> &s) {\n      expect(v.empty());\n      expect(s.empty());\n    }\n  };\n\n  auto injector = di::make_injector();\n  injector.create<c>();\n};\n\ntest multi_bindings_containers = [] {\n  auto test = [](auto object) {\n    expect(object.size() == 2);\n    auto it = object.begin();\n    expect(*(std::next(it, 0)) == 11);\n    expect(*(std::next(it, 1)) == 87);\n  };\n\n  auto injector =\n      di::make_injector(di::bind<int[]>().to<int, di::named<class Int42>>(), di::bind<int>().to(11),\n                        di::bind<>().to(42).named<class Int42>(), di::bind<int>().to(87).named<class Int42>()[di::override]);\n\n  test(injector.create<std::vector<int>>());\n  test(injector.create<std::set<int>>());\n};\n\ntest multi_bindings_inject_named = [] {\n  struct c {\n    BOOST_DI_INJECT(c, (named = a) const std::vector<std::shared_ptr<i1>> &v1,\n                    (named = b) std::vector<std::unique_ptr<i1>> v2) {\n      expect(v1.size() == 2);\n      expect(dynamic_cast<impl1 *>(v1[0].get()));\n      expect(dynamic_cast<impl1_2 *>(v1[1].get()));\n\n      expect(v2.size() == 1);\n      expect(dynamic_cast<impl1 *>(v2[0].get()));\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<i1 *[]>().to<impl1, di::named<decltype(a)>>(),\n                                    di::bind<i1 *[]>().named(a).to<i1, di::named<class Impl2>>(),\n                                    di::bind<i1 *[]>().named(b).to<impl1>(), di::bind<i1>().to<impl1>(),\n                                    di::bind<i1>().to<impl1_2>().named<class Impl2>(), di::bind<i1>().to<impl1_2>().named(a));\n\n  injector.create<c>();\n};\n\ntest multi_bindings_ctor_with_exposed_module = [] {\n  struct c {\n    explicit c(std::vector<std::unique_ptr<i1>> v) {\n      expect(v.size() == 6);\n      expect(dynamic_cast<impl1 *>(v[0].get()));\n      expect(dynamic_cast<impl1_2 *>(v[1].get()));\n      expect(dynamic_cast<impl1_2 *>(v[2].get()));\n      expect(dynamic_cast<impl1_int *>(v[3].get()));\n      expect(dynamic_cast<impl1 *>(v[4].get()));\n      expect(dynamic_cast<impl1_2 *>(v[5].get()));\n    }\n  };\n\n  struct ExposedI1 {};\n  struct ExposedI1_ {};\n\n  auto module = []() -> di::injector<BOOST_DI_EXPOSE((named = ExposedI1{}) std::unique_ptr<i1>)> {\n    return di::make_injector(di::bind<i1>().to<impl1>().named(ExposedI1{}));\n  };\n  auto module2 = []() -> di::injector<std::unique_ptr<i1>> { return di::make_injector(di::bind<i1>().to<impl1_int>()); };\n  auto module3 = [] { return di::make_injector(di::bind<i1>().to<impl1_2>().named(ExposedI1_{})); };\n  auto module4 = [&]() -> di::injector<BOOST_DI_EXPOSE((named = ExposedI1_{}) std::unique_ptr<i1>)> {\n    return di::make_injector(module3());\n  };\n  auto injector =\n      di::make_injector(di::bind<i1 *[]>().to<impl1, impl1_2, impl1_2, i1, di::named<ExposedI1>, di::named<ExposedI1_>>(),\n                        module(), module2(), module4());\n\n  injector.create<c>();\n};\n\ntest multi_bindings_share_object_between_list_and_parameter = [] {\n  struct c {\n    c(std::vector<std::shared_ptr<i1>> v, std::shared_ptr<i1> i) {\n      expect(v.size() == 2);\n      expect(dynamic_cast<impl1 *>(v[0].get()));\n      expect(dynamic_cast<impl1_2 *>(v[1].get()));\n      expect(i == v[0]);\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<i1 *[]>().to<i1, di::named<class Impl1_2>>(),\n                                    di::bind<i1>().to<impl1>().in(di::singleton) /*deduced as singleton as well*/\n                                    ,\n                                    di::bind<i1>().to<impl1_2>().named<class Impl1_2>());\n\n  injector.create<c>();\n};\n\ntest multi_bindings_smart_ptrs = [] {\n  struct c {\n    c(std::unique_ptr<std::vector<std::shared_ptr<i1>>> v1, std::shared_ptr<std::vector<std::unique_ptr<i1>>> v2) {\n      expect(v1->size() == 1);\n      expect(dynamic_cast<impl1 *>((*v1)[0].get()));\n      expect(v2->size() == 1);\n      expect(dynamic_cast<impl1 *>((*v2)[0].get()));\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<i1 *[]>().to<impl1>());\n\n  injector.create<c>();\n};\n\ntest multi_bindings_with_scope = [] {\n  struct c {\n    c(std::shared_ptr<std::vector<std::shared_ptr<i1>>> v1, std::shared_ptr<std::vector<std::shared_ptr<i1>>> v2,\n      std::vector<std::shared_ptr<i1>> &v3) {\n      expect(v1 == v2);\n      expect(*v2 == v3);\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<i1 *[]>().to<impl1>());\n\n  injector.create<c>();\n};\n\ntest multi_bindings_with_initializer_list = [] {\n  auto test = [](auto object) {\n    expect(object.size() == 4);\n    auto it = object.begin();\n    expect(*(std::next(it, 0)) == 1);\n    expect(*(std::next(it, 1)) == 2);\n    expect(*(std::next(it, 2)) == 3);\n    expect(*(std::next(it, 3)) == 4);\n  };\n\n  auto injector = di::make_injector(di::bind<int[]>().to({1, 2, 3, 4}));\n\n  test(injector.create<std::vector<int>>());\n  test(injector.create<std::set<int>>());\n};\n\ntest multi_bindings_with_initializer_list_with_ptr_type = [] {\n  auto test = [](auto object) {\n    expect(object.size() == 4);\n    auto it = object.begin();\n    expect(*(std::next(it, 0)) == 1);\n    expect(*(std::next(it, 1)) == 2);\n    expect(*(std::next(it, 2)) == 3);\n    expect(*(std::next(it, 3)) == 4);\n  };\n\n  auto injector = di::make_injector(di::bind<int *[]>().to({1, 2, 3, 4}));\n\n  test(injector.create<std::vector<int>>());\n  test(injector.create<std::set<int>>());\n};\n\ntest bind_tuple = [] {\n  struct c {\n    c(std::tuple<>, const std::tuple<int, double> &t) {\n      expect(42 == std::get<0>(t));\n      expect(87.0 == std::get<1>(t));\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<>().to(42), di::bind<>().to(87.0));\n  injector.create<c>();\n};\n\ntest bind_tuple_ref = [] {\n  struct c {\n    c(std::tuple<int, double> &t1, std::tuple<int, double> &t2) {\n      expect(42 == std::get<0>(t1));\n      expect(87.0 == std::get<1>(t1));\n      expect(t1 == t2);\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<>().to(42), di::bind<>().to(87.0));\n  injector.create<c>();\n};\n\ntemplate <class T>\nclass lazy {\n  template <class TInjector>\n  static auto create(const void *injector) {\n    return ((TInjector *)injector)->template create<T>();\n  }\n\n public:\n  using boost_di_inject__ = di::inject<di::self<T>>;\n\n  template <class TInjector>\n  explicit lazy(const TInjector &i) noexcept : injector_((void *)&i), f(create<TInjector>) {}\n\n  T get() const noexcept { return (*f)(injector_); }\n\n private:\n  const void *injector_ = nullptr;\n  T (*f)(const void *) = nullptr;\n};\n\ntest bind_self_lazy = [] {\n  struct c {\n    explicit c(lazy<int> i) { expect(42 == i.get()); }\n  };\n\n  struct c_inject {\n    BOOST_DI_INJECT(explicit c_inject, lazy<int> i) { expect(42 == i.get()); }\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(42));\n\n  injector.create<c>();\n  injector.create<c_inject>();\n};\n\ntest bind_self_lazy_const_ref = [] {\n  struct c {\n    c(const lazy<int> &i) {  // non explicit\n      expect(42 == i.get());\n    }\n  };\n\n  struct c_inject {\n    BOOST_DI_INJECT(c_inject, const lazy<int> &i) {  // non explicit\n      expect(42 == i.get());\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(42));\n\n  injector.create<c>();\n  injector.create<c_inject>();\n};\n\ntest bind_self_lazy_ref = [] {\n  struct c {\n    explicit c(lazy<int> &i) { expect(42 == i.get()); }\n  };\n\n  struct c_inject {\n    BOOST_DI_INJECT(explicit c_inject, lazy<int> &i) { expect(42 == i.get()); }\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(42));\n\n  injector.create<c>();\n  injector.create<c_inject>();\n};\n\ntest bind_self_lazy_interface_mix = [] {\n  struct c {\n    c(lazy<int> i1_, const lazy<std::unique_ptr<i1>> &i2_) : i1_(i1_), i2_(i2_) {}\n\n    void initialize() {\n      expect(42 == i1_.get());\n      auto object = i2_.get();\n      expect(dynamic_cast<impl1 *>(object.get()));\n    }\n\n    lazy<int> i1_;\n    lazy<std::unique_ptr<i1>> i2_;\n  };\n\n  struct c_inject {\n    BOOST_DI_INJECT(c_inject, lazy<int> i1_, const lazy<std::unique_ptr<i1>> &i2_) : i1_(i1_), i2_(i2_) {}\n\n    void initialize() {\n      expect(42 == i1_.get());\n      auto object = i2_.get();\n      expect(dynamic_cast<impl1 *>(object.get()));\n    }\n\n    lazy<int> i1_;\n    lazy<std::unique_ptr<i1>> i2_;\n  };\n\n  struct c_uniform {\n    lazy<int> i1_;\n    lazy<std::unique_ptr<i1>> i2_;\n\n    void initialize() {\n      expect(42 == i1_.get());\n      auto object = i2_.get();\n      expect(dynamic_cast<impl1 *>(object.get()));\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(42), di::bind<i1>().to<impl1>());\n\n  {\n    auto object = injector.create<c>();\n    object.initialize();\n  }\n\n  {\n    auto object = injector.create<c_inject>();\n    object.initialize();\n  }\n\n  {\n    auto object = injector.create<c_uniform>();\n    object.initialize();\n  }\n};\n\ntest bind_movable_only_type = [] {\n  struct c {\n    c(c &&) = default;\n  };\n  di::make_injector().create<c>();\n};\n\ntest bind_movable_only_type_with_default_ctor = [] {\n  struct c {\n    c() = default;\n    c(c &&) = default;\n  };\n  di::make_injector().create<c>();\n};\n\ntest bind_movable_only_type_with_defined_default_ctor = [] {\n  struct c {\n    c() {}\n    c(c &&) = default;\n  };\n  di::make_injector().create<c>();\n};\n\ntest bind_movable_only_type_deleted_copy_ctor = [] {\n  struct c {\n    c(c &&) = default;\n    c(const c &) = delete;\n  };\n  di::make_injector().create<c>();\n};\n\ntest bind_deleted_copy_ctor_and_explicit_ctor = [] {\n  static auto called = false;\n  struct a {};\n  struct c {\n    explicit c(a &) { called = true; }\n    c(const c &) = delete;\n  };\n  di::make_injector().create<c &>();\n  expect(called);\n};\n\ntest bind_deleted_copy_ctor_and_non_explicit_ctor = [] {\n  static auto called = false;\n  struct a {};\n  struct c {\n    c(a &) {  // non explicit\n      called = true;\n    }\n    c(const c &) = delete;\n  };\n  di::make_injector().create<c &>();\n  expect(called);\n};\n\ntest bind_unique_ptr_with_one_explicit_ctor_arg = [] {\n  struct c {\n    explicit c(i1 *ptr) : i1_(ptr) {}\n    std::unique_ptr<i1> i1_;\n  };\n  const auto injector = di::make_injector(di::bind<i1>().to<impl1>());\n  auto object = injector.create<c>();\n  expect(dynamic_cast<impl1 *>(object.i1_.get()));\n};\n\ntest bind_unique_ptr_with_one_non_explicit_ctor_arg = [] {\n  struct c {\n    c(i1 *ptr)  // non explicit\n        : i1_(ptr) {}\n    std::unique_ptr<i1> i1_;\n  };\n  const auto injector = di::make_injector(di::bind<i1>().to<impl1>());\n  auto object = injector.create<c>();\n  expect(dynamic_cast<impl1 *>(object.i1_.get()));\n};\n\ntest bind_unique_ptr_dtor_defined = [] {\n  struct c {\n    c() {}\n    ~c() {}\n    std::unique_ptr<i1> i1_;\n  };\n  const auto injector = di::make_injector(di::bind<i1>().to<impl1>());\n  auto &&object = injector.create<c &>();\n  expect(nullptr == object.i1_.get());\n};\n\ntest bind_unique_ptr_dtor_defined_with_move_ctor = [] {\n  struct c {\n    c() {}\n    c(c &&) = default;\n    ~c() = default;\n    std::unique_ptr<i1> i1_;\n  };\n  const auto injector = di::make_injector(di::bind<i1>().to<impl1>());\n  auto &&object = injector.create<c>();\n  expect(nullptr == object.i1_.get());\n};\n\nclass A;\nclass B;\nclass Concept1;\n\ntemplate <class T = A>\nstruct app1 {\n  T t;\n  explicit app1(T t) : t(t) {}\n};\n\ntest bind_template_to_type = [] {\n  struct classA {\n#if defined(__MSVC__)\n    explicit classA(int i) : i(i) {}\n#endif\n    int i = 0;\n  };\n  const auto injector = di::make_injector(di::bind<A>().to<classA>(), di::bind<>().to(42));\n  auto object = injector.create<app1>();\n  expect(42 == object.t.i);\n};\n\ntemplate <class T = A, class U = Concept1>\nstruct app2 {\n  T &t;\n  const U &u;\n  app2(T &t, const U &u) : t(t), u(u) {}\n};\n\ntest bind_template_to_types = [] {\n  struct classA {\n#if defined(__MSVC__)\n    explicit classA(int i) : i(i) {}\n#endif\n    int i = 0;\n  };\n  struct ConceptImpl {};\n  const auto injector =\n      di::make_injector(di::bind<A>().to<classA>(), di::bind<Concept1>().to<ConceptImpl>(), di::bind<>().to(42));\n  auto object = injector.create<app2>();\n  expect(42 == object.t.i);\n  static_expect(std::is_same<classA, std::decay_t<decltype(object.t)>>::value);\n  static_expect(std::is_same<ConceptImpl, std::decay_t<decltype(object.u)>>::value);\n};\n\nstruct classB {};\n\ntemplate <class T = B>\nstruct classA {\n  using type = T;\n  explicit classA(int i) : i(i) {}\n  int i = 0;\n};\n\ntemplate <class T = A>\nstruct app3 {\n  T t;\n};\n\ntest bind_template_to_type_templates_type = [] {\n  const auto injector = di::make_injector(di::bind<A>().to<classA>(), di::bind<B>().to<classB>(), di::bind<>().to(42));\n\n  auto object = injector.create<app3>();\n  static_expect(std::is_same<classA<classB>, std::decay_t<decltype(object.t)>>::value);\n  static_expect(std::is_same<classB, std::decay_t<typename decltype(object.t)::type>>::value);\n  expect(42 == object.t.i);\n};\n\n#if not defined(__MSVC__)\ntemplate <class T = class External>\nstruct app4 {\n  using type = T;\n  T &t;\n};\n\ntest bind_template_to_instance = [] {\n  auto i = 42;\n  const auto injector = di::make_injector(di::bind<class External>().to<int>(i));\n  auto object = injector.create<app4>();\n  static_expect(std::is_same<int, typename decltype(object)::type>::value);\n  expect(42 == object.t);\n  i = 87;\n  expect(87 == object.t);\n};\n\ntemplate <class T = Concept>\nstruct app5 {\n  using type = T;\n};\n\ntest bind_template_to_concept_type = [] {\n  const auto injector = di::make_injector(di::bind<Concept>().to<ConceptImpl>());\n  auto object = injector.create<app5>();\n  static_expect(std::is_same<ConceptImpl, typename decltype(object)::type>::value);\n};\n#endif\n\n#if defined(__cpp_variable_templates)\ntest bind_mix = [] {\n  constexpr auto i = 42;\n\n  struct c {\n    c(int i_, std::unique_ptr<i1> i1_, std::unique_ptr<i2> i2_) : i_(i_), i1_(std::move(i1_)), i2_(std::move(i2_)) {}\n\n    int i_ = 0;\n    std::unique_ptr<i1> i1_;\n    std::unique_ptr<i2> i2_;\n  };\n\n  auto injector = di::make_injector(di::bind<i1>().to<impl1>()  // cross compiler call\n                                    ,\n                                    di::bind<i2>.to<impl2>()  // requires variable templates\n                                    ,\n                                    di::bind<int>().to(i));\n\n  auto object = injector.create<c>();\n  expect(i == object.i_);\n  expect(dynamic_cast<impl1 *>(object.i1_.get()));\n  expect(dynamic_cast<impl2 *>(object.i2_.get()));\n};\n#endif\n"
  },
  {
    "path": "test/ft/di_config.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <memory>\n#include \"boost/di.hpp\"\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n\nstatic auto called = 0;\n\nclass config : public di::config {\n public:\n  static auto policies(...) noexcept {\n    return di::make_policies([](auto) { ++called; });\n  }\n};\n\ntest call_policy_lambda = [] {\n  called = 0;\n  auto injector = di::make_injector<config>();\n  expect(0 == injector.create<int>());\n  expect(1 == called);\n};\n\nclass config_provider : public di::config {\n public:\n  static auto provider(...) noexcept {\n    ++called;\n    return di::providers::heap{};\n  }\n};\n\ntest call_provider = [] {\n  called = 0;\n  auto injector = di::make_injector<config_provider>();\n  injector.create<int>();\n  expect(1 == called);\n};\n\nclass must_be_bound : public di::config {\n public:\n  static auto policies(...) noexcept {\n    using namespace di::policies;\n    using namespace di::policies::operators;\n    return di::make_policies(constructible(std::is_same<di::_, double>{} || is_bound<di::_>{}));\n  }\n};\n\ntest constructible_policy_must_be_bound = [] {\n  struct c {\n    int i = 0;\n    double d = 0.0;\n  };\n\n  auto injector = di::make_injector<must_be_bound>(di::bind<int>().to(42));\n\n  injector.create<c>();\n};\n\nclass disallow_raw_pointers : public di::config {\n public:\n  static auto policies(...) noexcept {\n    using namespace di::policies;\n    using namespace di::policies::operators;\n    return di::make_policies(constructible(!std::is_pointer<di::_>{}));\n  }\n};\n\ntest constructible_policy_disallow_raw_pointers = [] {\n  struct c {\n    c(int, double) {}\n  };\n\n  {\n    auto injector = di::make_injector<disallow_raw_pointers>();\n    injector.create<c>();\n  }\n\n  {\n    di::injector<c> injector = di::make_injector<disallow_raw_pointers>();\n    injector.create<c>();\n  }\n};\n\nclass must_be_injected : public di::config {\n public:\n  static auto policies(...) noexcept {\n    using namespace di::policies;\n    using namespace di::policies::operators;\n    return di::make_policies(constructible(is_injected<di::_>{}));\n  }\n};\n\ntest constructible_policy_must_be_injected = [] {\n  struct d {\n    BOOST_DI_INJECT(d, int, double) {}\n  };\n  struct c {\n    BOOST_DI_INJECT(c, int, d) {}\n  };\n\n  {\n    auto injector = di::make_injector<must_be_injected>();\n    injector.create<c>();\n  }\n\n  {\n    di::injector<c> injector = di::make_injector<must_be_injected>();\n    injector.create<c>();\n  }\n};\n\nstruct policy {\n  static auto& called() {\n    static auto i = 0;\n    return i;\n  }\n\n  template <class T>\n  void operator()(const T&) const noexcept {\n    ++called();\n  }\n};\n\nclass custom_policies : public di::config {\n public:\n  static auto policies(...) noexcept {\n    return di::make_policies(policy{}, [](auto) { ++policy::called(); },\n                             [](__BOOST_DI_UNUSED auto type) { ++policy::called(); });\n  }\n};\n\ntest call_custom_policies = [] {\n  policy::called() = 0;\n  auto injector = di::make_injector<custom_policies>();\n  injector.create<int>();\n  expect(3 == policy::called());\n};\n\ntest call_custom_policies_with_exposed_injector = [] {\n  policy::called() = 0;\n  di::injector<std::unique_ptr<i1>> injector = di::make_injector<custom_policies>(di::bind<i1>().to<impl1>());\n  auto object = injector.create<std::unique_ptr<i1>>();\n  expect(dynamic_cast<i1*>(object.get()));\n  expect(3 == policy::called());\n};\n"
  },
  {
    "path": "test/ft/di_config_global_policies.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#define BOOST_DI_CFG_FWD class global_policies;\n#define BOOST_DI_CFG global_policies\n#include <boost/di.hpp>\n\nnamespace di = boost::di;\n\nauto custom_called = false;\nauto global_called = false;\n\nstruct custom_policy {\n  template <class T>\n  void operator()(const T&) const noexcept {\n    custom_called = true;\n  }\n};\n\nstruct global_policy {\n  template <class T>\n  void operator()(const T&) const noexcept {\n    global_called = true;\n  }\n};\n\nclass custom_policies : public di::config {\n public:\n  static auto policies(...) noexcept { return di::make_policies(custom_policy{}); }\n};\n\nclass global_policies : public di::config {\n public:\n  static auto policies(...) noexcept { return di::make_policies(global_policy{}); }\n};\n\ntest call_policies_via_global_config = [] {\n  global_called = 0;\n  auto injector = di::make_injector();\n  injector.create<int>();\n  expect(1 == global_called);\n};\n\ntest call_custom_policies_although_global_config = [] {\n  custom_called = 0;\n  auto injector = di::make_injector<custom_policies>();\n  injector.create<int>();\n  expect(1 == custom_called);\n};\n"
  },
  {
    "path": "test/ft/di_config_global_provider.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#define BOOST_DI_CFG_FWD class global_provider;\n#define BOOST_DI_CFG global_provider\n#include <boost/di.hpp>\n#include <utility>\n\nnamespace di = boost::di;\n\nauto called = 0;\n\nclass custom_provider {\n public:\n  template <class...>\n  struct is_creatable {\n    static constexpr auto value = true;\n  };\n\n  template <class T, class TInitialization, class TMemory, class... TArgs>\n  auto get(const TInitialization&, const TMemory&, TArgs&&... args) const {\n    ++called;\n    return new T(std::forward<TArgs>(args)...);\n  }\n};\n\nclass global_provider : public di::config {\n public:\n  static auto provider(...) noexcept { return custom_provider{}; }\n};\n\ntest call_provider_via_global_config = [] {\n  called = 0;\n  auto injector = di::make_injector();\n  injector.create<int>();\n  expect(1 == called);\n};\n"
  },
  {
    "path": "test/ft/di_errors.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <cstdio>\n#include <cstdlib>\n#include <fstream>\n#include <initializer_list>\n#include <iostream>\n#include <memory>\n#include <regex>\n#include <sstream>\n#include <string>\n#include <vector>\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"common/utils.hpp\"\n\nnamespace {\n\ntemplate <class... TArgs>\nauto errors(const TArgs&... args) {\n  return std::vector<std::string>{(\".*\" + std::string{args} + \".*\")...};\n}\n\nauto compail_fail(int id, const std::string& defines, const std::vector<std::string>& errors, const std::string& code) {\n  std::stringstream command;\n  {\n    file<> source_code{std::string{\"error\"} + std::to_string(id) + \".cpp\"};\n    source_code << \"#include <boost/di.hpp>\" << std::endl;\n    source_code << \"namespace di = boost::di;\" << std::endl;\n    source_code << code;\n\n    std::stringstream errors{};\n\n#if defined(__CLANG__)\n    errors << \"-Werror\";\n#elif defined(__GCC__)\n    errors << \"-Werror\";\n#elif defined(__MSVC__)\n    errors << \"/EHsc /W3 /WX\";\n#endif\n\n    const auto include_rgx = std::regex{\"<include>\"};\n\n#if defined(__MSVC__)\n    const auto include = std::regex_replace(defines, include_rgx, \"/FI\");\n#else\n    const auto include = std::regex_replace(defines, include_rgx, \"-include\");\n#endif\n\n    command << cxx() << \" \" << cxxflags(true) << \" \" << include << \" \" << errors.str() << \" \" << source_code\n#if defined(__MSVC__)\n            << \" >\"\n#else\n            << \" 2>\"\n#endif\n            << \" error\" << id << \".out\";\n  }\n\n  std::clog << command.str() << std::endl;\n  expect(std::system(command.str().c_str()));\n\n  file<std::ifstream> output{std::string{\"error\"} + std::to_string(id) + \".out\"};\n  std::vector<bool> matches(errors.size(), false);\n  std::vector<std::string> out;\n  auto lines = 0;\n  for (std::string line; std::getline(output, line);) {\n    out.push_back(line);\n    auto i = 0;\n    for (const auto& rgx : errors) {\n      if (std::regex_match(line, std::regex{rgx})) {\n        matches[i] = true;\n      }\n      ++i;\n    }\n    ++lines;\n  }\n\n  if (!errors.empty()) {\n#if defined(__MSVC__)\n    constexpr auto MAX_ERROR_LINES_COUNT = 128;\n#else\n    constexpr auto MAX_ERROR_LINES_COUNT = 64;\n#endif\n\n    if (lines >= MAX_ERROR_LINES_COUNT) {\n      std::clog << command.str() << \" | lines < MAX_ERROR_LINES_COUNT\" << std::endl;\n      expect(false);\n    }\n  }\n\n  if (std::find(matches.begin(), matches.end(), false) != matches.end()) {\n    for (const auto& line : out) {\n      std::clog << line << std::endl;\n    }\n    std::clog << command.str() << std::endl;\n    expect(false);\n  }\n}\n}\n\n#define expect_compile_fail(defines, error, ...) compail_fail(__LINE__, defines, error, #__VA_ARGS__)\n\n// ---------------------------------------------------------------------------\n\ntest bind_instance_with_given_scope = [] {\n  expect_compile_fail(\"\", errors(), int main() { di::make_injector(di::bind<int>().in(di::unique).to(42)); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_instance_with_given_scope_v = [] {\n  expect_compile_fail(\"\", errors(), int main() { di::make_injector(di::bind<int>.in(di::unique).to(42)); });\n};\n#endif\n\ntest bind_instance_with_given_type = [] {\n  expect_compile_fail(\"\", errors(), struct i{}; struct impl\n                      : i{};\n                      int main() { di::make_injector(di::bind<i>().to(impl{}).to<impl>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_instance_with_given_type_v = [] {\n  expect_compile_fail(\"\", errors(), struct i{}; struct impl\n                      : i{};\n                      int main() { di::make_injector(di::bind<i>.to(impl{}).to<impl>()); });\n};\n#endif\n\ntest bind_named_to_named = [] {\n  expect_compile_fail(\"\", errors(), struct a{}; struct b{};\n                      int main() { di::make_injector(di::bind<int>().named(a{}).named(b{})); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_named_to_named_v = [] {\n  expect_compile_fail(\"\", errors(), struct a{}; struct b{};\n                      int main() { di::make_injector(di::bind<int>.named(a{}).named(b{})); });\n};\n#endif\n\ntest bind_instance_with_given_value = [] {\n  expect_compile_fail(\"\", errors(), int main() { di::make_injector(di::bind<int>().to<std::integral_constant<int>>(0)); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_instance_with_given_value_v = [] {\n  expect_compile_fail(\"\", errors(), int main() { di::make_injector(di::bind<int>.to<std::integral_constant<int>>(0)); });\n};\n#endif\n\ntest bind_in_not_scopable_type = [] {\n  auto errors_ =\n      errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n             \"scope<.*>::requires_<.*scope<.*>::is_referable,.*scope<.*>::try_create,.*scope<.*>::create>\", \"=.*dummy\"\n#else\n             \"scope<.*dummy>::requires_<.*scope<.*>::is_referable,.*scope<.*>::try_create,.*scope<.*>::create>\"\n#endif\n             );\n\n  expect_compile_fail(\"\", errors_, struct dummy{}; int main() { di::make_injector(di::bind<int>().in(dummy{})); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_in_not_scopable_type_v = [] {\n  auto errors_ =\n      errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n             \"scope<.*>::requires_<.*scope<.*>::is_referable,.*scope<.*>::try_create,.*scope<.*>::create>\", \"=.*dummy\"\n#else\n             \"scope<.*dummy>::requires_<.*scope<.*>::is_referable,.*scope<.*>::try_create,.*scope<.*>::create>\"\n#endif\n             );\n\n  expect_compile_fail(\"\", errors_, struct dummy{}; int main() { di::make_injector(di::bind<int>.in(dummy{})); });\n};\n#endif\n\ntest bind_has_disallowed_qualifiers_expected = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*int.*\\\\*>::has_disallowed_qualifiers\");\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int*>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_has_disallowed_qualifiers_expected_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*int.*\\\\*>::has_disallowed_qualifiers\");\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int*>); });\n};\n#endif\n\ntest bind_has_disallowed_qualifiers_given = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<const.*int.*&>::has_disallowed_qualifiers\");\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>().to<const int&>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_has_disallowed_qualifiers_given_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<const.*int.*&>::has_disallowed_qualifiers\");\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>.to<const int&>()); });\n};\n#endif\n\ntest bind_has_disallowed_qualifiers_expected_complex = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*shared_ptr.*int.*>::has_disallowed_qualifiers\");\n  expect_compile_fail(\"<include> memory\", errors_, int main() { di::make_injector(di::bind<std::shared_ptr<int>>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_has_disallowed_qualifiers_expected_complex_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*shared_ptr.*int.*>::has_disallowed_qualifiers\");\n  expect_compile_fail(\"<include> memory\", errors_, int main() { di::make_injector(di::bind<std::shared_ptr<int>>); });\n};\n#endif\n\ntest bind_has_disallowed_qualifiers_given_complex = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*shared_ptr.*int.*>::has_disallowed_qualifiers\");\n  expect_compile_fail(\"<include> memory\", errors_, int main() { di::make_injector(di::bind<int, std::shared_ptr<int>>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_has_disallowed_qualifiers_given_complex_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*shared_ptr.*int.*>::has_disallowed_qualifiers\");\n  expect_compile_fail(\"<include> memory\", errors_, int main() { di::make_injector(di::bind<int, std::shared_ptr<int>>); });\n};\n#endif\n\ntest bind_narrowed_type = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*double\"\n#else\n                        \"type_<.*double>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>().to<double>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_narrowed_type_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*double\"\n#else\n                        \"type_<.*double>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>.to<double>()); });\n};\n#endif\n\ntest bind_not_compatible_types = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*impl\"\n#else\n                        \"type_<.*impl>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl\n                      : i{};\n                      int main() { di::make_injector(di::bind<int>().to<impl>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_not_compatible_types_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*impl\"\n#else\n                        \"type_<.*impl>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl : i{}; int main() { di::make_injector(di::bind<int>.to<impl>()); });\n};\n#endif\n\ntest bind_not_compatible_instance = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*impl\"\n#else\n                        \"type_<.*impl>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl\n                      : i{};\n                      int main() { di::make_injector(di::bind<int>().to(impl{})); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_not_compatible_instance_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*impl\"\n#else\n                        \"type_<.*impl>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl : i{}; int main() { di::make_injector(di::bind<int>.to(impl{})); });\n};\n#endif\n\ntest bind_not_compatible_narrowed_types = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*long\"\n#elif defined(__CLANG__)\n                        \"type_<.*long>::is_not_related_to<int>\"\n#else\n                        \"type_<.*long.*int>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>().to(42l)); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_not_compatible_narrowed_types_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*long\"\n#elif defined(__CLANG__)\n                        \"type_<.*long>::is_not_related_to<int>\"\n#else\n                        \"type_<.*long.*int>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>.to(42l)); });\n};\n#endif\n\ntest bind_not_compatible_initializer_list = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*const.*char.*\\\\*\"\n#else\n                        \"type_<const.*char.*\\\\*>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int[]>().to({\"a\", \"b\"})); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_not_compatible_initializer_list_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<int>\", \"=.*const.*char.*\\\\*\"\n#else\n                        \"type_<const.*char.*\\\\*>::is_not_related_to<int>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int[]>.to({\"a\", \"b\"})); });\n};\n#endif\n\ntest bind_any_of_not_related = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<.*a>.*type_<.*>::is_not_related_to<.*b>\", \"=.*c\"\n#else\n                        \"type_<.*c>::is_not_related_to<.*a>.*type_<.*c>::is_not_related_to<.*b>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct a{}; struct b\n                      : a{};\n                      struct c{}; int main() { di::make_injector(di::bind<a, b>().to<c>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_any_of_not_related_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<.*a>.*type_<.*>::is_not_related_to<.*b>\", \"=.*c\"\n#else\n                        \"type_<.*c>::is_not_related_to<.*a>.*type_<.*c>::is_not_related_to<.*b>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct a{}; struct b\n                      : a{};\n                      struct c{}; int main() { di::make_injector(di::bind<a, b>.to<c>()); });\n};\n#endif\n\ntest bind_deduced_not_related = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<.*deduced>\", \"=.*a\"\n#else\n                        \"type_<.*a>::is_not_related_to<.*deduced>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct a{}; int main() { di::make_injector(di::bind<>().to<a>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_deduced_not_related_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_not_related_to<.*deduced>\", \"=.*a\"\n#else\n                        \"type_<.*a>::is_not_related_to<.*deduced>\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct a{}; int main() { di::make_injector(di::bind<>.to<a>()); });\n};\n#endif\n\ntest bind_is_abstract_type = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_abstract\", \"=.*impl\"\n#else\n                        \"type_<.*impl>::is_abstract\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_,\n                      struct i {\n                        virtual ~i() noexcept = default;\n                        virtual void dummy() = 0;\n                      };\n                      struct impl\n                      : i{};\n                      struct c{c(i*){}}; int main() { di::make_injector(di::bind<i>().to<impl>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_is_abstract_type_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_abstract\", \"=.*impl\"\n#else\n                        \"type_<.*impl>::is_abstract\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_,\n                      struct i {\n                        virtual ~i() noexcept = default;\n                        virtual void dummy() = 0;\n                      };\n                      struct impl\n                      : i{};\n                      struct c{c(i*){}}; int main() { di::make_injector(di::bind<i>.to<impl>()); });\n};\n#endif\n\ntest bind_is_abstract_type_with_missing_error = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_abstract\", \"=.*impl\", \"void i::dummy.*is abstract\"\n#else\n                        \"type_<.*impl>::is_abstract\", \"pure.*impl\", \"virtual void dummy().*=.*0\"\n#endif\n                        );\n\n  expect_compile_fail(\"-DBOOST_DI_CFG_DIAGNOSTICS_LEVEL=2\", errors_,\n                      struct i {\n                        virtual ~i() noexcept = default;\n                        virtual void dummy() = 0;\n                      };\n                      struct impl\n                      : i{};\n                      struct c{c(i*){}}; int main() { di::make_injector(di::bind<i>().to<impl>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_is_abstract_type_with_missing_error_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_abstract\", \"=.*impl\", \"void i::dummy.*is abstract\"\n#else\n                        \"type_<.*impl>::is_abstract\", \"pure.*impl\", \"virtual void dummy().*=.*0\"\n#endif\n                        );\n\n  expect_compile_fail(\"-DBOOST_DI_CFG_DIAGNOSTICS_LEVEL=2\", errors_,\n                      struct i {\n                        virtual ~i() noexcept = default;\n                        virtual void dummy() = 0;\n                      };\n                      struct impl\n                      : i{};\n                      struct c{c(i*){}}; int main() { di::make_injector(di::bind<i>.to<impl>()); });\n};\n#endif\n\ntest bind_is_abstract_type_named = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_abstract\", \"=.*impl\"\n#else\n                        \"type_<.*impl>::is_abstract\"\n#endif\n                        );\n  expect_compile_fail(\"\", errors_,\n                      struct i {\n                        virtual ~i() noexcept = default;\n                        virtual void dummy() = 0;\n                      };\n                      struct impl\n                      : i{};\n                      struct dummy{}; struct c{BOOST_DI_INJECT(c, (named = dummy{}) i*){}};\n                      int main() { di::make_injector(di::bind<i>().named(dummy{}).to<impl>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_is_abstract_type_named_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_abstract\", \"=.*impl\"\n#else\n                        \"type_<.*impl>::is_abstract\"\n#endif\n                        );\n  expect_compile_fail(\"\", errors_,\n                      struct i {\n                        virtual ~i() noexcept = default;\n                        virtual void dummy() = 0;\n                      };\n                      struct impl\n                      : i{};\n                      struct dummy{}; struct c{BOOST_DI_INJECT(c, (named = dummy{}) i*){}};\n                      int main() { di::make_injector(di::bind<i>.named(dummy{}).to<impl>()); });\n};\n#endif\n\ntest bind_deduced_instance_repeated = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_bound_more_than_once\", \"=.*int\"\n#else\n                        \"type_<.*int>::is_bound_more_than_once\"\n#endif\n                        );\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<>().to(42), di::bind<>().to(42)); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_deduced_instance_repeated_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_bound_more_than_once\", \"=.*int\"\n#else\n                        \"type_<.*int>::is_bound_more_than_once\"\n#endif\n                        );\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<>.to(42), di::bind<>.to(42)); });\n};\n#endif\n\ntest bind_deduced_instance_repeated_mix = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*int>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>().to(42), di::bind<>().to(42)); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_deduced_instance_repeated_mix_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*int>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>().to(42), di::bind<>.to(42)); });\n};\n#endif\n\ntest bind_repeated = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*i>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl1\n                      : i{};\n                      struct impl2\n                      : i{};\n                      int main() { di::make_injector(di::bind<i>().to<impl1>(), di::bind<i>().to<impl1>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_repeated_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*i>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl1\n                      : i{};\n                      struct impl2\n                      : i{};\n                      int main() { di::make_injector(di::bind<i>.to<impl1>(), di::bind<i>.to<impl1>()); });\n};\n#endif\n\n#if defined(__cpp_variable_templates)\ntest bind_repeated_mix_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*i>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl1\n                      : i{};\n                      struct impl2\n                      : i{};\n                      int main() { di::make_injector(di::bind<i>.to<impl1>(), di::bind<i>().to<impl1>()); });\n};\n#endif\n\ntest bind_to_different_types = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*i>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl1\n                      : i{};\n                      struct impl2\n                      : i{};\n                      int main() { di::make_injector(di::bind<i>().to<impl1>(), di::bind<i>().to<impl2>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_to_different_types_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*i>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl1\n                      : i{};\n                      struct impl2\n                      : i{};\n                      int main() { di::make_injector(di::bind<i>.to<impl1>(), di::bind<i>.to<impl2>()); });\n};\n#endif\n\ntest bind_instance_repeated = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*int>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>().to(42), di::bind<int>().to(87)); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_instance_repeated_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*int>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>.to(42), di::bind<int>.to(87)); });\n};\n#endif\n\n#if defined(__cpp_variable_templates)\ntest bind_instance_repeated_mix_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*int>::is_bound_more_than_once\");\n  expect_compile_fail(\"\", errors_, int main() { di::make_injector(di::bind<int>().to(42), di::bind<int>.to(87)); });\n};\n#endif\n\ntest bind_multiple_times = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*i>::is_bound_more_than_once\");\n\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl1\n                      : i{};\n                      struct impl2\n                      : i{};\n                      int main() { di::make_injector(di::bind<i>().to<impl1>(), di::bind<i>().to<impl2>()); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_multiple_times_v = [] {\n  auto errors_ = errors(\"constraint not satisfied\", \"type_<.*i>::is_bound_more_than_once\");\n\n  expect_compile_fail(\"\", errors_, struct i{}; struct impl1\n                      : i{};\n                      struct impl2\n                      : i{};\n                      int main() { di::make_injector(di::bind<i>.to<impl1>(), di::bind<i>.to<impl2>()); });\n};\n#endif\n\ntest bind_in_not_scopable = [] {\n  expect_compile_fail(\"\", errors(), struct not_scopable{}; int main() { di::bind<int>().in(not_scopable{}); });\n};\n\n#if defined(__cpp_variable_templates)\ntest bind_in_not_scopable_v = [] {\n  expect_compile_fail(\"\", errors(), struct not_scopable{}; int main() { di::bind<int>.in(not_scopable{}); });\n};\n#endif\n\n// ---------------------------------------------------------------------------\n\ntest make_injector_wrong_arg = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_neither_a_dependency_nor_an_injector\", \"=.*dummy\"\n#else\n                        \"type_<.*dummy>::is_neither_a_dependency_nor_an_injector\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct dummy{}; int main() { di::make_injector(dummy{}); });\n};\n\ntest make_injector_with_from_not_movable = [] {\n  expect_compile_fail(\"\", errors(), struct c{}; int main() {\n    auto module = di::make_injector();\n    di::make_injector(module);\n  });\n};\n\ntest make_injector_with_from_not_movable_exposed = [] {\n  expect_compile_fail(\"\", errors(), struct c{}; int main() {\n    auto module = di::make_injector();\n    di::injector<> injector = di::make_injector(module);\n  });\n};\n\ntest exposed_multiple_times = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"type_<.*>::is_bound_more_than_once\", \"=.*c\"\n#else\n                        \"type_<.*c>::is_bound_more_than_once\"\n#endif\n                        );\n\n  expect_compile_fail(\"\", errors_, struct c{}; int main() { di::injector<c, c> injector = di::make_injector(); });\n};\n\n// ---------------------------------------------------------------------------\n\ntest not_configurable_config = [] {\n  expect_compile_fail(\"\", errors(), struct dummy_config{}; int main() { di::make_injector<dummy_config>(); });\n};\n\ntest make_policies_with_non_const_policy = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"policy<.*>::requires_<.*call_operator_with_one_argument>\", \"=.*non_const_policy\"\n#else\n                        \"policy<.*non_const_policy>::requires_<.*call_operator_with_one_argument>\"\n#endif\n                        );\n\n    expect_compile_fail(\"\", errors_,\n\tstruct non_const_policy {\n\t\ttemplate<class T>\n\t\tvoid operator()(const T&) {}\n\t};\n    struct test_config : di::config {\n    static auto policies(...) { return di::make_policies(non_const_policy{});\n}\n}\n;);\n}\n;\n\ntest make_policies_with_non_movable_policy = [] {\n    expect_compile_fail(\"\", errors(),\n\tstruct non_movable_policy {\n    template <class T>\n    void operator()(const T&) {}\n    non_movable_policy(non_movable_policy &&) = delete;\n\t};\n    struct test_config : di::config {\n    static auto policies(...) { return di::make_policies(non_movable_policy{});\n}\n}\n;);\n}\n;\n\ntest config_wrong_policy = [] {\n  auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                        \"policy<.*>::requires_<.*call_operator_with_one_argument>\", \"=.*int\"\n#else\n                        \"policy<.*int>::requires_<.*call_operator_with_one_argument>\"\n#endif\n                        );\n\n    expect_compile_fail(\"\", errors_,\n        struct test_config : di::config {\n            static auto policies(...) { return 42;\n}\n}\n;\nint main() { di::make_injector<test_config>(); }\n    );\n    }\n    ;\n\n    test config_policy_not_callable = [] {\n      auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                            \"policy<.*>::requires_<.*call_operator_with_one_argument>\", \"=.*dummy\"\n#else\n                            \"policy<.*dummy>::requires_<.*call_operator_with_one_argument>\"\n#endif\n                            );\n\n      expect_compile_fail(\"\", errors_,\n        struct test_config : di::config {\n            struct dummy { };\n            static auto policies(...) { return di::make_policies(dummy{}); }\n        };\n        int main() {\n            di::make_injector<test_config>();\n        }\n    );\n    };\n\n    test config_not_providable = [] {\n      auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                            \"provider<.*>::requires_<.*get,.*is_creatable>\", \"=.*dummy\"\n#else\n                            \"provider<.*dummy>::requires_<.*get,.*is_creatable>\"\n#endif\n                            );\n\n      expect_compile_fail(\"\", errors_,\n        struct test_config : di::config {\n            struct dummy { };\n            static auto provider(...) { return dummy{}; }\n        };\n        int main() {\n            di::make_injector<test_config>();\n        }\n    );\n    };\n\n    test config_wrong_provider = [] {\n      auto errors_ = errors(\"constraint not satisfied\",\n#if defined(__MSVC__)\n                            \"config<.*>::requires_<.*provider<.*providable_type.*(...)>.*policies<.*callable_type.*(...)>\",\n                            \"=.*test_config\"\n#else\n                            \"config<.*test_config>::requires_<.*provider<.*providable_type.*(...)>.*policies<.*callable_type.*(\"\n                            \"...\"\n                            \")>\"\n#endif\n                            );\n\n    expect_compile_fail(\"\", errors_,\n        struct test_config : di::config {\n            static auto provider() { return di::providers::heap{};\n    }\n    }\n    ;\n    int main() { di::make_injector<test_config>(); }\n    );\n    }\n    ;\n\n    test config_disable_shared_ptr_deduction = [] {\n      expect_compile_fail(\n          \"<include> memory -DBOOST_DI_DISABLE_SHARED_PTR_DEDUCTION\", errors(), struct c { std::shared_ptr<int> i; };\n          int main() {\n            const auto injector = di::make_injector(di::bind<int>.in(di::singleton));\n            injector.create<c>();\n          });\n    };\n\n    // ---------------------------------------------------------------------------\n\n    test mismatch_between_ctor_declaration_and_definition = [] {\n      expect_compile_fail(\"\", errors(), struct c { BOOST_DI_INJECT(c, int, double); }; c::c(int) {} int main(){});\n    };\n\n    test mismatch_between_ctor_declaration_and_definition_named = [] {\n      expect_compile_fail(\"\", errors(), struct c { BOOST_DI_INJECT(c, int, (named = int{}) double); };\n                          c::c(double, int) {} int main(){});\n    };\n\n    // ---------------------------------------------------------------------------\n\n    test create_polymorphic_type_without_binding = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"abstract_type<.*>::is_not_bound\"\n#if !defined(__MSVC__)\n          ,\n          \"create<c>()\", \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\"\n#endif\n          );\n\n      expect_compile_fail(\"\", errors_,\n                          struct i {\n                            virtual ~i() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          struct c{c(i*){}}; int main() { di::make_injector().create<c>(); });\n    };\n\n    test create_polymorphic_type_without_binding_ref = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"abstract_type<.*>::is_not_bound\"\n#if !defined(__MSVC__)\n          ,\n          \"create<c>()\", \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\"\n#endif\n          );\n\n      expect_compile_fail(\"\", errors_,\n                          struct i {\n                            virtual ~i() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          struct c{c(i&){}}; int main() { di::make_injector().create<c>(); });\n    };\n\n    test create_polymorphic_type_without_binding_using_multi_bindings = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"abstract_type<.*>::is_not_bound\"\n#if !defined(__MSVC__)\n          ,\n          \"create<c>()\", \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\"\n#endif\n          );\n\n      expect_compile_fail(\"<include> memory <include> vector\", errors_,\n                          struct i {\n                            virtual ~i() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          struct c{c(std::vector<std::unique_ptr<i>>){}}; int main() {\n                            auto injector = di::make_injector(di::bind<i* []>().to<i, i>());\n                            injector.create<c>();\n                          });\n    };\n\n    test create_polymorphic_type_without_binding_using_multi_bindings_named = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"abstract_type<.*>::named<.*>::is_not_bound\"\n#if !defined(__MSVC__)\n          ,\n          \"create<c>()\", \"type is not bound, did you forget to add: 'di::bind<interface>.named\\\\(name\\\\).to<implementation>()'?\"\n#endif\n          );\n\n      expect_compile_fail(\"<include> memory <include> set\", errors_,\n                          struct i {\n                            virtual ~i() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          struct impl\n                          : i{void dummy() override{}};\n                          struct c{c(std::set<std::unique_ptr<i>>){}}; int main() {\n                            auto injector = di::make_injector(di::bind<i* []>().to<i, di::named<class I>>(),\n                                                              di::bind<i>().to<impl>(), di::bind<i>().named<class I>());\n                            injector.create<c>();\n                          });\n    };\n\n    test create_polymorphic_type_without_binding_named = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"abstract_type<.*>::named<.*>::is_not_bound\"\n#if !defined(__MSVC__)\n          ,\n          \"type is not bound, did you forget to add: 'di::bind<interface>.named\\\\(name\\\\).to<implementation>()'?\"\n#endif\n          );\n\n      expect_compile_fail(\"\", errors_,\n                          struct i {\n                            virtual ~i() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          struct dummy{}; struct c{BOOST_DI_INJECT(c, (named = dummy{}) i*){}};\n                          int main() { di::make_injector().create<c>(); });\n    };\n\n    test exposed_not_creatable = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"abstract_type<.*>::is_not_bound\"\n#if !defined(__MSVC__)\n          ,\n          \"create<T>\", \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\"\n#endif\n          );\n\n      expect_compile_fail(\"<include> memory\", errors_,\n                          struct i {\n                            virtual ~i() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          struct c{c(int, std::unique_ptr<i>){}};\n                          int main() { di::injector<std::unique_ptr<i>> injector = di::make_injector(); });\n    };\n\n    test exposed_polymorphic_type_without_binding = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"abstract_type<.*>::is_not_bound\"\n#if !defined(__MSVC__)\n          ,\n          \"create<T>\", \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\"\n#endif\n          );\n\n      expect_compile_fail(\"<include> memory\", errors_,\n                          struct i {\n                            virtual ~i() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          struct c{explicit c(std::shared_ptr<i>){}}; int main() {\n                            di::injector<c> injector = di::make_injector();  // di::bind<i>().to<impl>()\n                          });\n    };\n\n    test exposed_type_injector_conversions_fail = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"abstract_type<.*>::is_not_bound\"\n#if !defined(__MSVC__)\n          ,\n          \"create<T>\", \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\"\n#endif\n          );\n\n      expect_compile_fail(\"<include> memory\", errors_,\n                          struct i1 {\n                            virtual ~i1() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          struct impl1\n                          : i1{void dummy() override{}};\n                          struct i2 {\n                            virtual ~i2() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          int main() {\n                            auto module = []() -> di::injector<std::unique_ptr<i1>> {\n                              return di::make_injector(di::bind<i1>().to<impl1>());\n                            };\n                            di::injector<std::unique_ptr<i2>> injector = di::make_injector(module());\n                          });\n    };\n\n    test injector_singleton_by_copy = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"scoped<.*>::is_not_convertible_to<.*>\", \"singleton\", \"int\", \"int.*\\\\*\"\n#if !defined(__MSVC__)\n          ,\n          \"scoped object is not convertible to the requested type, did you mistake the scope: \"\n          \"'di::bind<T>.in\\\\(scope\\\\)'?\"\n#endif\n          );\n\n      expect_compile_fail(\"\", errors_, struct c{c(int*){}}; int main() {\n        auto injector = di::make_injector(di::bind<int>().in(di::singleton));\n        injector.create<c>();\n      });\n    };\n\n    test bind_instance_not_convertible = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"scoped<.*>::is_not_convertible_to<.*>\", \"instance\", \"int\", \"int.*\\\\*\"\n#if !defined(__MSVC__)\n          ,\n          \"instance is not convertible to the requested type, verify binding: 'di::bind<T>.to\\\\(value\\\\)'?\"\n#endif\n          );\n\n      expect_compile_fail(\"\", errors_, struct c{c(int*){}}; int main() {\n        auto injector = di::make_injector(di::bind<int>().to(42));\n        injector.create<c>();\n      });\n    };\n\n    test bind_instance_not_referable = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"scoped<.*>::is_not_convertible_to<.*>\", \"instance\", \"int\", \"int.*&\"\n#if !defined(__MSVC__)\n          ,\n          \"instance is not convertible to the requested type, verify binding: 'di::bind<T>.to\\\\(value\\\\)'?\"\n#endif\n          );\n\n      expect_compile_fail(\"\", errors_, struct c{c(int&){}}; int main() {\n        auto injector = di::make_injector(di::bind<int>().to(42)  // lvalue can't be converted to a reference\n                                          );\n        injector.create<c>();\n      });\n    };\n\n    test bind_instance_not_referable_named = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"scoped<.*>::is_not_convertible_to<.*>\", \"instance\", \"int\", \"int.*&\"\n#if !defined(__MSVC__)\n          ,\n          \"instance is not convertible to the requested type, verify binding: 'di::bind<T>.to\\\\(value\\\\)'?\"\n#endif\n          );\n\n      expect_compile_fail(\"\", errors_, struct dummy{}; struct c{BOOST_DI_INJECT(c, (named = dummy{}) int&){}}; int main() {\n        auto injector = di::make_injector(di::bind<int>().named(dummy{}).to(42)  // lvalue can't be converted to a reference\n                                          );\n        injector.create<c>();\n      });\n    };\n\n    test policy_constructible = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n#if defined(__GCC__) || defined(__CLANG__)\n          \"type disabled by constructible policy, added by BOOST_DI_CFG or make_injector<CONFIG>\",\n#endif\n#if defined(__GCC__)\n          \"type<.*>::not_allowed_by.*int\", \"type<.*>::not_allowed_by.*double\", \"type<.*>::not_allowed_by.*float\"\n#else\n          \"type<int>::not_allowed_by\", \"type<double>::not_allowed_by\", \"type<float>::not_allowed_by\"\n#endif\n          );\n\n    expect_compile_fail(\"\", errors_,\n        class config : public di::config {\n        public:\n            static auto policies(...) noexcept {\n                using namespace di::policies;\n                return di::make_policies(constructible(is_bound<di::_>{}));\n    }\n    }\n    ;\n\n    struct c {\n      c(int, double, float) {}\n    };\n    int main() {\n      auto injector = di::make_injector<config>();\n      injector.create<c>();\n    }\n    );\n    }\n    ;\n\n    test create_error_with_call_stack = [] {\n      auto errors_ = errors(\n#if (__clang_major__ == 3) && (__clang_minor__ > 4) || defined(__GCC___) || defined(__MSVC__)\n          \"creatable constraint not satisfied\",\n#endif\n          \"abstract_type<.*>::is_not_bound\",\n#if defined(__GCC__)\n          \"creating<.*>.*c\", \"creating<.*>.*c1\", \"creating<.*>.*c2\"\n#elif defined(__MSVC__)\n          \"creating<.*>\", \"=.*c\", \"creating<.*>\", \"=.*c1\", \"creating<.*>\", \"=.*c2\"\n#else\n          \"creating<c>\", \"creating<c1>\", \"creating<c2>\"\n#endif\n#if !defined(__MSVC__)\n          ,\n          \"create<c>()\", \"type is not bound, did you forget to add: 'di::bind<interface>.to<implementation>()'?\"\n#endif\n          );\n\n      expect_compile_fail(\"-DBOOST_DI_CFG_DIAGNOSTICS_LEVEL=2\", errors_,\n                          struct i {\n                            virtual ~i() noexcept = default;\n                            virtual void dummy() = 0;\n                          };\n                          struct c2{c2(i*){}}; struct c1{c1(int, double, const c2&){}}; struct c{c(int, c1){}};\n                          int main() { di::make_injector().create<c>(); });\n    };\n\n    // ---------------------------------------------------------------------------\n\n    test ctor_inject_limit_out_of_range = [] {\n      expect_compile_fail(\"-DBOOST_DI_CFG_CTOR_LIMIT_SIZE=3\",\n                          errors(\"Number of constructor arguments is out of range - see BOOST_DI_CFG_CTOR_LIMIT_SIZE\"),\n                          struct c{BOOST_DI_INJECT(c, int, int, int, int){}};\n                          int main() {\n                            auto injector = di::make_injector();\n                            injector.create<c>();\n                          });\n    };\n\n    test ctor_limit_out_of_range = [] {\n      auto errors_ = errors(\n#if defined(__GCC__)\n          \"type<.*>::has_to_many_constructor_parameters::max<.*>.*= 3.*=.*c\"\n#elif defined(__MSVC__)\n          \"type<.*>::has_to_many_constructor_parameters::max<3>\", \"T=.*c\"\n#else\n          \"type<.*c>::has_to_many_constructor_parameters::max<3>\"\n#endif\n          );\n\n      expect_compile_fail(\"-DBOOST_DI_CFG_CTOR_LIMIT_SIZE=3\", errors_, struct c{c(int, int, int, int){}}; int main() {\n        auto injector = di::make_injector();\n        injector.create<c>();\n      });\n    };\n\n    test injector_ctor_ambiguous = [] {\n      auto errors_ = errors(\n#if defined(__GCC__)\n          \"type<.*>::has_to_many_constructor_parameters::max<.*>.*= 10.*=.*ctor\"\n#elif defined(__MSVC__)\n          \"type<.*>::has_to_many_constructor_parameters::max<10>\", \"T=.*ctor\"\n#else\n          \"type<.*ctor>::has_to_many_constructor_parameters::max<10>\"\n#endif\n          );\n\n      expect_compile_fail(\"\", errors_, struct ctor{ctor(int, double){} ctor(double, int){}};\n                          int main() { di::make_injector().create<ctor>(); });\n    };\n\n    test ctor_number_of_args_is_not_equal = [] {\n      auto errors_ = errors(\n#if defined(__GCC__)\n          \"type<.*>::has_ambiguous_number_of_constructor_parameters::given<.*>::expected<.*>.*= 4.*= 2.*=.*c\"\n#elif defined(__MSVC__)\n          \"type<.*>::has_ambiguous_number_of_constructor_parameters::given<2>::expected<4>\", \"T=.*c\"\n#else\n          \"type<.*c>::has_ambiguous_number_of_constructor_parameters::given<2>::expected<4>\"\n#endif\n          );\n\n      expect_compile_fail(\n          \"\", errors_,\n          struct c {\n            BOOST_DI_INJECT_TRAITS(int, int);  // 2\n            c(int, int, int, int) {}           // 4\n          };\n          int main() {\n            auto injector = di::make_injector();\n            injector.create<c>();\n          });\n    };\n\n    test named_paramater_spelling = [] {\n      expect_compile_fail(\"\", errors(), auto name = [] {}; struct c{BOOST_DI_INJECT(c, (NAMED = name) int){}}; int main(){});\n    };\n\n    test circular_dependencies_simple = [] {\n      expect_compile_fail(\"\", errors(), struct cd2; struct cd1 { cd1(cd2*){}; }; struct cd2 { cd2(cd1*){}; }; int main() {\n        auto injector = di::make_injector();\n        injector.create<cd1>();\n      });\n    };\n\n    test circular_dependencies_complex = [] {\n      expect_compile_fail(\"\", errors(), struct cd2; struct cd5; struct cd1 { cd1(cd2*){}; }; struct cd2 { cd2(cd1*){}; };\n                          struct cd3 { cd3(cd5*){}; }; struct cd4 { cd4(cd3*){}; }; struct cd5 { cd5(cd4*){}; }; int main() {\n                            auto injector = di::make_injector();\n                            injector.create<cd5>();\n                          });\n    };\n\n    // ---------------------------------------------------------------------------\n\n#if (__GNUC__ < 6)\n    test access_injector_is_creatable = [] {\n      expect_compile_fail(\"\", errors(), int main() {\n        auto injector = di::make_injector();\n        using type = decltype(injector)::is_creatable<int>;\n      });\n    };\n#endif\n\n    test access_injector_try_create = [] {\n      expect_compile_fail(\"\", errors(), int main() {\n        auto injector = di::make_injector();\n        injector.try_create<int>();\n      });\n    };\n\n    test access_injector_create_impl = [] {\n      expect_compile_fail(\"\", errors(), int main() {\n        auto injector = di::make_injector();\n        injector.create_impl(di::aux::type<int>{});\n      });\n    };\n\n    test access_injector_create_succesful_impl = [] {\n      expect_compile_fail(\"\", errors(), int main() {\n        auto injector = di::make_injector();\n        injector.create_successful_impl(di::aux::type<int>{});\n      });\n    };\n\n    test access_injector_exposed_is_creatable = [] {\n      expect_compile_fail(\"\", errors(), int main() {\n        di::injector<> injector = di::make_injector();\n        using type = decltype(injector)::is_creatable<int>;\n      });\n    };\n\n    test access_injector_exposed_try_create = [] {\n      expect_compile_fail(\"\", errors(), int main() {\n        di::injector<> injector = di::make_injector();\n        injector.try_create<int>();\n      });\n    };\n\n    test access_injector_exposed_create_impl = [] {\n      expect_compile_fail(\"\", errors(), int main() {\n        di::injector<> injector = di::make_injector();\n        injector.create_impl(di::aux::type<int>{});\n      });\n    };\n\n    test access_injector_exposed_create_succesful_impl = [] {\n      expect_compile_fail(\"\", errors(), int main() {\n        di::injector<> injector = di::make_injector();\n        injector.create_successful_impl(di::aux::type<int>{});\n      });\n    };\n\n    test access_dependency_try_create = [] {\n      expect_compile_fail(\"\", errors(), int main() { di::bind<int>().try_create<int>(); });\n    };\n\n    test access_dependency_create = [] {\n      expect_compile_fail(\"\", errors(), struct provider{}; int main() { di::bind<int>().create<int>(provider{}); });\n    };\n\n#if !defined(__MSVC__) && (__GNUC__ < 6)\n    test access_dependency_is_referable = [] {\n      expect_compile_fail(\"<include> type_traits\", errors(),\n                          int main() { using type = std::remove_reference_t<decltype(di::bind<int>())>::is_referable<int>; });\n    };\n#endif\n"
  },
  {
    "path": "test/ft/di_inject.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include <functional>\n#include <initializer_list>\n#include <memory>\n#include <string>\n#include <tuple>\n#if __has_include(<boost / function.hpp>)\n#include <boost/function.hpp>\n#endif\n#if __has_include(<boost / shared_ptr.hpp>)\n#include <boost/shared_ptr.hpp>\n#endif\n#include \"boost/di.hpp\"\n#include \"common/common.hpp\"\n\nnamespace di = boost::di;\n\nauto name = [] {};\nauto other_name = [] {};\n\ntemplate <class>\nstruct get_type;\n\ntemplate <class T>\nstruct get_type<di::aux::type<T>> {\n  using type = T;\n};\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n\ntest inject_ctor_limit_size = [] {\n  struct c {\n    BOOST_DI_INJECT(c, int /*p1*/, int /*p2*/, int /*p3*/, int /*p4*/, int /*p5*/, int /*p6*/, int /*p7*/, int /*p8*/,\n                    int /*p9*/, int /*p10*/) {}\n  };\n\n  auto injector = di::make_injector();\n  injector.create<c>();\n};\n\ntest ctor_limit_size = [] {\n  struct c {\n    c(int /*p1*/, int /*p2*/, int /*p3*/, int /*p4*/, int /*p5*/, int /*p6*/, int /*p7*/, int /*p8*/, int /*p9*/, int /*p10*/) {\n    }\n  };\n\n  auto injector = di::make_injector();\n  injector.create<c>();\n};\n\ntest inject_traits_no_limits = [] {\n  struct c {\n    using boost_di_inject__ = di::inject<int, int, int, int, int, int, int, int, int, int, int>;\n    c(int, int, int, int, int, int, int, int, int, int, int) {}\n  };\n\n  auto injector = di::make_injector();\n  injector.create<c>();\n};\n\nstruct c_no_limits {\n  c_no_limits(int, int, int, int, int, int, int, int, int, int, int) {}\n};\n\nnamespace boost {\nnamespace di {\n\ntemplate <>\nstruct ctor_traits<c_no_limits> {\n  using boost_di_inject__ = di::inject<int, int, int, int, int, int, int, int, int, int, int>;\n};\n}\n}  // boost::di\n\ntest inject_traits_no_limits_via_ctor_traits = [] {\n  auto injector = di::make_injector();\n  injector.create<c_no_limits>();\n};\n\ntest inject = [] {\n  constexpr auto i = 42;\n\n  struct c {\n    c(std::initializer_list<int>) {}\n    c(int, double, float) {}\n    BOOST_DI_INJECT(c, int i, double d) : i(i), d(d) {}\n    int i = 0;\n    double d = 0.0;\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(i));\n  auto object = injector.create<c>();\n  expect(i == object.i);\n  expect(0.0 == object.d);\n};\n\ntest automatic_inject = [] {\n  constexpr auto i = 42;\n\n  struct c {\n    c(std::initializer_list<int>) {}\n    c(int i, double d) : i(i), d(d) {}\n    int i = 0;\n    double d = 0.0;\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(i));\n  auto object = injector.create<c>();\n\n  expect(i == object.i);\n  expect(0.0 == object.d);\n};\n\ntest automatic_inject_with_initializer_list = [] {\n  constexpr auto i = 42;\n\n  struct c {\n    c(int i, std::initializer_list<int> il) : i(i), il(il) {}\n    int i = 0;\n    std::initializer_list<int> il;\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(i));\n  auto object = injector.create<c>();\n\n  expect(i == object.i);\n  expect(0 == object.il.size());\n};\n\ntest ctor_refs = [] {\n  struct c {\n    BOOST_DI_INJECT(c, const std::shared_ptr<i1>& sp, int& i, const double& d, const std::string& str,\n                    (named = name) const std::string& nstr, std::function<int()> f, long&& l, short s)\n        : sp(sp), i(i), d(d), str(str), nstr(nstr), f(f), l(std::move(l)), s(s) {\n      expect(\"named str\" == nstr);\n    }\n\n    std::shared_ptr<i1> sp;\n    int& i;\n    const double& d;\n    std::string str;\n    std::string nstr;\n    std::function<int()> f;\n    long l = 0;\n    short s = 0;\n  };\n\n  struct c_inject {\n    c_inject(const std::shared_ptr<i1>& sp, int& i, const double& d, const std::string& str\n#if defined(__MSVC__)\n             ,\n             function<int()> f\n#else\n             ,\n             std::function<int()> f\n#endif\n             ,\n             long&& l, short s)\n        : sp(sp), i(i), d(d), str(str), f(f), l(std::move(l)), s(s) {}\n\n    std::shared_ptr<i1> sp;\n    int& i;\n    const double& d;\n    std::string str;\n    std::function<int()> f;\n    long l = 0;\n    short s = 0;\n  };\n\n  struct c_aggregate {\n    std::shared_ptr<i1> sp;\n    int& i;\n    const double& d;\n    std::string str = {};\n    std::string nstr = {};\n    std::function<int()> f = {};\n    long l = 0;\n    short s = 0;\n  };\n\n  auto test = [](auto type, const auto& bind_i1) {\n    auto i = 0;\n    constexpr auto d = 0.0;\n\n    auto injector =\n        di::make_injector(di::bind<int>().to(i), di::bind<double>().to(d), di::bind<std::string>().to(\"str\"),\n                          di::bind<std::string>().named(name).to(\"named str\"), bind_i1, di::bind<short>().to(short{42}),\n                          di::bind<long>().to(123l), di::bind<std::function<int()>>().to([] { return 87; }),\n                          di::bind<function<int()>>().to([] { return 87; }));\n\n    auto object = injector.template create<typename get_type<decltype(type)>::type>();\n    expect(dynamic_cast<impl1*>(object.sp.get()));\n    expect(&i == &object.i);\n    expect(&d == &object.d);\n    expect(\"str\" == object.str);\n    expect(42 == object.s);\n    expect(87 == object.f());\n    expect(123 == object.l);\n  };\n\n  test(di::aux::type<c>{}, di::bind<i1>().to<impl1>());\n  test(di::aux::type<c_inject>{}, di::bind<i1>().to<impl1>());\n#if !defined(__MSVC__)\n  test(di::aux::type<c_aggregate>{}, di::bind<i1>().to<impl1>());\n#endif\n\n  test(di::aux::type<c>{}, di::bind<i1>().to(std::make_shared<impl1>()));\n  test(di::aux::type<c_inject>{}, di::bind<i1>().to(std::make_shared<impl1>()));\n#if !defined(__MSVC__)\n  test(di::aux::type<c_aggregate>{}, di::bind<i1>().to(std::make_shared<impl1>()));\n#endif\n};\n\ntest refs_vs_copy = [] {\n  struct cc {\n    BOOST_DI_INJECT(cc, (named = name) const int& i, (named = name) const std::string& s, (named = other_name) int& i_ref,\n                    int& ii)\n        : str(s), i(i), i_ref(i_ref), ii(ii) {}\n\n    std::string str;\n    int i = 0;\n    int& i_ref;\n    int& ii;\n  };\n\n  struct cc_inject {\n    BOOST_DI_INJECT(cc_inject, (named = name) const int& i, (named = name) const std::string& s,\n                    (named = other_name) int& i_ref, int& ii)\n        : str(s), i(i), i_ref(i_ref), ii(ii) {}\n\n    std::string str;\n    int i = 0;\n    int& i_ref;\n    int& ii;\n  };\n\n  std::string ref = \"named str\";\n  auto i = 42;\n\n  {\n    auto injector = di::make_injector(di::bind<std::string>().named(name).to(ref), di::bind<int>().named(name).to(i),\n                                      di::bind<int>().named(other_name).to(i), di::bind<int>().to(i));\n    auto object = injector.create<cc>();\n    expect(ref == object.str);\n    expect(i == object.i);\n    expect(i == object.i_ref);\n    expect(&i == &object.i_ref);\n    expect(i == object.ii);\n    expect(&i == &object.ii);\n  }\n\n  {\n    auto injector = di::make_injector(di::bind<std::string>().named(name).to(ref), di::bind<int>().named(name).to(i),\n                                      di::bind<int>().named(other_name).to(i), di::bind<int>().to(i));\n    auto object = injector.create<cc_inject>();\n    expect(ref == object.str);\n    expect(i == object.i);\n    expect(i == object.i_ref);\n    expect(&i == &object.i_ref);\n    expect(i == object.ii);\n    expect(&i == &object.ii);\n  }\n\n  {\n    auto injector = di::make_injector(di::bind<std::string>().named(name).to(ref), di::bind<int>().named(name).to(i),\n                                      di::bind<int>().named(other_name).to(i), di::bind<int>().to(i));\n    auto object = injector.create<cc>();\n    expect(ref == object.str);\n    expect(i == object.i);\n    expect(i == object.i_ref);\n    expect(&i == &object.i_ref);\n    expect(i == object.ii);\n    expect(&i == &object.ii);\n  }\n\n  {\n    auto injector = di::make_injector(di::bind<std::string>().named(name).to(ref), di::bind<int>().named(name).to(i),\n                                      di::bind<int>().named(other_name).to(i), di::bind<int>().to(i));\n    auto object = injector.create<cc_inject>();\n    expect(ref == object.str);\n    expect(i == object.i);\n    expect(i == object.i_ref);\n    expect(&i == &object.i_ref);\n    expect(i == object.ii);\n    expect(&i == &object.ii);\n  }\n};\n\n#if __has_include(<boost / function.hpp>)\ntest create_with_boost_function = [] {\n  struct c {\n    BOOST_DI_INJECT(c, const boost::function<int()>& f1, boost::function<double(double)> f2) {\n      expect(42 == f1());\n      expect(87.0 == f2(87.0));\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<boost::function<int()>>.to([] { return 42; }),\n                                    di::bind<boost::function<double(double)>>.to([](double d) { return d; }));\n\n  injector.create<c>();\n};\n#endif\n\ntest create_with_default_values = [] {\n  constexpr auto i = 42;\n\n  struct default_values {\n    BOOST_DI_INJECT_TRAITS(int);\n    explicit default_values(int i, float f = 42.0, double d = 87.0) : i(i), f(f), d(d) {}\n    int i = 0;\n    float f = 0.0;\n    double d = 0.0;\n  };\n\n  auto injector = make_injector(di::bind<int>().to(i));\n  auto object = injector.create<default_values>();\n\n  expect(i == object.i);\n  expect(42.0 == object.f);\n  expect(87.0 == object.d);\n};\n\ntest smart_pointers = [] {\n  struct c {\n    c(std::unique_ptr<i1> up1, const std::shared_ptr<i1>& sp1, std::shared_ptr<i1> sp2) {\n      expect(dynamic_cast<impl1*>(up1.get()));\n      expect(dynamic_cast<impl1*>(sp1.get()));\n      expect(dynamic_cast<impl1*>(sp2.get()));\n      expect(sp1 == sp2);\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<i1>().to<impl1>());\n\n  injector.create<c>();\n};\n\ntest one_arg_class = [] {\n  struct c {\n    explicit c(int i) : i(i) {}\n    int i = 0;\n  };\n\n  struct c_implicit {\n    c_implicit(int i) : i(i) {}\n    int i = 0;\n  };\n\n  struct c_named {\n    BOOST_DI_INJECT(c_named, (named = name) int i) : i(i) {}\n    int i = 0;\n  };\n\n  auto injector = di::make_injector(di::bind<int>().in(di::unique));\n\n  {\n    auto object = injector.create<c>();\n    expect(0 == object.i);\n  }\n\n  {\n    auto object = injector.create<c_implicit>();\n    expect(0 == object.i);\n  }\n\n  {\n    auto object = injector.create<c_named>();\n    expect(0 == object.i);\n  }\n};\n\ntest string_creation = [] {\n  struct string {\n    std::string str;\n  };\n\n  expect(\"\" == di::make_injector().create<string>().str);\n};\n\ntemplate <class T>\nstruct template_inject {\n  BOOST_DI_INJECT(explicit template_inject, T value) : value_(value) {}\n\n  T value_;\n};\n\ntest inject_inside_template = [] {\n  constexpr auto i = 42;\n  auto injector = di::make_injector(di::bind<int>().to(i));\n  auto object = injector.create<template_inject<int>>();\n\n  expect(i == object.value_);\n};\n\ntemplate <class T>\nstruct template_inject_no_limits {\n  using boost_di_inject__ = di::inject<T>;\n  explicit template_inject_no_limits(T value) : value_(value) {}\n  T value_;\n};\n\ntest inject_inside_template_no_limits = [] {\n  constexpr auto i = 42;\n  auto injector = di::make_injector(di::bind<int>().to(i));\n  auto object = injector.create<template_inject_no_limits<int>>();\n  expect(i == object.value_);\n};\n\ntest create_conversion = [] {\n  constexpr auto i = 42;\n  auto injector = di::make_injector(di::bind<i1>().to<impl1>(), di::bind<int>().to(i));\n  expect(i == injector.create<int>());\n  expect(dynamic_cast<impl1*>((injector.create<std::unique_ptr<i1>>()).get()));\n};\n\ntest request_value_and_ptr_in_unique = [] {\n  struct c {\n    int i = 0;\n    owner<int*> ptr = nullptr;\n  };\n\n  auto injector = di::make_injector(di::bind<int>().in(di::unique));\n  auto object = injector.create<c>();\n  delete object.ptr;\n};\n\ntemplate <class... Ts>\nstruct custom_type_list {\n  using type = custom_type_list;\n};\n\ntest inject_using_custom_type_list = [] {\n  struct c {\n    c(int i, double d) {\n      expect(42 == i);\n      expect(87.0 == d);\n    }\n\n    using boost_di_inject__ = custom_type_list<int, double>;\n  };\n\n  auto injector = di::make_injector(di::bind<>().to(42), di::bind<double>().to(87.0));\n  injector.create<c>();\n};\n\nstruct custom_type_list_variadic {\n  template <class... Ts>\n  explicit custom_type_list_variadic(Ts&&... ts) {\n    std::tuple<Ts...> args{ts...};\n    expect(42 == std::get<0>(args));\n    expect(87.0 == std::get<1>(args));\n  }\n\n  using boost_di_inject__ = custom_type_list<int, double>;\n};\n\ntest inject_using_custom_type_list_variadic = [] {\n  auto injector = di::make_injector(di::bind<>().to(42), di::bind<double>().to(87.0));\n  injector.create<custom_type_list_variadic>();\n};\n\n#if __has_include(<boost / shared_ptr.hpp>)\ntest conversion_to_boost_shared_ptr_inject = [] {\n  struct c {\n    BOOST_DI_INJECT(explicit c, const boost::shared_ptr<int>& sp) : sp(sp) {}\n    boost::shared_ptr<int> sp;\n  };\n\n  auto injector = di::make_injector(di::bind<int>().in(di::singleton));\n  auto object = injector.create<c>();\n\n  expect(object.sp.get());\n};\n\ntest conversion_to_boost_shared_ctor_referable = [] {\n  constexpr auto i = 42;\n  struct c {\n    c(const boost::shared_ptr<int>& sp, int& i_) : sp(sp) { expect(i_ == i); }\n    boost::shared_ptr<int> sp;\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(std::make_shared<int>(i)));\n  auto object = injector.create<c>();\n\n  expect(object.sp.get());\n  expect(i == *object.sp);\n};\n\ntest conversion_to_boost_shared_ptr_uniform = [] {\n  struct c {\n    boost::shared_ptr<int> sp;\n  };\n\n  auto injector = di::make_injector(di::bind<int>().in(di::singleton));\n  auto object = injector.create<c>();\n\n  expect(object.sp.get());\n};\n#endif\n"
  },
  {
    "path": "test/ft/di_injector.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n// clang-format off\n#include <initializer_list>  // has to be before, due to the bug in clang < 3.7\n// clang-format on\n#include \"boost/di.hpp\"\n#include <iterator>\n#include <memory>\n#include <set>\n#include <string>\n#include <utility>\n#include <vector>\n\nnamespace di = boost::di;\n\nstruct empty {};\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\nstruct impl2 : i2 {\n  void dummy2() override {}\n};\nstruct impl1_2 : i1 {\n  void dummy1() override {}\n};\nstruct complex1 {\n  explicit complex1(std::shared_ptr<i1> i1) : i1_(i1) {}\n  std::shared_ptr<i1> i1_;\n};\nstruct complex2 {\n#if defined(__MSVC__)\n  complex2(int i, complex1 c1) : i(i), c1(c1) {}\n#endif\n  int i;\n  complex1 c1;\n};\nstruct complex3 {\n#if defined(__MSVC__)\n  complex3(complex2 c2) : c2(c2) {}\n#endif\n  complex2 c2;\n};\n\nauto name = [] {};\n\ntest empty_injector = [] {\n  auto injector = di::make_injector();\n  expect(0 == injector.create<int>());\n};\n\ntest move_injector = [] {\n  auto module = di::make_injector();\n  auto injector = di::make_injector(std::move(module));\n  expect(0 == injector.create<int>());\n};\n\ntest create_using_copy = [] {\n  auto injector = di::make_injector();\n  injector.create<empty>();\n};\n\ntest create_using_ptr = [] {\n  auto injector = di::make_injector();\n  std::unique_ptr<empty> object{injector.create<empty*>()};\n  expect(object.get());\n};\n\ntest create_using_const_ptr = [] {\n  auto injector = di::make_injector();\n  std::unique_ptr<const empty> object{injector.create<const empty*>()};\n  expect(object.get());\n};\n\ntest create_using_unique_ptr = [] {\n  auto injector = di::make_injector();\n  auto object = injector.create<std::unique_ptr<empty>>();\n  expect(object.get());\n};\n\ntest create_using_shared_ptr = [] {\n  auto injector = di::make_injector();\n  auto object = injector.create<std::shared_ptr<empty>>();\n  expect(object.get());\n};\n\ntest create_ptr = [] {\n  struct c {\n    explicit c(di::aux::owner<i1*> ptr) { delete ptr; }\n  };\n\n  auto injector = di::make_injector(di::bind<i1>().to<impl1>());\n  injector.create<c>();\n};\n\ntest create_interface_when_impl_with_one_arg_ctor = [] {\n  struct impl : i1 {\n    explicit impl(int) {}\n    void dummy1() override {}\n  };\n\n  auto injector = di::make_injector(di::bind<i1>().to<impl>());\n  auto object = injector.create<std::unique_ptr<i1>>();\n  expect(object.get());\n};\n\ntest injectors_mix = [] {\n  auto injector = di::make_injector(di::make_injector(di::bind<i1>().to<impl1>()));\n  auto object = injector.create<std::shared_ptr<complex1>>();\n  expect(object->i1_.get());\n};\n\ntest injector_move_ctor = [] {\n  di::injector<int> injector = di::make_injector(di::make_injector(di::bind<int>().to([] { return 42; })));\n  expect(42 == injector.create<int>());\n  auto c((static_cast<di::injector<int>&&>(injector)));\n  (void)c;\n};\n\ntest injector_conversions = [] {\n  di::injector<double> injector1 = di::make_injector(di::bind<double>().to(87.0), di::bind<>().to(42));\n  di::injector<double> injector2 = std::move(injector1);\n  auto injector3 = [&]() -> di::injector<double, std::unique_ptr<i1>, std::shared_ptr<i1>, std::unique_ptr<i2>> {\n    return di::make_injector(std::move(injector2), di::bind<i1>().to<impl1>(), di::bind<i2>().to<impl2>());\n  };\n\n  di::injector<double> injector4 = di::make_injector(injector3());\n  expect(0 == injector4.create<int>());\n  expect(87.0 == injector4.create<double>());\n\n  di::injector<std::unique_ptr<i1>> injector5 = di::make_injector(injector3());\n  auto o1 = injector5.create<std::unique_ptr<i1>>();\n  expect(dynamic_cast<impl1*>(o1.get()));\n\n  di::injector<std::unique_ptr<i2>> injector6 = di::make_injector(injector3());\n  auto o2 = injector6.create<std::unique_ptr<i2>>();\n  expect(dynamic_cast<impl2*>(o2.get()));\n\n  di::injector<complex1> injector = di::make_injector(injector3());\n  auto object = injector.create<complex1>();\n  expect(dynamic_cast<impl1*>(object.i1_.get()));\n};\n\ntest empty_module = [] {\n  auto empty = [] { return di::make_injector(); };\n  auto injector = di::make_injector(empty());\n  expect(0 == injector.create<int>());\n};\n\ntest modules_mix_make_injector = [] {\n  constexpr auto i = 42;\n  constexpr auto d = 87.0;\n  constexpr auto f = 123.0f;\n  const std::string s = \"string\";\n\n  auto injector_string = [&] { return make_injector(di::bind<std::string>().to(s)); };\n  auto empty = [] { return di::make_injector(); };\n  auto module1 = []() -> di::injector<std::unique_ptr<i1>> { return di::make_injector(di::bind<i1>().to<impl1>()); };\n  auto module2 = [](const int& i) -> di::injector<int> { return di::make_injector(di::bind<int>().to(i)); };\n  auto injector = di::make_injector(empty(), di::bind<double>().to(d), module1(), make_injector(di::bind<float>().to(f)),\n                                    injector_string(), module2(i));\n\n  expect(dynamic_cast<impl1*>(injector.create<std::unique_ptr<i1>>().get()));\n  expect(i == injector.create<int>());\n  expect(d == injector.create<double>());\n  expect(f == injector.create<float>());\n  expect(s == injector.create<std::string>());\n};\n\ntest exposed_type = [] {\n  di::injector<complex1> injector = di::make_injector(di::bind<i1>().to<impl1>());\n  auto object = injector.create<complex1>();\n  expect(dynamic_cast<impl1*>(object.i1_.get()));\n};\n\ntest exposed_type_by_injector = [] {\n  constexpr auto i = 42;\n  auto injector1 = []() -> di::injector<complex1> { return di::make_injector(di::bind<i1>().to<impl1>()); };\n  auto injector = di::make_injector(injector1(), di::bind<int>().to(i));\n  auto object = injector.create<complex2>();\n  expect(dynamic_cast<impl1*>(object.c1.i1_.get()));\n  expect(i == object.i);\n};\n\ntest exposed_type_by_module = [] {\n  constexpr auto i = 42;\n  auto module = []() -> di::injector<complex1> { return di::make_injector(di::bind<i1>().to<impl1>()); };\n  auto injector = di::make_injector(module(), di::bind<int>().to(i));\n  auto object = injector.create<std::shared_ptr<complex2>>();\n  expect(dynamic_cast<impl1*>(object->c1.i1_.get()));\n  expect(i == object->i);\n};\n\ntest exposed_type_by_module_twice = [] {\n  constexpr auto i = 42;\n  auto module = []() -> di::injector<complex1> { return di::make_injector(di::bind<i1>().to<impl1>()); };\n  di::injector<std::shared_ptr<complex2>> injector = di::make_injector(module(), di::bind<int>().to(i));\n  auto object = injector.create<std::shared_ptr<complex2>>();\n  expect(dynamic_cast<impl1*>(object->c1.i1_.get()));\n  expect(i == object->i);\n};\n\ntest exposed_type_by_module_mix = [] {\n  static constexpr auto i = 42;\n  auto module1 = []() -> di::injector<complex1> { return di::make_injector(di::bind<i1>().to<impl1>()); };\n  auto module2 = [&module1]() -> di::injector<complex2, std::shared_ptr<complex2>> {\n    return di::make_injector(di::bind<int>().to(i), module1());\n  };\n  auto injector = di::make_injector(module2());\n\n  {\n    auto object = injector.create<std::shared_ptr<complex2>>();\n    expect(object.get());\n  }\n\n  {\n    auto object = injector.create<std::shared_ptr<complex3>>();\n    expect(object.get());\n  }\n};\n\ntest exposed_move = [] {\n  constexpr auto i = 42;\n  di::injector<complex1, std::shared_ptr<i1>> injector1 = di::make_injector(di::bind<i1>().to<impl1>());\n  auto injector = di::make_injector(std::move(injector1), di::bind<int>().to(i));\n  auto object = injector.create<std::shared_ptr<complex2>>();\n  expect(dynamic_cast<impl1*>(object->c1.i1_.get()));\n  expect(i == object->i);\n};\n\ntest exposed_many = [] {\n  constexpr auto i = 42;\n  auto injector1 = []() -> di::injector<complex1, std::shared_ptr<i1>> {\n    return di::make_injector(di::bind<i1>().to<impl1>());\n  };\n  auto injector = di::make_injector(injector1(), di::bind<int>().to(i));\n\n  {\n    auto object = injector.create<std::shared_ptr<complex2>>();\n    expect(dynamic_cast<impl1*>(object->c1.i1_.get()));\n    expect(i == object->i);\n  }\n\n  {\n    auto object = injector.create<std::shared_ptr<i1>>();\n    expect(dynamic_cast<impl1*>(object.get()));\n  }\n};\n\ntest exposed_with_instance = [] {\n  constexpr auto i = 42;\n  di::injector<int> injector = di::make_injector(di::bind<int>().to(i));\n  expect(i == injector.create<int>());\n};\n\ntest exposed_bind_deduced = [] {\n  static constexpr auto i = 42;\n  auto module = []() -> di::injector<int> { return di::make_injector(di::bind<int>().to(i)); };\n  auto injector = module();\n\n  expect(i == injector.create<int>());\n};\n\ntest exposed_bind = [] {\n  static constexpr auto i = 42;\n\n  struct c {\n    BOOST_DI_INJECT(explicit c, (named = name) int i) : i(i) {}\n    int i = 0;\n  };\n\n  auto module = []() -> di::injector<BOOST_DI_EXPOSE((named = name) int)> {\n    return di::make_injector(di::bind<int>().named(name).to(i));\n  };\n  auto injector = di::make_injector(module());\n  auto object = injector.create<c>();\n\n  expect(i == object.i);\n};\n\ntest exposed_bind_interface = [] {\n  struct c {\n    BOOST_DI_INJECT(c, (named = name) std::unique_ptr<i1> i) : i(std::move(i)) {}\n    std::unique_ptr<i1> i;\n  };\n\n  auto module = []() -> di::injector<BOOST_DI_EXPOSE((named = name) std::unique_ptr<i1>)> {\n    return di::make_injector(di::bind<i1>().named(name).to<impl1>());\n  };\n\n  {\n    auto injector = di::make_injector(module());\n    auto object = injector.create<std::unique_ptr<c>>();\n    expect(dynamic_cast<impl1*>(object->i.get()));\n  }\n\n  {\n    auto injector = module();\n    auto object = injector.create<std::unique_ptr<c>>();\n    expect(dynamic_cast<impl1*>(object->i.get()));\n  }\n};\n\ntest exposed_module_with_unique_ptr = [] {\n  struct c {\n    c(std::unique_ptr<i1> i1, std::unique_ptr<i2> i2, int i) : i1_(std::move(i1)), i2_(std::move(i2)), i(i) {}\n    std::unique_ptr<i1> i1_;\n    std::unique_ptr<i2> i2_;\n    int i = 0;\n  };\n\n  auto module = [](const int& i) -> di::injector<std::unique_ptr<c>> {\n    return di::make_injector(di::bind<i1>().to<impl1>(), di::bind<i2>().to<impl2>(), di::bind<int>().to(i));\n  };\n\n  auto injector = di::make_injector(module(42));\n  auto object = injector.create<std::unique_ptr<c>>();\n\n  expect(dynamic_cast<impl1*>(object->i1_.get()));\n  expect(dynamic_cast<impl2*>(object->i2_.get()));\n  expect(42 == object->i);\n};\n\ntest exposed_smart_ptrs = [] {\n  di::injector<std::unique_ptr<i1>, std::shared_ptr<i1>> injector = di::make_injector(di::bind<i1>().to<impl1>());\n\n  {\n    auto object = injector.create<std::unique_ptr<i1>>();\n    expect(dynamic_cast<impl1*>(object.get()));\n  }\n\n  {\n    auto object = injector.create<std::shared_ptr<i1>>();\n    expect(dynamic_cast<impl1*>(object.get()));\n  }\n};\n\ntest exposed_by_deduced_singleton = [] {\n  di::injector<std::shared_ptr<i1>> injector = di::make_injector(di::bind<i1>().to<impl1>());\n  auto o1 = injector.create<std::shared_ptr<i1>>();\n  auto o2 = injector.create<std::shared_ptr<i1>>();\n  expect(o1 == o2);\n  expect(dynamic_cast<impl1*>(o1.get()));\n};\n\ntest exposed_by_singleton = [] {\n  di::injector<std::shared_ptr<i1>> injector = di::make_injector(di::bind<i1>().to<impl1>().in(di::singleton));\n  auto o1 = injector.create<std::shared_ptr<i1>>();\n  auto o2 = injector.create<std::shared_ptr<i1>>();\n  expect(o1 == o2);\n  expect(dynamic_cast<impl1*>(o1.get()));\n};\n\ntest exposed_named = [] {\n  struct c {\n    BOOST_DI_INJECT(c, std::shared_ptr<i1> sp1, (named = name) std::shared_ptr<i1> sp2) {\n      expect(dynamic_cast<impl1*>(sp1.get()));\n      expect(dynamic_cast<impl1_2*>(sp2.get()));\n      expect(sp1 != sp2);\n    }\n  };\n  di::injector<BOOST_DI_EXPOSE((named = name) std::shared_ptr<i1>), std::shared_ptr<i1>> injector =\n      di::make_injector(di::bind<i1>().to<impl1>(), di::bind<i1>().named(name).to<impl1_2>());\n  injector.create<c>();\n};\n\ntest exposed_named_ref = [] {\n  struct c {\n    BOOST_DI_INJECT(c, i1& o1, (named = name) i1& o2) {\n      expect(dynamic_cast<impl1*>(&o1));\n      expect(dynamic_cast<impl1_2*>(&o2));\n      expect(&o1 != &o2);\n    }\n  };\n  di::injector<BOOST_DI_EXPOSE((named = name) i1&), i1&> injector =\n      di::make_injector(di::bind<i1>().to<impl1>(), di::bind<i1>().named(name).to<impl1_2>());\n  injector.create<c>();\n};\n\ntest exposed_multi_bindings = [] {\n  di::injector<std::set<int>, std::vector<int>> injector = di::make_injector(di::bind<int[]>().to({1, 2, 3}));\n  auto v = injector.create<std::vector<int>>();\n  expect(3 == v.size());\n  expect(1 == v[0]);\n  expect(2 == v[1]);\n  expect(3 == v[2]);\n\n  auto s = injector.create<std::set<int>>();\n  expect(3 == s.size());\n  auto it = s.begin();\n  expect(1 == *(std::next(it, 0)));\n  expect(2 == *(std::next(it, 1)));\n  expect(3 == *(std::next(it, 2)));\n};\n\ntest exposed_multi_bindings_expose = [] {\n  di::injector<BOOST_DI_EXPOSE(std::set<int>), BOOST_DI_EXPOSE(std::vector<int>)> injector =\n      di::make_injector(di::bind<int[]>().to({1, 2, 3}));\n  expect(3 == injector.create<std::vector<int>>().size());\n  expect(3 == injector.create<std::set<int>>().size());\n};\n\ndi::injector<di::aux::owner<i1*>> m2() noexcept { return di::make_injector(di::bind<i1>().to<impl1>()); }\n\ntest exposed_by_lambda_expr_and_func = [] {\n  auto m1 = [] { return di::make_injector(di::bind<int>().to(42)); };\n\n  struct c {\n    c(int i, di::aux::owner<i1*> o) {\n      expect(i == 42);\n      expect(dynamic_cast<impl1*>(o));\n      delete o;\n    }\n  };\n\n  auto injector = di::make_injector(m1(), m2());\n  injector.create<c>();\n};\n"
  },
  {
    "path": "test/ft/di_injector_except.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di.hpp\"\n\nnamespace di = boost::di;\n\ntest should_throw_when_ctor_throws = [] {\n  struct except {\n    except() { throw 0; }\n  };\n\n  const auto injector = di::make_injector();\n\n  auto cought = false;\n  try {\n    injector.create<except>();\n  } catch (...) {\n    cought = true;\n  }\n  expect(cought);\n};\n\nstruct empty {};\n\ntest should_throw_when_lambda_with_2_args_throws = [] {\n\n  const auto injector = di::make_injector(di::bind<empty>().to([](const auto&, const auto&) {\n    throw 0;\n    return empty{};\n  }));\n\n  auto cought = false;\n  try {\n    injector.create<empty>();\n  } catch (...) {\n    cought = true;\n  }\n  expect(cought);\n};\n\ntest should_throw_when_lambda_with_1_arg_throws = [] {\n\n  const auto injector = di::make_injector(di::bind<empty>().to([](const auto&) {\n    throw 0;\n    return empty{};\n  }));\n\n  auto cought = false;\n  try {\n    injector.create<empty>();\n  } catch (...) {\n    cought = true;\n  }\n  expect(cought);\n};\n\ntest should_throw_when_lambda_with_no_args_throws = [] {\n\n  const auto injector = di::make_injector(di::bind<empty>().to([]() {\n    throw 0;\n    return empty{};\n  }));\n\n  auto cought = false;\n  try {\n    injector.create<empty>();\n  } catch (...) {\n    cought = true;\n  }\n  expect(cought);\n};\n\nstruct except_factory {\n  template <class TInjector>\n  auto operator()(const TInjector&) const {\n    throw 0;\n    return empty{};\n  }\n};\n\ntest should_throw_when_factory_with_1_arg_throws = [] {\n\n  const auto injector = di::make_injector(di::bind<empty>().to(except_factory{}));\n\n  auto cought = false;\n  try {\n    injector.create<empty>();\n  } catch (...) {\n    cought = true;\n  }\n  expect(cought);\n};"
  },
  {
    "path": "test/ft/di_module_1.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di.hpp\"\n\nnamespace di = boost::di;\n\nint main() {\n  auto injector = di::make_injector();\n  return injector.create<int>();\n}\n"
  },
  {
    "path": "test/ft/di_module_2.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di.hpp\"\n\nnamespace di = boost::di;\n\n__BOOST_DI_UNUSED auto module2 = [] { return di::make_injector(); };\n"
  },
  {
    "path": "test/ft/di_module_3.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di.hpp\"\n\nnamespace di = boost::di;\n\ndi::injector<int> module3() { return di::make_injector(); }\n"
  },
  {
    "path": "test/ft/di_no_memory_inc.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di.hpp\"  // no #include <memory>\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n\ntest bind_and_create_value = [] {\n  static auto i = 42;\n\n  struct c {\n    explicit c(int& i_) { expect(&i_ == &i); }\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(i));\n\n  injector.create<c>();\n};\n\ntest bind_and_create_value_via_inject = [] {\n  static auto i = 42;\n\n  struct c {\n    BOOST_DI_INJECT(explicit c, int& i_) { expect(&i_ == &i); }\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(i));\n\n  injector.create<c>();\n};\n\ntest bind_and_create_interface = [] {\n  struct c {\n    c(i1& i1_, i1& i2_, int i) {\n      expect(dynamic_cast<impl1*>(&i1_) == dynamic_cast<impl1*>(&i2_));\n      expect(42 == i);\n    }\n  };\n\n  auto injector = di::make_injector(di::bind<i1>().to<impl1>(), di::bind<int>().to(42));\n\n  injector.create<c>();\n};\n"
  },
  {
    "path": "test/ft/di_no_std_inc.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di.hpp\"  // no stdinc, stdinc++\n\nnamespace di = boost::di;\n\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct impl1 : i1 {\n  void dummy1() override {}\n};\n\nint main() {\n  struct c {\n    c(int, i1&) {}\n  };\n\n  auto injector = di::make_injector(di::bind<int>().to(42), di::bind<i1>().to<impl1>());\n  injector.create<c>();\n}\n"
  },
  {
    "path": "test/pt/di_compile_time.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#if !defined(COVERAGE)\n\n#include <chrono>\n#include <cstdlib>\n#include <iomanip>\n#include <regex>\n#include <sstream>\n#include \"common/utils.hpp\"\n\nnamespace {\n\nclass generator {\n  static constexpr auto SOURCE_FILE = \"benchmark\";\n  static constexpr auto MAX_CTOR_ARGS = 10;\n  static constexpr auto MAX_TYPES = 100;\n  static constexpr auto MAX_COMPLEX_TYPES = 10;\n  static constexpr auto MAX_MODULES = 10;\n\n public:\n  enum class config_create { CTOR, INJECT };\n  enum class config_configure { ALL, EXPOSED };\n\n  generator(config_create create, config_configure configure, bool interfaces = false, int modules = 0)\n      : create_(create),\n        configure_(configure),\n        interfaces_(interfaces),\n        modules_(modules),\n        source_code_(gen_name(create, configure, interfaces, modules)) {}\n\n  std::string generate() {\n    gen_header();\n    gen_basic_types(\"x\", \"x\");\n    if (interfaces_) {\n      gen_basic_types(\"i\", \"\", \"i\");      // interfaces\n      gen_basic_types(\"impl\", \"x\", \"i\");  // implementations\n    }\n    gen_complex_types();\n    gen_modules();\n    gen_main();\n\n    return source_code_;\n  }\n\n private:\n  std::string gen_name(config_create create, config_configure configure, bool interfaces, int modules) const {\n    std::stringstream name;\n    name << SOURCE_FILE << \"_\" << static_cast<int>(create) << \"_\" << static_cast<int>(configure) << \"_\" << interfaces << \"_\"\n         << modules << \".cpp\";\n    return name.str();\n  }\n\n  void gen_header() {\n    if (interfaces_) {\n      source_code_ << \"#include <memory>\\n\";\n    }\n    source_code_ << \"#include <boost/di.hpp>\\n\";\n    source_code_ << \"namespace di = boost::di;\\n\";\n  }\n\n  auto gen_derived(const std::string& name, const std::string& base, int i) {\n    std::stringstream result;\n    if (base != \"\" && name != base) {\n      result << \" : \" << base << std::setfill('0') << std::setw(2) << i;\n    }\n    return result.str();\n  };\n\n  auto gen_interface(const std::string& name, const std::string& base, int i) {\n    std::stringstream result;\n    if (name == base) {\n      result << \" virtual ~\" << name << std::setfill('0') << std::setw(2) << i\n             << \"() noexcept = default; virtual void dummy() = 0;\";\n    }\n    return result.str();\n  };\n\n  auto gen_implementation(const std::string& name, const std::string& base) {\n    std::stringstream result;\n    if (base != \"\" && name != base) {\n      result << \" void dummy() override { }\";\n    }\n    return result.str();\n  };\n\n  auto gen_ctor_args(const std::string& constructor, int i) {\n    std::stringstream args;\n    if (constructor == \"\") {\n      return args.str();\n    }\n    for (auto j = i - MAX_CTOR_ARGS; j < i; ++j) {\n      if (j >= 0) {\n        args << (j > 0 && j != i - MAX_CTOR_ARGS ? \",\" : \"\") << constructor << std::setfill('0') << std::setw(2) << j;\n      }\n    }\n    return args.str();\n  };\n\n  void gen_basic_types(const std::string& name, const std::string& constructor, const std::string& base = \"\") {\n    for (auto i = 0; i < MAX_TYPES; ++i) {\n      std::stringstream ctor;\n\n      if (create_ == config_create::INJECT) {\n        ctor << \"BOOST_DI_INJECT(\" << name << std::setfill('0') << std::setw(2) << i << (i ? \", \" : \"\")\n             << gen_ctor_args(constructor, i) << \") { }\";\n      } else {\n        ctor << name << std::setfill('0') << std::setw(2) << i << \"(\" << gen_ctor_args(constructor, i) << \") { }\";\n      }\n\n      source_code_ << \"struct \" << name << std::setfill('0') << std::setw(2) << i << gen_derived(name, base, i) << \" { \"\n                   << ctor.str() << gen_interface(name, base, i) << gen_implementation(name, base) << \" };\\n\";\n    }\n  }\n\n  void gen_complex_types() {\n    for (auto i = 0; i < MAX_COMPLEX_TYPES; ++i) {\n      source_code_ << \"struct c\" << i << \"{\";\n      if (create_ == config_create::INJECT) {\n        source_code_ << \"BOOST_DI_INJECT(c\" << i;\n      } else {\n        source_code_ << \"c\" << i << \"(\";\n      }\n\n      for (auto j = 0; j < MAX_COMPLEX_TYPES; ++j) {\n        source_code_ << (j || create_ == config_create::INJECT ? \", \" : \"\") << (interfaces_ ? \"std::unique_ptr<\" : \"\")\n                     << (interfaces_ ? ((i * MAX_COMPLEX_TYPES) + j < modules_ * MAX_COMPLEX_TYPES ? \"i\" : \"impl\") : \"x\")\n                     << std::setfill('0') << std::setw(2) << (i * MAX_COMPLEX_TYPES) + j << (interfaces_ ? \">\" : \"\");\n      }\n      source_code_ << \") { } };\\n\";\n    }\n\n    if (create_ == config_create::INJECT) {\n      source_code_ << \"struct c { BOOST_DI_INJECT(c, \";\n    } else {\n      source_code_ << \"struct c { c(\";\n    }\n\n    for (auto i = 0; i < MAX_COMPLEX_TYPES; ++i) {\n      source_code_ << (i ? \", \" : \"\") << \"c\" << i;\n    }\n    source_code_ << \") { } };\\n\";\n  }\n\n  void gen_modules() {\n    for (auto i = 0; i < MAX_MODULES; ++i) {\n      if (i < modules_) {\n        if (configure_ == config_configure::EXPOSED) {\n          source_code_ << \"di::injector<c\" << i << \"> \";\n        } else {\n          source_code_ << \"auto \";\n        }\n        source_code_ << \"module\" << i << \"() noexcept {\\n\";\n        source_code_ << \"\\tauto i = di::make_injector(\\n\";\n\n        if (interfaces_) {\n          for (auto j = 0; j < MAX_MODULES; ++j) {\n            source_code_ << \"\\t\" << (j ? \", \" : \"  \") << \"di::bind<i\" << std::setfill('0') << std::setw(2)\n                         << j + (i * MAX_MODULES) << \">().to<impl\" << std::setfill('0') << std::setw(2) << j + (i * MAX_MODULES)\n                         << \">()\\n\";\n          }\n        }\n\n        for (auto j = 0; j < MAX_MODULES; ++j) {\n          source_code_ << \"\\t\\t\" << (j || interfaces_ ? \", \" : \"  \") << \"di::bind<x\" << std::setfill('0') << std::setw(2)\n                       << j + (i * MAX_MODULES) << \">().in(di::unique)\\n\";\n        }\n        source_code_ << \"\\t);\\n\";\n        source_code_ << \"\\tusing module_t = decltype(i);\\n\";\n        source_code_ << \"\\tstruct module : module_t { module(module_t&& object) : \"\n                        \"module_t(static_cast<module_t&&>(object)){} };\\n\";\n        source_code_ << \"\\treturn module{static_cast<module_t&&>(i)};\\n\";\n        source_code_ << \"\\n};\\n\";\n      }\n    }\n  }\n\n  void gen_main() {\n    source_code_ << \"int main() {\\n\";\n    source_code_ << \"\\tauto injector = di::make_injector(\\n\";\n    for (auto i = 0; i < MAX_MODULES; ++i) {\n      if (i < modules_) {\n        source_code_ << \"\\t\\t\" << (i ? \", \" : \"  \") << \"module\" << i << \"()\\n\";\n      }\n    }\n    source_code_ << \"\\t);\\n\\tinjector.create<c>();\\n}\\n\\n\";\n  }\n\n private:\n  config_create create_;\n  config_configure configure_;\n  bool interfaces_ = false;\n  int modules_ = 0;\n  file<> source_code_;\n};\n\nclass json {\n  static constexpr auto header = R\"(\n{\n  \"title\": {\n    \"text\": \"%title%\"\n  },\n  \"xAxis\": {\n    \"title\": {\n      \"text\": \"Number of bindings\"\n    },\n    \"floor\": 0\n  },\n\n  \"yAxis\": {\n    \"title\": {\n      \"text\": \"Time [s]\"\n    },\n    \"floor\": 0\n  },\n  \"series\": [\n)\";\n\n  static constexpr auto footer = R\"(\n  ]\n}\n)\";\n\n public:\n  explicit json(const std::string& name) : file_{name + \"_\" + cxx() + \".json\"} {\n    file_ << std::regex_replace(std::string{header}, std::regex{\"%title%\"}, name + \" complexity | \" + cxx() + \" \" + cxxflags());\n  }\n\n  ~json() { file_ << footer; }\n\n  void series_start(const std::string& name) {\n    data_count_ = 0;\n    if (series_count_++) {\n      file_ << \",\\n\";\n    }\n    file_ << \"    {\\n\"\n          << \"      \\\"name\\\": \"\n          << \"\\\"\" << name << \"\\\",\\n      \\\"data\\\": [\";\n  }\n\n  void series_end() { file_ << \"]\\n    }\"; }\n\n  void data(int n, double v) {\n    if (data_count_++) {\n      file_ << \", \";\n    }\n    file_ << \"[\" << n << \", \" << v << \"]\";\n  }\n\n private:\n  int data_count_ = 0;\n  int series_count_ = 0;\n  file<> file_;\n};\n\nclass series {\n public:\n  series(json& data, const std::string& name) : data_(data) { data_.series_start(name); }\n  ~series() { data_.series_end(); }\n\n private:\n  json& data_;\n};\n\nauto measure(const std::string& file) {\n  std::stringstream command;\n  command << cxx() << \" \" << cxxflags(true) << \" \" << file;\n\n  auto start = std::chrono::high_resolution_clock::now();\n  auto result = std::system(command.str().c_str());\n  auto end = std::chrono::high_resolution_clock::now();\n  expect(!result);\n\n  return std::chrono::duration<double>(end - start).count();\n}\n\nauto benchmark = [](const std::string& complexity, bool interfaces = false, int modules_min = 0, int modules_max = 10) {\n  auto perform = [&](auto& ds, auto name, auto create, auto configure) {\n    auto _ = series{ds, name};\n    for (auto i = modules_min; i <= modules_max; ++i) {\n      auto file = generator{create, configure, interfaces, i}.generate();\n      ds.data(i * 10 * (interfaces ? 2 : 1), measure(file));\n    }\n  };\n\n  json ds{complexity};\n  perform(ds, \"ctor/auto\", generator::config_create::CTOR, generator::config_configure::ALL);\n  perform(ds, \"inject/all\", generator::config_create::INJECT, generator::config_configure::ALL);\n  perform(ds, \"ctor/exposed\", generator::config_create::CTOR, generator::config_configure::EXPOSED);\n  perform(ds, \"inject/exposed\", generator::config_create::INJECT, generator::config_configure::EXPOSED);\n};\n\nauto is_benchmark(const std::string& name) { return std::getenv(\"BENCHMARK\") && std::string{std::getenv(\"BENCHMARK\")} == name; }\n}\n\ntest small_complexity = [] {\n  if (is_benchmark(\"ON\")) {\n    benchmark(\"small\", false /*interfaces*/, 0 /*min modules*/, 10 /*max modules*/);\n  }\n};\n\ntest big_complexity = [] {\n  if (is_benchmark(\"ON\")) {\n    benchmark(\"big\", true /*interfaces*/, 0 /*min modules*/, 10 /*max modules*/);\n  }\n};\n\ntest quick = [] {\n  if (is_benchmark(\"QUICK\")) {\n    benchmark(\"quick\", false /*interfaces*/, 1 /*min modules*/, 1 /*max modules*/);\n  }\n};\n\n#endif\n"
  },
  {
    "path": "test/pt/di_run_time.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#if !defined(COVERAGE)\n\n#include <cstdio>\n#include <cstdlib>\n#include <fstream>\n#include <memory>\n#include <regex>\n#include <sstream>\n#include <string>\n#include \"boost/di.hpp\"\n#include \"common/utils.hpp\"\n\nnamespace {\n\ninline auto disassemble(const std::string& f, const std::regex& rgx) {\n  file<> commands{f + \".cmd\"};\n  std::stringstream command;\n\n#if defined(__linux)\n  command << \"gdb --batch -x \" << commands;\n  commands << \"file \" << get_module_file_name() << std::endl;\n  commands << \"disassemble \" << f << std::endl;\n  commands << \"q\" << std::endl;\n#elif defined(__APPLE__)\n  command << \"lldb -s \" << commands;\n  commands << \"file \" << get_module_file_name() << std::endl;\n  commands << \"di -n \" << f << std::endl;\n  commands << \"q\" << std::endl;\n#elif defined(_WIN32) || defined(_WIN64)\n  command << \"cdb -cf \" << commands << \" -z \" << get_module_file_name();\n  commands << \"uf \" << f << std::endl;\n  commands << \"q\" << std::endl;\n#endif\n\n  std::stringstream result;\n  if (std::system((command.str() + \" > \" + f + \".out\").c_str())) {\n    return result.str();\n  }\n\n  file<std::ifstream> output{f + \".out\"};\n  auto is_asm = false;\n  for (std::string line; std::getline(output, line);) {\n    if (std::regex_match(line, std::regex{\".*:$\"})) {\n      is_asm = true;\n    }\n\n    if (is_asm) {\n      std::smatch match;\n      if (std::regex_search(line, match, rgx)) {\n        result << match[1] << std::endl;\n      }\n    }\n  }\n\n  expect(!result.str().empty());\n  return result.str();\n}\n\ninline auto check_opcodes(const std::string& name, const std::regex& rgx = std::regex{\".*:(.*)\"}) {\n  const auto given = disassemble(\"given_\" + name, rgx);\n  const auto expected = disassemble(\"expected_\" + name, rgx);\n  const auto result = given == expected;\n  if (!result) {\n    std::printf(\"[expected]%s\\n[given]%s\\n\", expected.c_str(), given.c_str());\n  }\n  return result;\n}\n\n}  // namespace\n\nnamespace di = boost::di;\n\nstruct i {\n  virtual ~i() noexcept = default;\n  virtual int dummy() = 0;\n};\nstruct impl : i {\n  explicit impl(int i) : i_(i){};\n  int dummy() override { return i_; };\n  int i_ = 0;\n};\n\n// ---------------------------------------------------------------------------\n\nauto given_no_bindings() {\n  auto injector = di::make_injector();\n  return injector.create<int>();\n}\n\nauto expected_no_bindings() { return 0; }\n\ntest no_bindings = [] { expect(check_opcodes(\"no_bindings\")); };\n\n// ---------------------------------------------------------------------------\n\nauto given_bind_int() {\n  auto injector = di::make_injector(di::bind<int>().to(42));\n\n  return injector.create<int>();\n}\n\nauto expected_bind_int() { return 42; }\n\ntest bind_int = [] { expect(check_opcodes(\"bind_int\")); };\n\n// ---------------------------------------------------------------------------\n\nauto given_bind_interface() {\n  auto injector = di::make_injector(di::bind<i>().to<impl>());\n\n  return injector.create<std::unique_ptr<i>>();\n}\n\nauto expected_bind_interface() { return std::make_unique<impl>(0); }\n\ntest bind_interface = [] { expect(check_opcodes(\"bind_interface\", std::regex{\".*:([^ ]*).*\"})); };\n\n// ---------------------------------------------------------------------------\n\nauto name_int = [] {};\n\nstruct c {\n  BOOST_DI_INJECT(explicit c, (named = name_int) int);\n};\n\nc::c(int) {}\n\nauto given_bind_named_int() {\n  auto injector = di::make_injector(di::bind<int>().named(name_int).to(42));\n\n  return injector.create<c>();\n}\n\nauto expected_bind_named_int() { return c{42}; }\n\ntest bind_named_int = [] { expect(check_opcodes(\"bind_named_int\")); };\n\n// ---------------------------------------------------------------------------\n\nauto given_module_no_bindings() {\n  auto module = [] { return di::make_injector(); };\n\n  return di::make_injector(module()).create<int>();\n}\n\nauto expected_module_no_bindings() { return 0; }\n\ntest module_no_bindings = [] { expect(check_opcodes(\"module_no_bindings\")); };\n\n// ---------------------------------------------------------------------------\n\nauto given_lambda_module_no_bindings() {\n  auto module = [] { return di::make_injector(); };\n  return di::make_injector(module()).create<int>();\n}\n\nauto expected_lambda_module_no_bindings() { return 0; }\n\ntest lambda_module_no_bindings = [] { expect(check_opcodes(\"lambda_module_no_bindings\")); };\n\n// ---------------------------------------------------------------------------\n\nauto given_module_bind_int() {\n  auto module = [] { return di::make_injector(di::bind<int>().to(42)); };\n\n  return di::make_injector(module()).create<int>();\n}\n\nauto expected_module_bind_int() { return 42; }\n\ntest module_bind_int = [] { expect(check_opcodes(\"module_bind_int\")); };\n\n// ---------------------------------------------------------------------------\n\n#endif\n"
  },
  {
    "path": "test/ut/aux_/preprocessor.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/aux_/preprocessor.hpp\"\n#include <string>\n\ntest cat = [] {\n#define CAT __BOOST_DI_CAT(in, t)\n  CAT i = 0;\n#undef CAT\n  expect(!i);\n};\n\ntest conditional = [] {\n  expect(false == __BOOST_DI_IF(0, true, false));\n  expect(true == __BOOST_DI_IF(1, true, false));\n};\n\ntest args_size = [] {\n  expect(1 == __BOOST_DI_SIZE());\n  expect(1 == __BOOST_DI_SIZE(p1));\n  expect(3 == __BOOST_DI_SIZE(p1, p2, p3));\n  expect(10 == __BOOST_DI_SIZE(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10));\n};\n\ntest is_bracket = [] {\n  expect(!__BOOST_DI_IBP());\n  expect(__BOOST_DI_IBP(()));\n  expect(__BOOST_DI_IBP((named = name)));\n  expect(__BOOST_DI_IBP((named = name) int i = 0));\n};\n\ntest arg = [] {\n  expect(1 == __BOOST_DI_ELEM(0, 1, 2, 3, ...));\n  expect(2 == __BOOST_DI_ELEM(1, 1, 2, 3, ...));\n  expect(3 == __BOOST_DI_ELEM(2, 1, 2, 3, ...));\n};\n\ntest eval_repeat = [] {\n#define Q_IMPL(...) \\\n  std::string { #__VA_ARGS__ }\n#define Q(...) Q_IMPL(__VA_ARGS__)\n#define M(i, ...) i\n  expect(std::string{\"0\"} == Q(__BOOST_DI_REPEAT(1, M, ...)));\n  expect(std::string{\"0 1\"} == Q(__BOOST_DI_REPEAT(2, M, ...)));\n  expect(std::string{\"0 1 2\"} == Q(__BOOST_DI_REPEAT(3, M, ...)));\n#undef M\n#undef Q\n#undef Q_IMPL\n};\n"
  },
  {
    "path": "test/ut/aux_/type_traits.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/aux_/type_traits.hpp\"\n#include <memory>\n#include <set>\n#include <string>\n#include <vector>\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"common/common.hpp\"\n\nnamespace aux {\n\n__BOOST_DI_HAS_TYPE(has_has, has);\n\ntest has_type = [] {\n  struct a {};\n  struct c {\n    using has = void;\n  };\n\n  static_expect(has_has<c>::value);\n  static_expect(!has_has<void>::value);\n  static_expect(!has_has<a>::value);\n};\n\n__BOOST_DI_HAS_METHOD(has_call, call);\n\ntest has_method = [] {\n  struct a {};\n  struct call1 {\n    void call(int){};\n  };\n  struct call2 {\n    int call(const double&) { return {}; };\n  };\n  struct call3 {\n    int call(int, double = 0.0) const noexcept { return {}; };\n  };\n\n  static_expect(!has_call<a, int>::value);\n  static_expect(!has_call<call1>::value);\n  static_expect(has_call<call1, int>::value);\n  static_expect(has_call<call2, double>::value);\n  static_expect(has_call<call2, const double&>::value);\n  static_expect(!has_call<call2, std::string>::value);\n  static_expect(has_call<call2, float>::value);  // convertible to double\n  static_expect(!has_call<call3>::value);\n  static_expect(has_call<call3, int>::value);\n  static_expect(has_call<call3, int, double>::value);\n  static_expect(!has_call<call3, int, double, float>::value);\n};\n\ntest is_braces_constructible_types = [] {\n  struct c {};\n  struct ctor {\n    explicit ctor(int) {}\n  };\n  struct ctor_def_value {\n    explicit ctor_def_value(int = 0) {}\n  };\n  struct ctor_def {\n    ctor_def() noexcept = default;\n  };\n  struct agg1 {\n    int i = {};\n  };\n  struct agg2 {\n    int& i;\n    double d = {};\n  };\n  struct agg3 {\n    int i;\n    double d;\n    float f;\n  };\n\n  static_expect(is_braces_constructible<int>::value);\n  static_expect(is_braces_constructible<c>::value);\n  static_expect(is_braces_constructible<ctor, int>::value);\n  static_expect(!is_braces_constructible<ctor>::value);\n  static_expect(is_braces_constructible<ctor_def_value>::value);\n  static_expect(is_braces_constructible<ctor_def_value, int>::value);\n  static_expect(is_braces_constructible<ctor_def>::value);\n  static_expect(!is_braces_constructible<ctor_def, int>::value);\n  static_expect(is_braces_constructible<agg1>::value);\n\n  static_expect(!is_braces_constructible<agg1, int, double>::value);\n#if !defined(__MSVC__)\n  static_expect(is_braces_constructible<agg1, int>::value);\n  static_expect(is_braces_constructible<agg2, int&>::value);\n  static_expect(is_braces_constructible<agg2, int&, double>::value);\n#endif\n  static_expect(is_braces_constructible<agg3, int, double, float>::value);\n};\n\ntest is_narrowed_types = [] {\n  static_expect(!is_narrowed<int, int>::value);\n  static_expect(!is_narrowed<float, float>::value);\n  static_expect(!is_narrowed<double, double>::value);\n  static_expect(is_narrowed<int, double>::value);\n  static_expect(is_narrowed<int, float>::value);\n  static_expect(is_narrowed<float, int>::value);\n  static_expect(is_narrowed<double, int>::value);\n  static_expect(is_narrowed<float, double>::value);\n  struct c {};\n  static_expect(!is_narrowed<int, c>::value);\n};\n\ntest remove_reference_types = [] {\n  static_expect(std::is_same<int, remove_reference_t<int>>::value);\n  static_expect(std::is_same<int, remove_reference_t<int&>>::value);\n  static_expect(std::is_same<int, remove_reference_t<int&&>>::value);\n  static_expect(std::is_same<const int, remove_reference_t<const int&>>::value);\n};\n\ntest remove_pointer_types = [] {\n  static_expect(std::is_same<int, remove_pointer_t<int>>::value);\n  static_expect(std::is_same<int, remove_pointer_t<int*>>::value);\n  static_expect(std::is_same<const int, remove_pointer_t<const int*>>::value);\n};\n\ntest remove_extent_types = [] {\n  static_expect(std::is_same<int, remove_extent_t<int>>::value);\n  static_expect(std::is_same<int, remove_extent_t<int[]>>::value);\n};\n\ntest remove_smart_ptr_types = [] {\n  static_expect(std::is_same<int, remove_smart_ptr_t<int>>::value);\n  static_expect(std::is_same<int, remove_smart_ptr_t<std::unique_ptr<int>>>::value);\n  static_expect(std::is_same<int, remove_smart_ptr_t<std::shared_ptr<int>>>::value);\n  static_expect(std::is_same<int, remove_smart_ptr_t<boost::shared_ptr<int>>>::value);\n  static_expect(std::is_same<int, remove_smart_ptr_t<std::weak_ptr<int>>>::value);\n};\n\ntest remove_qualifiers_types = [] {\n  static_expect(std::is_same<int, remove_qualifiers_t<int>>::value);\n  static_expect(std::is_same<int, remove_qualifiers_t<int&>>::value);\n  static_expect(std::is_same<int, remove_qualifiers_t<int*>>::value);\n  static_expect(std::is_same<int, remove_qualifiers_t<const int*>>::value);\n};\n\ntest deref_types = [] {\n  static_expect(std::is_same<typename deref_type<void>::type, void>::value);\n  static_expect(std::is_same<typename deref_type<int>::type, int>::value);\n  static_expect(std::is_same<typename deref_type<std::unique_ptr<int>>::type, int>::value);\n  static_expect(std::is_same<typename deref_type<std::unique_ptr<int, deleter<int>>>::type, int>::value);\n  static_expect(std::is_same<typename deref_type<std::shared_ptr<int>>::type, int>::value);\n  static_expect(std::is_same<typename deref_type<boost::shared_ptr<int>>::type, int>::value);\n  static_expect(std::is_same<typename deref_type<std::weak_ptr<int>>::type, int>::value);\n};\n\ntest decay_types = [] {\n  auto test = [](auto type) {\n    using T = decltype(type);\n    static_expect(std::is_same<T, decay_t<T>>::value);\n    static_expect(std::is_same<T, decay_t<T*>>::value);\n    static_expect(std::is_same<T, decay_t<const T*>>::value);\n    static_expect(std::is_same<T, decay_t<const T>>::value);\n    static_expect(std::is_same<T, decay_t<const T&>>::value);\n    static_expect(std::is_same<T, decay_t<T&>>::value);\n    static_expect(std::is_same<T, decay_t<std::shared_ptr<T>>>::value);\n    static_expect(std::is_same<T, decay_t<boost::shared_ptr<T>>>::value);\n    static_expect(std::is_same<T, decay_t<const std::shared_ptr<T>&>>::value);\n    static_expect(std::is_same<T, decay_t<const boost::shared_ptr<T>&>>::value);\n    static_expect(std::is_same<T, decay_t<std::shared_ptr<T>&>>::value);\n    static_expect(std::is_same<T, decay_t<boost::shared_ptr<T>&>>::value);\n    static_expect(std::is_same<T, decay_t<T&&>>::value);\n    static_expect(std::is_same<core::array<T>, decay_t<std::vector<std::shared_ptr<T>>>>::value);\n    static_expect(std::is_same<core::array<T>, decay_t<std::shared_ptr<std::vector<std::shared_ptr<T>>>>>::value);\n    static_expect(std::is_same<core::array<T>, decay_t<std::set<std::shared_ptr<T>>>>::value);\n    static_expect(std::is_same<core::array<T>, decay_t<std::shared_ptr<std::set<std::shared_ptr<T>>>>>::value);\n  };\n\n  struct c {};\n  test(c{});\n  test(int{});\n};\n\nvoid f1() {}\nint f2(int) { return {}; }\nint f3(int, const double&) { return {}; }\n\nstruct c1 {\n  void f1() {}\n  int f2(int) { return {}; }\n  int f3(int, const double&) { return {}; }\n};\n\nstruct c2 {\n  void f1() const {}\n  int f2(int) const { return {}; }\n  int f3(int, const double&) const { return {}; }\n};\n\ntest function_traits_parameters_type_functions = [] {\n  static_expect(std::is_same<void, typename function_traits<decltype(&f1)>::result_type>::value);\n  static_expect(std::is_same<type_list<>, typename function_traits<decltype(&f1)>::args>::value);\n\n  static_expect(std::is_same<int, typename function_traits<decltype(&f2)>::result_type>::value);\n  static_expect(std::is_same<type_list<int>, typename function_traits<decltype(&f2)>::args>::value);\n\n  static_expect(std::is_same<int, typename function_traits<decltype(&f3)>::result_type>::value);\n  static_expect(std::is_same<type_list<int, const double&>, typename function_traits<decltype(&f3)>::args>::value);\n};\n\ntest function_traits_parameters_type_methods = [] {\n  static_expect(std::is_same<void, typename function_traits<decltype(&c1::f1)>::result_type>::value);\n  static_expect(std::is_same<type_list<>, typename function_traits<decltype(&c1::f1)>::args>::value);\n\n  static_expect(std::is_same<int, typename function_traits<decltype(&c1::f2)>::result_type>::value);\n  static_expect(std::is_same<type_list<int>, typename function_traits<decltype(&c1::f2)>::args>::value);\n\n  static_expect(std::is_same<int, typename function_traits<decltype(&c1::f3)>::result_type>::value);\n  static_expect(std::is_same<type_list<int, const double&>, typename function_traits<decltype(&c1::f3)>::args>::value);\n};\n\ntest function_traits_parameters_type_const_methods = [] {\n  static_expect(std::is_same<void, typename function_traits<decltype(&c2::f1)>::result_type>::value);\n  static_expect(std::is_same<type_list<>, typename function_traits<decltype(&c2::f1)>::args>::value);\n\n  static_expect(std::is_same<int, typename function_traits<decltype(&c2::f2)>::result_type>::value);\n  static_expect(std::is_same<type_list<int>, typename function_traits<decltype(&c2::f2)>::args>::value);\n\n  static_expect(std::is_same<int, typename function_traits<decltype(&c2::f3)>::result_type>::value);\n  static_expect(std::is_same<type_list<int, const double&>, typename function_traits<decltype(&c2::f3)>::args>::value);\n};\n\nclass fwd;\ntest is_complete_types = [] {\n  struct c;\n  static_expect(!is_complete<c>::value);\n  static_expect(!is_complete<class Fwd>::value);\n  static_expect(!is_complete<fwd>::value);\n  struct complete {};\n  struct i {\n    virtual ~i() = 0;\n  };\n  static_expect(is_complete<i>::value);\n  static_expect(is_complete<complete>::value);\n  static_expect(is_complete<int>::value);\n};\n\ntest is_a_types = [] {\n  struct c;\n  struct i {};\n  struct complete : i {};\n  static_expect(!is_a<c, int>::value);\n  static_expect(!is_a<int, int>::value);\n  static_expect(!is_a<int, complete>::value);\n  static_expect(is_a<i, complete>::value);\n};\n\ntest is_unique_types = [] {\n  static_expect(is_unique<>::value);\n  static_expect(is_unique<int>::value);\n  static_expect(is_unique<int, double, float>::value);\n  static_expect(!is_unique<int, int>::value);\n  static_expect(!is_unique<int, double, int>::value);\n  static_expect(!is_unique<int, double, double, int, int>::value);\n  static_expect(std::is_same<not_unique<int>, is_unique<int, int>::type>::value);\n  static_expect(std::is_same<not_unique<int>, is_unique<float, int, double, int>::type>::value);\n};\n\ntest unique_types = [] {\n  static_expect(std::is_same<type_list<>, unique_t<>>::value);\n  static_expect(std::is_same<type_list<int>, unique_t<int>>::value);\n  static_expect(std::is_same<type_list<int>, unique_t<int, int>>::value);\n  static_expect(std::is_same<type_list<int>, unique_t<int, int, int>>::value);\n  static_expect(std::is_same<type_list<int, double>, unique_t<int, double, int, int>>::value);\n  static_expect(std::is_same<type_list<double, int, float>, unique_t<double, int, int, int, float>>::value);\n  static_expect(std::is_same<type_list<double, int, float>, unique_t<double, int, int, int, float, double, int>>::value);\n};\n\ntest is_array_types = [] {\n  static_expect(!is_array<int>::value);\n  static_expect(is_array<int[]>::value);\n  static_expect(is_array<int* []>::value);\n};\n\n}  // aux\n"
  },
  {
    "path": "test/ut/aux_/utility.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/aux_/utility.hpp\"\n#include <type_traits>\n\nnamespace aux {\n\ntest index_sequence_types = [] {\n  static_expect(std::is_same<index_sequence<>, make_index_sequence<0>>::value);\n  static_expect(std::is_same<index_sequence<0>, make_index_sequence<1>>::value);\n  static_expect(std::is_same<index_sequence<0, 1>, make_index_sequence<2>>::value);\n  static_expect(std::is_same<index_sequence<0, 1, 2>, make_index_sequence<3>>::value);\n  static_expect(std::is_same<index_sequence<0, 1, 2, 3>, make_index_sequence<4>>::value);\n  static_expect(std::is_same<index_sequence<0, 1, 2, 3, 4>, make_index_sequence<5>>::value);\n  static_expect(std::is_same<index_sequence<0, 1, 2, 3, 4, 5>, make_index_sequence<6>>::value);\n  static_expect(std::is_same<index_sequence<0, 1, 2, 3, 4, 5, 6>, make_index_sequence<7>>::value);\n  static_expect(std::is_same<index_sequence<0, 1, 2, 3, 4, 5, 6, 7>, make_index_sequence<8>>::value);\n  static_expect(std::is_same<index_sequence<0, 1, 2, 3, 4, 5, 6, 7, 8>, make_index_sequence<9>>::value);\n  static_expect(std::is_same<index_sequence<0, 1, 2, 3, 4, 5, 6, 7, 8, 9>, make_index_sequence<10>>::value);\n};\n\ntest join_types = [] {\n  static_expect(std::is_same<type_list<>, join_t<>>::value);\n  static_expect(std::is_same<type_list<int>, join_t<type_list<int>>>::value);\n  static_expect(std::is_same<type_list<int, double>, join_t<type_list<int>, type_list<double>>>::value);\n  static_expect(std::is_same<type_list<int, float, double>, join_t<type_list<int>, type_list<float, double>>>::value);\n  static_expect(std::is_same<type_list<float, double>, join_t<type_list<>, type_list<float, double>>>::value);\n};\n\n}  // aux\n"
  },
  {
    "path": "test/ut/bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/bindings.hpp\"\n#include <type_traits>\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/concepts/boundable.hpp\"\n\nstruct i {\n  virtual ~i() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct i1 {\n  virtual ~i1() noexcept = default;\n  virtual void dummy1() = 0;\n};\nstruct i2 {\n  virtual ~i2() noexcept = default;\n  virtual void dummy2() = 0;\n};\nstruct impl : i, i1, i2 {\n  void dummy() override {}\n  void dummy1() override {}\n  void dummy2() override {}\n};\n\ntest bindings_types = [] {\n#if defined(__cpp_variable_templates)\n  static_expect(std::is_base_of<core::dependency<scopes::deduce>, decltype(bind<>)>{});\n  static_expect(std::is_base_of<core::dependency<scopes::deduce, int>, decltype(bind<int>)>{});\n  static_expect(std::is_base_of<core::dependency<scopes::deduce, i>, decltype(bind<i>)>{});\n  static_expect(std::is_base_of<core::dependency<scopes::deduce, i, impl>, decltype(bind<i>.to<impl>())>{});\n  static_expect(\n      std::is_base_of<core::dependency<scopes::deduce, concepts::any_of<i1, i2>, impl>, decltype(bind<i1, i2>.to<impl>())>{});\n#endif\n  static_expect(std::is_base_of<core::dependency<scopes::deduce>, aux::remove_qualifiers_t<decltype(bind<>())>>{});\n  static_expect(std::is_base_of<core::dependency<scopes::deduce, int>, aux::remove_qualifiers_t<decltype(bind<int>())>>{});\n  static_expect(std::is_base_of<core::dependency<scopes::deduce, i>, aux::remove_qualifiers_t<decltype(bind<i>())>>{});\n  static_expect(\n      std::is_base_of<core::dependency<scopes::deduce, i, impl>, aux::remove_qualifiers_t<decltype(bind<i>().to<impl>())>>{});\n  static_expect(std::is_base_of<core::dependency<scopes::deduce, concepts::any_of<i1, i2>, impl>,\n                                aux::remove_qualifiers_t<decltype(bind<i1, i2>().to<impl>())>>{});\n};\n"
  },
  {
    "path": "test/ut/concepts/boundable.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/concepts/boundable.hpp\"\n#include <string>\n#include <type_traits>\n#include \"common/fakes/fake_dependency.hpp\"\n\nnamespace concepts {\n\nstruct a {};\nstruct b : a {};\nstruct c : a {};\nstruct d {};\nstruct i {\n  virtual ~i() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct impl_fail : i {};\nstruct impl_okay : i {\n  void dummy() override{};\n};\n\ntest bind_expected_given = [] {\n  static_expect(boundable<int, int>::value);\n  static_expect(boundable<i, impl_okay>::value);\n  static_expect(boundable<class fwd1, class fwd2>::value);\n  static_expect(boundable<i, impl_fail, aux::valid<>>::value);  // instance\n  static_expect(std::is_same<type_<short>::is_not_related_to<int>, boundable<int, short>>::value);\n  static_expect(std::is_same<type_<std::string>::is_not_related_to<int>, boundable<int, std::string>>::value);\n  static_expect(std::is_same<type_<int*>::has_disallowed_qualifiers, boundable<any_of<int*, int>>>::value);\n  static_expect(std::is_same<type_<int*>::has_disallowed_qualifiers, boundable<any_of<int, int*>>>::value);\n  static_expect(std::is_same<type_<double*>::has_disallowed_qualifiers, boundable<any_of<int, double*>>>::value);\n  static_expect(std::is_same<type_<impl_fail>::is_abstract, boundable<i, impl_fail>>::value);\n};\n\ntest bind_any_of = [] {\n  static_expect(boundable<any_of<a, c>, c>::value);\n  static_expect(\n      std::is_same<any_of<type_<d>::is_not_related_to<a>, type_<d>::is_not_related_to<b>, type_<d>::is_not_related_to<c>>,\n                   boundable<any_of<a, b, c>, d>>::value);\n};\n\ntest bind_deps = [] {\n  static_expect(boundable<aux::type_list<>>::value);\n  static_expect(boundable<aux::type_list<fake_dependency<int>>>::value);\n  static_expect(std::is_same<type_<int>::is_bound_more_than_once,\n                             boundable<aux::type_list<fake_dependency<int>, fake_dependency<int>>>>::value);\n  static_expect(\n      std::is_same<type_<double>::is_bound_more_than_once,\n                   boundable<aux::type_list<fake_dependency<double>, fake_dependency<int>, fake_dependency<double>>>>::value);\n  static_expect(\n      std::is_same<type_<double>::named<a>::is_bound_more_than_once,\n                   boundable<aux::type_list<fake_dependency<double, fake_scope<>, std::false_type, a>, fake_dependency<int>,\n                                            fake_dependency<double, fake_scope<>, std::false_type, a>>>>::value);\n  static_expect(std::is_same<type_<int>::is_neither_a_dependency_nor_an_injector, boundable<aux::type_list<int>>>::value);\n};\n\ntest bind_injector = [] {\n  static_expect(boundable<aux::type<>>::value);\n  static_expect(boundable<aux::type<int>>::value);\n  static_expect(std::is_same<type_<int>::is_bound_more_than_once, boundable<aux::type<int, int>>>::value);\n  static_expect(\n      std::is_same<type_<int>::is_bound_more_than_once, boundable<aux::type<int, double, int, float, double>>>::value);\n  static_expect(std::is_same<type_<double>::is_bound_more_than_once, boundable<aux::type<int, double, float, double>>>::value);\n};\n\n}  // concepts\n"
  },
  {
    "path": "test/ut/concepts/callable.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/concepts/callable.hpp\"\n#include <type_traits>\n\nnamespace concepts {\n\nstruct non_callable_type {};\n\nstruct non_match_callable_type {\n  void operator()();\n};\n\nstruct non_match_callable_type_specific {\n  void operator()(int);\n};\n\nstruct callable_type {\n  template <class T>\n  void operator()(const T&) const;\n};\n\nstruct callable_type_return {\n  template <class T>\n  int operator()(T) const;\n};\n\nstruct callable_type_extended {\n  template <class T, class U>\n  void operator()(T, U) const noexcept;\n};\n\ntest is_concept_callable = [] {\n  static_expect(std::is_same<policy<int>::requires_<call_operator_with_one_argument>, callable<int>>::value);\n  static_expect(\n      std::is_same<policy<non_callable_type>::requires_<call_operator_with_one_argument>, callable<non_callable_type>>::value);\n  static_expect(std::is_same<policy<non_match_callable_type>::requires_<call_operator_with_one_argument>,\n                             callable<non_match_callable_type>>::value);\n  static_expect(std::is_same<policy<non_match_callable_type_specific>::requires_<call_operator_with_one_argument>,\n                             callable<non_match_callable_type_specific>>::value);\n\n  static_expect(callable<callable_type>::value);\n  static_expect(callable<callable_type_return>::value);\n  static_expect(!callable<callable_type_extended>::value);\n};\n\n}  // concepts\n"
  },
  {
    "path": "test/ut/concepts/configurable.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/concepts/configurable.hpp\"\n#include <type_traits>\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/config.hpp\"\n#include \"boost/di/providers/heap.hpp\"\n\nnamespace concepts {\n\ntest none = [] {\n  class test_config {};\n  static_expect(std::is_same<config<test_config>::requires_<provider<providable_type(...)>, policies<callable_type(...)>>,\n                             configurable<test_config>>::value);\n};\n\nclass config_just_policies {\n public:\n  static auto policies(...) noexcept { return make_policies(); }\n};\n\ntest just_policies = [] {\n  static_expect(\n      std::is_same<config<config_just_policies>::requires_<provider<providable_type(...)>, policies<callable_type(...)>>,\n                   configurable<config_just_policies>>::value);\n};\n\nclass config_just_provider {\n public:\n  static auto provider(...) noexcept { return providers::heap{}; }\n};\n\ntest just_provider = [] {\n  static_expect(\n      std::is_same<config<config_just_provider>::requires_<provider<providable_type(...)>, policies<callable_type(...)>>,\n                   configurable<config_just_provider>>::value);\n};\n\nclass config_private_access {\n private:\n  static auto policies(...) noexcept { return make_policies(); }\n  static auto provider(...) noexcept { return providers::heap{}; }\n};\n\n#if !defined(__MSVC__)\ntest private_access = [] {\n  static_expect(\n      std::is_same<config<config_private_access>::requires_<provider<providable_type(...)>, policies<callable_type(...)>>,\n                   configurable<config_private_access>>::value);\n};\n#endif\n\nclass config_inheritance_impl {\n public:\n  static auto policies(...) noexcept { return make_policies(); }\n  static auto provider(...) noexcept { return providers::heap{}; }\n};\n\nclass config_inheritance : public config_inheritance_impl {};\n\ntest inheritance = [] { static_expect(configurable<config_inheritance>::value); };\n\nclass config_okay {\n public:\n  static auto policies(...) noexcept { return make_policies(); }\n  static auto provider(...) noexcept { return providers::heap{}; }\n};\n\ntest okay = [] { static_expect(configurable<config_okay>::value); };\n\nclass config_okay_type {\n public:\n  template <class T>\n  static auto policies(const T&) noexcept {\n    return make_policies();\n  }\n\n  template <class T>\n  static auto provider(const T&) noexcept {\n    return providers::heap{};\n  }\n};\n\ntest okay_type = [] { static_expect(configurable<config_okay_type>::value); };\n\n}  // concepts\n"
  },
  {
    "path": "test/ut/concepts/creatable.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/concepts/creatable.hpp\"\n#include \"boost/di/aux_/compiler.hpp\"\n\nnamespace concepts {\n\nstruct d {\n  d(int, double) {}\n};\n\nstruct u {\n  int i = {};\n  double d = {};\n};\n\ntest is_creatable = [] {\n  static_expect(creatable<type_traits::direct, int>::value);\n  static_expect(creatable<type_traits::uniform, int>::value);\n  static_expect(creatable<type_traits::direct, d, int, double>::value);\n  static_expect(!creatable<type_traits::direct, d, int>::value);\n  static_expect(creatable<type_traits::uniform, d, int, double>::value);\n  static_expect(!creatable<type_traits::uniform, d, int>::value);\n  static_expect(!creatable<type_traits::direct, u, int, double>::value);\n  static_expect(creatable<type_traits::uniform, u>::value);\n  static_expect(!creatable<type_traits::uniform, u, float, short>::value);\n\n#if !defined(__MSVC__)\n  static_expect(creatable<type_traits::uniform, u, int, double>::value);\n  static_expect(creatable<type_traits::uniform, u, int>::value);\n#endif\n};\n\n}  // concepts\n"
  },
  {
    "path": "test/ut/concepts/providable.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/concepts/providable.hpp\"\n#include <type_traits>\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/providers/heap.hpp\"\n#include \"boost/di/providers/stack_over_heap.hpp\"\n\nnamespace concepts {\n\ntest none = [] {\n  struct none_providable {};\n  static_expect(std::is_same<provider<none_providable>::requires_<get, is_creatable>, providable<none_providable>>::value);\n};\n\nclass provider_private_access {\n  template <class...>\n  struct is_creatable {\n    static constexpr auto value = true;\n  };\n\n  template <class, class T, class TInit, class TMemory, class... TArgs>\n  T get(const TInit&, const TMemory&, TArgs&&...) const {\n    return {};\n  }\n};\n\n#if !defined(__MSVC__)\ntest private_access = [] {\n  static_expect(std::is_same<provider<provider_private_access>::requires_<get, is_creatable>,\n                             providable<provider_private_access>>::value);\n};\n#endif\n\nclass provider_missing_is_creatable {\n public:\n  template <class, class T, class TInit, class TMemory, class... TArgs>\n  T get(const TInit&, const TMemory&, TArgs&&...) const {\n    return {};\n  }\n};\n\ntest missing_is_creatable = [] {\n  static_expect(std::is_same<provider<provider_missing_is_creatable>::requires_<get, is_creatable>,\n                             providable<provider_missing_is_creatable>>::value);\n};\n\nclass provider_wrong_get {\n public:\n  template <class...>\n  struct is_creatable {\n    static constexpr auto value = true;\n  };\n\n  template <class T>\n  T get() const {\n    return {};\n  }\n};\n\ntest wrong_get = [] {\n  static_expect(\n      std::is_same<provider<provider_wrong_get>::requires_<get, is_creatable>, providable<provider_wrong_get>>::value);\n};\n\ntest providable_providers = [] {\n  static_expect(providable<providers::heap>::value);\n  static_expect(providable<providers::stack_over_heap>::value);\n};\n\n}  // concepts\n"
  },
  {
    "path": "test/ut/concepts/scopable.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/concepts/scopable.hpp\"\n#include <type_traits>\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/scopes/deduce.hpp\"\n#include \"boost/di/scopes/instance.hpp\"\n#include \"boost/di/scopes/singleton.hpp\"\n#include \"boost/di/scopes/unique.hpp\"\n\nnamespace concepts {\n\ntemplate <class T>\nusing scopable_error = typename scope<T>::template requires_<typename scope<_, _>::is_referable,\n                                                             typename scope<_, _>::try_create, typename scope<_, _>::create>;\n\ntest none = [] {\n  struct none_scopable {};\n  static_expect(!scopable<none_scopable>::value);\n};\n\nstruct scope_type {\n  template <class, class>\n  struct scope {\n    template <class>\n    using is_referable = std::false_type;\n\n    template <class T, class TProvider>\n    static T try_create(const TProvider&);\n\n    template <class T, class TProvider>\n    T create(const TProvider&);\n  };\n};\n\ntest scopable_type = [] { static_expect(scopable<scope_type>::value); };\n\nclass scope_private_access {\n  template <class, class>\n  struct scope {\n    template <class T, class TProvider>\n    T create(const TProvider&);\n\n    template <class T, class TProvider>\n    T try_create(const TProvider&);\n  };\n};\n\n#if !defined(__MSVC__)\ntest private_access = [] {\n  static_expect(!scopable<scope_private_access>::value);\n  static_expect(std::is_same<scopable_error<scope_private_access>, scopable<scope_private_access>>::value);\n};\n#endif\n\nclass scope_missing_create {\n public:\n  template <class, class>\n  struct scope {\n    template <class>\n    using is_referable = std::false_type;\n\n    template <class T, class TProvider>\n    static T try_create(const TProvider&);\n  };\n};\n\ntest missing_create = [] {\n  static_expect(!scopable<scope_missing_create>::value);\n  static_expect(std::is_same<scopable_error<scope_missing_create>, scopable<scope_missing_create>>::value);\n};\n\nclass scope_missing_try_create {\n public:\n  template <class, class>\n  struct scope {\n    template <class>\n    using is_referable = std::false_type;\n\n    template <class T, class TProvider>\n    T create(const TProvider&);\n  };\n};\n\ntest missing_try_create = [] {\n  static_expect(!scopable<scope_missing_try_create>::value);\n  static_expect(std::is_same<scopable_error<scope_missing_try_create>, scopable<scope_missing_try_create>>::value);\n};\n\nclass scope_missing_is_referable {\n public:\n  template <class, class>\n  struct scope {\n    template <class T, class, class TProvider>\n    static T try_create(const TProvider&);\n\n    template <class T, class, class TProvider>\n    T create(const TProvider&);\n  };\n};\n\ntest missing_is_referable = [] {\n  static_expect(!scopable<scope_missing_is_referable>::value);\n  static_expect(std::is_same<scopable_error<scope_missing_is_referable>, scopable<scope_missing_is_referable>>::value);\n};\n\ntest scopable_scopes = [] {\n  static_expect(scopable<scopes::deduce>::value);\n  static_expect(scopable<scopes::instance>::value);\n  static_expect(scopable<scopes::singleton>::value);\n  static_expect(scopable<scopes::unique>::value);\n};\n\n}  // concepts\n"
  },
  {
    "path": "test/ut/config.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/config.hpp\"\n#include <type_traits>\n#include \"common/fakes/fake_injector.hpp\"\n\nstruct policy1 {\n  template <class T>\n  void operator()(T) const;\n};\n\nstruct policy2 {\n  template <class T>\n  void operator()(T) const;\n};\n\ntest make_policies_types = [] {\n  expect(std::is_same<core::pool<aux::type_list<>>, decltype(make_policies())>{});\n  expect(std::is_same<core::pool<aux::type_list<policy1, policy2>>, decltype(make_policies(policy1{}, policy2{}))>{});\n};\n\ntest default_config = [] {\n  expect(std::is_same<providers::stack_over_heap, decltype(config::provider((fake_injector<>*)0))>{});\n  expect(std::is_same<core::pool<aux::type_list<>>, decltype(config::policies((fake_injector<>*)0))>{});\n};\n"
  },
  {
    "path": "test/ut/core/any_type.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/core/any_type.hpp\"\n#include \"common/fakes/fake_injector.hpp\"\n\nnamespace core {\n\ntest is_referable = [] {\n  using injector = fake_injector<>;\n  static_expect(!is_referable__<int, injector, aux::false_type>::value);\n  static_expect(!is_referable__<int&&, injector, aux::false_type>::value);\n  static_expect(is_referable__<int&, injector, aux::false_type>::value);\n  static_expect(is_referable__<const int&, injector, aux::false_type>::value);\n\n  static_expect(is_referable__<int, injector, aux::true_type>::value);\n  static_expect(is_referable__<int&, injector, aux::true_type>::value);\n  static_expect(is_referable__<const int&, injector, aux::true_type>::value);\n  static_expect(is_referable__<int&&, injector, aux::true_type>::value);\n};\n\ntest is_creatable = [] {\n  using injector = fake_injector<>;\n  static_expect(is_creatable__<int, injector, aux::false_type>::value);\n  static_expect(is_creatable__<int, injector, aux::true_type>::value);\n};\n\ntest is_copy_ctor = [] {\n  struct c {};\n  static_expect(is_copy_ctor__<int, int>::value);\n  static_expect(is_copy_ctor__<c, c>::value);\n#if defined(__GCC__) || defined(__MSVC__)\n  static_expect(is_copy_ctor__<int, const int>::value);\n  static_expect(is_copy_ctor__<c, const c>::value);\n  static_expect(is_copy_ctor__<c, c const>::value);\n#endif\n};\n\ntest any_type_create = [] {\n  fake_injector<> injector;\n  expect(0 == static_cast<int>(any_type<void, fake_injector<>>{injector}));\n};\n\ntest any_type_ref_create = [] {\n  fake_injector<> injector;\n  expect(0 == static_cast<int>(any_type_ref<void, fake_injector<>>{injector}));\n};\n\n}  // core\n"
  },
  {
    "path": "test/ut/core/array.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/core/array.hpp\"\n#include <memory>\n#include <vector>\n\nnamespace core {\n\ntest array_empty_ctor = [] { array<std::vector<int>()>{}; };\n\ntest array_ctor = [] {\n  array<std::vector<int>(), int, int> a{array_impl<int, int, int>{42, 87}};\n  expect(a.size() == 2);\n  expect(a[0] == 42);\n  expect(a[1] == 87);\n};\n\ntest array_ctor_smart_ptr = [] {\n  array<std::vector<std::unique_ptr<int>>(), int, int> a{\n      array_impl<std::unique_ptr<int>, std::unique_ptr<int>, std::unique_ptr<int>>{std::make_unique<int>(42),\n                                                                                   std::make_unique<int>(87)}};\n  expect(a.size() == 2);\n  expect(*a[0] == 42);\n  expect(*a[1] == 87);\n};\n\ntest array_ctor_named = [] {\n  array<std::vector<std::unique_ptr<int>>(), named<int>, int> a{\n      array_impl<std::unique_ptr<int>, named<int, std::unique_ptr<int>>, std::unique_ptr<int>>{std::make_unique<int>(42),\n                                                                                               std::make_unique<int>(87)}};\n  expect(a.size() == 2);\n  expect(*a[0] == 42);\n  expect(*a[1] == 87);\n};\n\n}  // core\n"
  },
  {
    "path": "test/ut/core/binder.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/core/binder.hpp\"\n#include <type_traits>\n#include \"boost/di/scopes/unique.hpp\"\n\nnamespace core {\n\ntest resolve_types_default = [] {\n  struct deps {};\n  auto result = binder::resolve<int>((deps*)nullptr);\n  expect(std::is_same<decltype(result), dependency<scopes::deduce, int>>{});\n};\n\ntest resolve_types_custom_default = [] {\n  struct deps {};\n  struct not_resolved {};\n  auto result = binder::resolve<int, no_name, not_resolved>((deps*)nullptr);\n  expect(std::is_same<decltype(result), not_resolved>{});\n};\n\ntest resolve_types_found = [] {\n  struct deps : dependency<scopes::unique, int> {};\n  using result = std::remove_reference_t<decltype(binder::resolve<int>((deps*)nullptr))>;\n  expect(std::is_same<result, dependency<scopes::unique, int>>{});\n};\n\ntest resolve_types_not_found_by_name = [] {\n  struct name {};\n  struct deps : dependency<scopes::unique, int, int, name> {};\n  using result = std::remove_reference_t<decltype(binder::resolve<int>((deps*)nullptr))>;\n  expect(std::is_same<result, dependency<scopes::deduce, int>>{});\n};\n\ntest resolve_types_not_found_inheritence = [] {\n  struct deps : dependency<scopes::unique, _, int, no_name> {};\n\n  struct any : _ {};\n\n  using result = std::remove_reference_t<decltype(binder::resolve<any>((deps*)nullptr))>;\n  expect(std::is_same<result, dependency<scopes::deduce, any>>{});\n};\n\ntest resolve_types_found_by_name = [] {\n  struct name {};\n  struct deps : dependency<scopes::unique, int, int, name> {};\n  using result = std::remove_reference_t<decltype(binder::resolve<int, name>((deps*)nullptr))>;\n  expect(std::is_same<result, dependency<scopes::unique, int, int, name>>{});\n};\n\ntest resolve_types_found_many = [] {\n  struct not_resolved {};\n  struct deps : dependency<scopes::unique, int>, dependency<scopes::unique, double>, dependency<scopes::unique, float> {};\n\n  {\n    using result = std::remove_reference_t<decltype(binder::resolve<float, no_name, not_resolved>((deps*)nullptr))>;\n    expect(std::is_same<result, dependency<scopes::unique, float>>{});\n  }\n\n  {\n    using result = std::remove_reference_t<decltype(binder::resolve<short, no_name, not_resolved>((deps*)nullptr))>;\n    expect(std::is_same<result, not_resolved>{});\n  }\n};\n\ntest resolve_types_found_priority = [] {\n  struct deps : dependency<scopes::unique, int, int, no_name, override>, dependency<scopes::unique, int, int, no_name> {};\n\n  using result = std::remove_reference_t<decltype(binder::resolve<int>((deps*)nullptr))>;\n  expect(std::is_same<result, dependency<scopes::unique, int, int, no_name, override>>{});\n};\n\ntest resolve_types_found_priority_order = [] {\n  struct deps : dependency<scopes::unique, int, int, no_name>, dependency<scopes::unique, int, int, no_name, override> {};\n\n  using result = std::remove_reference_t<decltype(binder::resolve<int>((deps*)nullptr))>;\n  expect(std::is_same<result, dependency<scopes::unique, int, int, no_name, override>>{});\n};\n\n}  // core\n"
  },
  {
    "path": "test/ut/core/bindings.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/core/bindings.hpp\"\n#include \"boost/di/scopes/instance.hpp\"\n#include \"common/fakes/fake_dependency.hpp\"\n#include \"common/fakes/fake_injector.hpp\"\n\nnamespace core {\n\ntest bindings_deps = [] {\n  static_expect(std::is_same<aux::type_list<>, bindings_t<>>::value);\n  static_expect(std::is_same<aux::type_list<fake_dependency<int>>, bindings_t<fake_dependency<int>>>::value);\n  static_expect(std::is_same<aux::type_list<fake_dependency<int>, fake_dependency<double>>,\n                             bindings_t<fake_dependency<int>, fake_dependency<double>>>::value);\n};\n\n}  // core\n"
  },
  {
    "path": "test/ut/core/dependency.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/core/dependency.hpp\"\n#include <type_traits>\n#include \"boost/di/concepts/boundable.hpp\"\n#include \"common/fakes/fake_injector.hpp\"\n#include \"common/fakes/fake_scope.hpp\"\n\nnamespace core {\n\ntest is_dependency_types = [] {\n  expect(!std::is_base_of<dependency_base, void>::value);\n  expect(!std::is_base_of<dependency_base, int>::value);\n  expect(std::is_base_of<dependency_base, dependency<scopes::deduce, int>>::value);\n  expect(std::is_base_of<dependency_base, dependency<scopes::deduce, double, double>>::value);\n};\n\nstruct name {};\n\ntest types = [] {\n  using dep = dependency<fake_scope<>, int, double, name>;\n  expect(std::is_same<fake_scope<>, typename dep::scope>::value);\n  expect(std::is_same<int, typename dep::expected>::value);\n  expect(std::is_same<double, typename dep::given>::value);\n  expect(std::is_same<name, typename dep::name>::value);\n};\n\ntest def_ctor = [] {\n  dependency<scopes::deduce, int> dep;\n  (void)dep;\n};\n\ntest ctor = [] {\n  fake_scope<>::ctor_calls() = 0;\n  dependency<fake_scope<>, int> dep{0};\n  expect(1 == fake_scope<>::ctor_calls());\n};\n\ntest named = [] {\n  using dep1 = dependency<scopes::deduce, int>;\n  expect(std::is_same<no_name, typename dep1::name>::value);\n\n  using dep2 = decltype(dep1{}.named(name{}));\n  expect(std::is_same<name, typename dep2::name>::value);\n};\n\ntest in = [] {\n  using dep1 = dependency<fake_scope<>, int>;\n  expect(std::is_same<fake_scope<>, typename dep1::scope>::value);\n\n  using dep2 = decltype(dep1{}.in(scopes::deduce{}));\n  expect(std::is_same<scopes::deduce, typename dep2::scope>::value);\n};\n\ntest to = [] {\n  using dep1 = dependency<scopes::deduce, int>;\n  expect(std::is_same<scopes::deduce, typename dep1::scope>::value);\n\n  using dep2 = decltype(dep1{}.to(42));\n  expect(std::is_same<scopes::instance, typename dep2::scope>::value);\n  expect(std::is_same<int, typename dep2::expected>::value);\n  expect(std::is_same<int, typename dep2::given>::value);\n};\n\n}  // core\n"
  },
  {
    "path": "test/ut/core/injector.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/injector.hpp\"\n#include \"boost/di/core/injector.hpp\"\n#include \"common/fakes/fake_config.hpp\"\n#include \"common/fakes/fake_dependency.hpp\"\n\nnamespace core {\n\nstruct no_ctor {\n  template <class...>\n  struct scope {};\n};\n\nstruct ctor {\n  template <class...>\n  struct scope {\n    explicit scope(int) {}\n  };\n};\n\nstruct def1 {\n  using expected = int;\n  using given = int;\n  using scope = no_ctor;\n};\nstruct def2 {\n  using expected = int;\n  using given = int;\n  using scope = no_ctor;\n};\nstruct def_ctor1 {\n  using expected = int;\n  using given = int;\n  using scope = ctor;\n};\nstruct def_ctor2 {\n  using expected = int;\n  using given = int;\n  using scope = ctor;\n};\n\ntest copyable_types = [] {\n  static_expect(std::is_same<aux::type_list<>, copyable_t<aux::type_list<>>>::value);\n  static_expect(std::is_same<aux::type_list<>, copyable_t<aux::type_list<def1>>>::value);\n  static_expect(std::is_same<aux::type_list<>, copyable_t<aux::type_list<def1, def2>>>::value);\n  static_expect(std::is_same<aux::type_list<def_ctor1>, copyable_t<aux::type_list<def1, def_ctor1, def2>>>::value);\n  static_expect(\n      std::is_same<aux::type_list<def_ctor1, def_ctor2>, copyable_t<aux::type_list<def1, def_ctor1, def2, def_ctor2>>>::value);\n};\n\ntemplate <class T, class TIsReferable>\nusing dep = fake_dependency<T, fake_scope<>, TIsReferable>;\n\nstruct c {};\n\ntest referable_types = [] {\n  static_expect(std::is_same<int, referable_t<int, dep<int, std::false_type>>>::value);\n  static_expect(std::is_same<int, referable_t<int, dep<int, std::true_type>>>::value);\n  static_expect(std::is_same<c, referable_t<const c&, dep<c, std::false_type>>>::value);\n  static_expect(std::is_same<const c&, referable_t<const c&, dep<c, std::true_type>>>::value);\n  static_expect(std::is_same<c, referable_t<c&, dep<c, std::false_type>>>::value);\n  static_expect(std::is_same<c&, referable_t<c&, dep<c, std::true_type>>>::value);\n  static_expect(std::is_same<c, referable_t<c&, dep<c, std::false_type>>>::value);\n  static_expect(std::is_same<c&&, referable_t<c&&, dep<c, std::true_type>>>::value);\n  static_expect(std::is_same<int, referable_t<int&, dep<int, std::false_type>>>::value);\n  static_expect(std::is_same<int&, referable_t<int&, dep<int, std::true_type>>>::value);\n  static_expect(std::is_same<int, referable_t<const int&, dep<int, std::false_type>>>::value);\n  static_expect(std::is_same<const int&, referable_t<const int&, dep<int, std::true_type>>>::value);\n  static_expect(std::is_same<int&&, referable_t<int&&, dep<int, std::true_type>>>::value);\n};\n\ntest def_ctor = [] {\n  injector<config> injector_{core::init{}};\n  expect(std::is_same<aux::type_list<>, decltype(injector_)::deps>{});\n};\n\ntest ctor = [] {\n  using dep1 = fake_dependency<int>;\n  using dep2 = fake_dependency<double>;\n  injector<config, dep1, dep2> injector_{core::init{}};\n};\n\ntest ctor_injector = [] {\n  injector<config> injector1{core::init{}};\n  injector<config> injector2{static_cast<injector<config>&&>(injector1)};\n  (void)injector2;\n};\n\ntest create = [] {\n  injector<config> injector_{core::init{}};\n  expect(0 == injector_.create<int>());\n};\n\n}  // core\n"
  },
  {
    "path": "test/ut/core/policy.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/core/policy.hpp\"\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n#include \"common/fakes/fake_dependency.hpp\"\n\nnamespace core {\n\nstruct fake_policy {\n  template <class T>\n  void operator()(const T&) const noexcept {\n    ++calls();\n  }\n\n  static int& calls() {\n    static auto calls = 0;\n    return calls;\n  }\n};\n\nstruct fake_policy_other {\n  template <class T>\n  void operator()(const T&) const noexcept {\n    ++calls();\n  }\n\n  static int& calls() {\n    static auto calls = 0;\n    return calls;\n  }\n};\n\ntest call = [] {\n  fake_policy::calls() = 0;\n  using dep = fake_dependency<int>;\n  pool<aux::type_list<fake_policy>> policies;\n\n  policy::call<arg_wrapper<int, no_name, std::false_type, aux::type_list<>, dep, aux::type_list<>>>(policies);\n\n  expect(1 == fake_policy::calls());\n};\n\ntest call_policies = [] {\n  fake_policy::calls() = 0;\n  fake_policy_other::calls() = 0;\n  using dep = fake_dependency<int>;\n  pool<aux::type_list<fake_policy, fake_policy_other>> policies;\n\n  policy::call<arg_wrapper<int, no_name, std::false_type, aux::type_list<>, dep, aux::type_list<>>>(policies);\n\n  expect(1 == fake_policy::calls());\n  expect(1 == fake_policy_other::calls());\n};\n\n}  // core\n"
  },
  {
    "path": "test/ut/core/pool.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/core/pool.hpp\"\n#include <memory>\n#include <type_traits>\n\nnamespace core {\n\ntemplate <class T>\nstruct allocator {\n  explicit allocator(T* object)  // non explicit\n      : object(object) {}\n\n  std::shared_ptr<T> object;\n};\n\nstruct trivial_ctor {\n  trivial_ctor() : i(0) {}\n\n  int i = 0;\n};\n\nstruct default_ctor {\n  explicit default_ctor(int i = 0) : i(i) {}\n\n  int i = 0;\n};\n\nstruct custom_ctor {\n  explicit custom_ctor(int i) : i(i) {}\n\n  int i = 0;\n};\n\nstruct custom_ctor_other {\n  explicit custom_ctor_other(int i) : i(i) {}\n\n  int i = 0;\n};\n\ntest empty = [] {\n  using pool_t = pool<aux::type_list<>>;\n  pool_t p;\n  (void)p;\n};\n\ntest ctor_order_reverse = [] {\n  using pool_t = pool<aux::type_list<trivial_ctor, default_ctor>>;\n\n  default_ctor default_ctor_;\n  trivial_ctor trivial_ctor_;\n\n  pool_t p(trivial_ctor_, default_ctor_);\n  (void)p;\n};\n\ntest default_ctor_base = [] {\n  using pool_t = pool<aux::type_list<trivial_ctor, default_ctor>>;\n\n  pool_t p;\n  (void)p;\n};\n\ntest get = [] {\n  using custom_ctor_type = allocator<custom_ctor>;\n  using trivial_ctor_type = allocator<trivial_ctor>;\n  using default_ctor_type = allocator<default_ctor>;\n  using pool_t = pool<aux::type_list<custom_ctor_type, trivial_ctor_type, default_ctor_type>>;\n\n  custom_ctor_type custom_ctor_(new custom_ctor{0});\n  trivial_ctor_type trivial_ctor_(new trivial_ctor);\n  default_ctor_type default_ctor_(new default_ctor);\n\n  pool_t p(custom_ctor_, trivial_ctor_, default_ctor_);\n\n  expect(trivial_ctor_.object == static_cast<const trivial_ctor_type&>(p).object);\n  expect(custom_ctor_.object == static_cast<const custom_ctor_type&>(p).object);\n  expect(default_ctor_.object == static_cast<const default_ctor_type&>(p).object);\n};\n\ntest pool_of_pools = [] {\n  using trivial_ctor_type = allocator<trivial_ctor>;\n  using default_ctor_type = allocator<default_ctor>;\n  using p1_type = pool<aux::type_list<default_ctor_type>>;\n  using p2_type = pool<aux::type_list<trivial_ctor_type>>;\n  using pool_t = pool<aux::type_list<p1_type, p2_type>>;\n  default_ctor_type default_ctor_(new default_ctor);\n  trivial_ctor_type trivial_ctor_(new trivial_ctor);\n\n  p1_type p1_(default_ctor_);\n  p2_type p2_(trivial_ctor_);\n\n  pool_t p(p1_, p2_);\n\n  expect(trivial_ctor_.object == static_cast<const trivial_ctor_type&>(p).object);\n  expect(default_ctor_.object == static_cast<const default_ctor_type&>(p).object);\n};\n\ntest init_pool_from_other_empty_pool = [] {\n  pool<aux::type_list<>> pempty_;\n  pool<aux::type_list<default_ctor>> p(aux::type_list<>{}, pempty_);\n\n  expect(0 == static_cast<const default_ctor&>(p).i);\n};\n\ntest init_pfrom_other_subset_pool = [] {\n  using pool_all_t = pool<aux::type_list<trivial_ctor, default_ctor, custom_ctor>>;\n\n  using types = aux::type_list<trivial_ctor, custom_ctor>;\n\n  using pool_subset_t = pool<types>;\n\n  trivial_ctor trivial_ctor_;\n  custom_ctor custom_ctor_(42);\n\n  pool_subset_t p1(trivial_ctor_, custom_ctor_);\n  pool_all_t p2(types{}, p1);\n\n  expect(trivial_ctor_.i == static_cast<const trivial_ctor&>(p2).i);\n  expect(0 == static_cast<const default_ctor&>(p2).i);\n  expect(custom_ctor_.i == static_cast<const custom_ctor&>(p2).i);\n};\n\ntest pool_from_pof_pools = [] {\n  using pool_t = pool<aux::type_list<custom_ctor>>;\n  using pool_sub_t = pool<aux::type_list<pool_t>>;\n  constexpr auto i = 42;\n\n  custom_ctor ctor(i);\n  pool_t p1(ctor);\n  pool_sub_t p2(p1);\n\n  expect(i == static_cast<const custom_ctor&>(p2).i);\n};\n\ntest pool_from_pof_pools_many = [] {\n  using pool_t = pool<aux::type_list<custom_ctor, default_ctor>>;\n  using pool_sub_t = pool<aux::type_list<pool_t>>;\n  constexpr auto i = 42;\n\n  custom_ctor c(i);\n  default_ctor d;\n  pool_t p1(c, d);\n  pool_sub_t p2(p1);\n\n  expect(i == static_cast<const custom_ctor&>(p2).i);\n  expect(0 == static_cast<const default_ctor&>(p2).i);\n};\n\ntemplate <class T1, class T2>\nstruct base : T1, T2 {};\n\ntest pool_flatten = [] {\n  using types_flatten_t = aux::type_list<trivial_ctor, custom_ctor, default_ctor>;\n  using pool_flatten_t = pool<types_flatten_t>;\n  using types = aux::type_list<custom_ctor, base<trivial_ctor, default_ctor>>;\n  using pool_t = pool<types>;\n  constexpr auto i = 42;\n\n  custom_ctor c(i);\n  default_ctor d;\n  trivial_ctor t;\n  base<trivial_ctor, default_ctor> b;\n\n  pool_t p1(c, b);\n  pool_flatten_t p2(types_flatten_t{}, p1);\n\n  expect(i == static_cast<const custom_ctor&>(p2).i);\n  expect(0 == static_cast<const default_ctor&>(p2).i);\n  expect(0 == static_cast<const trivial_ctor&>(p2).i);\n};\n\n}  // core\n"
  },
  {
    "path": "test/ut/core/provider.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/core/provider.hpp\"\n#include <memory>\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n#include \"common/fakes/fake_injector.hpp\"\n\nnamespace core {\n\ntest get_default = [] {\n  fake_injector<int> injector;\n  provider<aux::pair<int, aux::pair<type_traits::direct, aux::type_list<>>>, no_name, decltype(injector)> provider{&injector};\n  std::unique_ptr<int> ptr{provider.get()};\n  expect(ptr.get());\n};\n\ntest get_stack = [] {\n  fake_injector<int> injector;\n  provider<aux::pair<int, aux::pair<type_traits::direct, aux::type_list<>>>, no_name, decltype(injector)> provider{&injector};\n  std::unique_ptr<int> ptr{provider.get(type_traits::stack{})};\n  expect(ptr.get());\n};\n\ntest get_heap = [] {\n  fake_injector<int> injector;\n  provider<aux::pair<int, aux::pair<type_traits::direct, aux::type_list<>>>, no_name, decltype(injector)> provider{&injector};\n  std::unique_ptr<int> ptr{provider.get(type_traits::heap{})};\n  expect(ptr.get());\n};\n\n}  // core\n"
  },
  {
    "path": "test/ut/core/wrapper.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/core/wrapper.hpp\"\n#include <type_traits>\n#include \"common/fakes/fake_wrapper.hpp\"\n\nnamespace core {\n\ntest successful_wrapper = [] { expect(0 == static_cast<int>(wrapper<int, fake_wrapper>{})); };\n\n}  // core\n"
  },
  {
    "path": "test/ut/inject.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/inject.hpp\"\n\ntest empty_ctor = [] {\n  struct c {\n    BOOST_DI_INJECT(c, ) {}\n  };\n\n  void(c{});\n};\n\ntest empty_traits = [] {\n  struct c {\n    BOOST_DI_INJECT_TRAITS();\n    c() {}\n  };\n\n  c c_;\n};\n\nstruct c_def {\n  static constexpr auto N = 42;\n  BOOST_DI_INJECT(explicit c_def, int v = N) : i(v) {}\n  int i = 0;\n};\n\ntest explicit_with_default = [] { expect(c_def::N == c_def{}.i); };\n\ntest set_to_default = [] {\n  struct c {\n    BOOST_DI_INJECT(c, ) = default;\n    int i = 0;\n  };\n\n  c c_;\n\n  expect(0 == c_.i);\n};\n\ntest params = [] {\n  struct c {\n    BOOST_DI_INJECT(c, int i, double d) : i(i), d(d) {}\n    int i = 0;\n    double d = 0.0;\n  };\n\n  constexpr auto i = 1;\n  constexpr auto d = 2.0;\n\n  c c_(i, d);\n\n  expect(i == c_.i);\n  expect(d == c_.d);\n};\n\ntest traits = [] {\n  constexpr auto i = 1;\n  constexpr auto d = 2.0;\n\n  struct c {\n    BOOST_DI_INJECT_TRAITS(int i, double d);\n    c(int i, double d) : i(i), d(d) {}\n\n    int i = 0;\n    double d = 0.0;\n  };\n\n  c c_(i, d);\n\n  expect(i == c_.i);\n  expect(d == c_.d);\n};\n\ntest inheriting_ctors = [] {\n  constexpr auto i = 1;\n  constexpr auto d = 2.0;\n\n  struct c0 {\n    BOOST_DI_INJECT(c0, int i, double d) : i(i), d(d) {}\n    int i = 0;\n    double d = 0.0;\n  };\n\n  struct c1 : public c0 {\n    using c0::c0;\n  };\n\n  c1 c1_(i, d);\n\n  expect(i == c1_.i);\n  expect(d == c1_.d);\n};\n\ntest c_traits_no_limits = [] {\n  struct c_no_limits {\n    using boost_di_inject__ __BOOST_DI_UNUSED = inject<int, int, int, int, int, int, int, int, int, int, int>;\n    c_no_limits(int, int, int, int, int, int, int, int, int, int, int) {}\n  };\n\n  c_no_limits object{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};\n};\n\nstruct named_int_t {\n} named_int;\n\ntest named_param = [] {\n  constexpr auto i = 42;\n\n  struct c {\n    BOOST_DI_INJECT(explicit c, (named = named_int) int i) : i(i) {}\n    int i = 0;\n  };\n\n  expect(i == c{i}.i);\n};\n\nstruct c_def_named {\n  static constexpr auto N = 42;\n  BOOST_DI_INJECT(explicit c_def_named, (named = named_int) int i1 = N, int i2 = N) : i1(i1), i2(i2) {}\n  int i1 = 0;\n  int i2 = 0;\n};\n\ntest named_def_param = [] {\n  expect(c_def_named::N == c_def_named{}.i1);\n  expect(c_def_named::N == c_def_named{}.i2);\n};\n\nstruct c_def_named_without_def {\n  static constexpr auto N = 42;\n  BOOST_DI_INJECT(explicit c_def_named_without_def, int i1 = N, (named = named_int) int i2 = N) : i1(i1), i2(i2) {}\n  int i1 = 0;\n  int i2 = 0;\n};\n\ntest named_def_param_without_def = [] {\n  expect(c_def_named_without_def::N == c_def_named_without_def{c_def_named_without_def::N}.i1);\n  expect(c_def_named_without_def::N == c_def_named_without_def{c_def_named_without_def::N}.i2);\n};\n\ntest named_normal_ctor = [] {\n  struct c {\n    BOOST_DI_INJECT(c, (named = named_int) int i) : i(i) {}\n    int i = 0;\n  };\n\n  expect(42 == c{42}.i);\n};\n"
  },
  {
    "path": "test/ut/injector.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/injector.hpp\"\n#include <type_traits>\n#include \"boost/di/scopes/instance.hpp\"\n\ntest injector_exposed = [] {\n  using injector_t = injector<int>;\n  using dep = core::dependency<scopes::instance, aux::type_list<int>, aux::type_list<named<no_name, int>>>;\n  static_expect(std::is_same<aux::type_list<dep>, injector_t::deps>{});\n};\n\ntest injector_exposed_many = [] {\n  using injector_t = injector<int, double>;\n  using dep = core::dependency<scopes::instance, aux::type_list<int, double>,\n                               aux::type_list<named<no_name, int>, named<no_name, double>>>;\n  static_expect(std::is_same<aux::type_list<dep>, injector_t::deps>{});\n};\n"
  },
  {
    "path": "test/ut/make_injector.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/make_injector.hpp\"\n#include <type_traits>\n#include \"common/fakes/fake_config.hpp\"\n#include \"common/fakes/fake_dependency.hpp\"\n\ntest make_injector_empty = [] {\n  using injector = decltype(make_injector());\n  static_expect(std::is_same<aux::type_list<>, injector::deps>{});\n  static_expect(std::is_same<BOOST_DI_CFG, injector::config>{});\n};\n\ntest make_injector_deps = [] {\n  using dep1 = fake_dependency<int>;\n  using dep2 = fake_dependency<double>;\n  using injector = decltype(make_injector(dep1{}, dep2{}));\n  static_expect(std::is_same<aux::type_list<dep1, dep2>, injector::deps>{});\n  static_expect(std::is_same<BOOST_DI_CFG, injector::config>{});\n};\n\ntest make_injector_config_deps = [] {\n  using dep = fake_dependency<int>;\n  using injector = decltype(make_injector<fake_config<>>(dep{}));\n  static_expect(std::is_same<aux::type_list<dep>, injector::deps>{});\n  static_expect(std::is_same<fake_config<>, injector::config>{});\n};\n"
  },
  {
    "path": "test/ut/policies/constructible.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/policies/constructible.hpp\"\n#include <memory>\n#include <type_traits>\n#include \"boost/di/aux_/utility.hpp\"\n#include \"boost/di/fwd.hpp\"\n#include \"boost/di/inject.hpp\"\n#include \"common/fakes/fake_policy.hpp\"\n\nnamespace policies {\n\ntemplate <class TPolicy, class T = std::false_type>\nbool constructible_test(const TPolicy&, const T& arg = {}) noexcept {\n  return decltype(constructible(arg)(fake_policy<TPolicy>{}))::value;\n}\n\ntemplate <class T = std::false_type, class T_, class TDependency, class TDeps, bool TResolve>\nbool constructible_test(const fake_policy<T_, TDependency, TDeps, TResolve>& policy, const T& arg = {}) noexcept {\n  return decltype(constructible(arg)(policy))::value;\n}\n\ntest nothing_is_allowed = [] {\n  struct c {};\n  expect(!constructible_test(int{}));\n  expect(!constructible_test(double{}));\n  expect(!constructible_test(c{}));\n};\n\ntest type_is_allowed = [] {\n  auto test = [](auto type) { expect(constructible_test(type, std::is_same<decltype(type), _>{})); };\n\n  struct c {};\n  test(int{});\n  test(float{});\n  test(c{});\n};\n\ntest type_is_not_allowed = [] {\n  auto test = [](auto type) { expect(!constructible_test(fake_policy<void>{}, std::is_same<decltype(type), _>{})); };\n\n  struct c {};\n  test(int{});\n  test(float{});\n  test(c{});\n};\n\ntest operator_not = [] {\n  auto test_pass = [](auto type, auto allowed) {\n    using namespace operators;\n    expect(constructible_test(allowed, !std::is_same<_, decltype(type)>{}));\n  };\n\n  auto test_fail = [](auto type, auto allowed) {\n    using namespace operators;\n    expect(!constructible_test(allowed, !std::is_same<_, decltype(type)>{}));\n  };\n\n  struct c {};\n  test_pass(double{}, int{});\n  test_fail(c{}, c{});\n  test_fail(int{}, int{});\n  test_fail(double{}, double{});\n};\n\ntest operator_or = [] {\n  auto test_pass = [](auto type1, auto type2, auto allowed) {\n    using namespace operators;\n    expect(constructible_test(allowed, std::is_same<decltype(type1), _>{} || std::is_same<_, decltype(type2)>{}));\n  };\n\n  auto test_fail = [](auto type1, auto type2, auto allowed) {\n    using namespace operators;\n    expect(!constructible_test(allowed, std::is_same<decltype(type1), _>{} || std::is_same<_, decltype(type2)>{}));\n  };\n\n  test_pass(int{}, double{}, int{});\n  test_pass(double{}, int{}, int{});\n  test_fail(int{}, double{}, float{});\n  test_fail(double{}, int{}, float{});\n};\n\ntest operator_and = [] {\n  auto test_pass = [](auto type, auto allowed) {\n    using namespace operators;\n    expect(constructible_test(allowed, std::is_integral<_>{} && std::is_same<_, decltype(type)>{}));\n  };\n\n  auto test_fail = [](auto type, auto allowed) {\n    using namespace operators;\n    expect(!constructible_test(allowed, std::is_integral<_>{} && std::is_same<_, decltype(type)>{}));\n  };\n\n  struct c {};\n  test_pass(int{}, int{});\n  test_fail(c{}, c{});\n  test_fail(int{}, float{});\n  test_fail(double{}, float{});\n};\n\ntest is_type_bound = [] {\n  expect(constructible_test(fake_policy<void, aux::none_type, aux::none_type, true>{}, is_bound<_>{}));\n  expect(!constructible_test(fake_policy<void, aux::none_type, aux::none_type, false>{}, is_bound<_>{}));\n};\n\ntest is_type_injected = [] {\n  struct inject {\n    BOOST_DI_INJECT(inject, int, double) {}\n  };\n  expect(!constructible_test(fake_policy<aux::none_type>{}, is_injected<_>{}));\n  expect(constructible_test(fake_policy<int>{}, is_injected<_>{}));         // fundamental\n  expect(constructible_test(fake_policy<double>{}, is_injected<_>{}));      // fundamental\n  expect(constructible_test(fake_policy<float>{}, is_injected<_>{}));       // fundamental\n  expect(constructible_test(fake_policy<int&>{}, is_injected<_>{}));        // fundamental\n  expect(constructible_test(fake_policy<const int&>{}, is_injected<_>{}));  // fundamental\n  expect(constructible_test(fake_policy<const int*>{}, is_injected<_>{}));  // fundamental\n  expect(constructible_test(fake_policy<inject>{}, is_injected<_>{}));\n  expect(constructible_test(fake_policy<const inject&>{}, is_injected<_>{}));\n  expect(constructible_test(fake_policy<inject&>{}, is_injected<_>{}));\n  expect(constructible_test(fake_policy<std::shared_ptr<inject>>{}, is_injected<_>{}));\n};\n\ntest complex_opeartors = [] {\n  auto test = [](auto policy) {\n    using namespace operators;\n    return constructible_test(policy, (std::is_integral<_>{} && std::is_same<_, int>{}) || is_bound<_>{});\n  };\n  expect(!test(fake_policy<void, aux::none_type, aux::none_type, false>{}));\n  expect(!test(fake_policy<double, aux::none_type, aux::none_type, false>{}));\n  expect(test(fake_policy<int, aux::none_type, aux::none_type, false>{}));\n  expect(test(fake_policy<int, aux::none_type, aux::none_type, true>{}));\n  expect(test(fake_policy<double, aux::none_type, aux::none_type, true>{}));\n};\n\n}  // policies\n"
  },
  {
    "path": "test/ut/providers/heap.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/providers/heap.hpp\"\n#include <memory>\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"boost/di/type_traits/memory_traits.hpp\"\n\nnamespace providers {\n\ntemplate <class T, class TInit, class TMemory, class... TArgs>\nauto test_heap(const aux::type<T>&, const TInit& init, const TMemory& memory, const TArgs&... args) {\n  std::unique_ptr<T> object{heap{}.get<T>(init, memory, args...)};\n  expect(object.get());\n}\n\ntest get_no_args = [] {\n  struct c {};\n  test_heap(aux::type<int>{}, type_traits::direct{}, type_traits::stack{});\n  test_heap(aux::type<int>{}, type_traits::direct{}, type_traits::heap{});\n  test_heap(aux::type<int>{}, type_traits::uniform{}, type_traits::stack{});\n  test_heap(aux::type<int>{}, type_traits::uniform{}, type_traits::heap{});\n  test_heap(aux::type<c>{}, type_traits::direct{}, type_traits::stack{});\n  test_heap(aux::type<c>{}, type_traits::direct{}, type_traits::heap{});\n  test_heap(aux::type<c>{}, type_traits::uniform{}, type_traits::stack{});\n  test_heap(aux::type<c>{}, type_traits::uniform{}, type_traits::heap{});\n};\n\ntest get_with_args = [] {\n  struct direct {\n    direct(int, double) {}\n  };\n  struct uniform {\n    int i = 0;\n    double d = 0.0;\n  };\n  test_heap(aux::type<direct>{}, type_traits::direct{}, type_traits::stack{}, int{}, double{});\n  test_heap(aux::type<direct>{}, type_traits::direct{}, type_traits::heap{}, int{}, double{});\n  test_heap(aux::type<direct>{}, type_traits::uniform{}, type_traits::stack{}, int{}, double{});\n  test_heap(aux::type<direct>{}, type_traits::uniform{}, type_traits::heap{}, int{}, double{});\n#if !defined(__MSVC__)\n  test_heap(aux::type<uniform>{}, type_traits::uniform{}, type_traits::stack{}, int{}, double{});\n  test_heap(aux::type<uniform>{}, type_traits::uniform{}, type_traits::heap{}, int{}, double{});\n#endif\n};\n\n}  // providers\n"
  },
  {
    "path": "test/ut/providers/stack_over_heap.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/providers/stack_over_heap.hpp\"\n#include <memory>\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/aux_/type_traits.hpp\"\n\nnamespace providers {\n\ntemplate <class T, class TInit, class... TArgs>\nauto test_heap(const aux::type<T>&, const TInit& init, const TArgs&... args) {\n  std::unique_ptr<T> object{stack_over_heap{}.get<T>(init, type_traits::heap{}, args...)};\n  expect(object.get());\n}\n\ntemplate <class T, class TInit, class... TArgs>\nauto test_stack(const aux::type<T>&, const TInit& init, const TArgs&... args) {\n  T object = stack_over_heap{}.get<T>(init, type_traits::stack{}, args...);\n  (void)object;\n}\n\ntest get_no_args = [] {\n  struct c {};\n  test_stack(aux::type<int>{}, type_traits::direct{});\n  test_heap(aux::type<int>{}, type_traits::uniform{});\n  test_stack(aux::type<int>{}, type_traits::uniform{});\n  test_heap(aux::type<c>{}, type_traits::direct{});\n  test_stack(aux::type<c>{}, type_traits::direct{});\n  test_heap(aux::type<c>{}, type_traits::uniform{});\n  test_stack(aux::type<c>{}, type_traits::uniform{});\n};\n\ntest get_with_args = [] {\n  struct direct {\n    direct(int, double) {}\n  };\n  struct uniform {\n    int i = 0;\n    double d = 0.0;\n  };\n  test_stack(aux::type<direct>{}, type_traits::direct{}, int{}, double{});\n  test_heap(aux::type<direct>{}, type_traits::uniform{}, int{}, double{});\n#if !defined(__MSVC__)\n  test_heap(aux::type<uniform>{}, type_traits::uniform{}, int{}, double{});\n#endif\n};\n\n}  // providers\n"
  },
  {
    "path": "test/ut/scopes/deduce.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/scopes/deduce.hpp\"\n#include \"common/fakes/fake_provider.hpp\"\n#include \"common/fakes/fake_scope.hpp\"\n\nstruct c {};\n\nnamespace type_traits {\ntemplate <>\nstruct scope_traits<c> {\n  using type = fake_scope<>;\n};\n}  // type_traits\n\nnamespace scopes {\n\ntest create = [] { expect(0 == static_cast<int>(deduce::scope<int, int>{}.create<int, no_name>(fake_provider<int>{}))); };\n\ntest create_from_scope = [] {\n  fake_scope<>::calls() = 0;\n  c c_ = deduce::scope<c, c>{}.create<c, no_name>(fake_provider<c>{});\n  (void)c_;\n  expect(1 == fake_scope<>::calls());\n};\n\n}  // scopes\n"
  },
  {
    "path": "test/ut/scopes/instance.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/scopes/instance.hpp\"\n#include <functional>\n#include <memory>\n#include <string>\n#include \"common/common.hpp\"\n#include \"common/fakes/fake_injector.hpp\"\n#include \"common/fakes/fake_provider.hpp\"\n\nnamespace scopes {\n\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : public interface {\n  void dummy() override{};\n};\n\ntest from_arithmetic = [] {\n  const int i = 42;\n  expect(i == static_cast<int>(instance::scope<int, int>{i}.create<void, no_name>(fake_provider<>{})));\n};\n\ntest from_string = [] {\n  const std::string s = \"string\";\n  std::string object = instance::scope<std::string, std::string>{s}.create<void, no_name>(fake_provider<>{});\n  expect(s == object);\n};\n\ntest from_ref = [] {\n  struct c {\n  } c_;\n  c& c_ref_ = instance::scope<c, c&>{c_}.create<void, no_name>(fake_provider<>{});\n  expect(&c_ == &c_ref_);\n};\n\ntest from_const_ref = [] {\n  struct c {\n  } c_;\n  const c& c_ref_ = instance::scope<c, c&>{c_}.create<void, no_name>(fake_provider<>{});\n  expect(&c_ == &c_ref_);\n};\n\ntest from_shared_ptr = [] {\n  struct c {};\n  auto c_ = std::make_shared<c>();\n  std::shared_ptr<c> sp_c = instance::scope<c, std::shared_ptr<c>>{c_}.create<void, no_name>(fake_provider<>{});\n  expect(c_ == sp_c);\n};\n\ntest from_context = [] {\n  expect((static_cast<int>(instance::scope<int, int>{87}.create<void, no_name>(fake_provider<>{})) !=\n          static_cast<int>(instance::scope<int, int>{42}.create<void, no_name>(fake_provider<>{}))));\n\n  struct c {};\n  auto c1 = std::make_shared<c>();\n  auto c2 = std::make_shared<c>();\n\n  {\n    std::shared_ptr<c> c1_ = instance::scope<c, std::shared_ptr<c>>{c1}.create<void, no_name>(fake_provider<>{});\n    std::shared_ptr<c> c2_ = instance::scope<c, std::shared_ptr<c>>{c2}.create<void, no_name>(fake_provider<>{});\n    expect(c1_ != c2_);\n  }\n\n  {\n    std::shared_ptr<c> c1_ = instance::scope<c, std::shared_ptr<c>>{c1}.create<void, no_name>(fake_provider<>{});\n    std::shared_ptr<c> c2_ = instance::scope<c, std::shared_ptr<c>>{c1}.create<void, no_name>(fake_provider<>{});\n    expect(c1_ == c2_);\n  }\n};\n\ntest from_if_shared_ptr = [] {\n  auto i = std::make_shared<implementation>();\n  std::shared_ptr<interface> c =\n      instance::scope<interface, std::shared_ptr<interface>>{i}.create<void, no_name>(fake_provider<>{});\n  expect(i == c);\n};\n\ntest from_function_expr = [] {\n  auto flag = false;\n  auto expr = [&flag]() -> std::shared_ptr<interface> {\n    if (!flag) {\n      return std::make_shared<implementation>();\n    }\n    return nullptr;\n  };\n\n  instance::scope<interface, decltype(expr)> instance{expr};\n\n  {\n    std::shared_ptr<interface> sp = instance.create<void, no_name>(fake_provider<>{});\n    expect(dynamic_cast<implementation*>(sp.get()));\n  }\n\n  {\n    flag = true;\n    std::shared_ptr<interface> sp = instance.create<void, no_name>(fake_provider<>{});\n    expect(nullptr == sp);\n  }\n};\n\ntest from_function_expr_with_expected_function_expr = [] {\n  constexpr auto i = 42;\n  instance::scope<function<int()>, function<int()>> instance{[&] { return i; }};\n  function<int()> f = instance.create<void, no_name>(fake_provider<>{});\n  expect(i == f());\n};\n\ntest from_function_expr_with_injector = [] {\n  auto expr = [](const auto& injector) { return injector.template create<int>(); };\n  instance::scope<int, decltype(expr)> instance{expr};\n  expect(0 == static_cast<int>(instance.create<void, no_name>(fake_provider<int>{})));\n};\n\ntest exposed = [] {\n  instance::scope<void, aux::type_list<named<no_name, int>>> instance{fake_injector<>{}};\n  expect(0 == static_cast<int>(instance.create<int, no_name>(fake_provider<int>{})));\n};\n\ntest exposed_many = [] {\n  struct name {};\n  instance::scope<void, aux::type_list<named<name, double>, named<no_name, int>>> instance{fake_injector<>{}};\n  expect(0 == static_cast<int>(instance.create<int, no_name>(fake_provider<int>{})));\n  expect(0.0 == static_cast<double>(instance.create<double, name>(fake_provider<int>{})));\n};\n\n}  // scopes\n"
  },
  {
    "path": "test/ut/scopes/singleton.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/scopes/singleton.hpp\"\n#include <memory>\n#include \"common/fakes/fake_provider.hpp\"\n\nnamespace scopes {\n\ntest create_singleton = [] {\n  singleton::scope<int, int> singleton;\n  std::shared_ptr<int> object1 = singleton.create<int, no_name>(fake_provider<int>{});\n  std::shared_ptr<int> object2 = singleton.create<int, no_name>(fake_provider<int>{});\n  expect(object1 == object2);\n};\n\nstruct c {};\nauto has_shared_ptr__(c &&) -> std::false_type;\n\ntest create_singleton_from_ptr_to_ptr = [] {\n  singleton::scope<c, c> singleton;\n  c& object1 = singleton.create<c, no_name>(fake_provider<c>{});\n  c& object2 = singleton.create<c, no_name>(fake_provider<c>{});\n  expect(&object1 == &object2);\n};\n\ntest create_singleton_from_ptr_to_const_ptr = [] {\n  singleton::scope<c, c> singleton;\n  const c& object1 = singleton.create<c, no_name>(fake_provider<c>{});\n  const c& object2 = singleton.create<c, no_name>(fake_provider<c>{});\n  expect(&object1 == &object2);\n};\n\n}  // scopes\n"
  },
  {
    "path": "test/ut/scopes/unique.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/scopes/unique.hpp\"\n#include <memory>\n#include \"common/fakes/fake_provider.hpp\"\n\nnamespace scopes {\n\ntest create_unique = [] {\n  unique::scope<int, int> unique;\n  std::unique_ptr<int> object1 = unique.create<std::unique_ptr<int>, no_name>(fake_provider<int>{});\n  std::unique_ptr<int> object2 = unique.create<std::unique_ptr<int>, no_name>(fake_provider<int>{});\n  expect(object1 != object2);\n};\n\ntest create_shared_but_unique = [] {\n  unique::scope<int, int> unique;\n  std::shared_ptr<int> object1 = unique.create<std::shared_ptr<int>, no_name>(fake_provider<int>{});\n  std::shared_ptr<int> object2 = unique.create<std::shared_ptr<int>, no_name>(fake_provider<int>{});\n  expect(object1 != object2);\n};\n\n}  // scopes\n"
  },
  {
    "path": "test/ut/type_traits/ctor_traits.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/type_traits/ctor_traits.hpp\"\n#include <functional>\n#include <initializer_list>\n#include <memory>\n#include <string>\n#include <type_traits>\n#include \"boost/di/aux_/compiler.hpp\"\n#include \"boost/di/core/any_type.hpp\"\n#include \"boost/di/inject.hpp\"\n\nstruct traits {};\n\ntemplate <>\nstruct ctor_traits<traits> {\n  BOOST_DI_INJECT_TRAITS();\n};\n\nnamespace type_traits {\n\nstruct ctor_conv {\n  template <class T>\n  ctor_conv(T&&);  // non explicit\n};\n\nstruct ctor_conv_explicit {\n  template <class T>\n  explicit ctor_conv_explicit(T&&);\n};\n\ntemplate <class T, class TInitialization, class... Ts>\nvoid test_ctor_traits() {\n  static_expect(\n      std::is_same<aux::pair<T, aux::pair<TInitialization, aux::type_list<Ts...>>>, typename ctor_traits__<T, T>::type>::value);\n}\n\ntest ctors = [] {\n  struct empty {\n    BOOST_DI_INJECT_TRAITS();\n  };\n\n  struct int_double {\n    BOOST_DI_INJECT_TRAITS(int, double);\n  };\n\n  struct extensions {\n    BOOST_DI_INJECT_TRAITS(char*, const int&);\n  };\n\n  struct ctor1 {\n    explicit ctor1(int);\n  };\n\n  struct ctor2 {\n    ctor2(char*, const int&);\n  };\n\n  struct ctor_complex {\n    ctor_complex(int, double&, std::shared_ptr<int>, float&, const char*, const std::string&, void*, std::unique_ptr<int>) {}\n  };\n\n  struct ctor_unique_ptr {\n    explicit ctor_unique_ptr(std::unique_ptr<int>) {}\n  };\n\n  struct rvalue {\n    explicit rvalue(int&&){};\n  };\n\n  enum e {};\n  enum class ec {};\n\n  struct conv {\n    conv(int, ctor_conv) {}\n  };\n\n  struct conv_explicit {\n    conv_explicit(int, ctor_conv_explicit) {}\n  };\n\n  struct func {\n    explicit func(const std::function<int()>&) {}\n  };\n\n  struct vaarg {\n    explicit vaarg(int, ...) {}\n  };\n\n  test_ctor_traits<empty, direct>();\n  test_ctor_traits<empty&, direct>();\n  test_ctor_traits<const empty*, direct>();\n  test_ctor_traits<traits, direct>();\n  test_ctor_traits<empty, direct>();\n  test_ctor_traits<int_double, direct, int, double>();\n  test_ctor_traits<extensions, direct, char*, const int&>();\n  test_ctor_traits<ctor_complex, direct, core::any_type_ref_fwd<ctor_complex>, core::any_type_ref_fwd<ctor_complex>,\n                   core::any_type_ref_fwd<ctor_complex>, core::any_type_ref_fwd<ctor_complex>,\n                   core::any_type_ref_fwd<ctor_complex>, core::any_type_ref_fwd<ctor_complex>,\n                   core::any_type_ref_fwd<ctor_complex>, core::any_type_ref_fwd<ctor_complex>>();\n  test_ctor_traits<e, direct>();\n  test_ctor_traits<ec, direct>();\n  test_ctor_traits<conv, uniform>();\n  test_ctor_traits<conv_explicit, direct, core::any_type_fwd<conv_explicit>, core::any_type_fwd<conv_explicit>>();\n  test_ctor_traits<vaarg, direct, core::any_type_fwd<vaarg>, core::any_type_fwd<vaarg>, core::any_type_fwd<vaarg>,\n                   core::any_type_fwd<vaarg>, core::any_type_fwd<vaarg>, core::any_type_fwd<vaarg>, core::any_type_fwd<vaarg>,\n                   core::any_type_fwd<vaarg>, core::any_type_fwd<vaarg>, core::any_type_fwd<vaarg>>();\n  test_ctor_traits<ctor1, direct, core::any_type_1st_fwd<ctor1>>();\n  test_ctor_traits<ctor_unique_ptr, direct, core::any_type_1st_fwd<ctor_unique_ptr>>();\n  test_ctor_traits<ctor_conv, direct, core::any_type_1st_fwd<ctor_conv>>();\n\n  test_ctor_traits<func, direct, core::any_type_1st_ref_fwd<func>>();\n  test_ctor_traits<ctor2, direct, core::any_type_ref_fwd<ctor2>, core::any_type_ref_fwd<ctor2>>();\n\n#if defined(__GCC__)\n  test_ctor_traits<rvalue, direct, core::any_type_1st_ref_fwd<rvalue>>();\n#else\n  test_ctor_traits<rvalue, direct, core::any_type_1st_fwd<rvalue>>();\n#endif\n};\n\ntest uniforms = [] {\n  struct empty {};\n  struct ctor1 {\n    int i = 0;\n  };\n  struct ctor2_ref {\n    std::unique_ptr<int> ptr;\n    int& i;\n  };\n  test_ctor_traits<empty, uniform>();\n\n#if !defined(__MSVC__)\n  test_ctor_traits<ctor2_ref, uniform, core::any_type_ref_fwd<ctor2_ref>, core::any_type_ref_fwd<ctor2_ref>>();\n#endif\n};\n\ntest inheriting_ctors = [] {\n  struct c0 {\n    c0(int, double) {}\n  };\n  struct c1 : public c0 {\n    using c0::c0;\n  };\n\n  test_ctor_traits<c0, direct, core::any_type_fwd<c0>, core::any_type_fwd<c0>>();\n  test_ctor_traits<c1, direct, core::any_type_fwd<c1>, core::any_type_fwd<c1>>();\n};\n\ntest inheriting_ctors_inject = [] {\n  struct c0 {\n    c0(int, double) {}\n    BOOST_DI_INJECT_TRAITS(int, double);\n  };\n  struct c1 : public c0 {\n    using c0::c0;\n  };\n  struct c2 : public c0 {};\n  struct c3 : public c0 {\n    BOOST_DI_INJECT_TRAITS();\n  };\n\n  test_ctor_traits<c0, direct, int, double>();\n  test_ctor_traits<c1, direct, int, double>();\n  test_ctor_traits<c2, direct, int, double>();\n  test_ctor_traits<c3, direct>();\n};\n\ntest special_std_types = [] {\n  test_ctor_traits<std::string, direct>();\n  test_ctor_traits<std::initializer_list<int>, direct>();\n};\n\n}  // type_traits\n"
  },
  {
    "path": "test/ut/type_traits/memory_traits.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/type_traits/memory_traits.hpp\"\n#include <memory>\n#include <type_traits>\n#if __has_include(<boost / shared_ptr.hpp>)\n#include <boost/shared_ptr.hpp>\n#endif\n#include \"common/common.hpp\"\n\nnamespace type_traits {\n\nstruct c {};\nstruct i {\n  virtual ~i() noexcept = default;\n};\n\ntest traits = [] {\n  static_expect(std::is_same<stack, memory_traits_t<int>>{});\n  static_expect(std::is_same<stack, memory_traits_t<c>>{});\n  static_expect(std::is_same<stack, memory_traits_t<const int&>>{});\n  static_expect(std::is_same<heap, memory_traits_t<int*>>{});\n  static_expect(std::is_same<heap, memory_traits_t<const int*>>{});\n  static_expect(std::is_same<heap, memory_traits_t<std::shared_ptr<int>>>{});\n  static_expect(std::is_same<heap, memory_traits_t<const std::shared_ptr<int>&>>{});\n  static_expect(std::is_same<heap, memory_traits_t<std::weak_ptr<int>>>{});\n  static_expect(std::is_same<heap, memory_traits_t<const std::weak_ptr<int>&>>{});\n  static_expect(std::is_same<stack, memory_traits_t<int&>>{});\n  static_expect(std::is_same<heap, memory_traits_t<std::unique_ptr<int>>>{});\n  static_expect(std::is_same<heap, memory_traits_t<std::unique_ptr<int, deleter<int>>>>{});\n  static_expect(std::is_same<heap, memory_traits_t<std::shared_ptr<int>>>{});\n  static_expect(std::is_same<heap, memory_traits_t<std::weak_ptr<int>>>{});\n  static_expect(std::is_same<stack, memory_traits_t<int&&>>{});\n  static_expect(std::is_same<stack, memory_traits_t<const int&&>>{});\n  static_expect(std::is_same<heap, memory_traits_t<i>>{});\n\n#if __has_include(<boost / shared_ptr.hpp>)\n  static_expect(std::is_same<heap, memory_traits_t<boost::shared_ptr<int>>>{});\n  static_expect(std::is_same<heap, memory_traits_t<const boost::shared_ptr<int>&>>{});\n#endif\n};\n\n}  // type_traits\n"
  },
  {
    "path": "test/ut/type_traits/named_traits.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/type_traits/named_traits.hpp\"\n#include <memory>\n#include <type_traits>\n\nnamespace type_traits {\n\ntest remove_named_traits = [] {\n  static_expect(std::is_same<int, remove_named_t<int>>::value);\n  static_expect(std::is_same<const int*, remove_named_t<const int*>>::value);\n  static_expect(std::is_same<int, remove_named_t<named<void, int>>>::value);\n  static_expect(std::is_same<int, remove_named_t<named<no_name, int>>>::value);\n  static_expect(std::is_same<const int&, remove_named_t<named<no_name, const int&>>>::value);\n};\n\ntest add_named_traits = [] {\n  static_expect(std::is_same<named<no_name, int>, add_named_t<int>>::value);\n  static_expect(std::is_same<named<void, int>, add_named_t<named<void, int>>>::value);\n  static_expect(std::is_same<named<no_name, int&>, add_named_t<named<no_name, int&>>>::value);\n  static_expect(std::is_same<named<no_name, const int&>, add_named_t<const int&>>::value);\n};\n\ntest named_decay_traits = [] {\n  static_expect(std::is_same<int, named_decay_t<int>>::value);\n  static_expect(std::is_same<int, named_decay_t<const int&>>::value);\n  static_expect(std::is_same<named<void, int>, named_decay_t<named<void, int>>>::value);\n  static_expect(std::is_same<named<void, int>, named_decay_t<named<void, const int&>>>::value);\n  static_expect(std::is_same<named<no_name, int>, named_decay_t<named<no_name, int*>>>::value);\n};\n\n}  // type_traits\n"
  },
  {
    "path": "test/ut/type_traits/rebind_traits.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/type_traits/rebind_traits.hpp\"\n#include <memory>\n#include <type_traits>\n#include \"boost/di/aux_/type_traits.hpp\"\n#include \"common/common.hpp\"\n\nnamespace type_traits {\n\nstruct c {};\n\ntest traits = [] {\n  static_expect(std::is_same<int, rebind_traits_t<_, int>>{});\n  static_expect(std::is_same<c, rebind_traits_t<_, c>>{});\n  static_expect(std::is_same<named<void, int>, rebind_traits_t<int, named<void>>>{});\n  static_expect(std::is_same<std::unique_ptr<int, deleter<int>>, rebind_traits_t<std::unique_ptr<_, deleter<int>>, int>>{});\n  static_expect(std::is_same<std::shared_ptr<int>, rebind_traits_t<std::shared_ptr<_>, int>>{});\n  static_expect(std::is_same<named<void, std::shared_ptr<int>>, rebind_traits_t<std::shared_ptr<int>, named<void>>>{});\n  static_expect(std::is_same<boost::shared_ptr<int>, rebind_traits_t<boost::shared_ptr<_>, int>>{});\n  static_expect(std::is_same<named<void, boost::shared_ptr<int>>, rebind_traits_t<boost::shared_ptr<int>, named<void>>>{});\n  static_expect(std::is_same<std::weak_ptr<int>, rebind_traits_t<std::weak_ptr<_>, int>>{});\n  static_expect(std::is_same<named<void, std::weak_ptr<int>>, rebind_traits_t<std::weak_ptr<int>, named<void>>>{});\n};\n\n}  // type_traits\n"
  },
  {
    "path": "test/ut/type_traits/scope_traits.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/type_traits/scope_traits.hpp\"\n#include <memory>\n#include <type_traits>\n#include \"common/common.hpp\"\n\nnamespace type_traits {\n\nstruct c {};\n\ntest traits = [] {\n  static_expect(std::is_same<scopes::unique, scope_traits_t<int>>{});\n  static_expect(std::is_same<scopes::unique, scope_traits_t<c>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<const int&>>{});\n  static_expect(std::is_same<scopes::unique, scope_traits_t<int*>>{});\n  static_expect(std::is_same<scopes::unique, scope_traits_t<const int*>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<std::shared_ptr<int>>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<const std::shared_ptr<int>&>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<boost::shared_ptr<int>>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<const boost::shared_ptr<int>&>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<std::weak_ptr<int>>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<const std::weak_ptr<int>&>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<int&>>{});\n  static_expect(std::is_same<scopes::unique, scope_traits_t<std::unique_ptr<int>>>{});\n  static_expect(std::is_same<scopes::unique, scope_traits_t<std::unique_ptr<int, deleter<int>>>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<std::shared_ptr<int>>>{});\n  static_expect(std::is_same<scopes::singleton, scope_traits_t<std::weak_ptr<int>>>{});\n  static_expect(std::is_same<scopes::unique, scope_traits_t<int&&>>{});\n  static_expect(std::is_same<scopes::unique, scope_traits_t<const int&&>>{});\n};\n\n}  // type_traits\n"
  },
  {
    "path": "test/ut/wrappers/shared.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/wrappers/shared.hpp\"\n#include <memory>\n#include \"boost/di/aux_/utility.hpp\"\n#if __has_include(<boost / shared_ptr.hpp>)\n#include <boost/shared_ptr.hpp>\n#endif\n#include \"common/fakes/fake_scope.hpp\"\n\nnamespace wrappers {\n\ntest to_shared_ptr = [] {\n  auto i = std::make_shared<int>(42);\n  auto object = static_cast<const std::shared_ptr<int>&>(shared<fake_scope<>, int>{i});\n  expect(i == object);\n};\n\n#if __has_include(<boost / shared_ptr.hpp>)\ntest to_other_shared_ptr = [] {\n  auto i = std::make_shared<int>(42);\n  auto object = static_cast<boost::shared_ptr<int>>(shared<fake_scope<>, int>{i});\n  expect(i.get() == object.get());\n};\n#endif\n\ntest to_weak_ptr = [] {\n  std::weak_ptr<int> object;\n\n  {\n    auto i = std::make_shared<int>(42);\n    object = static_cast<std::weak_ptr<int>>(shared<fake_scope<>, int>{i});\n    auto object_ = object.lock();\n    expect(i == object_);\n  }\n\n  expect(!object.lock());\n};\n\n}  // wrappers\n"
  },
  {
    "path": "test/ut/wrappers/unique.cpp",
    "content": "//\n// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or unique at http://www.boost.org/LICENSE_1_0.txt)\n//\n#include \"boost/di/wrappers/unique.hpp\"\n#include <memory>\n#if __has_include(<boost / shared_ptr.hpp>)\n#include <boost/shared_ptr.hpp>\n#endif\n#include \"common/fakes/fake_scope.hpp\"\n\nnamespace wrappers {\n\nstruct interface {\n  virtual ~interface() noexcept = default;\n  virtual void dummy() = 0;\n};\nstruct implementation : public interface {\n  void dummy() override{};\n};\n\nconstexpr auto i = 42;\n\ntest to_value = [] {\n  auto object = static_cast<int>(unique<fake_scope<>, int>{i});\n  expect(i == object);\n};\n\ntest to_rvalue = [] {\n  auto object = static_cast<int&&>(unique<fake_scope<>, int>{i});\n  expect(i == object);\n};\n\ntest to_interface = [] {\n  auto u = unique<fake_scope<>, interface*>{new implementation{}};\n  auto object = std::unique_ptr<interface>{static_cast<interface*>(u)};\n  expect(dynamic_cast<implementation*>(object.get()));\n};\n\ntest to_ptr = [] {\n  auto object = std::unique_ptr<int>{static_cast<int*>(unique<fake_scope<>, int*>{new int{i}})};\n  expect(i == *object);\n};\n\ntest to_const_ptr = [] {\n  std::unique_ptr<const int> object = unique<fake_scope<>, int*>{new int{i}};\n  expect(i == *object);\n};\n\ntest to_copy = [] {\n  auto object = static_cast<int>(unique<fake_scope<>, int*>{new int{i}});\n  expect(i == object);\n};\n\ntest to_shared_ptr = [] {\n  std::shared_ptr<int> object = unique<fake_scope<>, int*>{new int{i}};\n  expect(i == *object);\n};\n\n#if __has_include(<boost / shared_ptr.hpp>)\ntest to_boost_shared_ptr = [] {\n  boost::shared_ptr<int> object = unique<fake_scope<>, int*>{new int{i}};\n  expect(i == *object);\n};\n#endif\n\ntest to_unique_ptr = [] {\n  std::unique_ptr<int> object = unique<fake_scope<>, int*>{new int{i}};\n  expect(i == *object);\n};\n\ntest to_unique_ptr_from_unique_ptr = [] {\n  std::unique_ptr<int> object = unique<fake_scope<>, std::unique_ptr<int>>{std::make_unique<int>(i)};\n  expect(i == *object);\n};\n\n}  // wrappers\n"
  },
  {
    "path": "tools/pph.sh",
    "content": "#!/bin/bash\n#\n# Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\n#\n# Distributed under the Boost Software License, Version 1.0.\n# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n#\npph() {\n  version=$1 revision=$2 patch=$3\n  echo \"//\"\n  echo \"// Copyright (c) 2012-2017 Kris Jusiak (kris at jusiak dot net)\"\n  echo \"//\"\n  echo \"// Distributed under the Boost Software License, Version 1.0.\"\n  echo \"// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\"\n  echo \"//\"\n  echo \"#pragma once\"\n  echo \"#if (__cplusplus < 201305L && _MSC_VER < 1900)\"\n  echo \"#error \\\"[Boost].DI requires C++14 support (Clang-3.4+, GCC-5.1+, MSVC-2015+)\\\"\"\n  echo \"#else\"\n  echo \"#define BOOST_DI_VERSION ${version}'${revision}'${patch}\"\n  echo \"#define BOOST_DI_NAMESPACE_BEGIN namespace boost { namespace di { inline namespace v${version}_${revision}_${patch} {\"\n  echo \"#define BOOST_DI_NAMESPACE_END }}}\"\n  echo \"#if !defined(BOOST_DI_CFG_DIAGNOSTICS_LEVEL)\"\n  echo \"#define BOOST_DI_CFG_DIAGNOSTICS_LEVEL 1\"\n  echo \"#endif\"\n  echo \"#if defined(BOOST_DI_CFG_FWD)\"\n  echo \"BOOST_DI_CFG_FWD\"\n  echo \"#endif\"\n  rm -rf tmp && mkdir tmp && cp -r boost tmp && cd tmp\n  find . -iname \"*.hpp\" | xargs sed -i \"s/BOOST_DI_NAMESPACE/::boost::di::v${version}_${revision}_${patch}/g\"\n  find . -iname \"*.hpp\" | xargs sed -i \"s/\\(.*\\)__pph__/\\/\\/\\/\\/\\1/g\"\n  find . -iname \"*.hpp\" | xargs sed -i \"s/.*\\(clang-format.*\\)/\\/\\/\\/\\/\\1/g\"\n  tail -n +10 \"boost/di/aux_/compiler.hpp\" | head -n -2 | sed '/^$/d' | sed \"s/ \\/\\/\\\\(.*\\)//g\" | sed \"s/\\/\\/\\/\\///\"\n  echo \"#if defined(__CLANG__)\"\n  echo \"#if (!BOOST_DI_CFG_DIAGNOSTICS_LEVEL)\"\n  echo \"#pragma clang diagnostic error \\\"-Wdeprecated-declarations\\\"\"\n  echo \"#else\"\n  echo \"#pragma clang diagnostic warning \\\"-Wdeprecated-declarations\\\"\"\n  echo \"#endif\"\n  echo \"#pragma clang diagnostic push\"\n  echo \"#pragma clang diagnostic error \\\"-Wundefined-inline\\\"\"\n  echo \"#pragma clang diagnostic error \\\"-Wundefined-internal\\\"\"\n  echo \"#pragma clang diagnostic ignored \\\"-Wmissing-field-initializers\\\"\"\n  echo \"#elif defined(__GCC__)\"\n  echo \"#pragma GCC diagnostic error \\\"-Wdeprecated-declarations\\\"\"\n  echo \"#pragma GCC diagnostic push\"\n  echo \"#if (__GNUC__ < 6)\"\n  echo \"#pragma GCC diagnostic error \\\"-Werror\\\"\"\n  echo \"#endif\"\n  echo \"#elif defined(__MSVC__)\"\n  echo \"#pragma warning(disable : 4503)\"\n  echo \"#pragma warning(disable : 4822)\"\n  echo \"#pragma warning(disable : 4505)\"\n  echo \"#endif\"\n  echo '\n    #include \"boost/di/fwd_ext.hpp\"\n    BOOST_DI_NAMESPACE_BEGIN\n    #include \"boost/di/config.hpp\"\n    #include \"boost/di/bindings.hpp\"\n    #include \"boost/di/inject.hpp\"\n    #include \"boost/di/injector.hpp\"\n    #include \"boost/di/make_injector.hpp\"\n    #include \"boost/di/scopes/deduce.hpp\"\n    #include \"boost/di/scopes/instance.hpp\"\n    #include \"boost/di/scopes/singleton.hpp\"\n    #include \"boost/di/scopes/unique.hpp\"\n    #include \"boost/di/policies/constructible.hpp\"\n    #include \"boost/di/providers/heap.hpp\"\n    #include \"boost/di/providers/stack_over_heap.hpp\"' > tmp.hpp\n  cpp -C -P -nostdinc -I. \\\n    -DBOOST_DI_AUX_COMPILER_HPP \\\n    -DBOOST_DI_AUX_PREPROCESSOR_HPP \\\n    -DBOOST_DI_INJECT_HPP tmp.hpp 2>/dev/null | \\\n    sed \"s/\\/\\/\\/\\///\" | \\\n    sed \"s/[ $]*#define/##define/g\" | \\\n    cpp -P -I. -fpreprocessed - 2>/dev/null | \\\n    sed \"s/clang-format\\(.*\\)/\\/\\/ clang-format\\1/g\" | \\\n    sed \"s/^##define/#define/g\"\n  tail -n +11 \"boost/di/aux_/preprocessor.hpp\" | head -n -2 | sed '/^$/d' | sed \"s/ \\/\\/\\\\(.*\\)//g\"\n  tail -n +15 \"boost/di/inject.hpp\" | head -n -2 | sed '/^$/d' | sed \"s/ \\/\\/\\\\(.*\\)//g\"\n  cd .. && rm -rf tmp\n  echo \"BOOST_DI_NAMESPACE_END\"\n  echo \"#endif\"\n  echo \"#if defined(__CLANG__)\"\n  echo \"#pragma clang diagnostic pop\"\n  echo \"#elif defined(__GCC__)\"\n  echo \"#pragma GCC diagnostic pop\"\n  echo \"#endif\"\n  echo\n}\n\nset -e\ncd ${0%/*}/../include && pph `head -1 ../doc/CHANGELOG.md  | sed \"s/.*\\[\\(.*\\)\\].*/\\1/\" | tr '.' ' '` > \"boost/di.hpp\"\n${CLANG_FORMAT:=clang-format} -i \"boost/di.hpp\"\n"
  }
]